/* 重置 */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Microsoft YaHei","微软雅黑",sans-serif; background: #f5f5f5; }

/* Top 栏 */
.topWrap { width: 100%;  no-repeat; background-size: cover; }
.topDiv { width: 1200px; margin: 0 auto; height: 112px; position: relative; }
.logo { float: left; }
.logo img { max-width: 100%; height: auto; }
.topR { float: right; padding-top: 40px; }



/* Banner */
.banner_one { width: 100%; overflow: hidden; }
.slideBox { position: relative; overflow: hidden; }
.slideBox .bd img { width: 100%; height: auto; display: block; }
@media (min-width: 992px) {
    .slideBox .bd img { max-height: 380px; object-fit: cover; }
}
.slideBox .prev, .slideBox .next { display: none; }

/* 主内容区 */
.vsb-container.container {
    width: 1200px; margin: 20px auto; overflow: hidden; padding: 0 15px;
}

/* 左栏 - 通知 */
.new_inforBox {
    width: 66.666%; float: left; padding-right: 15px;
}
.new_inforBox .dynamic {
    border-bottom: 2px solid #c0392b; padding: 10px 0; margin-bottom: 15px;
    overflow: hidden;
}
.new_inforBox .dynamic h2 {
    font-size: 20px; color: #c0392b; float: left; font-weight: bold;
}
.new_inforBox .dynamic span { float: right; }
.new_inforBox .new_list ul { list-style: none; }
.new_inforBox .new_list ul li {
    border-bottom: 1px dashed #ddd; padding: 8px 0; overflow: hidden;
    text-overflow: ellipsis;
}
.new_inforBox .new_list ul li a {
    color: #333; text-decoration: none; font-size: 14px;
}
.new_inforBox .new_list ul li a:hover { color: #c0392b; }
.new_inforBox .new_list ul li a span { color: #888; margin-right: 8px; }

/* 右栏 - 报名 */
.informBox {
    width: 33.333%; float: left; padding-left: 15px;
}
.informBox img { width: 100%; height: auto; display: block; }

/* ===== 闪闪发光报名按钮 ===== */
.shiny-register-btn {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-decoration: none; border-radius: 12px; padding: 22px 16px; margin-bottom: 5px;
    background: linear-gradient(135deg, #c0392b, #e74c3c, #c0392b);
    background-size: 200% 200%; position: relative; overflow: hidden;
    box-shadow: 0 4px 15px rgba(192,57,43,0.4); transition: all 0.3s ease;
    animation: shinyBg 3s ease infinite;
}
.shiny-register-btn:hover {
    transform: translateY(-3px); box-shadow: 0 8px 25px rgba(192,57,43,0.6);
}
.shiny-register-btn:active { transform: translateY(0); }
/* 扫光效果 */
.shiny-register-btn::before {
    content: ''; position: absolute; top: -50%; left: -100%; width: 60%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(25deg); animation: shineSweep 2.5s ease-in-out infinite;
}
/* 圆点光晕 */
.shiny-register-btn::after {
    content: ''; position: absolute; top: 15%; right: 15%;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    filter: blur(12px); animation: glowPulse 2s ease-in-out infinite;
}
.shiny-register-btn .btn-icon { font-size: 40px; position: relative; z-index: 1; line-height: 1; }
.shiny-register-btn .btn-text {
    font-size: 26px; font-weight: bold; color: #fff; position: relative; z-index: 1;
    margin-top: 6px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.shiny-register-btn .btn-sub {
    font-size: 13px; color: rgba(255,255,255,0.85); position: relative; z-index: 1;
    margin-top: 4px; letter-spacing: 1px;
}
@keyframes shinyBg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shineSweep {
    0% { left: -100%; }
    30% { left: 120%; }
    100% { left: 120%; }
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

.informBox .dynamic {
    border-bottom: 2px solid #c0392b; padding: 10px 0; margin: 10px 0;
}
.informBox .dynamic h2 {
    font-size: 18px; color: #c0392b; font-weight: bold;
}
.informBox .infor_list ul { list-style: none; }
.informBox .infor_list ul li {
    border-bottom: 1px dashed #ddd; padding: 6px 0;
}
.informBox .infor_list ul li a {
    color: #555; text-decoration: none; font-size: 13px;
}

/* ===== 重要日程加强 ===== */
.schedule-container {
    background: linear-gradient(135deg, #fff5f5, #fff);
    border: 1px solid #f0c0c0;
    border-radius: 10px; padding: 12px 14px; margin-top: 10px;
    box-shadow: 0 2px 8px rgba(192,57,43,0.1);
}
.informBox .schedule-title {
    font-size: 20px; font-weight: bold; padding: 6px 0 10px 0; margin: 0;
    display: flex; align-items: center; gap: 8px;
    border-bottom: 2px solid #c0392b;
}
.informBox .schedule-title .cal-icon { font-size: 24px; }
.informBox .schedule-title .title-text {
    background: linear-gradient(90deg, #c0392b, #e74c3c, #f39c12, #e74c3c, #c0392b);
    background-size: 300% 100%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3s linear infinite;
}
.schedule-item {
    display: flex; align-items: flex-start; padding: 8px 0;
    border-bottom: 1px dashed #e0c0c0; gap: 10px;
    transition: all 0.3s ease;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover {
    background: rgba(192,57,43,0.05); margin: 0 -6px; padding-left: 16px; padding-right: 6px;
    border-radius: 6px;
}
.schedule-item .date-badge {
    flex-shrink: 0; width: 65px; height: 28px;
    background: linear-gradient(135deg, #c0392b, #e74c3c);
    border-radius: 14px; color: #fff; font-size: 11px; font-weight: bold;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px; box-shadow: 0 2px 4px rgba(192,57,43,0.3);
}
.schedule-item .event-text {
    color: #333; font-size: 13px; line-height: 1.5;
    font-weight: 500; text-decoration: none; flex: 1;
}
.schedule-item:hover .event-text { color: #c0392b; }

/* Footer */
.footWrap { background: #c0392b; padding: 20px 0; text-align: center; }
.footDiv_one { width: 1200px; margin: 0 auto; color: #fff; }
.footDiv_one a { color: #fff; text-decoration: none; margin: 0 10px; }
.footDiv_one img { vertical-align: middle; margin: 5px; }


.informBox .dynamic h2 {
    background: linear-gradient(90deg, #c0392b, #e74c3c, #f39c12, #e74c3c, #c0392b) !important;
    background-size: 300% 100% !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: titleShine 3s linear infinite !important;
}

@keyframes titleShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* ===== 响应式 ===== */
@media (max-width: 991.98px) {
    .topDiv { width: 100%; height: auto; padding: 10px; }
    .logo { float: none; text-align: center; }
    .logo img { width: 100%; max-width: 650px; }
    .topR { float: none; text-align: center; padding-top: 10px; }

    .navWrap { position: relative; display: flex; align-items: center; padding: 0 15px; }
    .nav { display: none; }
    .nav-toggle-btn {
        display: block !important; background: none; border: 1px solid rgba(255,255,255,0.5);
        border-radius: 4px; padding: 8px 12px; cursor: pointer; margin-left: auto;
    }
    .nav-toggle-btn .icon-bar {
        display: block; width: 22px; height: 2px; background: #fff; margin: 4px 0;
    }
    .nav-toggle-btn.active .icon-bar:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
    .nav-toggle-btn.active .icon-bar:nth-child(2) { opacity: 0; }
    .nav-toggle-btn.active .icon-bar:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

    .nav-mobile-dropdown { display: none; position: absolute; top: 100%; left: 0; right: 0;
        background: #c0392b; z-index: 999; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
    .nav-mobile-dropdown.open { display: block; }
    .nav-mobile-dropdown ul { list-style: none; }
    .nav-mobile-dropdown ul li { border-bottom: 1px solid rgba(255,255,255,0.15); }
    .nav-mobile-dropdown ul li a {
        display: block; padding: 12px 20px; color: #fff; text-decoration: none; font-size: 15px;
    }
    .nav-mobile-dropdown ul li a:hover { background: #a93226; }

    .vsb-container.container { width: 100%; padding: 0 10px; }
    .new_inforBox { width: 100%; float: none; padding-right: 0; margin-bottom: 20px; }
    .informBox { width: 100%; float: none; padding-left: 0; }
    .new_inforBox .new_list ul li { white-space: normal; text-overflow: clip; }

    .footDiv_one { width: 100%; }
    .footDiv_one a { display: inline-block; margin: 5px 8px; font-size: 13px; }
}

@media (min-width: 992px) {
    .nav-toggle-btn, .nav-mobile-dropdown { display: none !important; }
}