/* 相关介绍页面样式 */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-content {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.section-title {
    color: #c8102e;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #c8102e;
}

.about-section {
    margin-bottom: 40px;
}

/* 移除了.about-image相关样式 */

.about-text {
    width: 100%;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
}

.about-text.full-width {
    width: 100%;
}

.subsection-title {
    color: #c8102e;
    font-size: 1.8rem;
    margin: 30px 0 20px;
    padding-left: 15px;
    border-left: 5px solid #c8102e;
}

.about-text ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* 修复列表项前的点重复问题 */
.feature-list {
    list-style-type: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-list li:before {
    content: '•';
    color: #c8102e;
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .subsection-title {
        font-size: 1.5rem;
    }
    
    .about-content {
        padding: 20px;
    }
}

/* 为英文版本添加特定样式 */
html[lang="en"] .about-text p {
    line-height: 1.6;
}