Files
fe_portal_frontend/src/pages/download/download.less

69 lines
954 B
Plaintext
Raw Normal View History

2025-06-17 08:50:38 +08:00
@import '~antd/es/style/themes/default.less';
.downloadContainer {
padding: 24px;
background-color: #fff;
}
.downloadRow {
width: 100%;
}
.menuCol {
margin-bottom: 24px;
}
.downloadMenu {
border-right: none;
}
.downloadContent {
width: 100%;
}
.downloadCardList {
margin-top: 16px;
}
.downloadCard {
margin-bottom: 24px;
transition: all 0.3s;
display: flex;
flex-direction: column;
&:hover {
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
transform: translateY(-2px);
}
}
.cardTitle {
color: #333;
font-weight: 500;
font-size: 16px;
line-height: 22px;
margin-bottom: 8px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: flex;
align-items: center;
}
.cardDate {
color: rgba(0, 0, 0, 0.45);
margin-bottom: 12px;
font-size: 12px;
}
.downloadIcon {
font-size: 24px;
margin-right: 8px;
color: #1890ff;
}
.downloadButton {
margin-top: 12px;
width: 100%;
}