/* style.css */
:root {
    --primary-color: #467BFF;
    --secondary-color: #FF6B6B;
    --accent-color: #4ECDC4;
    --dark-bg: #1E1E2F;
    --light-bg: #F8F9FA;
    --text-color: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* 导航栏 */


.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 40px;
    display: flex;
}

.menu {
    display: flex;
    gap: 4rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    transition: color 0.3s;
    position: relative;
}

.menu a:hover {
    color: var(--primary-color);
}

.menu a.active {
    color: var(--primary-color);
    font-weight: bold;
}

.menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
}

.introduce {
    padding: 5rem 0;
}

.indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.introduction-container {
    background-color: #ffffff;
    padding: 2rem 1rem;
    border-radius: 10px;
    transition: transform 0.3s;
}

.introduction-container p{
    padding: 1rem 1rem;
}

.indicator.active {
    background: white;
    width: 12px;
    height: 12px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    transition: background 0.3s;
}

.arrow:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* 服务板块 */
.services {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.section-title-english {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    color: #cdcdcd;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-item {
    color: white;
    padding: 1rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
}

/* .service-item img {
    /* height: 60px;
    margin-bottom: 1rem; */
/* }

/* 地图板块 */
.map-section {
    padding: 5rem 0;
    background: var(--light-bg);
}

.map-container {
    position: relative;
    /* max-width: 800px; */
    margin: 0 auto;
}

.map-button-div {
    font-size: 28px;
    font-weight: 600;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.map-button-name {
    padding: 5px 50px 5px 50px;
    background-color: #467BFF;
    border-radius: 10px;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-button-name:hover {
    background-color: #ff7c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.map-button-name.active {
    background-color: #ff7c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.china-map {
    width: 100%;
    height: auto;
}

.province-tooltip {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

/* 时间轴 */

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


.timeline-wrapper p{
    margin-top: 20px;
}

.introduction-leader {
    color: #ffffff;
    background-color: #1f449b;
    font-size: 20px;
    font-weight: 600;
    height: 35px;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary-color);
}

.events {
    position: relative;
}


/* 新闻列表样式 */

.news-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
}

.news-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.news-item a:hover {
    color: #1890ff;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-left: 20px;
}

/* 分页控件样式 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 15px;
}

.page-btn {
    padding: 8px 16px;
    background-color: #f0f0f0;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background-color: #1890ff;
    color: white;
    border-color: #1890ff;
}

.page-info {
    color: #666;
    font-size: 14px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .menu.show {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .event {
        width: 100%;
        float: none;
    }

    .event::before,
    .event:nth-child(even)::before {
        display: none;
    }

    .event-date {
        position: static;
        margin: 1rem 0;
        width: auto;
        background: none;
        color: var(--primary-color);
    }
    .news-link {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        max-width: 900px;
    }
    .introduction-image {
        display: flex;
        justify-content: center;
    }
    .culture-picture {
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
    }
    .culture-picture {
        display: none;
    }
    .history {
        display: none;
    }
}

@media (min-width:768px) {
    .news-link {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        max-width: 900px;
        transform: translateX(150px);
    }
    .introduction-top {
        display: flex;
        gap: 50px;
    }
    .culture-picture {
        padding-top: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(150px);
    }
    .navbar {
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        position: fixed;
        width: 100%;
        z-index: 999;
    }
    .contact-content {
        padding-top: 140px;
    }
    .contact {
        min-width: 1200px;
    }
    .timeline {
        padding-top: 140px;
        min-width: 1200px;
    }
    .culture {
        padding-top: 140px;
        min-width: 1200px;
    }
    .slide img {
        width: 100%;
        height: 100%;
        /* object-fit: cover; */
    }
    /* 轮播图 */
    .carousel {
        position: relative;
        height: 60vh;
        overflow: hidden;
    }
    .mculture-picture {
        display: none;
    }
    .mhistory {
        display: none;
    }
}

/* 移动端菜单动画 */
@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 60%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        transition: right 0.3s ease-in-out;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    }
    
    .menu.show {
        right: 0;
        z-index: 99;
        width: 100%;
    }
    .slide img {
        width: 100%;
        height: 40%;
        /* object-fit: cover; */
    }
}

/* 服务项激活状态 */
/* .service-item.active {
    /* background: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3); */
/* }

/* 时间轴视差效果 */
.timeline {
    perspective: 1000px;
}

.event {
    transition: transform 0.3s;
    transform: translateZ(0);
}

