/* form.css - 约见形式页面专用样式 */
.page-container {
    padding-top: 116px;
}

.container-1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部banner - 主题色系 */
.form-hero {
    position: relative;
    height: 500px;
    background: url('../images/banner_xingshi.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-family: 'Aleo';
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

/* 内容区块 */
.content-section {
    padding: 100px 0;
}

.bg-light {
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Aleo';
}

.divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 0 auto;
}

/* BIOCHINA约见规划 - 修正版 */
.planning-comparison {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.planning-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.planning-card {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.planning-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* 2026卡片使用橙色渐变色系 */
.planning-card.highlight {
    border-color: #ff7b00;
    background: linear-gradient(0deg, #fff8f0, #fff);
}

.planning-card.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #ff7b00, #ff5500);
}

.planning-card.highlight .year-badge.new {
    background: linear-gradient(135deg, #ff7b00, #ff5500);
    color: white;
}

/* 2026年卡片悬停效果修正 */
.planning-card.highlight .stat-item:hover {
    background: linear-gradient(135deg, #ff7b00, #ff5500);
    transform: translateX(10px);
}

.planning-card.highlight .stat-item:hover .stat-icon {
    background: white;
    color: #ff7b00;
}

.planning-card.highlight .stat-item:hover .form-number,
.planning-card.highlight .stat-item:hover .stat-unit,
.planning-card.highlight .stat-item:hover .stat-label {
    color: white;
}

.planning-header {
    margin-bottom: 50px;
}

.planning-header h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.year-badge {
    display: inline-block;
    padding: 10px 25px;
    background: var(--light-blue);
    color: var(--primary);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
}

.year-badge.new {
    background: var(--primary);
    color: white;
}

.planning-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    padding: 25px;
    background: #fafafa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--primary);
    transform: translateX(10px);
}

.stat-item:hover .stat-icon {
    background: white;
    color: var(--primary);
}

.stat-item:hover .form-number,
.stat-item:hover .stat-unit,
.stat-item:hover .stat-label {
    color: white;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bg1{
    background: var(--primary);
}
.bg2{
    background: #ff7b00
}

.stat-icon i {
    font-size: 2rem;
}

/* 国家地区用户数字与单位间距修正 */
.stat-content {
    display: flex;
    align-items: baseline;
    gap: 4px; /* 减少间距 */
    flex: 1;
}

.form-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Aleo';
    line-height: 1;
    transition: color 0.3s ease;
}

.stat-unit {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: color 0.3s ease;
    margin-left: 2px; /* 添加微小间距 */
}

.stat-label {
    font-size: 1.3rem;
    color: #666;
    font-weight: 500;
    min-width: 100px;
    text-align: right;
    transition: color 0.3s ease;
}

/* 2026年卡片特殊样式 */
.planning-card.highlight .form-number,
.planning-card.highlight .stat-unit {
    color: #ff7b00;
}

/* 约见参与形式 - 修正版 */
.partnering-pass-section {
    margin-bottom: 80px;
}

.pass-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: left;
    font-weight: 600;
}

.pass-subtitle {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
    margin-left: 10px;
    font-family: 'Aleo';
}

.pass-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pass-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.more-options-section {
    width: 100%;
}

.options-title {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: left;
    font-weight: 600;
}

.options-subtitle {
    font-size: 1.2rem;
    color: #999;
    font-weight: 400;
    margin-left: 10px;
    font-family: 'Aleo';
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.option-image {
    height: 420px;
    overflow: hidden;
}

.option-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.option-card:hover .option-image img {
    transform: scale(1.05);
}

.option-content {
    padding: 30px;
}

.option-content h4 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.option-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* 马上注册 */
.register-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
}

.register-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.register-subtitle {
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: 'Aleo';
}

.register-desc {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.register-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.register-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    gap: 15px;
    color: var(--secondary);
}

.register-button .iconfont {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.register-button:hover .iconfont {
    transform: translateX(5px);
}

/* 现场回顾 */
.review-gallery {
    width: 100%;
}

.reviewSwiper {
    padding: 20px 0 60px;
}

.reviewSwiper .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    height: 200px;
}

.reviewSwiper .swiper-slide:hover {
    transform: translateY(-5px);
}

.reviewSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .planning-card {
        padding: 50px 40px;
    }
    
    .form-number {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .planning-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        gap: 20px;
        padding: 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .form-hero {
        height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .content-section {
        padding: 80px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .planning-card {
        padding: 40px 30px;
    }
    
    .planning-header h3 {
        font-size: 2rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stat-content {
        justify-content: center;
        gap: 2px;
    }
    
    .stat-label {
        text-align: center;
        min-width: auto;
    }
    
    .form-number {
        font-size: 2.5rem;
    }
    
    .pass-image img {
        height: 350px;
    }
    
    .option-image {
        height: 220px;
    }
    
    .register-content h2 {
        font-size: 2.5rem;
    }
    
    .register-button {
        padding: 15px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .form-hero {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .planning-card {
        padding: 30px 20px;
    }
    
    .planning-header h3 {
        font-size: 1.8rem;
    }
    
    .form-number {
        font-size: 2.2rem;
    }
    
    .stat-unit {
        font-size: 1.2rem;
    }
    
    .pass-image img {
        height: 250px;
    }
    
    .option-image {
        height: 180px;
    }
    
    .option-content {
        padding: 20px;
    }
    
    .register-content h2 {
        font-size: 2rem;
    }
    
    .register-subtitle {
        font-size: 1.2rem;
    }
    
    .register-desc {
        font-size: 1rem;
    }
    
    .register-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .reviewSwiper .swiper-slide {
        height: 200px;
    }
}