@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
    font-family: 'Inter', 'Microsoft YaHei', 'PingFang SC', sans-serif;
}

body {
    background: #F5F7FA;
    min-height: 100vh;
}

/* 自定义最大宽度 */
.max-w-custom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero 区域 - 蓝色渐变 */
.hero-section {
    background: url('../image/bg.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
    height: 631px;
}

.hero-section::before {
    display: none;
}

/* 标签筛选 - 现代风格 */
.filter-tabs {
    background: white;
    border-bottom: 1px solid #E8E8E8;
    position: sticky;
    top: 64px;
    z-index: 40;
}

.filter-tab {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3977FF;
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.filter-tab:hover {
    color: #3977FF;
}

.filter-tab.active {
    color: #3977FF;
    font-weight: 600;
}

.filter-tab.active::after {
    transform: scaleX(1);
}

/* 卡片 - 现代风格 */
.exam-card {
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 257px;
    position: relative;
    width: 290px;
}

.exam-card:hover {
    box-shadow: 0 8px 30px rgba(57, 119, 255, 0.15);
    transform: translateY(-4px);
}

.exam-card-content {
    flex: 1;
    margin-bottom: 16px;
}

.exam-card-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: 2.8em;
}

.exam-card-actions {
    margin-top: auto;
}

/* 标签样式 */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.badge-level {
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
}

.badge-hot {
    background: #F3E8FF;
    color: #795CFF;
}

.badge-live {
    background: #EBF8FF;
    color: #18558D;
    width: 100%;
    height: 33px;
    justify-content: flex-start;
    font-size: 14px;
    text-align: left;
    font-weight: 400;
}

/* 按钮样式 - 现代风格 */
.btn-primary {
    display: inline-block;
    text-align: center;
    background: #3977FF;
    color: white;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    background: #2563EB;
    box-shadow: 0 4px 12px rgba(57, 119, 255, 0.4);
}

.btn-secondary {
    background: white;
    color: #3977FF;
    border: 1.5px solid #3977FF;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: #3977FF;
    color: white;
    box-shadow: 0 4px 12px rgba(57, 119, 255, 0.3);
}

.btn-success {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-warning:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-outline-light {
    background: #F3F4F6;
    color: #6B7280;
    border: 1px solid #E5E7EB;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-light:hover {
    background: #E5E7EB;
    color: #374151;
}

/* 侧边栏 - 现代风格 */
.sidebar {
    background: white;
    width: 280px;
}

.sidebar-item {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    font-size: 16px;
    height: 47px;
}

.sidebar-item:hover {
    background: #EFF6FF;
}

.sidebar-item.active {
    background: #E9EFFD;
    color: #1A73E8;
    font-weight: 600;
    height: 47px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
}

.exam-card {
    opacity: 0;
}

.exam-card.visible {
    opacity: 1;
}

/* 已预约角标样式 */
.exam-booked-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: url('https://img.kuaiwenyun.com/images/cms/2026-03/498/GrHNDaJzS5.png') center center / contain no-repeat;
    font-size: 0;
    width: 60px;
    height: 60px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 课程卡片样式 - 现代配色 */
.course-card {
    background: white;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: 0 8px 28px rgba(57, 119, 255, 0.18);
    transform: translateY(-6px);
}

.course-cover {
    width: 100%;
    height: 180px;
    position: relative;
    overflow: hidden;
}

.course-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-cover-img {
    transform: scale(1.05);
}

/* 日期徽章 */
.course-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #795CFF;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.date-icon {
    font-size: 16px;
    opacity: 0.9;
}

.course-content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* 课程卡片标签 - 浮动在图片上方 */
.course-subject {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    background: #F0F5FF;
    color: #3977FF;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 400;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
}

.course-title {
    font-size: 16px;
    font-weight: 400;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.5;
    height: 48px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-box-align: start;
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e4e7ed;
}

.course-info-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #646a73;
}

.course-info-item:first-child {
    margin-bottom: 4px;
}

.course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.course-price-current {
    font-size: 24px;
    font-weight: 700;
    color: #EF4444;
}

.course-price-original {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: line-through;
}

