@import url("theme_common.css");

/* 关于我们页面特有样式 */

/* Banner 区域 - 覆盖通用样式 */
.about-banner {
    height: 450px;
    background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    display: flex;
    align-items: center;
    color: #fff;
}

.about-banner .banner-content {
    width: 1200px;
    margin: 0 auto;
    padding-left: 100px;
}

.about-banner h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-weight: bold;
}

.about-banner p {
    font-size: 24px;
    opacity: 0.9;
}

/* 公司简介 */
.company-intro {
    padding: 100px 0;
    display: flex;
    gap: 60px;
    align-items: center;
}

.company-intro .intro-img {
    flex: 1;
}

.company-intro .intro-img img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-intro .intro-text {
    flex: 1.2;
}

.company-intro .intro-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.company-intro .intro-text .en-name {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.company-intro .intro-text .desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* 数据展示栏 */
.stats-bar {
    background-color: #C3A9D1;
    padding: 40px 0;
    color: #fff;
}

.stats-bar .stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stats-bar .stat-item h3 {
    font-size: 36px;
    margin-bottom: 5px;
}

.stats-bar .stat-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* 环境展示网格 */
.env-grid {
    padding: 100px 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.env-grid .grid-item {
    border-radius: 4px;
    overflow: hidden;
}

.env-grid .grid-item.full-width {
    grid-column: span 3;
    height: 400px;
}

.env-grid .grid-item:not(.full-width) {
    grid-column: span 2;
    height: 300px;
}

.env-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

/* 口号栏 */
.slogan-bar {
    background-color: #C3A9D1;
    padding: 30px 0;
    text-align: center;
    color: #fff;
    font-size: 18px;
}

/* 核心理念文字 */
.philosophy-text {
    padding: 100px 0;
    text-align: center;
    width: 800px;
    margin: 0 auto;
    font-size: 18px;
    color: #666;
    line-height: 2;
}

/* 专利与认证 */
.cert-section {
    padding: 100px 0;
    text-align: center;
}

.cert-desc {
    width: 800px;
    margin: 0 auto 60px;
    color: #666;
    line-height: 1.8;
}

.cert-image img {
    width: 100%;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