.event:nth-child(odd) {
    transform: translate3d(calc(var(--scroll-pos) * 50px), 0, 0);
}

.event:nth-child(even) {
    transform: translate3d(calc(var(--scroll-pos) * -50px), 0, 0);
}

/* 底部 */
.footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    position: relative;
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin-top: 50px;
    flex-shrink: 0;
}

/* 确保在内容较少时footer也会显示在底部 */
html, body {
    height: 100%;
}

main {
    flex: 1 0 auto;
}

.info-window {
    padding: 8px 12px;
    border-radius: 10px;
}
.info-title {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 6px;
}
.info-address, .info-phone {
    font-size: 14px;
    margin-bottom: 4px;
}
.amap-info-close {
    display: none !important;
}
.amap-info-content {
    border-radius: 10px !important;
    box-shadow: 0 2px 6px #1f449b;
}

/* 地图容器样式 */
#xhd-container, #xbc-container {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 20px;
    overflow: hidden;
}
/*----------------------------------------------------------------------------------------------*/

@media (min-width: 768px) {
    /* 包裹地址信息和省份切换按钮的容器 */
    .address-switch-container {
        display: flex;
        max-width: 900px;
        height: 200px;
        margin: 0 auto; /* 水平居中 */
        gap: 0; /* 去除间距 */
        background-color: #fff; /* 添加背景颜色 */
        padding: 2rem; /* 添加内边距 */
        border-radius: 10px; /* 添加圆角 */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    }

    /* 地址信息容器 */
    .contact-info {
        width: 450px;
    }

    /* 省份切换按钮容器 */
    .province-switch {
        width: 450px;
        display: flex;
        flex-direction: row; /* 按钮水平排列 */
        flex-wrap: wrap; /* 允许换行 */
        gap: 1rem;
        justify-content: center; /* 按钮水平居中 */
        align-items: center; /* 按钮垂直居中 */
    }

    /* 省级按钮样式 */
    .province-btn {
        background-color: #e0e0e0; /* 默认背景色 */
        color: #333; /* 默认文字颜色 */
        border: 1px solid #ccc;
        padding: 8px 16px;
        margin: 4px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease; /* 添加过渡动画 */
    }
    /* 省份标题样式 */
    .province-address h3 {
        color: #004c99; /* 标题颜色 */
        border-bottom: 2px solid #004c99; /* 下划线 */
        padding-bottom: 5px; /* 标题与下划线间距 */
        margin-bottom: 10px; /* 标题与下方内容间距 */
    }

    /* 地址、电话、网址段落样式 */
    .province-address p {
        color: #666; /* 字体颜色 */
        line-height: 1.6; /* 行高控制纵向间距 */
        margin: 8px 0; /* 段落上下间距 */
        font-size: 16px; /* 调整字体大小适配 */
    }
    /* 省级按钮悬停效果 */
    .province-btn:hover {
        background-color: #467bff; /* 悬停时背景色变为蓝色 */
        color: white; /* 悬停时文字变为白色 */
        transform: translateY(-2px); /* 轻微上浮效果 */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    }

    .province-btn.active {
        background-color: var(--primary-color);
        color: white;
    }


    /* 地市切换按钮和区县地址容器 */
    .city-switch-and-address-container {
        margin-top: 20px;
        background-color: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 地市切换按钮 */
    .city-switch {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start; /* 左对齐排列按钮 */
        margin-bottom: 20px;/* 底部间距 */
        max-width: 900px; /* 限制容器宽度 */
        padding-bottom: 20px; /* 增加内边距，使分割线与内容保持距离 */
        border-bottom: 1px solid #ddd; /* 添加底部边框作为分割线 */
    }
    /* 地市地址信息容器 */
    .city-addresses {
        width: 100%;
    }

    .city-switch .city-btn {
        width: calc((100% - 7rem) / 8); /* 一行显示八个按钮，减去间距 */
        box-sizing: border-box; /* 包含内边距和边框 */

        background-color: #f0f0f0; /* 默认背景色 */
        color: #333; /* 默认文字颜色 */
        border: 1px solid #ddd;
        transition: all 0.3s ease; /* 添加过渡动画 */
    }
    .city-switch .city-btn:hover {
        background-color: #467bff; /* 悬停时背景色变为蓝色 */
        color: white; /* 悬停时文字变为白色 */
        transform: translateY(-2px); /* 轻微上浮效果 */
    }
    .city-btn {
        padding: 0.5rem 1rem;
        background-color: #f0f0f0;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .city-btn.active {
        background-color: var(--primary-color);
        color: white;
    }

    /* 地市地址名称样式 */
    .city-address h3 {
        color: #004c99; /* 颜色改为 #004c99 */
        margin: 8px 0; /* 间距设置为 8px */
    }
}

@media (max-width: 768px) {
    /* 包裹地址信息和省份切换按钮的容器 */
    .address-switch-container {
        display: flex;
        max-width: 900px;
        margin: 0 auto; /* 水平居中 */
        gap: 0; /* 去除间距 */
        background-color: #fff; /* 添加背景颜色 */
        padding: 20px; /* 添加内边距 */
        border-radius: 10px; /* 添加圆角 */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 添加阴影 */
        flex-direction: column;
    }

    /* 地址信息容器 */
    .contact-info {
        order: 2;
    }

    /* 省份切换按钮容器 */
    .province-switch {
        order: 1;
    }

    /* 省级按钮样式 */
    .province-btn {
        background-color: #e0e0e0; /* 默认背景色 */
        color: #333; /* 默认文字颜色 */
        border: 1px solid #ccc;
        padding: 8px 16px;
        margin: 4px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease; /* 添加过渡动画 */
    }
    /* 省份标题样式 */
    .province-address h3 {
        color: #004c99; /* 标题颜色 */
        border-bottom: 2px solid #004c99; /* 下划线 */
        padding-bottom: 5px; /* 标题与下划线间距 */
        margin-bottom: 10px; /* 标题与下方内容间距 */
    }

    /* 地址、电话、网址段落样式 */
    .province-address p {
        color: #666; /* 字体颜色 */
        line-height: 1.6; /* 行高控制纵向间距 */
        margin: 8px 0; /* 段落上下间距 */
        font-size: 16px; /* 调整字体大小适配 */
    }
    /* 省级按钮悬停效果 */
    .province-btn:hover {
        background-color: #467bff; /* 悬停时背景色变为蓝色 */
        color: white; /* 悬停时文字变为白色 */
        transform: translateY(-2px); /* 轻微上浮效果 */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 添加阴影 */
    }

    .province-btn.active {
        background-color: var(--primary-color);
        color: white;
    }


    /* 地市切换按钮和区县地址容器 */
    .city-switch-and-address-container {
        margin-top: 20px;
        background-color: #fff;
        padding: 2rem;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        margin-left: auto;
        margin-right: auto;
    }

    /* 地市切换按钮 */
    .city-switch {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: flex-start; /* 左对齐排列按钮 */
        margin-bottom: 20px;/* 底部间距 */
        max-width: 900px; /* 限制容器宽度 */
        padding-bottom: 20px; /* 增加内边距，使分割线与内容保持距离 */
        border-bottom: 1px solid #ddd; /* 添加底部边框作为分割线 */
    }
    /* 地市地址信息容器 */
    .city-addresses {
        width: 100%;
    }

    .city-switch .city-btn {
        box-sizing: border-box; /* 包含内边距和边框 */

        background-color: #f0f0f0; /* 默认背景色 */
        color: #333; /* 默认文字颜色 */
        border: 1px solid #ddd;
        transition: all 0.3s ease; /* 添加过渡动画 */
    }
    .city-switch .city-btn:hover {
        background-color: #467bff; /* 悬停时背景色变为蓝色 */
        color: white; /* 悬停时文字变为白色 */
        transform: translateY(-2px); /* 轻微上浮效果 */
    }
    .city-btn {
        padding: 0.5rem 1rem;
        background-color: #f0f0f0;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .city-btn.active {
        background-color: var(--primary-color);
        color: white;
    }

    /* 地市地址名称样式 */
    .city-address h3 {
        color: #004c99; /* 颜色改为 #004c99 */
        margin: 8px 0; /* 间距设置为 8px */
    }
}

/* 历史轮播图样式 */
.history-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-container {
    width: 1500px; /* 5张图片的总宽度 */
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    width: 300px;
    height: auto;
    flex-shrink: 0;
    margin-right: 0;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* 教师轮播图样式 */
.teacher-carousel {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.teacher-tabs {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    /* overflow-y: hidden; */
    position: relative;
}

.teacher-tab {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideIn 0.5s forwards;
}

.teacher-all {
    display: flex;
    margin-top: 10px;
    padding: 10px 50px 10px 50px;
    border-radius: 20px;
    background-color: #f0f0f0;
    justify-content: center;
    color: #ffffff;
    background-color: #6d92ef;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.teacher-tab.active {
    background: #f0f0f0;
    transform: translateX(10px);
}

.teacher-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 1rem;
}

.teacher-info {
    flex: 1;
}

.teacher-name {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 4px;
}

.teacher-brief {
    font-size: 14px;
    color: #ffffff;
}

.teacher-content {
    flex: 1;
    position: relative;
}

.teacher-content-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.teacher-content-item.active {
    display: flex;
    gap: 2rem;
}

.teacher-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.teacher-detail-name {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.teacher-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-score {
    color: #ff6b6b;
    font-weight: bold;
}

.rating-count {
    color: #666;
}

.teacher-description {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.teacher-more {
    display: inline-flex;
    align-items: center;
    color: #1890ff;
    text-decoration: none;
    font-weight: 500;
}

.teacher-more:hover {
    color: #40a9ff;
}

.teacher-portrait {
    width: 300px;
    height: 425px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.teacher-carousel {
    background-image: url('../images/teacher/背景.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.teacher-container {
    margin-top: 30px;
}

.teacher-img {
    height: 457px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .teacher-carousel {
        flex-direction: column;
    }
    
    .teacher-tabs {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #eee;
        margin-bottom: 1rem;
    }
    
    .teacher-content-item.active {
        flex-direction: column;
    }
    
    .teacher-portrait {
        width: 100%;
        height: 425px;
    }
}

@media (min-width: 768px) {
    .fixed {
        background: #fff;
        border-radius: 10px 0 0 10px;
        bottom: 0;
        box-shadow: 0 0 10px #0000001a;
        height: 180px;
        margin: auto 0;
        position: fixed;
        right: 0;
        top: 0;
        width: 90px;
        z-index: 110;
    }
    .fixed-sider-item {
        align-items: center;
        color: #0f356c;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        font-size: 12px;
        height: 90px;
        justify-content: center;
        position: relative;
        width: 90px;
    }
    .fixed .fixed-sider-item:first-child {
        border-start-start-radius: 10px;
    }
    .fixed .fixed-sider-item .img.icon {
        display: block;
    }
    .code-pop {
        align-items: center;
        background: #00000080;
        display: flex;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        justify-content: center;
        opacity: 0;
        position: fixed;
        transition: all .24s linear;
        z-index: -1;
    }
    .code-pop .code {
        background: #fff;
        border-radius: 17px;
        height: 450px;
        position: relative;
        width: 400px;
    }
    .code-pop .code .close {
        cursor: pointer;
        height: 20px;
        position: absolute;
        right: 25px;
        top: 20px;
        width: 20px;
    }
    .code-pop .code .head {
        background: linear-gradient(180deg, #1657da12, #fff);
        height: 46px;
        margin-bottom: 20px;
    }
    .code-pop .code .head .title {
        color: #1d479c;
        font-size: 24px;
        font-weight: 500;
        padding: 15px 30px;
    }
    .code-pop .code .list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }
    .code-pop .code .list .item {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .code-pop .code .list .item .icon {
        height: 154px;
        width: 154px;
    }
    .code-pop .code .list .item .name {
        color: #1d479c;
        font-size: 16px;
    }
    .listen-pop.show {
        opacity: 1;
        z-index: 999;
    }

}

.honor-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
}
.clearfix {
    zoom: 1;
}

.clearfix li {
    width: 31.3%;
    float: left;
    margin-right: 3%;
    padding-bottom: 24px;
    box-shadow: 0 0 20px #f7f7f7;
    background: #fff;
}

.clearfix li div {
    text-align: center;
}

a {
    text-decoration: none;
    color: #333333;
}

.clearfix li div img{
    width: 100%;
}

.clearfix li h6{
    font-size: 14px;
    line-height: 21px;
    height: 44px;
    font: bold 16px / 26px "Microsoft YaHei";
    color: #333333;
    background: url(../images/honor-5.jpg) no-repeat left 50%;
    height: 54px;
    padding-left: 7%;
    overflow: hidden;
    width: 82%;
    margin: 20px auto 0;
}

.clearfix li p{
    font-size: 14px;
    line-height: 26px;
    font: 16px / 32px "Microsoft YaHei";
    color: #353535;
    width: 85%;
    margin: 13px auto 0;
    height: 96px;
    overflow: hidden;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

@media (max-width: 768px) {
    .mobile-sider {
        display: none;
    }
    .code-pop {
        display: none;
    }
}

