

/* 合规账独享样式部分 */
.compliance-hero {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/template/jia/images/1.jpg');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
    text-align: center;
}

.compliance-hero-content {
    max-width: 900px;
    color: white;
    margin: 0 auto;
    padding: 0 20px;
}

.compliance-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
}

.compliance-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

.compliance-price-tag {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

/* 服务卡片 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #1a5fb4;
    margin-bottom: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #e74c3c;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-card p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #6c757d;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e74c3c;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 风险警示部分 */
.risk-warning {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.risk-warning h2 {
    color: #2d3748;
}

.risk-warning h2:after {
    background: #e74c3c;
}

.risk-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.risk-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-left: 5px solid #e74c3c;
}

.risk-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.risk-item i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #e74c3c;
}

/* 工作内容部分 */
.work-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.work-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #1a5fb4;
}

.work-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.work-item-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5fb4;
    margin-bottom: 15px;
    display: block;
}

/* 团队展示 */
.team-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
}

.team-text {
    flex: 1;
}

.team-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-badge {
    display: inline-block;
    background: #1a5fb4;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 对比表格 */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #f8f9fa;
}

.comparison-table th {
    background: #1a5fb4;
    color: white;
    font-weight: 600;
}

.comparison-table tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tr:hover {
    background: rgba(26, 95, 180, 0.05);
}

.bad {
    color: #e74c3c;
    font-weight: 600;
}

.good {
    color: #27ae60;
    font-weight: 600;
}

/* 流程板块 */
.process-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 4px;
    background: #1a5fb4;
    z-index: 1;
    border-radius: 2px;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    width: 180px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1s; }

.step-icon {
    width: 80px;
    height: 80px;
    background: #1a5fb4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(26, 95, 180, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.step-icon:nth-child(2) { animation-delay: 0.5s; }
.step-icon:nth-child(3) { animation-delay: 1s; }
.step-icon:nth-child(4) { animation-delay: 1.5s; }
.step-icon:nth-child(5) { animation-delay: 2s; }

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA部分 */
.cta-section {
    background: #1a5fb4;
    color: white;
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: white;
}

.cta-section h2:after {
    background: white;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
}

.cta-section .btn {
    background: white;
    color: #1a5fb4;
    margin-top: 30px;
}

.cta-section .btn:hover {
    background: #f0f0f0;
    transform: translateY(-5px);
}

/* 动画 */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* 响应式设计 - 合规账独享部分 */
@media (max-width: 992px) {
    .team-showcase {
        flex-direction: column;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    
    .process-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .compliance-hero {
        margin-top: 80px;
        height: 70vh;
    }
    
    .compliance-hero h1 {
        font-size: 2.5rem;
    }
    
    .compliance-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-grid, .risk-items, .work-content {
        grid-template-columns: 1fr;
    }
    
    .compliance-hero h1 {
        font-size: 2rem;
    }
    
    .compliance-hero p {
        font-size: 1rem;
    }
}