 /* 独享CSS部分 - 关于我们页面 */
        
        /* 页面标题样式 */
        .page-header {
            padding: 150px 0 80px;
            background-color: var(--primary-color);
            color: var(--text-light);
            text-align: center;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255,255,255,0.8);
        }
        
        /* 关于我们内容样式 */
        .about-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .about-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 80px;
        }
        
        .about-content {
            flex: 1;
            min-width: 300px;
            padding-right: 50px;
        }
        
        .about-content h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .about-content p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: #555;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: var(--accent-color);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        
        
      .about-image img {
        
            width: 100%;
            height: 100%;
 
        }
        
         .mission-image img {
        
            width: 100%;
            height: 100%;
 
        }
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(201, 169, 110, 0.2), transparent);
        }
        
        /* 我们的使命样式 */
        .mission-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .mission-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .mission-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: var(--accent-color);
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        .mission-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(201, 169, 110, 0.2), transparent);
        }
        
        .mission-content {
            flex: 1;
            min-width: 300px;
            padding-left: 50px;
        }
        
        .mission-content h2 {
            font-size: 32px;
            color: var(--text-light);
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .mission-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .mission-content p {
            margin-bottom: 25px;
            line-height: 1.8;
            color: rgba(255,255,255,0.8);
        }
        
        /* 核心价值样式 */
        .values-section {
            padding: 100px 0;
            background-color: var(--light-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .values-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        
        .value-card {
            flex: 0 0 calc(33.333% - 20px);
            min-width: 250px;
            margin-bottom: 30px;
            text-align: center;
            padding: 40px 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .value-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--text-light);
            font-size: 30px;
            position: relative;
            overflow: hidden;
        }
        
        .value-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--secondary-color), transparent, var(--secondary-color));
            border-radius: 50%;
            opacity: 0.3;
            animation: rotate 3s linear infinite;
        }
        
        .value-card h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .value-card p {
            color: #666;
        }
        
        /* 发展历程样式 */
        .history-section {
            padding: 80px 0;
            background-color: var(--primary-color);
            color: var(--text-light);
        }
        
        .history-section .section-title h2 {
            color: var(--text-light);
        }
        
        .history-section .section-title p {
            color: rgba(255,255,255,0.8);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            background-color: rgba(255,255,255,0.2);
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
            text-align: left;
        }
        
        .timeline-content {
            background-color: rgba(255,255,255,0.05);
            padding: 25px;
            border-radius: 8px;
            position: relative;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .timeline-content.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .timeline-content:hover {
            background-color: rgba(255,255,255,0.1);
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            top: 20px;
            left: 100%;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-left: 10px solid rgba(255,255,255,0.05);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            top: 20px;
            right: 100%;
            width: 0;
            height: 0;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            border-right: 10px solid rgba(255,255,255,0.05);
        }
        
        .timeline-content:hover::after {
            border-left-color: rgba(255,255,255,0.1);
            border-right-color: rgba(255,255,255,0.1);
        }
        
        .timeline-year {
            position: absolute;
            top: 0;
            width: 100px;
            height: 40px;
            background-color: var(--secondary-color);
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .timeline-item:nth-child(odd) .timeline-year {
            right: calc(50% - 50px);
        }
        
        .timeline-item:nth-child(even) .timeline-year {
            left: calc(50% - 50px);
        }
        
        .timeline-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-light);
        }
        
        .timeline-content p {
            color: rgba(255,255,255,0.8);
        }
        
        /* 动画定义 */
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes gradientShift {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        /* 响应式调整 */
        @media (max-width: 992px) {
            .about-container, .mission-container {
                flex-direction: column;
            }
            
            .about-content {
                padding-right: 0;
                margin-bottom: 50px;
            }
            
            .mission-content {
                padding-left: 0;
                margin-top: 50px;
            }
            
            .value-card {
                flex: 0 0 calc(50% - 15px);
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 80px;
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-item:nth-child(odd) .timeline-year,
            .timeline-item:nth-child(even) .timeline-year {
                left: 0;
                right: auto;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: 70px;
                right: auto;
                border-right: 10px solid rgba(255,255,255,0.05);
                border-left: none;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 32px;
            }
            
            .about-content h2, .mission-content h2 {
                font-size: 28px;
            }
            
            .value-card {
                flex: 0 0 100%;
            }
        }