:root {
    --primary: #FBC902;
    --secondary: #4361EE;
    --accent: #06D6A0;
    --dark: #1A1A2E;
    --light: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 页面内容样式 */
.page-content {
    padding: 70px 0 0;
    min-height: 100vh;
    background-color: #fff;
}

.hero-banner {
    width: 100%;
    padding-top: calc(729 / 1920 * 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}


/* Banner底部区域 */
.banner-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 1;
    padding-bottom: 60px;
    /* 底部间距 */
}

/* 关于我们图片样式 */
.about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 关于我们内容 */
.about-content {
    width: 80%;
    /* 占浏览器三分之二宽度 */
    margin: 0 auto;
    /* 居中显示 */
    text-align: justify;
    /* 文本两端对齐 */
    padding-bottom: 40px;
}

.about-content p {
    text-indent: 2em;
    /* 首行缩进 */
    margin-bottom: 10px;
    /* 段落间距 */
    font-size: 18px;
    line-height: 1.8;
}

/* 关于我们图片样式 */
.about-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 通用区域基础样式 */
.section {
    width: 100%;
    padding: 60px 0;
    /* 上下内边距 */
}

/* 各个区域的背景色 */
.section-choose {
    background-color: #f9f9f9;
}

.section-advantages {
    background-color: #fff;
}

.section-support {
    background-color: #efe8dd;
}

.section-process {
    background-color: #fff;
}

/* 区域内容样式 */
.section-content {
    text-align: center;
    /* 内容居中 */
}

.section-content h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--dark);
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* 选择拍乐特区域的图标样式 */
.choose-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    /* 图片之间的间距 */
    margin: 30px 0;
    /* 图标区域与上下内容的间距 */
}

.choose-icons img {
    width: 200px;
    /* 设置图片宽度 */
    height: 384px;
    /* 设置图片高度 */
    object-fit: contain;
    /* 保持图片比例 */
    transition: transform 0.3s ease;
    /* 添加悬停效果 */
}

.choose-icons img:hover {
    /* 悬停时轻微放大 */
    transform: scale(1.1);
}

.advantage-icon {
    /* 设置元素宽度为视口宽度的100% */
    width: 100vw;
    /* 设置元素宽度为视口宽度的100% */
    margin-left: calc(-50vw + 50%);
    /* 设置相对定位 */
    position: relative;
}

/* 6大支持双列布局 */
.support-columns {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    width: 100%;
    position: relative;
}

/* 左侧列 */
.left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* 调整左侧列距离中心线的距离 */
    margin-right: 50px;
    /* 向左移动增加负值，向右移动增加正值 */
}

/* 右侧列 */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* 调整右侧列距离中心线的距离 */
    margin-left: 50px;
    /* 向左移动增加负值，向右移动增加正值 */
}


/* 单个支持项 */
.support-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 支持图标 */
.support-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    /* 防止图标被压缩 */
}

/* 支持文字 */
.support-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 垂直居中对齐文字 */
    text-align: left;
    /* 确保文字左对齐 */
    margin-top: 10px;
    /* 文字向下移动一些 */
}

.support-text p:first-child {
    font-weight: bold;
    margin: 0 0 5px 0;
    /* 统一外边距 */
    font-size: 1.3em;
    line-height: 1.2;
    /* 固定行高 */
}

.support-text p:last-child {
    font-weight: bold;
    font-size: 1.1em;
    color: #666;
    line-height: 1.4;
    margin: 0;
    /* 移除默认外边距 */
}

.support-item img {
    transition: transform 0.3s ease;
    /* 添加悬停效果 */
}

.support-item img:hover {
    /* 悬停时轻微放大 */
    transform: scale(1.1);
}

/* 响应式设计 */
@media (max-width: 800px) {
    .nav {
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }

    /* 优化 logo 在小屏下的表现 */
    .logo img {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    /* 小屏设备下的横幅优化 */
    .hero-banner {
        /* 小屏设备稍微降低高度 */
        height: 60vh;
    }

    .about-image {
        max-width: 80%;
        /* 在小屏幕上适当缩小图片 */
    }

    /* 小屏幕上的区域内边距调整 */
    .section {
        padding: 40px 0;
    }

    .support-grid {
        grid-template-columns: 1fr;
        /* 小屏幕上变为单列 */
        gap: 20px;
        padding: 0 15px;
        /* 小屏幕上的内边距 */
        max-width: 100%;
    }

    .support-item {
        gap: 15px;
        max-width: 100%;
    }

    .support-icon {
        width: 50px;
        height: 50px;
    }
}