/* ==================== 考试详情页PC端样式 ==================== */

/* ==================== 考试分类导航 ==================== */
.exam-cat-nav {
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.exam-cat-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 32px;
    height: 50px;
    overflow-x: auto;
    flex-wrap: nowrap;
}

.exam-cat-item {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s;
}

.exam-cat-item:hover {
    color: #2D6CDE;
}

.exam-cat-item.active {
    color: #2D6CDE;
    font-weight: 600;
    position: relative;
}

.exam-cat-item.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #2D6CDE;
    border-radius: 1px;
}

/* ==================== 考试分类标签区域 ==================== */
.exam-tag-section {
    margin: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.exam-tag-inner {
    background-color: #fff;
    max-width: 1160px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
}

.exam-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.exam-tag-row:last-child {
    margin-bottom: 0;
}

.exam-tag-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    background-color: #F3F4F5;
    border-radius: 4px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.exam-tag-item:hover {
    background-color: #e8f0ff;
    color: #2D6CDE;
}

.exam-tag-item.active {
    background-color: #2D6CDE;
    color: #fff;
}

.exam-tag-item.active:hover {
    background-color: #1a5bc9;
    color: #fff;
}

.exam-tag-hot {
    position: absolute;
    top: -6px;
    right: -4px;
    background: linear-gradient(135deg, #ff6b6b, #e4393c);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 3px;
    line-height: 1.4;
}

/* ==================== Banner区域 ==================== */
.exam-banner-section {
    margin: 20px 0;
}

.exam-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: stretch;
    border-radius: 10px;
    padding: 0 20px;
}

/* 左侧广告Banner轮播 */
.exam-banner-main {
    flex-shrink: 0;
    width: 754px;
    height: 333px;
}

.banner-swiper {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.banner-swiper .swiper-slide {
    width: 100%;
}

.banner-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-swiper-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.banner-swiper-pagination .swiper-pagination-bullet-active {
    width: 16px;
    border-radius: 3px;
    background-color: #fff;
}

/* 右侧考试日历 */
.exam-calendar-side {
    position: relative;
    width: 390px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #FFF8E7 0%, #FFFDF5 100%);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.calendar-icon-decor {
    position: absolute;
    top: -4px;
    right: 8px;
    width: 64px;
    height: 64px;
    z-index: 1;
}

.calendar-icon-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.calendar-side-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.calendar-side-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.calendar-side-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.calendar-side-more:hover {
    color: #2D6CDE;
}

.calendar-side-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.calendar-table-header {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    background-color: #F5F5F5;
    border-radius: 6px;
    margin-bottom: 4px;
    font-weight: 500;
    padding-left: 0;
    padding-right: 0;
}

.calendar-table-header span {
    padding: 0 8px;
}

.calendar-col-name {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding-left: 0 !important;
}

.calendar-col-time {
    flex: 1;
    text-align: center;
    min-width: 0;
}

.calendar-col-signup {
    flex: 1;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    padding-right: 0 !important;
}

.calendar-side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.calendar-side-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.calendar-side-item:last-child {
    border-bottom: none;
}

.calendar-side-item span {
    padding: 0 8px;
}

.calendar-exam-name {
    flex: 1;
    min-width: 0;
    color: #F97316;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
    text-align: center;
    padding-left: 0 !important;
}

.calendar-exam-time {
    flex: 1;
    text-align: center;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.calendar-exam-signup {
    flex: 1;
    text-align: center;
    color: #333;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
    padding-right: 0 !important;
}

/* ==================== 最新动态 ==================== */
.latest-news-section {
    margin: 20px 0;
}

.latest-news-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
}

.latest-news-title {
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    margin: 0 0 24px 0;
}

.latest-news-cols {
    display: flex;
    gap: 40px;
}

.latest-news-col {
    flex: 1;
    min-width: 0;
}

.news-col-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-col-list li {
    display: flex;
    align-items: center;
}

.news-col-list li:not(:last-child) {
    margin-bottom: 20px;
}

.news-col-list li:last-child {
    border-bottom: none;
}

.news-cat-tag {
    flex-shrink: 0;
    font-size: 16px;
    color: #2D6CDE;
    font-weight: 500;
}

.news-cat-divider {
    flex-shrink: 0;
    color: #ddd;
    margin: 0 8px;
    font-size: 14px;
}

.news-title {
    flex: 1;
    font-size: 16px;
    color: #393F4A;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.news-title:hover {
    color: #2D6CDE;
}

.news-title.hot-news {
    color: #e4393c;
}

.news-date {
    flex-shrink: 0;
    font-size: 16px;
    color: #949698;
    margin-left: 12px;
}

/* ==================== 资讯内容区域 ==================== */
.info-content-section {
    background-color: #f5f5f5;
    padding: 24px 0;
}

.info-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* 左侧分类导航 */
.info-left-nav,
.download-left-nav {
    width: 180px;
    flex-shrink: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 16px;
}

.left-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: #101010;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.left-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-nav-item {
    display: block;
    padding: 10px 12px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    margin-bottom: 4px;
}

.left-nav-item:hover {
    background-color: #f5f7fa;
    color: #2D6CDE;
}

.left-nav-item.active {
    background-color: #e8f0ff;
    color: #2D6CDE;
    font-weight: 500;
}

/* 右侧内容区 */
.info-right-content,
.download-right-content {
    flex: 1;
    min-width: 0;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.info-tabs {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.info-tab {
    font-size: 15px;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.2s;
    padding-bottom: 4px;
}

.info-tab:hover {
    color: #2D6CDE;
}

.info-tab.active {
    color: #2D6CDE;
    font-weight: 600;
}

.info-tab.active::after {
    content: '';
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #2D6CDE;
    border-radius: 1px;
}

.info-tab-more {
    margin-left: auto;
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.info-tab-more:hover {
    color: #2D6CDE;
}

.info-tab-content {
    min-height: 300px;
}

.info-tab-pane {
    display: none;
}

.info-tab-pane.active {
    display: block;
}

.info-news-grid {
    display: flex;
    gap: 40px;
}

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

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

.info-news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.info-news-list li:last-child {
    border-bottom: none;
}

.info-news-list li a {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 12px;
}

.info-news-list li a:hover {
    color: #2D6CDE;
}

.info-news-list li a.hot-news {
    color: #e4393c;
    font-weight: 500;
}

/* ==================== 资料下载区域 ==================== */
.download-section {
    background-color: #f5f5f5;
    padding: 0 0 24px;
}

.download-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.download-content-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.download-cat-name {
    font-size: 16px;
    font-weight: 600;
    color: #101010;
    flex: 1;
}

.download-stats {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: #999;
}

.download-more {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.download-more:hover {
    color: #2D6CDE;
}

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

.download-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
}

.download-item:last-child {
    border-bottom: none;
}

.download-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

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

.download-item-name {
    display: block;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.download-item-name:hover {
    color: #2D6CDE;
}

.download-item-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #999;
}

.download-btn {
    flex-shrink: 0;
    padding: 6px 16px;
    background-color: #2D6CDE;
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.download-btn:hover {
    background-color: #1a5bc9;
}

/* ==================== 课程推荐 ==================== */
.course-recommend-section {
    background-color: #f5f5f5;
    padding: 0 0 24px;
}

.course-recommend-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    margin: 0;
}

.section-more {
    font-size: 13px;
    color: #999;
    text-decoration: none;
}

.section-more:hover {
    color: #2D6CDE;
}

.course-card-list {
    display: flex;
    gap: 20px;
}

.course-card-item {
    flex: 1;
    min-width: 0;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.course-card-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.course-card-img-link {
    display: block;
}

.course-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.course-card-info {
    padding: 12px;
}

.course-card-title {
    font-size: 14px;
    color: #333;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.4;
    height: 40px;
}

.course-card-tag {
    display: inline-block;
    padding: 2px 8px;
    background-color: #f5f7fa;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.course-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.course-card-price {
    font-size: 16px;
    font-weight: 600;
    color: #e4393c;
}

.course-card-hot {
    font-size: 12px;
    color: #999;
}

/* ==================== 资讯主内容区域 ==================== */
.info-main-section {
    background-color: #f5f5f5;
    margin: 20px 0;
}

.info-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: stretch;
}

/* 左侧分类导航 */
.info-main-left {
    width: 298px;
    flex-shrink: 0;
    background-color: #fff;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding: 12px 0;
}

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

.info-nav-item {
    display: block;
    padding: 15px 48px;
    font-size: 16px;
    color: #101010;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.info-nav-item:hover {
    color: #2D6CDE;
    background-color: #f8faff;
}

.info-nav-item.active {
    color: #2D6CDE;
    font-weight: 500;
    border-left-color: #2D6CDE;
    background-color: #f0f5ff;
}

/* 右侧内容区 */
.info-main-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    background-color: #fff;
}

/* 通用区块标题 */
.block-header {
    display: flex;
    justify-content: space-between;
}

.block-title {
    font-size: 18px;
    font-weight: 600;
    color: #101010;
    margin: 0;
    margin-bottom: 24px;
}

.block-more {
    font-size: 15px;
    color: #666;
    text-decoration: none;
}

.block-more:hover {
    color: #2D6CDE;
}

/* 资讯内容区块 */
.info-news-block {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
}

.info-news-cols {
    display: flex;
    gap: 30px;
}

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

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

.info-news-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;

}

.info-news-list li:not(:last-child) {
    margin-bottom: 20px;
}

.info-news-list li a {
    flex: 1;
    font-size: 16px;
    color: #393F4A;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 10px;
}

.info-news-list li a:hover {
    color: #2D6CDE;
}

.info-news-list li a.hot-news {
    color: #e4393c;
}

.info-news-date {
    flex-shrink: 0;
    font-size: 16px;
    color: #949698;
}

/* 资料下载区块 */
.info-download-block {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
}

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

.info-download-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

.info-download-item:last-child {
    border-bottom: none;
}

.info-download-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-right: 12px;
}

.info-download-icon.icon-word {
    background-color: #2d79f5;
}

.info-download-icon.icon-pdf {
    background-color: #e4393c;
}

.info-download-icon.icon-excel {
    background-color: #17b26b;
}

.info-download-icon.icon-ppt {
    background-color: #f56c2d;
}

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

.info-download-name {
    display: block;
    font-size: 16px;
    color: #393F4A;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-bottom: 4px;
}

.info-download-name:hover {
    color: #2D6CDE;
}

.info-download-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 12px;
}

