/* ===== registration.css - 注册参会页面专用样式 ===== */
/* 简化版：单一价格，风格与会议介绍/酒店/交通等页面统一 */

/* 页面基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 注册参会主容器 */
.registration-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
    font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
}

/* 内容包装器 - 白色卡片效果 */
.registration-content-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 60px;
    transition: all 0.3s ease;
}

/* ===== 面包屑导航 ===== */
.registration-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    color: #718096;
    font-size: 0.95rem;
}

.registration-breadcrumb a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.registration-breadcrumb a:hover {
    color: #08358f;
}

.registration-breadcrumb i {
    margin: 0 10px;
    font-size: 0.75rem;
    color: #cbd5e0;
}

.registration-breadcrumb .current {
    color: #08358f;
    font-weight: 600;
}

/* ===== 注册参会主体内容 ===== */
.registration-content {
    width: 100%;
}

/* 页面主标题 */
.page-title {
    color: #08358f;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 3px solid #08358f;
    text-align: center;
}

/* 区块通用样式 */
.section-block {
    margin-bottom: 40px;
}

.section-block:last-child {
    margin-bottom: 0;
}

/* 章节标题 - 与会议介绍风格一致 */
.section-title {
    color: #08358f;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    position: relative;
    display: flex;
    align-items: center;
}

.title-icon {
    display: inline-flex;
    margin-right: 12px;
    color: #ff6b6b;
    font-size: 1.6rem;
}

/* 分割线 */
.section-divider {
    text-align: center;
    margin: 30px 0 40px;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0e7ff, transparent);
    z-index: 1;
}

.divider-icon {
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background-color: #08358f;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(8, 53, 143, 0.2);
}

/* ===== 流程列表 ===== */
.process-list {
    background-color: #f8fafc;
    border-radius: 16px;
    padding: 25px 30px;
    border: 1px solid #edf2f7;
}

.process-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}
.process-item a{color: #337FE5;font-weight: bold
}
.process-item a:hover{color: #08358f;}
.process-item:last-child {
    margin-bottom: 0;
}

.process-icon {
    flex-shrink: 0;
    width: 30px;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-right: 10px;
}

.process-text {
    flex: 1;
    font-size: 1.05rem;
    color: #2d3748;
}

/* ===== 价格表格 ===== */
.price-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 15px;
    border-radius: 16px;
    border: 1px solid #edf2f7;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}

.price-table th {
    background: linear-gradient(135deg, #08358f, #1a4cb3);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 16px 20px;
    text-align: center;
    white-space: nowrap;
}

.price-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #edf2f7;
    font-size: 1.05rem;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background-color: #f8fafc;
}

.price-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #08358f;
    background-color: #f9fbfd;
}

.price-early {
    color: #ff6b6b;
    font-weight: 700;
    font-size: 1.1rem;
}

.price-regular {
    color: #2d3748;
    font-weight: 600;
}

/* 表格说明 */
.table-note {
    margin-top: 15px;
    padding: 12px 18px;
    background-color: #f0f7ff;
    border-radius: 12px;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(26, 76, 179, 0.1);
}

.table-note i {
    color: #08358f;
    font-size: 1rem;
}

/* ===== 注意事项列表 ===== */
.notice-list {
    background-color: #fef9e7;
    border-radius: 16px;
    padding: 25px 30px;
    border: 1px solid #ffeeba;
}

.notice-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.6;
}

.notice-item:last-child {
    margin-bottom: 0;
}

.notice-bullet {
    flex-shrink: 0;
    width: 30px;
    color: #ffb347;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 10px;
}

.notice-text {
    flex: 1;
    font-size: 1.05rem;
    color: #5f5e4a;
}

/* ===== 注册缴费按钮区域 ===== */
.registration-footer {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #edf2f7;
    text-align: center;
}

.registration-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 60px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(8, 53, 143, 0.15);
    border: none;
    cursor: pointer;
    min-width: 250px;
    background: linear-gradient(135deg, #08358f, #1a4cb3);
    color: white;
}

