Files
fe_portal_frontend/src/pages/about/about.less

79 lines
1.1 KiB
Plaintext
Raw Normal View History

2025-06-17 08:50:38 +08:00
@import '~antd/es/style/themes/default.less';
.aboutContainer {
padding: 24px;
background-color: #fff;
}
.aboutContent {
max-width: 1000px;
margin: 0 auto;
}
.aboutTitle {
text-align: center;
margin-bottom: 40px;
}
.aboutSection {
margin-bottom: 48px;
}
.sectionTitle {
position: relative;
margin-bottom: 24px;
padding-left: 12px;
&::before {
content: '';
position: absolute;
left: 0;
top: 4px;
height: 20px;
width: 4px;
background-color: #1890ff;
}
}
.sectionContent {
color: #333;
line-height: 2;
font-size: 15px;
}
.imageWrapper {
margin: 24px 0;
text-align: center;
}
.aboutImage {
max-width: 100%;
height: auto;
border-radius: 4px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.companyInfo {
background-color: #f5f5f5;
padding: 24px;
border-radius: 4px;
margin-top: 24px;
}
.infoItem {
margin-bottom: 12px;
display: flex;
.label {
font-weight: 500;
margin-right: 8px;
min-width: 80px;
}
}
.aboutFooter {
text-align: center;
margin-top: 48px;
color: rgba(0, 0, 0, 0.45);
}