.info-download-btn {
    flex-shrink: 0;
    padding: 4px 14px;
    font-size: 12px;
    color: #2D6CDE;
    border: 1px solid #2D6CDE;
    border-radius: 4px;
    text-decoration: none;
    margin-left: 12px;
    transition: all 0.2s;
}

.info-download-btn:hover {
    background-color: #2D6CDE;
    color: #fff;
}

.info-download-btn.btn-blue {
    background-color: #2D6CDE;
    color: #fff;
}

.info-download-btn.btn-blue:hover {
    background-color: #1e5bc8;
    border-color: #1e5bc8;
}

/* 课程推荐区块 */
.info-course-block {
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
}

.info-course-list {
    display: flex;
    gap: 16px;
}

.info-course-list .course-card {
    flex: 1;
    min-width: 0;
    padding: 12px 12px 16px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #F4F5F8;
}

.info-course-list .course-img-link {
    display: block;
}

.info-course-list .course-img {
    display: block;
    width: 100%;
    height: auto;
}

.info-course-list .course-info {
    margin-top: 16px;
}

.info-course-list .course-title {
    height: 44.78px;
    font-size: 16px;
    color: #393F4A;
    margin-bottom: 18px;
    font-weight: 500;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.info-course-list .course-card:hover .course-title {
    color: #2a7de1;
}

.info-course-list .course-tag {
    display: inline-block;
    padding: 2px 8px;
    color: #C57412;
    border-radius: 4px;
    font-size: 12px;
    margin-bottom: 12px;
    line-height: 1.4;
    background-color: #F9EDE1;
}

.info-course-list .course-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.info-course-list .course-subtitle {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    color: #949698;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.info-course-list .course-hot {
    flex-shrink: 0;
    font-size: 13px;
    color: #FB7B6D;
    margin-left: 10px;
}

/* ==================== 建工考试常见问题 ==================== */
.faq-section {
    background-color: #f5f5f5;
    padding: 0 0 40px;
}

.faq-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 24px;
    background-color: #fff;
    border-radius: 8px;
}

