/* 合规账页面独有样式 */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #1a3a6c 0%, #2c5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-highlight {
    display: inline-block;
    background: rgba(74, 140, 255, 0.2);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid rgba(74, 140, 255, 0.5);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/template/jia/images/2.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

/* 价格卡片 */
.price-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto 50px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
}

.price-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.price-header {
    background: linear-gradient(to right, #1a3a6c, #4a8cff);
    color: white;
    padding: 30px;
}

.price-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 20px 0;
    position: relative;
    display: inline-block;
}

.price-tag::before {
    content: '¥';
    font-size: 1.8rem;
    position: absolute;
    top: 5px;
    left: -25px;
}

.price-period {
    font-size: 1.2rem;
    opacity: 0.9;
}

.price-body {
    padding: 40px 30px;
}

.price-features {
    text-align: left;
    margin-bottom: 30px;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.price-features i {
    color: #4a8cff;
    margin-right: 10px;
    margin-top: 3px;
    font-size: 1.1rem;
}

/* 适用对象部分 */
.applicable-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.applicable-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.applicable-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    text-align: center;
    padding: 40px 25px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.applicable-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.applicable-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.applicable-icon {
    font-size: 3.5rem;
    color: #4a8cff;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.applicable-card:hover .applicable-icon {
    transform: scale(1.1) rotate(5deg);
}

.applicable-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a3a6c;
}

/* 风险部分 */
.risk-section {
    background-color: #fff;
}

.risk-content {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.risk-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.risk-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}

.risk-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.risk-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e74c3c;
    display: flex;
    align-items: center;
}

.risk-item h4 i {
    margin-right: 10px;
}

/* 工作内容部分 */
.work-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.work-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.work-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #1a3a6c, #4a8cff);
    border-radius: 2px;
}

.work-item {
    position: relative;
    margin-bottom: 50px;
    width: 45%;
    opacity: 0;
    transform: translateY(30px);
}

.work-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.work-item:nth-child(odd) {
    left: 0;
    padding-right: 60px;
    text-align: right;
}

.work-item:nth-child(even) {
    left: 55%;
    padding-left: 60px;
}

.work-item::before {
    content: '';
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    background: #4a8cff;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(74, 140, 255, 0.2);
}

.work-item:nth-child(odd)::before {
    right: -10px;
}

.work-item:nth-child(even)::before {
    left: -10px;
}

.work-item h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a3a6c;
    display: flex;
    align-items: center;
}

.work-item:nth-child(odd) h4 {
    justify-content: flex-end;
}

.work-item h4 i {
    margin-right: 10px;
}

.work-item:nth-child(odd) h4 i {
    margin-right: 0;
    margin-left: 10px;
    order: 2;
}

/* 专业认可部分 */
.trust-section {
    background-color: #fff;
}

.trust-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.trust-text {
    flex: 1;
}

.trust-text h3 {
    font-size: 2rem;
    color: #1a3a6c;
    margin-bottom: 20px;
}

.trust-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.trust-image:hover {
    transform: perspective(1000px) rotateY(5deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* CTA部分 */
.cta-section {
    background: linear-gradient(135deg, #1a3a6c 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.cta-section .section-title h2,
.cta-section .section-title p {
    color: white;
}

.cta-section .section-title::after {
    background: linear-gradient(to right, #4a8cff, #8bc1ff);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #1a3a6c;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-btn.secondary:hover {
    background: white;
    color: #1a3a6c;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 992px) {
    .trust-content {
        flex-direction: column;
    }
    
    .work-timeline::before {
        left: 30px;
    }
    
    .work-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 20px !important;
        text-align: left !important;
    }
    
    .work-item::before {
        left: 20px !important;
    }
    
    .work-item h4 i {
        margin-right: 10px !important;
        margin-left: 0 !important;
        order: 0 !important;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .applicable-cards,
    .risk-list {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    
    .price-tag {
        font-size: 2.8rem;
    }
}