/* 巧米乐数字科技关于我们页面样式 - 参照首页风格 */

/* 基础布局和通用组件 */
.zh_about_page {
    background: #f8f9fa;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
}

.zh_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页面头部横幅 */
.zh_about_hero {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #2b2520 0%, #3a3129 100%);
    color: #F0F0F0;
    text-align: center;
    overflow: hidden;
}

.zh_hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
}

.zh_hero_content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.zh_hero_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.zh_hero_subtitle {
    font-size: 20px;
    color: rgba(240,240,240,0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.zh_breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(240,240,240,0.7);
}

.zh_breadcrumb_item {
    color: rgba(240,240,240,0.7);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.zh_breadcrumb_item:hover {
    color: #FA7D09;
}

.zh_breadcrumb_item i {
    font-size: 12px;
}

.zh_breadcrumb_divider {
    color: rgba(240,240,240,0.5);
}

.zh_breadcrumb_active {
    color: #F0F0F0;
    font-weight: 600;
}

/* 公司介绍区域 */
.zh_about_intro {
    padding: 80px 0;
    background: #fff;
}

.zh_intro_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zh_intro_text {
    padding-right: 20px;
}

.zh_section_title {
    font-size: 36px;
    font-weight: 700;
    color: #2b2520;
    margin-bottom: 30px;
    line-height: 1.3;
}

.zh_intro_desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.zh_intro_image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.zh_intro_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.zh_intro_image:hover img {
    transform: scale(1.05);
}

/* 核心优势区域 */
.zh_about_advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.zh_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.zh_section_subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 15px;
}

.zh_advantages_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.zh_advantage_item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #eee;
    transition: all 0.3s;
}

.zh_advantage_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(250,125,9,0.2);
    border-color: #FA7D09;
}

.zh_advantage_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FA7D09 0%, #e56d00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 32px;
    transition: transform 0.3s;
}

.zh_advantage_item:hover .zh_advantage_icon {
    transform: scale(1.1);
}

.zh_advantage_title {
    font-size: 22px;
    font-weight: 600;
    color: #2b2520;
    margin-bottom: 15px;
}

.zh_advantage_desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* 联系我们区域 */
.zh_about_contact {
    padding: 80px 0;
    background: #fff;
}

.zh_contact_content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.zh_contact_info {
    padding-right: 20px;
}

.zh_contact_desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.zh_contact_items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.zh_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.zh_contact_item:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-color: #FA7D09;
}

.zh_contact_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FA7D09 0%, #e56d00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.zh_contact_details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2b2520;
    margin-bottom: 8px;
}

.zh_contact_details a {
    color: #FA7D09;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.zh_contact_details a:hover {
    color: #e56d00;
}

.zh_contact_details span {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.zh_contact_image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.zh_contact_image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

.zh_contact_image:hover img {
    transform: scale(1.05);
}

/* 响应式设计 */
@media (max-width: 992px) {
    .zh_hero_title {
        font-size: 36px;
    }

    .zh_hero_subtitle {
        font-size: 18px;
    }

    .zh_intro_content,
    .zh_contact_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .zh_intro_text,
    .zh_contact_info {
        padding-right: 0;
    }

    .zh_section_title {
        font-size: 28px;
    }

    .zh_advantages_grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .zh_about_hero {
        padding: 80px 0;
    }

    .zh_hero_title {
        font-size: 30px;
    }

    .zh_hero_subtitle {
        font-size: 16px;
    }

    .zh_about_intro,
    .zh_about_advantages,
    .zh_about_contact {
        padding: 60px 0;
    }

    .zh_section_title {
        font-size: 24px;
    }

    .zh_intro_desc,
    .zh_contact_desc {
        font-size: 15px;
    }

    .zh_advantage_item {
        padding: 30px 20px;
    }

    .zh_advantage_icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .zh_advantage_title {
        font-size: 20px;
    }

    .zh_contact_item {
        padding: 20px;
        gap: 15px;
    }

    .zh_contact_icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .zh_contact_details h4 {
        font-size: 16px;
    }

    .zh_contact_details a,
    .zh_contact_details span {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .zh_hero_title {
        font-size: 24px;
    }

    .zh_hero_subtitle {
        font-size: 14px;
    }

    .zh_breadcrumb {
        font-size: 12px;
    }

    .zh_about_intro,
    .zh_about_advantages,
    .zh_about_contact {
        padding: 40px 0;
    }

    .zh_section_title {
        font-size: 20px;
    }

    .zh_advantages_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .zh_advantage_item {
        padding: 25px 15px;
    }

    .zh_contact_items {
        gap: 20px;
    }

    .zh_contact_item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}
