/* ========== 高考学子爱心上云 - 活动页面样式 ========== */

/* ====== Banner ====== */
.Heziyun-gaokao-banner {
    background: linear-gradient(135deg, #0d0221 0%, #1a0533 20%, #2d1b69 50%, #4a2c8a 80%, #6b3fa0 100%);
    min-height: 560px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* 粒子画布 */
.Heziyun-gaokao-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* 浮动装饰 */
.Heziyun-gaokao-bannerDeco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.Heziyun-gaokao-deco1 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,215,0,0.12) 0%, transparent 70%);
    top: -80px; right: -60px;
    animation: gaokaoFloat 8s ease-in-out infinite;
}
.Heziyun-gaokao-deco2 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(100,200,255,0.1) 0%, transparent 70%);
    bottom: -40px; left: -40px;
    animation: gaokaoFloat 10s ease-in-out infinite reverse;
}
.Heziyun-gaokao-deco3 {
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    top: 30%; left: 15%;
    animation: gaokaoFloat 6s ease-in-out infinite 2s;
}
.Heziyun-gaokao-deco4 {
    width: 60px; height: 60px;
    background: radial-gradient(circle, rgba(255,170,0,0.2) 0%, transparent 70%);
    top: 20%; right: 25%;
    animation: gaokaoFloat 7s ease-in-out infinite 1s;
}
.Heziyun-gaokao-deco5 {
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(107,63,160,0.2) 0%, transparent 70%);
    bottom: 10%; right: 10%;
    animation: gaokaoFloat 9s ease-in-out infinite 3s;
}

@keyframes gaokaoFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(15px, -20px) scale(1.05); }
    66% { transform: translate(-10px, 15px) scale(0.95); }
}

.Heziyun-gaokao-banner .Heziyun-defaultWidth {
    position: relative;
    z-index: 2;
}

.Heziyun-gaokao-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,215,0,0.15);
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.Heziyun-gaokao-banner .Heziyun-banner-title span {
    font-size: 52px;
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffe066, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    animation: gaokaoShimmer 3s ease-in-out infinite;
}

@keyframes gaokaoShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.Heziyun-gaokao-banner .Heziyun-banner-title p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
}

/* 倒计时 */
.Heziyun-gaokao-bannerSub {
    margin: 24px 0 8px;
}

.Heziyun-gaokao-countdown {
    display: flex;
    align-items: center;
    gap: 16px;
}

