   /* 股权架构页面独享样式 */
        
        /* 页面标题部分 */
        .page-hero {
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(rgba(10, 26, 53, 0.85), rgba(10, 26, 53, 0.85)), url('/template/jia/images/23.jpg');
            background-size: cover;
            background-position: center;
            color: #fff;
            margin-top: 70px;
            position: relative;
        }
        
        .page-hero-content {
            max-width: 900px;
            padding: 0 20px;
        }
        
        .page-hero h1 {
            font-size: 58px;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .page-hero p {
            font-size: 22px;
            margin-bottom: 40px;
            font-weight: 300;
        }
        
        /* 股权架构类型 */
        .structure-types {
            background: #f9f9f9;
            position: relative;
            overflow: hidden;
        }
        
        .structure-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .structure-tab {
            padding: 15px 30px;
            background: #fff;
            border-radius: 50px;
            margin: 0 10px 15px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            box-shadow: var(--shadow);
            border: 2px solid transparent;
        }
        
        .structure-tab.active {
            background: var(--accent-color);
            color: #fff;
            border-color: var(--accent-color);
            transform: translateY(-5px);
        }
        
        .structure-content {
            display: none;
        }
        
        .structure-content.active {
            display: block;
        }
        
        .structure-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .structure-text h3 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-weight: 700;
        }
        
        .structure-text p {
            margin-bottom: 20px;
            font-size: 17px;
        }
        
        .structure-features {
            margin-top: 30px;
        }
        
        .structure-feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .structure-feature i {
            color: var(--accent-color);
            margin-right: 15px;
            font-size: 18px;
        }
        
        .structure-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
        }
        
        .structure-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }
        
        .structure-image:hover img {
            transform: scale(1.05);
        }
        
        /* 架构优势 */
        .architecture-advantages {
            position: relative;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .advantage-card {
            background: #fff;
            border-radius: 12px;
            padding: 50px 30px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .advantage-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            transform: scaleX(0);
            transition: var(--transition);
            z-index: -1;
        }
        
        .advantage-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-heavy);
        }
        
        .advantage-card:hover:before {
            transform: scaleX(1);
        }
        
        .advantage-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 34px;
            transition: var(--transition);
            position: relative;
            box-shadow: 0 10px 20px rgba(10, 26, 53, 0.2);
        }
        
        .advantage-card:hover .advantage-icon {
            background: linear-gradient(135deg, var(--accent-color), #e8c44d);
            transform: rotateY(180deg) scale(1.1);
        }
        
        .advantage-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
            font-weight: 700;
        }
        
        .advantage-card p {
            color: var(--text-light);
            line-height: 1.8;
        }
        
        /* 解决方案 */
        .solutions {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .solutions .section-title h2 {
            color: #fff;
        }
        
        .solutions .section-title p {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .solution-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        
        .solution-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .solution-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
        }
        
        .solution-card h3 {
            font-size: 22px;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .solution-card p {
            margin-bottom: 25px;
            opacity: 0.9;
        }
        
        /* 响应式调整 */
        @media (max-width: 1200px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .structure-grid {
                grid-template-columns: 1fr;
            }
            
            .solutions-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 46px;
            }
            
            .page-hero p {
                font-size: 18px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .structure-text h3 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .page-hero h1 {
                font-size: 36px;
            }
            
            .page-hero p {
                font-size: 16px;
            }
            
            .structure-tab {
                padding: 12px 20px;
                font-size: 14px;
            }
        }