.course-consult-btn {
    width: 78px;
    height: 26px;
    padding: 0;
    border: none;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.3s ease;
    white-space: nowrap;
    background: linear-gradient(270deg, #3977FF 0%, #2563EB 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(57, 119, 255, 0.3);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.course-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(57, 119, 255, 0.45);
}

/* 分隔线样式 */
.section-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #E5E7EB 50%, transparent);
    margin: 0;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
    width: 1200px;
}

.resource-card {
    background: #FFFFFF;
    border-radius: 0px 12px 0px 0px;
    width: 590px;
    gap: 18px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding-left: 10px;
    padding-right: 19px;
    padding-top: 24px;
    padding-bottom: 17px;
    transition: all 0.2s ease;
    position: relative;
}

.resource-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 19px;
    height: 1px;
    background-color: #E5E7EB;
}

.resource-card:hover {
    background: linear-gradient(135deg, #F9FAFB 0%, #ffffff 100%);
    transform: translateY(-2px);
}

.resource-cover {
    width: 58px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.resource-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-info {
    flex: 1;
    min-width: 0;
}

.resource-title {
    font-size: 15px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resource-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #6B7280;
}

.resource-free-badge {
    display: inline-flex;
    align-items: center;
    padding: 0;
    background: transparent;
    color: #EF4444;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
}

.resource-download {
    padding: 8px 20px;
    height: 28px;
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(57, 119, 255, 0.2);
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-download:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    box-shadow: 0 4px 16px rgba(57, 119, 255, 0.4);
    transform: translateY(-1px);
}

/* Logo 容器 */
.logo-container {
    position: relative;
    z-index: 10;
}

/* 状态徽章 */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.status-upcoming {
    background: #ECFDF5;
    color: #065F46;
}

/* 页脚 */
.footer {
    background: white;
    border-top: 1px solid #E5E7EB;
}

/* 滚动条美化 */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .sidebar {
        position: sticky;
        top: 120px;
        z-index: 40;
    }

    .hero-section {
        padding: 2rem 1rem;
    }
}

/* 详情页样式 - 现代配色 */
.detail-glass-card {
    background: white;
    border: 1px solid rgba(57, 119, 255, 0.1);
    box-shadow: 0 4px 24px rgba(57, 119, 255, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px;
}

.detail-status-badge {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.detail-status-ongoing {
    background: #F0F5FF;
    color: #3977FF;
}

.detail-status-booked {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #1565C0;
}

.detail-exam-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.detail-exam-table thead th {
    color: #6A6868;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px 12px 0;
    text-align: left;
    border-bottom: 2px solid rgba(57, 119, 255, 0.1);
}

.detail-exam-table tbody tr {
    transition: all 0.2s ease;
}

.detail-exam-table tbody tr:hover {
    /*background: rgba(57, 119, 255, 0.03);*/
}

.detail-exam-table tbody {
    padding: 16px 16px 16px 0;
}

.detail-exam-table tbody td {
    padding: 16px 16px 16px 0;
    border-bottom: 1px solid rgba(57, 119, 255, 0.08);
    color: #424242;
    font-size: 14px;
}

.detail-exam-table tbody tr:last-child td {
    border-bottom: none;
}

.detail-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-info-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #424242;
    font-size: 14px;
    line-height: 1.6;
}

.detail-info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3977FF, #2563EB);
    border-radius: 50%;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 16px;
}

.back-button:hover {
    background: #F9FAFB;
    border-color: #D1D5DB;
    color: #374151;
}

/* 活动卡片样式 - 使用 marketing-card 样式 */
.activity-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.activity-card:hover {
    border-color: #3977FF;
    box-shadow: 0 4px 16px rgba(57, 119, 255, 0.15);
    transform: translateY(-2px);
}

.activity-cover {
    width: 580px;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.activity-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.activity-card:hover .activity-cover-img {
    transform: scale(1.05);
}

.activity-title {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.activity-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.activity-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.activity-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #646a73;
}

.activity-info-item svg {
    width: 16px;
    height: 16px;
    color: #795CFF;
}

.activity-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.activity-qrcode {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #E5E7EB;
}

.activity-qrcode-tip {
    margin-top: 12px;
    font-size: 14px;
    color: #6B7280;
    text-align: center;
}

/* 活动考试时间样式 */
.activity-exam-time {
    display: flex;
    align-items: center;
    margin-top: 12px;
    padding: 8px 12px;
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 13px;
    color: #4B5563;
}

.activity-exam-time svg {
    flex-shrink: 0;
}

/* 活动解析徽章样式 */
.activity-analysis-badge {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 6px 14px;
    background: #DBEAFE;
    color: #1E40AF;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.activity-analysis-badge svg {
    flex-shrink: 0;
}

/* 希赛模考卡片样式 */
.reward-card {
    background: url('https://img.kuaiwenyun.com/images/cms/2026-03/55/b2khWyeq8a.png') center center / cover no-repeat;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 287px;
    height: 305px;
}

.reward-card:hover {
    transform: translateY(-6px);
}

.reward-cover {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.reward-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.reward-card:hover .reward-cover-img {
    transform: scale(1.1);
}

.reward-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(57, 119, 255, 0.1), rgba(37, 99, 235, 0.1));
    z-index: 1;
}

.reward-badge-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    color: #3977FF;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    backdrop-filter: blur(4px);
}