.faq-inner .section-header {
    margin-bottom: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.faq-card {
    padding: 16px;
    background-color: #FAFAFA;
}

.faq-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.6;
}

.faq-question {
    margin-bottom: 16px;
}

.faq-answer {
    margin-bottom: 0;
}

.faq-q-icon,
.faq-a-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    margin-top: 2px;
}

.faq-q-icon {
    background-color: #2D6CDE;
}

.faq-a-icon {
    background-color: #FF6B00;
}

.faq-q-text {
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    flex: 1;
    line-height: 1.5;
}

.faq-a-text {
    font-size: 15px;
    color: #101010;
    flex: 1;
    line-height: 1.6;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ==================== 页脚 ==================== */
.exam-footer {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.exam-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px;
    display: flex;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 0;
}

.footer-brand-col {
    flex: 1.2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #101010;
}

.footer-logo-sub {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2D6CDE;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 13px;
    color: #666;
    line-height: 2;
}

.footer-phone {
    font-size: 20px;
    font-weight: 600;
    color: #2D6CDE;
    margin-bottom: 8px;
}

.footer-phone-icon {
    margin-right: 6px;
}

.footer-col-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col-links li {
    margin-bottom: 10px;
}

.footer-col-links a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col-links a:hover {
    color: #2D6CDE;
}

.footer-qrcode-col {
    flex: 1;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
}

.footer-qrcode-item {
    text-align: center;
}

.footer-qrcode-img {
    width: 80px;
    height: 80px;
    background-color: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

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

.footer-qrcode-text {
    font-size: 12px;
    color: #666;
}

.footer-bottom {
    background-color: #f9f9f9;
    padding: 16px 0;
    border-top: 1px solid #eee;
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-bottom-inner p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* 移动端内容默认隐藏 */
.m-exam {
    display: none;
}