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

164 lines
2.3 KiB
Plaintext
Raw Normal View History

2025-06-17 08:50:38 +08:00
@import '~antd/es/style/themes/default.less';
2025-07-17 15:30:40 +08:00
@import '~@/baseStyle.less';
2025-06-17 08:50:38 +08:00
.aboutContainer {
padding: 20px;
2025-06-17 08:50:38 +08:00
background-color: #fff;
min-height: calc(100vh - 250px);
2025-06-17 08:50:38 +08:00
}
.aboutContent {
padding: 20px;
2025-07-17 15:30:40 +08:00
width: @width;
margin: 0 auto;
2025-06-17 08:50:38 +08:00
}
.aboutTitle {
text-align: center;
margin-bottom: 40px;
h2 {
font-weight: 600;
color: #333;
}
2025-06-17 08:50:38 +08:00
}
.aboutSection {
margin-bottom: 40px;
2025-06-17 08:50:38 +08:00
}
.sectionTitle {
font-weight: 600;
color: #333;
2025-06-17 08:50:38 +08:00
position: relative;
padding-left: 15px;
margin-bottom: 20px;
2025-06-17 08:50:38 +08:00
&::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 5px;
2025-06-17 08:50:38 +08:00
height: 20px;
background-color: #1890ff;
}
}
.sectionContent {
padding: 10px 0;
2025-06-17 08:50:38 +08:00
}
.imageWrapper {
margin: 20px 0;
2025-06-17 08:50:38 +08:00
text-align: center;
}
.aboutImage {
max-width: 100%;
max-height: 400px;
border-radius: 6px;
2025-06-17 08:50:38 +08:00
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.companyInfo {
padding: 20px;
2025-06-17 08:50:38 +08:00
background-color: #f5f5f5;
border-radius: 6px;
2025-06-17 08:50:38 +08:00
}
.infoItem {
margin-bottom: 12px;
line-height: 24px;
2025-06-17 08:50:38 +08:00
&:last-child {
margin-bottom: 0;
2025-06-17 08:50:38 +08:00
}
}
.label {
font-weight: 600;
color: #333;
}
2025-06-17 08:50:38 +08:00
.aboutFooter {
text-align: center;
margin-top: 40px;
color: #999;
border-top: 1px solid #eee;
padding-top: 20px;
}
// 加载状态
.loadingContainer {
display: flex;
justify-content: center;
align-items: center;
min-height: calc(100vh - 250px);
background-color: #fff;
}
// 错误状态
.errorContainer {
display: flex;
justify-content: center;
align-items: center;
min-height: calc(100vh - 250px);
background-color: #fff;
flex-direction: column;
h4 {
margin-bottom: 20px;
color: #ff4d4f;
}
}
// 富文本内容样式
.contentHtml {
line-height: 1.8;
color: #333;
p {
margin-bottom: 16px;
}
img {
max-width: 100%;
height: auto;
margin: 16px 0;
border-radius: 4px;
}
a {
color: #1890ff;
text-decoration: none;
}
ul, ol {
padding-left: 20px;
margin-bottom: 16px;
}
li {
margin-bottom: 8px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 16px 0;
th, td {
border: 1px solid #e8e8e8;
padding: 8px 12px;
text-align: left;
}
th {
background-color: #f5f5f5;
font-weight: 600;
}
}
2025-06-17 08:50:38 +08:00
}