.Heziyun-gaokao-countdownLabel {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.Heziyun-gaokao-countdownNums {
    display: flex;
    align-items: center;
    gap: 6px;
}

.Heziyun-gaokao-countdownBlock {
    background: rgba(255,215,0,0.12);
    border: 1px solid rgba(255,215,0,0.25);
    border-radius: 8px;
    padding: 6px 10px;
    text-align: center;
    min-width: 48px;
    backdrop-filter: blur(6px);
}

.Heziyun-gaokao-countdownBlock span {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.2;
}

.Heziyun-gaokao-countdownBlock i {
    font-style: normal;
    font-size: 11px;
    color: rgba(255,215,0,0.6);
}

.Heziyun-gaokao-countdownNums em {
    font-style: normal;
    font-size: 20px;
    color: rgba(255,215,0,0.5);
    font-weight: 700;
}

/* Banner按钮 */
.Heziyun-gaokao-bannerBtn {
    display: inline-flex !important;
    align-items: center;
    background: linear-gradient(135deg, #ffd700, #ffaa00) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border: none !important;
    padding: 6px 20px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    transition: all 0.3s !important;
    box-shadow: 0 2px 12px rgba(255, 215, 0, 0.25);
}

@keyframes gaokaoBtnShine {
    0% { transform: translateX(-100%) rotate(25deg); }
    30%, 100% { transform: translateX(100%) rotate(25deg); }
}

.Heziyun-gaokao-bannerBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(255, 215, 0, 0.55) !important;
}

/* ====== 数据跑马灯 ====== */
.Heziyun-gaokao-stats {
    background: linear-gradient(135deg, #4a2c8a, #6b3fa0, #4a2c8a);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.Heziyun-gaokao-statsInner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.Heziyun-gaokao-statItem {
    text-align: center;
    padding: 0 48px;
}

.Heziyun-gaokao-statNum {
    font-size: 36px;
    font-weight: 800;
    color: #ffd700;
    line-height: 1.2;
}

.Heziyun-gaokao-statLabel {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.Heziyun-gaokao-statDivide {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ====== 活动介绍 ====== */
.Heziyun-gaokao-intro {
    background: #fff;
}

.Heziyun-gaokao-introContent {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.Heziyun-gaokao-introItem {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
    padding: 40px 24px 32px;
    border-radius: 20px;
    background: #f8f6ff;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.Heziyun-gaokao-introItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4a2c8a, #ffd700, #4a2c8a);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s;
    animation: gaokaoShimmer 3s ease-in-out infinite;
}

.Heziyun-gaokao-introItem:hover::before {
    opacity: 1;
}

.Heziyun-gaokao-introItem:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(74, 44, 138, 0.15);
}

.Heziyun-gaokao-introIcon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}

.Heziyun-gaokao-introIcon1 { background: linear-gradient(135deg, #667eea, #764ba2); }
.Heziyun-gaokao-introIcon2 { background: linear-gradient(135deg, #f093fb, #f5576c); }
.Heziyun-gaokao-introIcon3 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.Heziyun-gaokao-introIcon4 { background: linear-gradient(135deg, #43e97b, #38f9d7); }

.Heziyun-gaokao-introItem:hover .Heziyun-gaokao-introIcon {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.Heziyun-gaokao-introIcon svg {
    width: 44px;
    height: 44px;
}

.Heziyun-gaokao-introItem > span {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1a0533;
    margin-bottom: 12px;
}

.Heziyun-gaokao-introItem > p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.Heziyun-gaokao-introShine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
    transition: transform 0.6s;
    pointer-events: none;
}

.Heziyun-gaokao-introItem:hover .Heziyun-gaokao-introShine {
    transform: translate(30%, 30%);
}

/* ====== 产品卡片通用 ====== */
.Heziyun-gaokao-sectionIcon {
    text-align: center;
    margin-bottom: 32px;
    opacity: 0.8;
}

.Heziyun-gaokao-priceCards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.Heziyun-gaokao-card {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    border: 2px solid #eee;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.Heziyun-gaokao-card:hover::before {
    left: 100%;
}

.Heziyun-gaokao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(74, 44, 138, 0.18);
    border-color: #4a2c8a;
}

.Heziyun-gaokao-cardHot {
    border-color: #ffd700;
    background: linear-gradient(180deg, #fffdf0 0%, #fff 30%);
    transform: scale(1.03);
}

.Heziyun-gaokao-cardHot:hover {
    border-color: #ffd700;
    box-shadow: 0 24px 64px rgba(255, 215, 0, 0.25);
    transform: scale(1.03) translateY(-8px);
}

.Heziyun-gaokao-cardGlow {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b, #ffd700);
    background-size: 200% 100%;
    animation: gaokaoShimmer 2s ease-in-out infinite;
}

.Heziyun-gaokao-cardTag {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0533;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 0 18px 0 18px;
}

.Heziyun-gaokao-cardName {
    font-size: 22px;
    font-weight: 700;
    color: #1a0533;
    margin-bottom: 8px;
}

.Heziyun-gaokao-cardDesc {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.Heziyun-gaokao-cardConfig {
    background: #f8f6ff;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.Heziyun-gaokao-configItem {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px dashed #e0d8f0;
}

.Heziyun-gaokao-configItem:last-child {
    border-bottom: none;
}

.Heziyun-gaokao-configLabel {
    font-size: 13px;
    color: #999;
}

.Heziyun-gaokao-configValue {
    font-size: 13px;
    color: #1a0533;
    font-weight: 600;
}

.Heziyun-gaokao-cardOriginal {
    font-size: 13px;
    color: #bbb;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.Heziyun-gaokao-cardPrice {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.Heziyun-gaokao-priceUnit {
    font-size: 18px;
    color: #e74c3c;
    font-weight: 700;
}

.Heziyun-gaokao-priceNum {
    font-size: 44px;
    color: #e74c3c;
    font-weight: 800;
    line-height: 1;
    margin: 0 2px;
}

.Heziyun-gaokao-priceFree {
    color: #51cf66;
    font-size: 48px;
}

.Heziyun-gaokao-pricePeriod {
    font-size: 14px;
    color: #999;
}

.Heziyun-gaokao-cardBtn {
    display: inline-block;
    width: 100%;
    padding: 13px 0;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s;
    background: linear-gradient(135deg, #4a2c8a, #6b3fa0);
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-cardBtn:hover {
    background: linear-gradient(135deg, #5a3c9a, #7b4fb0);
    box-shadow: 0 6px 24px rgba(74, 44, 138, 0.35);
    transform: translateY(-2px);
}

.Heziyun-gaokao-cardBtnFree {
    background: linear-gradient(135deg, #51cf66, #40c057) !important;
    color: #fff !important;
}

.Heziyun-gaokao-cardBtnFree:hover {
    background: linear-gradient(135deg, #69db7c, #51cf66) !important;
    box-shadow: 0 6px 24px rgba(81, 207, 102, 0.4);
}

.Heziyun-gaokao-cardHot .Heziyun-gaokao-cardBtn {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0533;
}

.Heziyun-gaokao-cardHot .Heziyun-gaokao-cardBtn:hover {
    background: linear-gradient(135deg, #ffe033, #ffbb22);
    box-shadow: 0 6px 24px rgba(255, 215, 0, 0.45);
}

/* ====== 各区背景 ====== */
.Heziyun-gaokao-server {
    background: linear-gradient(180deg, #f8f6ff 0%, #f0ecff 100%);
}

.Heziyun-gaokao-host {
    background: #fff;
}

.Heziyun-gaokao-cloudpc {
    background: linear-gradient(180deg, #f8f6ff 0%, #f0ecff 100%);
}

.Heziyun-gaokao-domain {
    background: #fff;
}

.Heziyun-gaokao-cardDomain {
    padding: 40px 24px 32px;
}

.Heziyun-gaokao-domainSuffix {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #4a2c8a, #6b3fa0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.Heziyun-gaokao-cardDomain:hover .Heziyun-gaokao-domainSuffix {
    transform: scale(1.08);
}

.Heziyun-gaokao-domainDesc {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
}

.Heziyun-gaokao-cardDomainFree {
    border-color: #51cf66 !important;
}

.Heziyun-gaokao-cardDomainFree .Heziyun-gaokao-domainSuffix {
    background: linear-gradient(135deg, #51cf66, #40c057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== 参与流程 ====== */
.Heziyun-gaokao-process {
    background: linear-gradient(180deg, #0d0221 0%, #1a0533 40%, #2d1b69 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffd700' fill-opacity='0.03' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.Heziyun-gaokao-process .Heziyun-commodity-title span {
    color: #fff;
}

.Heziyun-gaokao-process .Heziyun-commodity-title p {
    color: rgba(255, 255, 255, 0.7);
}

.Heziyun-gaokao-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.Heziyun-gaokao-stepItem {
    flex: 1;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    padding: 36px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    cursor: default;
}

.Heziyun-gaokao-stepItem:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(255, 215, 0, 0.1);
    border-color: rgba(255,215,0,0.3);
}

.Heziyun-gaokao-stepNum {
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0533;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(255,215,0,0.3);
}

.Heziyun-gaokao-stepIcon {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
}

.Heziyun-gaokao-stepIcon svg {
    width: 100%;
    height: 100%;
}

.Heziyun-gaokao-stepTitle {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffd700;
}

.Heziyun-gaokao-stepItem p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
}

.Heziyun-gaokao-stepLine {
    display: flex;
    align-items: center;
    padding-top: 80px;
    min-width: 40px;
    flex: 0 0 40px;
}

.Heziyun-gaokao-stepLineInner {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,215,0,0.1), rgba(255,215,0,0.6), rgba(255,215,0,0.1));
    position: relative;
}

.Heziyun-gaokao-stepLineInner::after {
    content: '';
    position: absolute;
    top: -3px;
    right: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd700;
    box-shadow: 0 0 12px rgba(255,215,0,0.6);
    animation: gaokaoPulse 2s ease-in-out infinite;
}

@keyframes gaokaoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
}

/* ====== 学子心声 ====== */
.Heziyun-gaokao-testimonials {
    background: linear-gradient(180deg, #f0ecff 0%, #fff 100%);
}

.Heziyun-gaokao-testiCards {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.Heziyun-gaokao-testiCard {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 32px 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s;
    position: relative;
    cursor: default;
}

.Heziyun-gaokao-testiCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(74, 44, 138, 0.12);
    border-color: #4a2c8a;
}

.Heziyun-gaokao-testiQuote {
    font-size: 56px;
    line-height: 1;
    color: #4a2c8a;
    opacity: 0.15;
    font-weight: 800;
    position: absolute;
    top: 16px;
    left: 20px;
}

.Heziyun-gaokao-testiCard > p {
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.Heziyun-gaokao-testiAuthor {
    display: flex;
    align-items: center;
    gap: 14px;
}

.Heziyun-gaokao-testiAvatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.Heziyun-gaokao-testiAvatar svg {
    width: 100%;
    height: 100%;
}

.Heziyun-gaokao-testiAuthor span {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1a0533;
}

.Heziyun-gaokao-testiAuthor em {
    font-style: normal;
    font-size: 12px;
    color: #999;
}

/* ====== 活动规则(手风琴) ====== */
.Heziyun-gaokao-rules {
    background: #fff;
}

.Heziyun-gaokao-rulesContent {
    max-width: 800px;
    margin: 0 auto;
}

.Heziyun-gaokao-ruleItem {
    border-radius: 16px;
    margin-bottom: 12px;
    background: #f8f6ff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.Heziyun-gaokao-ruleItem:hover {
    border-color: #e0d8f0;
}

.Heziyun-gaokao-ruleActive {
    background: #fff;
    border-color: #4a2c8a;
    box-shadow: 0 4px 20px rgba(74,44,138,0.1);
}

.Heziyun-gaokao-ruleHeader {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}

.Heziyun-gaokao-ruleHeader span {
    font-size: 16px;
    font-weight: 700;
    color: #1a0533;
    padding-left: 16px;
    border-left: 4px solid #4a2c8a;
}

.Heziyun-gaokao-ruleActive .Heziyun-gaokao-ruleHeader span {
    border-left-color: #ffd700;
}

.Heziyun-gaokao-ruleArrow {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a2c8a;
    transition: transform 0.3s;
    border-radius: 50%;
    background: rgba(74,44,138,0.08);
}

.Heziyun-gaokao-ruleActive .Heziyun-gaokao-ruleArrow {
    transform: rotate(180deg);
    color: #ffd700;
    background: rgba(255,215,0,0.12);
}

.Heziyun-gaokao-ruleBody {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
    padding: 0 24px 0 44px;
}

.Heziyun-gaokao-ruleActive .Heziyun-gaokao-ruleBody {
    max-height: 200px;
    padding: 0 24px 20px 44px;
}

.Heziyun-gaokao-ruleBody p {
    font-size: 14px;
    color: #666;
    line-height: 1.9;
}

/* ====== CTA ====== */
.Heziyun-gaokao-cta {
    background: linear-gradient(135deg, #0d0221 0%, #1a0533 30%, #2d1b69 60%, #4a2c8a 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-ctaSparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: gaokaoTwinkle 2s ease-in-out infinite;
}

.Heziyun-gaokao-sp1 { top: 15%; left: 10%; animation-delay: 0s; }
.Heziyun-gaokao-sp2 { top: 25%; right: 15%; animation-delay: 0.5s; }
.Heziyun-gaokao-sp3 { bottom: 20%; left: 20%; animation-delay: 1s; }
.Heziyun-gaokao-sp4 { bottom: 30%; right: 10%; animation-delay: 1.5s; }
.Heziyun-gaokao-sp5 { top: 50%; left: 50%; animation-delay: 0.8s; }

@keyframes gaokaoTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(2); box-shadow: 0 0 12px rgba(255,215,0,0.6); }
}

.Heziyun-gaokao-ctaContent {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.Heziyun-gaokao-ctaIcon {
    margin-bottom: 20px;
    animation: gaokaoBounce 3s ease-in-out infinite;
}

@keyframes gaokaoBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.Heziyun-gaokao-ctaTitle {
    font-size: 40px;
    font-weight: 800;
    background: linear-gradient(90deg, #ffd700, #ffe066, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: 6px;
    animation: gaokaoShimmer 3s ease-in-out infinite;
}

.Heziyun-gaokao-ctaContent p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.8;
}

.Heziyun-gaokao-ctaBtns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.Heziyun-gaokao-ctaBtn {
    display: inline-flex;
    align-items: center;
    padding: 16px 44px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.Heziyun-gaokao-ctaBtnPrimary {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a0533;
    box-shadow: 0 4px 24px rgba(255, 215, 0, 0.35);
    position: relative;
    overflow: hidden;
}

.Heziyun-gaokao-ctaBtnPrimary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: gaokaoBtnShine 3s ease-in-out infinite;
}

.Heziyun-gaokao-ctaBtnPrimary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 36px rgba(255, 215, 0, 0.55);
}

.Heziyun-gaokao-ctaBtnOutline {
    background: transparent;
    color: #ffd700;
    border: 2px solid rgba(255,215,0,0.4);
    backdrop-filter: blur(4px);
}

.Heziyun-gaokao-ctaBtnOutline:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #ffd700;
    transform: translateY(-3px);
}

/* ====== 响应式 ====== */
@media screen and (max-width: 768px) {
    .Heziyun-gaokao-banner .Heziyun-banner-title span {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .Heziyun-gaokao-banner .Heziyun-banner-title p {
        font-size: 14px;
    }

    .Heziyun-gaokao-countdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .Heziyun-gaokao-statsInner {
        flex-wrap: wrap;
        gap: 20px;
    }

    .Heziyun-gaokao-statDivide {
        display: none;
    }

    .Heziyun-gaokao-statItem {
        padding: 0 20px;
        min-width: 45%;
    }

    .Heziyun-gaokao-priceCards {
        flex-direction: column;
        align-items: center;
    }

    .Heziyun-gaokao-card {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .Heziyun-gaokao-cardHot {
        transform: none;
    }

    .Heziyun-gaokao-cardHot:hover {
        transform: translateY(-8px);
    }

    .Heziyun-gaokao-steps {
        flex-direction: column;
        align-items: center;
    }

    .Heziyun-gaokao-stepLine {
        padding-top: 0;
        min-width: auto;
        flex: 0 0 auto;
        width: 2px;
        height: 32px;
    }

    .Heziyun-gaokao-stepLineInner {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(255,215,0,0.1), rgba(255,215,0,0.6), rgba(255,215,0,0.1));
    }

    .Heziyun-gaokao-stepLineInner::after {
        right: -3px;
        bottom: 0;
        top: auto;
    }

    .Heziyun-gaokao-stepItem {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .Heziyun-gaokao-introContent {
        flex-direction: column;
        align-items: center;
    }

    .Heziyun-gaokao-introItem {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .Heziyun-gaokao-testiCards {
        flex-direction: column;
        align-items: center;
    }

    .Heziyun-gaokao-testiCard {
        max-width: 100%;
        min-width: auto;
        width: 100%;
    }

    .Heziyun-gaokao-ctaTitle {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .Heziyun-gaokao-ctaBtns {
        flex-direction: column;
        align-items: center;
    }
}