.register-btn:hover {
    background: linear-gradient(135deg, #1a4cb3, #08358f);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(8, 53, 143, 0.3);
}

.register-btn i {
    font-size: 1.3rem;
}

.register-note {
    margin-top: 20px;
    color: #718096;
    font-size: 0.95rem;
    font-style: italic;
}

/* ===== 响应式设计 ===== */

/* 1400px以下 */
@media screen and (max-width: 1400px) {
    .registration-container {
        max-width: 1200px;
        padding: 45px 20px;
    }
    .registration-content-wrapper {
        padding: 50px;
    }
}

/* 1200px以下 */
@media screen and (max-width: 1200px) {
    .registration-container {
        max-width: 100%;
        padding: 40px 20px;
    }
    .registration-content-wrapper {
        padding: 45px;
    }
    .page-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
}

/* 992px以下 - 平板 */
@media screen and (max-width: 992px) {
    .registration-container {
        padding: 35px 15px;
    }
    .registration-content-wrapper {
        padding: 40px 30px;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .process-text,
    .notice-text,
    .price-table td {
        font-size: 0.95rem;
    }
    .register-btn {
        padding: 16px 50px;
        font-size: 1.1rem;
        min-width: 220px;
    }
}

/* 768px以下 - 移动端 */
@media screen and (max-width: 768px) {
    .registration-container {
        padding: 30px 15px;
    }
    .registration-content-wrapper {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .page-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .title-icon {
        font-size: 1.4rem;
        margin-right: 8px;
    }

    .divider-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.5rem;
    }

    .process-list,
    .notice-list {
        padding: 20px;
    }

    .process-icon,
    .notice-bullet {
        width: 25px;
        font-size: 1rem;
    }

    .process-text,
    .notice-text {
        font-size: 0.9rem;
    }

    .price-table th {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .price-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .price-early {
        font-size: 1rem;
    }

    .register-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1rem;
    }
}

/* 576px以下 - 手机小屏 */
@media screen and (max-width: 576px) {
    .registration-content-wrapper {
        padding: 25px 15px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .process-item,
    .notice-item {
        flex-direction: column;
    }

    .process-icon,
    .notice-bullet {
        margin-bottom: 5px;
    }

    .price-table th,
    .price-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .table-note {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .register-note {
        font-size: 0.85rem;
    }
}

/* 打印样式 */
@media print {
    .registration-content-wrapper {
        box-shadow: none;
        padding: 20px;
    }
    .page-banner,
    .header,
    .footer,
    .register-btn {
        display: none;
    }
}


 .precourse-block {
     margin-bottom: 40px;
 }
.precourse-wrapper {
    background: linear-gradient(145deg, #f0f5fe, #ffffff);
    border-radius: 24px;
    padding: 30px 35px;
    border: 1px solid rgba(8, 53, 143, 0.15);
    box-shadow: 0 12px 30px rgba(8, 53, 143, 0.06);
    transition: all 0.3s;
}
.precourse-wrapper:hover {
    box-shadow: 0 18px 40px rgba(8, 53, 143, 0.12);
}
.precourse-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #cddcff;
}
.precourse-icon {
    width: 54px;
    height: 54px;
    background: #08358f;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    transform: rotate(-3deg);
    box-shadow: 0 10px 15px rgba(8, 53, 143, 0.2);
}
.precourse-icon i {
    color: white;
    font-size: 30px;
    transform: rotate(3deg);
}
.precourse-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #08358f;
    letter-spacing: 1px;
    line-height: 1.2;
}
.precourse-sub {
    font-size: 1.1rem;
    color: #ff6b6b;
    font-weight: 500;
    margin-left: 10px;
    background: #fff0f0;
    padding: 4px 14px;
    border-radius: 40px;
    display: inline-block;
}
.precourse-desc {
    font-size: 1.08rem;
    line-height: 1.75;
    color: #1e293b;

    border-radius: 20px;
}
.precourse-desc p {
    margin-bottom: 12px;
}
.precourse-desc p:last-child {
    margin-bottom: 0;
}
.precourse-desc i.fa-chevron-circle-right {
    color: #ff6b6b;
    margin-right: 8px;
}

/* 响应式微调（去除feature相关） */
@media (max-width: 768px) {
    .precourse-wrapper { padding: 22px 18px; }
    .precourse-title { font-size: 1.6rem; }
    .precourse-header { flex-wrap: wrap; }
    .precourse-icon { width: 46px; height: 46px; margin-right: 12px; }
    .precourse-icon i { font-size: 24px; }
    .precourse-sub { font-size: 0.95rem; margin-left: 0; margin-top: 8px; }
}
@media (max-width: 576px) {
    .precourse-desc { font-size: 0.95rem; }
}