.reward-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.reward-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -60px auto 16px;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(57, 119, 255, 0.2);
}

.reward-icon svg {
    width: 28px;
    height: 28px;
    color: #3977FF;
}

.reward-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.4;
}

.reward-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 16px;
    flex: 1;
}

.reward-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.reward-stat {
    text-align: center;
}

.reward-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #3977FF;
    margin-bottom: 2px;
}

.reward-stat-label {
    font-size: 12px;
    color: #9CA3AF;
}

/* 考试奖励区域样式 - 活动奖励样式 */
.reward-section {
    background: url('https://img.kuaiwenyun.com/images/cms/2026-03/544/r8dYkyVVUJ.png') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.reward-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B6B' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zm25 0c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zm25 0c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zM75 75c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zm25 0c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zM50 100c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zm25 0c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5zm25 0c0-2.761-2.239-5-5-5s-5 2.239-5 5 2.239 5 5 5 5-2.239 5-5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.reward-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    margin-bottom: 16px;
}

.reward-badge svg {
    width: 20px;
    height: 20px;
}

.reward-card {
    background: url('https://img.kuaiwenyun.com/images/cms/2026-03/55/b2khWyeq8a.png') center center / cover no-repeat;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.reward-card:hover {
    transform: translateY(-8px);
}

.reward-card-header {
    padding: 32px 24px 24px;
    text-align: center;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
    position: relative;
}

.reward-icon {
    font-size: 56px;
    margin-bottom: 16px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 107, 0.2));
}

.reward-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.reward-subtitle {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 16px;
}

.reward-body {
    padding: 24px;
    background: white;
}

.reward-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.reward-list li {
    padding: 12px 16px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEF5F5 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.reward-list li:last-child {
    margin-bottom: 0;
}

.reward-list li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.reward-footer {
    text-align: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
    border-top: 1px solid rgba(255, 107, 107, 0.1);
}

.reward-cta-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 100%);
    color: white;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
    cursor: pointer;
    border: none;
}

.reward-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.45);
}

/* 希赛模考特色区域 - satellite-wrapper样式 */
.satellite-wrapper {
    position: relative;
    width: 100%;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.satellite-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.satellite-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.project-card-icon {
    width: 266px;
    height: 160px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    margin: -24px -24px 20px -24px;
}

.project-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-card-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.project-card-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .satellite-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .satellite-wrapper {
        grid-template-columns: 1fr;
    }
}

