 /* 独享CSS部分 - 关于我们页面内容 */
        
        /* 页面标题部分 */
        .page-header {
            background: linear-gradient(rgba(10,36,99,0.9), rgba(10,36,99,0.9)), url('/template/jia/images/12.jpg');
            background-size: cover;
            background-position: center;
            padding: 150px 0 80px;
            text-align: center;
            color: white;
            margin-top: 70px;
        }
        
        .page-title {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* 关于我们内容部分 */
        .about-section {
            padding: 80px 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-container {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 50px;
            margin-bottom: 40px;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .about-text h2 {
            color: var(--primary-color);
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .highlight {
            color: var(--secondary-color);
            font-weight: 700;
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(10,36,99,0.2), rgba(212,175,55,0.2));
            z-index: 1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .about-image:hover::before {
            opacity: 1;
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* 我们的使命部分 */
        .mission-section {
            background: #f8f9fa;
            padding: 60px 0;
            border-radius: 10px;
            margin-bottom: 60px;
        }
        
        .mission-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .mission-title {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .mission-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .mission-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .mission-highlight {
            font-size: 1.3rem;
            color: var(--secondary-color);
            font-weight: 700;
            font-style: italic;
        }
        
        /* 我们的优势部分 */
        .advantages-section {
            margin-bottom: 60px;
        }
        
        .section-title {
            text-align: center;
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .advantage-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
            background-size: 200% 100%;
            animation: gradient-shift 3s ease infinite;
        }
        
        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .advantage-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
        }
        
        .advantage-card:hover .advantage-icon {
            background: var(--secondary-color);
            transform: rotateY(180deg);
        }
        
        .advantage-card h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .advantage-card p {
            color: #666;
            line-height: 1.6;
        }
        
        /* 服务承诺部分 */
        .commitment-section {
            background: var(--primary-color);
            color: white;
            padding: 60px 0;
            border-radius: 10px;
        }
        
        .commitment-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .commitment-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
        }
        
        .commitment-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .commitment-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .commitment-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            text-align: left;
        }
        
        .commitment-list li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--secondary-color);
            position: absolute;
            left: 0;
        }
        
        .commitment-highlight {
            font-size: 1.3rem;
            color: var(--secondary-color);
            font-weight: 700;
            margin-top: 20px;
        }
        
        /* 背景动画元素 */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        
        .bg-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(10, 36, 99, 0.03);
            animation: float 15s infinite linear;
        }
        
        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .bg-circle:nth-child(3) {
            width: 400px;
            height: 400px;
            top: 30%;
            left: 60%;
            animation-delay: 4s;
        }
        
        .bg-circle:nth-child(4) {
            width: 250px;
            height: 250px;
            top: 70%;
            left: 10%;
            animation-delay: 6s;
        }
        
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .about-image {
                order: -1;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .about-container {
                padding: 30px 20px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
        }