/* 客服飘窗样式 */
.customer-service-widget {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* 样式一：圆形图标按钮 */
.cs-style-1 .cs-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cs-style-1 .cs-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.cs-style-1 .cs-consult {
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
}

.cs-style-1 .cs-wechat {
    background: linear-gradient(135deg, #07c160 0%, #06ae56 100%);
}

.cs-style-1 .cs-official {
    background: linear-gradient(135deg, #fa5151 0%, #f43f3f 100%);
}

/* 样式二：方形卡片 */
.cs-style-2 {
    right: 20px;
    bottom: 100px;
    gap: 8px;
}

.cs-style-2 .cs-button {
    width: auto;
    min-width: 120px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 0 16px;
}

.cs-style-2 .cs-button:hover {
    transform: translateX(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cs-style-2 .cs-consult {
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
}

.cs-style-2 .cs-wechat {
    background: #07c160;
    color: white;
}

.cs-style-2 .cs-official {
    background: #fa5151;
    color: white;
}

.cs-style-2 .cs-icon {
    width: 20px;
    height: 20px;
}

.cs-style-2 .cs-text {
    font-size: 14px;
    font-weight: 500;
}

/* 样式三：竖向组合按钮 */
.cs-style-3 {
    right: 20px;
    bottom: 100px;
}

.cs-style-3 .cs-main-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(57, 119, 255, 0.3);
    position: relative;
}

.cs-style-3 .cs-main-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(57, 119, 255, 0.4);
}

.cs-style-3 .cs-sub-buttons {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cs-style-3:hover .cs-sub-buttons {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-style-3 .cs-sub-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.3s ease forwards;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs-style-3 .cs-sub-button:hover {
    transform: scale(1.1);
}

.cs-style-3 .cs-sub-wechat {
    background: #07c160;
}

.cs-style-3 .cs-sub-official {
    background: #fa5151;
}

.cs-style-3 .cs-sub-phone {
    background: #ff9800;
}

/* 样式四：底部横条 */
.cs-style-4 {
    position: fixed;
    left: 50%;
    bottom: 0;
    right: auto;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0;
    background: white;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 24px;
    z-index: 1000;
}

.cs-style-4 .cs-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

.cs-style-4 .cs-button:hover {
    transform: translateY(-2px);
}

.cs-style-4 .cs-consult {
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
}

.cs-style-4 .cs-wechat {
    background: #f0f9ff;
    color: #07c160;
}

.cs-style-4 .cs-official {
    background: #fef2f2;
    color: #fa5151;
}

/* 样式五：悬浮卡片式 */
.cs-style-5 {
    right: 20px;
    bottom: 100px;
}

.cs-style-5 .cs-card {
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cs-style-5 .cs-card-header {
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
    padding: 16px;
    text-align: center;
}

.cs-style-5 .cs-card-header h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cs-style-5 .cs-card-header p {
    font-size: 13px;
    opacity: 0.9;
}

.cs-style-5 .cs-card-body {
    padding: 16px;
}

.cs-style-5 .cs-card-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.cs-style-5 .cs-card-item:last-child {
    margin-bottom: 0;
}

.cs-style-5 .cs-card-item:hover {
    background: #f9fafb;
}

.cs-style-5 .cs-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-style-5 .cs-card-icon-consult {
    background: #F3E8FF;
    color: #795CFF;
}

.cs-style-5 .cs-card-icon-wechat {
    background: #d1fae5;
    color: #07c160;
}

.cs-style-5 .cs-card-icon-phone {
    background: #fef3c7;
    color: #f59e0b;
}

.cs-style-5 .cs-card-text {
    flex: 1;
}

.cs-style-5 .cs-card-title {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
}

.cs-style-5 .cs-card-desc {
    font-size: 12px;
    color: #6b7280;
}

/* 样式六：简洁单按钮 */
.cs-style-6 {
    right: 20px;
    bottom: 100px;
}

.cs-style-6 .cs-single-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(57, 119, 255, 0.3);
    position: relative;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(57, 119, 255, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(57, 119, 255, 0.5);
    }
}

.cs-style-6 .cs-single-button:hover {
    transform: scale(1.1);
    animation: none;
}

.cs-style-6 .cs-single-icon {
    width: 28px;
    height: 28px;
    color: white;
    margin-bottom: 2px;
}

.cs-style-6 .cs-single-text {
    font-size: 10px;
    color: white;
    font-weight: 500;
}

.cs-style-6 .cs-dropdown {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.cs-style-6:hover .cs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cs-style-6 .cs-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cs-style-6 .cs-dropdown-item:hover {
    background: #f9fafb;
}

.cs-style-6 .cs-dropdown-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-style-6 .cs-dropdown-icon-wechat {
    background: #d1fae5;
    color: #07c160;
}

.cs-style-6 .cs-dropdown-icon-phone {
    background: #fef3c7;
    color: #f59e0b;
}

.cs-style-6 .cs-dropdown-icon-official {
    background: #fef2f2;
    color: #fa5151;
}

.cs-style-6 .cs-dropdown-text {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

/* 通用样式 */
.cs-icon {
    width: 28px;
    height: 28px;
    color: white;
}

/* 隐藏在移动端 */
@media (max-width: 768px) {
    .customer-service-widget {
        right: 12px;
        bottom: 80px;
    }

    .cs-style-1 .cs-button,
    .cs-style-3 .cs-main-button {
        width: 48px;
        height: 48px;
    }

    .cs-style-2 .cs-button {
        min-width: 100px;
        height: 40px;
        padding: 0 12px;
    }

    .cs-style-4 {
        left: 0;
        right: 0;
        transform: none;
        justify-content: center;
        padding: 10px 16px;
    }

    .cs-style-4 .cs-button {
        padding: 8px 12px;
        font-size: 13px;
    }

    .cs-style-5 .cs-card {
        width: 260px;
    }

    .cs-icon {
        width: 24px;
        height: 24px;
    }
}

/* 悬浮客服组件 */
.fixed-service-box {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    transition: all 0.2s ease;
}

.service-item:hover .service-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.service-icon {
    width: 80px;
    min-height: 56px;
    background: #0052D9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: -2px 0 8px rgba(0, 82, 217, 0.15);
    transition: all 0.2s ease;
    flex-shrink: 0;
    gap: 4px;
    padding: 8px 4px;
}

.service-icon:hover {
    background: #003CAB;
}

.service-icon i,
.service-icon svg {
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.service-icon-name {
    display: block;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    word-break: break-all;
}

.service-content {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateX(10px);
    background: white;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid #E5E6EB;
}

.service-content-text {
    color: #1A1A1A;
    font-size: 14px;
    font-weight: 500;
}

.service-content-phone {
    color: #0052D9;
    font-size: 16px;
    font-weight: 600;
}

/* 二维码弹窗 */
.qrcode-popup {
    position: absolute;
    right: 100px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #FFFFFF;
    padding: 16px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid #E5E6EB;
}

.qrcode-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.qrcode-popup img {
    width: 150px;
    height: 150px;
    display: block;
    margin-bottom: 8px;
}

.qrcode-popup p {
    text-align: center;
    font-size: 13px;
    color: #5E5E5E;
    margin: 0;
}

/* 返回顶部按钮 */
.back-to-top {
    width: 80px;
    min-height: 56px;
    background: #FFFFFF;
    border: 1px solid #E5E6EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    gap: 4px;
    padding: 8px 4px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #F5F5F5;
}

.back-to-top svg {
    color: #0052D9;
    flex-shrink: 0;
}

.back-to-top-name {
    display: block;
    color: #0052D9;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
}
.btn-color-blue {
    background-color: #1A73E8;
    color: white;
    font-size: 16px;
    font-weight: 400;
    padding: 4px 24px;
}
.btn-start-test {
    background-color: #1A73E8;
    color: white;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 22px;
    margin-left: 8px;
}

.btn-tested {
    background-color: white;
    border: 1px solid #1A73E8;
    color: #1A73E8;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 400;
    padding: 4px 22px;
    margin-left: 8px;
}
.btn-cancel {
    background-color: white;
    border: 1px solid #1A73E8;
    color: #1A73E8;
}
.card-actions-btn {
    height: 32px;
    font-size: 16px;
    font-weight: 400;
    background: #1A73E8;
    color: white;
    border-radius: 20px;
}
.card-btn-cancel {
    height: 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    background: #F0F5FF!important;
    color: #1A73E8;
}
.card-btn-exam {
    height: 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 400;
    background: white!important;
    border: 1px solid #1A73E8!important;
    color: #1A73E8!important;
}
table {
    border: unset!important;
}
table th {
    border: unset!important;
}
table td{
    border-left: unset!important;
    border-top: 1px solid #ddd!important;
    border-right: unset!important;
    border-bottom: unset!important;
}
.xxzl-pop {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}
.xxzl-pop-xxzycontent {
    margin-top: unset;
}
.maintitle {
    position: absolute;
    left: 50%;
    width: 1200px;
    margin-left: -600px;
    top: 0;
    z-index: 10000;
}
.maintitle .p1 {
    color: #D45844;
    font-size: 16px;
    text-align: right;
}
.islogindiv {
    display: inline-block;
    vertical-align: top;
    color: #fff;
    background: linear-gradient(0deg, #FFA700 0%, #FFD64D 100%);
    border: 1px solid #FEF0E2;
    border-top: 0;
    box-shadow: 0px 0px 10px 0px rgba(141, 33, 0, 0.82);
    border-radius: 0px 0px 10px 10px;
    padding: 0 15px 2px 15px;
    line-height: 30px;
}
.islogindiv a {
    color: #fff;
}
.curpoint {
    cursor: pointer;
}
.notlogindiv {
    vertical-align: top;
    color: #fff;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    box-sizing: border-box;
    background: linear-gradient(0deg, #FFA700 0%, #FFD64D 100%);
    border: 1px solid #FEF0E2;
    border-top: 0;
    box-shadow: 0px 0px 10px 0px rgba(141, 33, 0, 0.82);
    border-radius: 0px 0px 10px 10px;
    padding: 0 15px 2px 15px;
    line-height: 30px;
}
.notlogindiv a {
    color: #fff;
    position: relative;
}
.prev ,.next{
    width: 35px;
    height: 30px;
}
/* 考试工具区域样式 */
.exam-tools-section {
    background: #ffffff;
    padding: 40px 24px;
}

.exam-tools-section .section-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 32px;
}

.exam-tools-section .section-title {
    font-size: 36px;
    font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.exam-tools-section .section-subtitle {
    font-size: 18px;
    color: #6e6e73;
    text-align: center;
}

.exam-tools-container {
    display: flex;
    align-items: center;
    gap: 0px;
    position: relative;
    justify-content: center;
    margin: 0 auto;
}

.exam-tools-cards-wrapper {
    width: 1200px;
    max-width: 1200px;
    overflow: hidden;
    margin-left: 20px;
    margin-right: 20px;
}

.exam-tools-cards {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.exam-tool-card {
    flex: 0 0 calc((100% - 48px) / 4);
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #e5e5e7;
}

.exam-tool-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #3977ff;
}

.exam-tool-card-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.exam-tool-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.exam-tool-card:hover .exam-tool-card-image img {
    transform: scale(1.05);
}

.exam-tool-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.exam-tool-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.exam-tool-card-subtitle {
    font-size: 13px;
    color: #6e6e73;
    margin-bottom: 8px;
    line-height: 1.4;
}

.exam-tool-card-btn {
    padding: 8px 20px;
    background: linear-gradient(135deg, #3977FF 0%, #2563EB 100%);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(57, 119, 255, 0.3);
    align-self: flex-start;
}

.exam-tool-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(57, 119, 255, 0.45);
}

/* 左右切换按钮 */
.exam-tools-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e5e7;
    color: #6e6e73;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
    z-index: 10;
}

.exam-tools-nav-btn:hover:not(:disabled) {
    background: #3977ff;
    border-color: #3977ff;
    color: white;
    box-shadow: 0 4px 16px rgba(57, 119, 255, 0.2);
}

.exam-tools-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.exam-tools-nav-btn:disabled:hover {
    background: #ffffff;
    border-color: #e5e5e7;
    color: #6e6e73;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* 响应式：考试工具区域 */
@media (max-width: 1200px) {
    .exam-tools-cards-wrapper {
        width: 100%;
        max-width: calc(100vw - 120px);
    }
}

@media (max-width: 1024px) {
    .exam-tools-cards-wrapper {
        max-width: calc(100vw - 100px);
    }
    .exam-tool-card {
        flex: 0 0 calc((100% - 32px) / 3);
    }
}

@media (max-width: 768px) {
    .exam-tools-cards-wrapper {
        max-width: calc(100vw - 80px);
    }
    .exam-tool-card {
        flex: 0 0 calc((100% - 16px) / 2);
    }
}

@media (max-width: 480px) {
    .exam-tools-cards-wrapper {
        max-width: calc(100vw - 60px);
    }
    .exam-tool-card {
        flex: 0 0 100%;
    }
}
*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.visible{visibility:visible}.relative{position:relative}.z-10{z-index:10}.col-span-1{grid-column:span 1 / span 1}.mx-auto{margin-left:auto;margin-right:auto}.mb-12{margin-bottom:3rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-2{margin-left:0.5rem}.mt-0{margin-top:0px}.mb-2{margin-bottom:0.5rem}.mb-3{margin-bottom:0.75rem}.flex{display:flex}.grid{display:grid}.h-5{height:1.25rem}.h-8{height:2rem}.h-full{height:100%}.h-4{height:1rem}.w-5{width:1.25rem}.w-8{width:2rem}.w-full{width:100%}.w-4{width:1rem}.max-w-md{max-width:28rem}.flex-1{flex:1 1 0%}.transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.cursor-pointer{cursor:pointer}.grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.gap-12{gap:3rem}.gap-5{gap:1.25rem}.gap-6{gap:1.5rem}.gap-8{gap:2rem}.gap-2{gap:0.5rem}.gap-3{gap:0.75rem}.gap-4{gap:1rem}.space-x-3 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(0.75rem * var(--tw-space-x-reverse));margin-left:calc(0.75rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-4 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem * var(--tw-space-x-reverse));margin-left:calc(1rem * calc(1 - var(--tw-space-x-reverse)))}.space-x-6 > :not([hidden]) ~ :not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1.5rem * var(--tw-space-x-reverse));margin-left:calc(1.5rem * calc(1 - var(--tw-space-x-reverse)))}.space-y-2 > :not([hidden]) ~ :not([hidden]){--tw-space-y-reverse:0;margin-top:calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));margin-bottom:calc(0.5rem * var(--tw-space-y-reverse))}.overflow-x-auto{overflow-x:auto}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.rounded-lg{border-radius:0.5rem}.rounded-xl{border-radius:0.75rem}.rounded{border-radius:0.25rem}.border-t{border-top-width:1px}.border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235 / var(--tw-border-opacity, 1))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity, 1))}.bg-gradient-to-br{background-image:linear-gradient(to bottom right, var(--tw-gradient-stops))}.from-blue-500{--tw-gradient-from:#3b82f6 var(--tw-gradient-from-position);--tw-gradient-to:rgb(59 130 246 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.to-blue-600{--tw-gradient-to:#2563eb var(--tw-gradient-to-position)}.p-4{padding:1rem}.p-5{padding:1.25rem}.p-6{padding:1.5rem}.px-4{padding-left:1rem;padding-right:1rem}.py-12{padding-top:3rem;padding-bottom:3rem}.py-16{padding-top:4rem;padding-bottom:4rem}.py-20{padding-top:5rem;padding-bottom:5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.px-3{padding-left:0.75rem;padding-right:0.75rem}.py-2\.5{padding-top:0.625rem;padding-bottom:0.625rem}.pt-8{padding-top:2rem}.text-left{text-align:left}.text-center{text-align:center}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-5xl{font-size:3rem;line-height:1}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-base{font-size:1rem;line-height:1.5rem}.text-xs{font-size:0.75rem;line-height:1rem}.text-2xl{font-size:1.5rem;line-height:2rem}.font-black{font-weight:900}.font-bold{font-weight:700}.font-semibold{font-weight:600}.font-medium{font-weight:500}.leading-relaxed{line-height:1.625}.leading-tight{line-height:1.25}.leading-snug{line-height:1.375}.text-blue-900{--tw-text-opacity:1;color:rgb(30 58 138 / var(--tw-text-opacity, 1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity, 1))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity, 1))}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity, 1))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity, 1))}.text-orange-600{--tw-text-opacity:1;color:rgb(234 88 12 / var(--tw-text-opacity, 1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity, 1))}.text-green-600{--tw-text-opacity:1;color:rgb(22 163 74 / var(--tw-text-opacity, 1))}.transition-colors{transition-property:color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke;transition-property:color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-transform{transition-property:transform;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.duration-200{transition-duration:200ms}.hover\:text-orange-600:hover{--tw-text-opacity:1;color:rgb(234 88 12 / var(--tw-text-opacity, 1))}@media (min-width: 640px){.sm\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}}@media (min-width: 768px){.md\:col-span-2{grid-column:span 2 / span 2}.md\:mb-0{margin-bottom:0px}.md\:grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.md\:grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.md\:flex-row{flex-direction:row}.md\:items-center{align-items:center}.md\:justify-between{justify-content:space-between}.md\:py-28{padding-top:7rem;padding-bottom:7rem}.md\:text-4xl{font-size:2.25rem;line-height:2.5rem}.md\:text-6xl{font-size:3.75rem;line-height:1}}@media (min-width: 1024px){.lg\:w-1\/5{width:20%}.lg\:w-4\/5{width:80%}.lg\:grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.lg\:flex-row{flex-direction:row}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:text-5xl{font-size:3rem;line-height:1}}