body {
    background-color: #deefff;
    font-family: 'microsoft yahei', Arial, Helvetica, sans-serif;
    color: #333333;
}

/* 推荐文章 swiper */
.recommend-swiper {
    width: 100%;
    height: 280px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
}

.recommend-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.recommend-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.recommend-swiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.recommend-swiper .swiper-slide img {
    /* width: 100%; */
    /* height: 100%; */
    object-fit: cover;
    display: block;
}

/* 学校资质 - 学员毕业照 */
.school-cert {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
}

.school-cert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00a1e9, transparent);
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #00a1e9;
}

.cert-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    padding-left: 24px;
    position: relative;
    display: flex;
    align-items: center;
}

.cert-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 28px;
    background: linear-gradient(180deg, #00a1e9, #00c8ff);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 161, 233, 0.4);
}

.cert-more {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cert-more:hover {
    color: #00a1e9;
    text-decoration: none;
    border-color: #00a1e9;
    background: rgba(0, 161, 233, 0.05);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cert-item {
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.cert-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00a1e9, #00c8ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 161, 233, 0.15);
    border-color: rgba(0, 161, 233, 0.3);
}

.cert-item:hover::before {
    opacity: 1;
}

.cert-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-item:hover img {
    transform: scale(1.08);
}

/* 平板端 (min-width: 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .cert-item img {
        height: 140px;
    }
}

/* 手机端 (max-width: 767px) */
@media (max-width: 767px) {
    .school-cert {
        padding: 25px 0;
    }

    .cert-header {
        padding: 0 15px 15px;
    }

    .cert-title {
        font-size: 18px;
        padding-left: 15px;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0 15px;
    }

    .cert-item {
        border-radius: 6px;
    }

    .cert-item img {
        height: 120px;
    }

    .cert-item:hover {
        transform: none;
    }

    .cert-item:hover img {
        transform: none;
    }
}

/* 技能培训课程列表 */
.trains {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f0f9ff 100%);
    position: relative;
}

.trains::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.course-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.course-item {
    display: inline-block;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
}

.course-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
    background-size: 200% 100%;
    animation: gradient-flow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.course-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.18);
    border-color: rgba(102, 126, 234, 0.2);
}

.course-item:hover::before {
    opacity: 1;
}

.course-img {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.course-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-item:hover .course-img img {
    transform: scale(1.12);
}

.course-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6px 16px;
    font-size: 12px;
    border-radius: 25px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.course-item:hover .course-tag {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
}

.course-info {
    padding: 22px;
}

.course-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
    line-height: 1.5;
    height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.course-item:hover .course-title {
    color: #667eea;
}

.course-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px 0;
    line-height: 1.7;
    height: 48px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
}

.course-level {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #4338ca;
    padding: 4px 12px;
    border-radius: 8px;
    font-weight: 600;
}

.course-count {
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-count::before {
    content: "👥";
    font-size: 14px;
}

.course-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-new {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
    font-family: 'Arial', sans-serif;
}

.price-old {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-tag {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    padding: 4px 10px;
    font-size: 11px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 3px 8px rgba(220, 38, 38, 0.3);
}

.lc-pagination {
    text-align: center;
}
.lc-pagination ul {
    display: inline-block;
    list-style: none;
    overflow: hidden;
    margin: 10px;
}
.lc-pagination ul li {
    display: inline-block;
    float: left;
    margin: 10px 5px;
}
.lc-pagination ul li a {
    text-decoration: none;
    display: inline-block;
    padding: 2px 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #ccc;
    background-color: white;
}
.lc-pagination ul li i {
    padding-top: 8px;
    display: inline-block;
}
.lc-pagination ul li a:hover,
.lc-pagination ul li.current a {
    background-color: #00a1e9;
    color: white;
}

/* 左侧菜单样式 */
.z-menu .menu-item {
    display: block;
    padding-left: 35px;
    width: 275px;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    position: relative;
    transition: all 0.3s;
}

.z-menu .menu-item::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    transition: all 0.3s;
}

.z-menu .menu-item:hover {
    color: #d22d2a;
}

.z-menu .menu-item:hover::before {
    background-color: #d22d2a;
}

.z-menu .menu-item.active {
    color: #d22d2a;
    font-weight: bold;
}

.z-menu .menu-item.active::before {
    background-color: #d22d2a;
}

/* 文章列表样式 */
.z-list {
    float: right;
    padding-top: 30px;
    width: 830px;
    margin-right: -15px;
}

.z-list h3 {
    padding-bottom: 26px;
    font-size: 18px;
    color: #d22d2a;
    clear: both;
}

.z-list a {
    display: block;
    float: left;
    margin: 0 15px 15px 0;
    padding: 15px;
    width: 370px;
    height: 80px;
    transition: all 0.3s;
}

.z-list a:hover {
    -webkit-box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.z-list a .photo {
    float: left;
    width: 100px;
    height: 80px;
    overflow: hidden;
}

.z-list a .photo img {
    display: block;
    width: 100%;
}

.z-list a h4 {
    display: -webkit-box;
    float: right;
    width: 255px;
    height: 52px;
    line-height: 26px;
    font-size: 16px;
    color: #000;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.z-list a .info {
    float: right;
    margin-top: 8px;
    width: 255px;
}

.z-list a .info time {
    float: left;
    font-size: 14px;
    color: #666;
}

.z-list02 {
    width: 815px;
    margin-right: 0;
}

.z-list02 a {
    width: 785px;
    height: auto;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: flex-start;
}

.z-list02 a .photo {
    flex-shrink: 0;
}

.z-list02 a .article-content {
    flex: 1;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
}

.z-list02 a .article-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.z-list02 a h4 {
    flex: 1;
    height: 26px;
    line-height: 26px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 15px;
}

.z-list02 a .info {
    flex-shrink: 0;
}

.z-list02 a .info time {
    display: block;
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.z-list02 a p {
    margin-top: 7px;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.z-list02 a:hover h4 {
    color: #d22d2a;
}

/* 平板端 (min-width: 768px) */
@media (min-width: 768px) and (max-width: 991px) {
    .course-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* 手机端 (max-width: 767px) */
@media (max-width: 767px) {
    .trains {
        padding: 25px 0;
    }

    .course-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .course-img {
        height: 180px;
    }

    .course-title {
        font-size: 15px;
    }

    .price-new {
        font-size: 20px;
    }
}

ul {
    list-style: none;
}

li {
    list-style: none;
}

ol {
    list-style: none;
}

ol ol, ol ul, ul ol, ul ul {
    margin: 0;
    padding: 0;
}

img {
    border: 0
}

input {
    outline: none;
}

input, textarea, select, button {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    outline-style: none;
    outline-width: 0pt;
    resize: none;
    padding: 0;
    margin: 0;
}

.top_menu {
    float: right;
    font-size: 12px;
    background-color: #FAFAFA;
    color: #777777;
    width: 100%;
    height: 33px;
    border-bottom: 1px solid #f3f3f3;
}

.top_name {
    display: inline-block;
    padding-top: 8px;
}

.main {
    padding: 30px 0px 10px 0px;
}

.toptel {
    text-align: right;
    font-size: 20px;
    line-height: 28px;
    padding-top: 15px;
}

.toptel .tel-row {
    display: inline-block;
    margin-left: 28px;
}

.navbar {
    margin: 0px;
    border: none;
    background-color: #00a1e9;
}

.glyphicon-home:before {
    color: #fff;
}

#app_menudown {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 16px;
}

#app_menudown:hover {
    background-color: #00a1e9;
}

.headbg {
    width: 100%;
    height: 120px;
    background: url(/images/bg01.jpg) no-repeat center center;
    clear: both;
    position: relative;
    z-index: 999;
}

.headx {
    padding-top: 15px;
}

.syjg {
    margin-top: 20px;
    margin-bottom: 20px;
}

.w1200 {
    width: 1200px;
    margin: 0px auto;
    padding-top: 25px;
    padding-bottom: 25px;
}

.w1201 {
    width: 1200px;
    margin: 0px auto;
    padding-top: 25px;
    padding-bottom: 5px;
}

.train-item {
    height: 480px;
    overflow: hidden;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.syad {
    width: 100%;
    margin: 0px auto;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.syad span {
    display: inline-block;
    flex: 1;
    height: 100%;
    text-align: left;
    color: white;
    font-size: 16px;
    line-height: 50px;
    padding: 0 15px;
}
.syad a {
    display: inline-block;
    padding-right: 15px;
    color: white;
    font-size: 14px;
    line-height: 50px;
    text-align: right;
}

.syad1 {
    width: 100%;
    height: auto;
    margin: 0px auto;
    padding-bottom: 20px;
}

.syadx {
    padding-bottom: 20px;
}

.box {
    width: 1200px;
    margin: 0 auto;
}

.boxzs {
    width: 1215px;
    margin-left: -15px;
}

.search_group {
    float: right;
    margin: 30px 0px 0px 0px;
}

.form-control {
    border-radius: 0px;
    box-shadow: none;
}

.mysearch_btn {
    background-color: #00a1e9;
    color: #fff;
    border-radius: 0px;
    transition: background 0.3s;
}

.mysearch_btn:hover, .mysearch_btn:focus {
    background-color: #046eaf;
    color: #fff;
}

#small_search {
    float: right;
    margin-top: 7px;
    padding: 8px 13px;
    font-size: 17px;
    border-radius: 4px;
    color: #fff;
}

#small_search:hover, #small_search:focus {
    cursor: pointer;
    background-color: #00a1e9;
}

.fa-search {
    background-image: url(/images/search.png);
    background-size: auto;
}

.wb-search {
    background-image: url(/images/search2.png);
    background-size: auto;
}

.productBox {
    margin: 0px 0px 0px 0px;
}

.productBox .list {
    clear: both;
    padding: 0px 0px 0px 0px;
    margin-right: 0px;
    margin-left: -40px;
    overflow: hidden;
    font-size: 14px;
}

.productImg {
    min-height: 100px;
    margin: 0px;
    margin-bottom: 20px;
}

.productImg a {
    position: relative;
    display: block;
    width: auto;
    margin: 0px auto 0px auto;
    overflow: hidden;
    width: 100%;
}

.productImg img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    height: auto;
    width: 100%;
    height: auto;
    margin-bottom: 0px;
    padding: 0px;
    transition: all .5s;
}

.productImg a:hover img {
    transform: scale(1.2);
}

.productTitle {
    width: 100%;
    display: block;
    text-align: center;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
}

/*.productTitle:hover { text-decoration:none; color:#fff; background:#00a1e9;}*/
.productBox .list li {
    color: #333;
    background: #d6d6d6;
    cursor: pointer;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.productBox .list li:hover {
    text-decoration: none;
    color: #fff;
    background: #00a1e9;
}

.productBox .list li:hover a {
    color: #fff;
}

.homeTitleBar {
    overflow: hidden;
    background: none;
    margin-bottom: 10px
}

.homeTitleBar h2 {
    font-size: 24px;
    line-height: 40px;
    height: 40px;
    display: block;
    text-align: center;
    width: 100%;
    color: #00a1e9;
    font-weight: bold;
}

.homeTitleBar span {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    display: block;
    text-align: center;
    width: 100%;
    background: url(/images/linebg.png) no-repeat center center;
}

.homeTitleBar p {
    font-size: 14px;
    line-height: 30px;
    height: 30px;
    display: block;
    text-align: center;
    width: 100%;
    color: #666;
    margin: 0;
}


.newsBg {
    background: #f9f9f9;
    overflow: hidden;
    margin-top: 10px;
}

.newsBg1 {
    background: #ffffff;
    overflow: hidden;
    margin-top: 20px;
}

.newsBox {
    margin: 0px -10px 0px -10px;
    overflow: hidden;
}

.newsBox .indexNewsList {
    margin-left: 0px;
    margin-right: 0px;
}

.newsBox .indexNewsList1 {
    margin-left: -10px;
    margin-right: -10px;
}

.newsBox .imgNewsBox {
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 0px;
}

.newsBox .imgNewsBox img {
    width: 100%;
}

.newsBox .newsList {
    flex: 1;
    clear: both;
    list-style: none;
    margin: 0px;
    padding: 4px 0px 0px 0px;
    background: #fff;
}

.newsBox .newsList li {
    width: 100%;
    border-bottom: 1px dashed #ccc;
    overflow: hidden;
    line-height: 42px;
    height: 42px;
    padding: 0 0 0 10px;
    text-align: left;
}

/* background: url("../images/sybttb.png") no-repeat left center; */
.newsBox .newsList li em {
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #106fad;
    border-radius: 50%;
    float: left;
    margin: 18px 10px 0px 0px;
}

.newsBox .newsList li:hover {
    background-color: none
}

.newsBox .newsList li a {
    font-size: 14px;
    color: #333333;
}

.newsBox .newsList li a:hover {
    text-decoration: none;
    background: none;
    color: #00a1e9
}

/* 通用的span样式 - 用于培训动态等区域 */
.newsBox .newsList li > span {
    color: #999;
    font-size: 14px;
    float: right;
    margin-right: 5px;
    margin-left: 10px;
}

/* 开班通知专用样式 - 仅影响.lmsybk内的列表 */
.newsBox .indexNewsList .lmsybk .newsList li a {
    font-size: 14px;
    color: #333333;
    display: block;
    width: 100%;
    overflow: hidden;
}

.newsBox .indexNewsList .lmsybk .newsList li a em {
    display: block;
    width: 6px;
    height: 6px;
    border: 1px solid #106fad;
    border-radius: 50%;
    float: left;
    margin: 18px 10px 0px 0px;
}

.newsBox .indexNewsList .lmsybk .newsList li a span:first-of-type {
    float: left;
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
    font-size: 14px;
}

.newsBox .indexNewsList .lmsybk .newsList li a span:last-of-type {
    float: right;
    color: #999;
    font-size: 12px;
    margin-left: 15px;
    margin-right: 15px;
}

.newsBox .newsList li .time {
    float: right;
    font-size: 12px;
    color: #888888;
}

.indexNews {
    margin-top: -10px;
    margin-bottom: 30px;
}

.indexNews li {
    overflow: hidden;
    padding: 0px;
    line-height: 35px;
    border-bottom: 1px dashed #ccc
}

.leftNewsBox {
    margin: 0px 0px 0px 0px;
}

.lmsybk {
    border: solid #d1d1d1 1px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    background: #fff;
    height: auto;
    overflow: hidden;
}

.lmsybk1 {
    border: solid #d1d1d1 1px;
    padding-bottom: 15px;
    margin-bottom: 0px;
    background: #fff;
    height: auto;
    overflow: hidden;
    margin-left: -10px;
    margin-right: -10px;
}

.lmsybg {
    height: 40px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f5eeee;
    position: relative;
}

.lmsybg::after {
    content: '';
    display: block;
    clear: both;
}

.lmsybg1 {
    height: 45px;
    background-image: url(/images/sylmbtbj.png);
    margin-bottom: 15px;
}

.lmsybt {
    color: #fff;
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    padding: 0 22px;
    overflow: hidden;
    font-weight: bold;

    background-color: #00a1e9;
}

.lmsybt1 {
    color: #fff;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    margin-left: 40px;
    overflow: hidden;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.lmsybt2 {
    color: #fff;
    font-size: 18px;
    height: 45px;
    line-height: 45px;
    margin-left: 20px;
    overflow: hidden;
    font-weight: bold;
}

.lmsymore {
    color: #999;
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    margin-right: 15px;
    overflow: hidden;
}

.lmsymore a {
    color: #999;
}

.lmsymore a:hover {
    color: #00a1e9;
}

.lmsymore1 {
    color: #fff;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    margin-right: 15px;
    overflow: hidden;
}

.lmsymore1 a {
    color: #fff;
}

.lmsymore1 a:hover {
    color: #046eaf;
}

.lbList {
    PADDING-RIGHT: 0px;
    LIST-STYLE: none none outside;
    PADDING-LEFT: 30px;
    PADDING-BOTTOM: 0px;
    MARGIN: 0px;
    PADDING-TOP: 0px;
    COLOR: #ffffff;
}

.lbList li {
    float: left;
    border-radius: 0px;
    margin: 8px 25px 8px 0px;
    display: inline;
    width: 140px;
    height: 35px;
    color: #ffffff;
    text-align: center;
    line-height: 35px;
    font-weight: none;
    background-color: #00a1e9;
    border: 2px;
}

.lbList li:first-child {
    background-color: #f7a140;
}

.lbList A {
    DISPLAY: block;
    BACKGROUND: url(/images/lmdh01.png) no-repeat 0px 0px;
    COLOR: #ffffff;
    font-size: 16px;

}


.fl {
    float: left;
}

.fr {
    float: right;
}

.center {
    text-align: center;
}

.sList1 {
    PADDING-RIGHT: 0px;
    LIST-STYLE: none none outside;
    PADDING-LEFT: 2px;
    PADDING-BOTTOM: 0px;
    MARGIN: 0px;
    line-height: 40px;
    FONT-SIZE: 14px;
}

.sList1 A {
    DISPLAY: block;
    PADDING-LEFT: 50px;
    BACKGROUND: url(/images/kc01.png) no-repeat 0px 0px;
    COLOR: #000;
    HEIGHT: 41px
}

.sList1 A:hover {
    FONT-WEIGHT: none;
    BACKGROUND: url(/images/kc02.png) no-repeat 0px 0px;
    COLOR: #fff;
    text-decoration: none;
    HEIGHT: 41px
}

.sList1 A.sOpen {
    FONT-WEIGHT: none;
    BACKGROUND: url(/images/kc02.png) no-repeat 0px 0px;
    COLOR: #fff;
    text-decoration: none;
    HEIGHT: 41px
}

.sList1 .gray {
    FONT-SIZE: 8pt;
    FONT-FAMILY: arial;
}

.sList2 {
    PADDING-RIGHT: 0px;
    LIST-STYLE: none none outside;
    PADDING-LEFT: 2px;
    PADDING-BOTTOM: 50px;
    MARGIN: 0px;
    line-height: 40px;
    FONT-SIZE: 18px;
    font-weight: 500;
}

.sList2 A {
    DISPLAY: block;
    PADDING-LEFT: 60px;
    BACKGROUND: url(/images/kf01.png) no-repeat 0px 0px;
    COLOR: #000;
    HEIGHT: 41px
}

/* 培训课程 */
.training-courses {
    padding: 40px 0;
    background: #fff;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    padding: 0 15px;
}

.course-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.course-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 161, 233, 0.12);
    border-color: #00a1e9;
}

.course-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-item:hover .course-img img {
    transform: scale(1.04);
}

.course-title {
    font-size: 18px;
    font-weight: bold;
    color: #363534;
    padding: 16px 15px 10px;
    text-align: center;
    border-bottom: 1px dashed #e8e8e8;
}

.course-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    /* padding: 14px 15px 18px; */
    text-align: justify;
}

/* 平板端 (769px - 992px) */
@media (max-width: 992px) {
    .course-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 20px;
    }

    .course-img {
        height: 180px;
    }

    .course-title {
        font-size: 16px;
        padding: 14px 12px 8px;
    }

    .course-desc {
        font-size: 12px;
        padding: 12px 12px 15px;
        line-height: 1.6;
    }
}

/* 手机端 (max-width: 768px) */
@media (max-width: 768px) {
    .training-courses {
        padding: 25px 0;
    }

    .course-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 25px;
        padding: 0 15px;
    }

    .course-item {
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .course-img {
        height: 160px;
    }

    .course-title {
        font-size: 15px;
        padding: 12px 12px 8px;
    }

    .course-desc {
        font-size: 12px;
        padding: 10px 12px 14px;
        line-height: 1.6;
    }

    .course-item:hover {
        transform: none;
        box-shadow: 0 4px 12px rgba(0, 161, 233, 0.1);
    }

    .course-item:hover .course-img img {
        transform: none;
    }
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 证书详情区域 */
.cert-detail-section {
    padding: 30px 15px;
    background: #fff;
}

.cert-breadcrumb {
    font-size: 14px;
    color: #666;
    padding: 0 15px;
}

.cert-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.cert-breadcrumb a:hover {
    color: #00a1e9;
}

.cert-breadcrumb .active {
    color: #00a1e9;
    font-weight: bold;
}

.cert-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 0 15px;
}

.cert-left {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 560px;
}

.cert-swiper {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

.cert-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
}

.cert-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.cert-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cert-right {
    width: 100%;
}

.cert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cert-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.cert-count {
    font-size: 14px;
    color: #999;
}

.cert-info {
    margin-bottom: 20px;
}

.price-info {
    font-size: 28px;
    font-weight: bold;
    color: #e53935;
    margin: 0 0 10px 0;
}

.cert-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.cert-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cert-features li {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    padding: 12px 0;
    position: relative;
    padding-left: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.cert-features li:last-child {
    border-bottom: none;
}

.cert-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: #00a1e9;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
    font-weight: bold;
}

.cert-features li strong {
    color: #333;
    font-weight: 600;
}

.cert-features li strong:first-child {
    color: #00a1e9;
}


.icon-check {
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    background: url(/images/check.png) no-repeat center center;
    background-size: contain;
}

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    border-radius: 4px;
    margin-right: 8px;
}

.cert-contact {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff3f3;
    border-radius: 8px;
}

.contact-label {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-phone {
    font-size: 20px;
    font-weight: bold;
    color: #e53935;
    margin: 0 0 0 10px;
}

.cert-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-primary {
    flex: 1;
    height: 48px;
    background: #e53935;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.btn-outline {
    flex: 1;
    height: 48px;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: #00a1e9;
    color: #00a1e9;
}

.btn-outline-blue {
    flex: 1;
    height: 48px;
    background: #fff;
    color: #00a1e9;
    border: 1px solid #00a1e9;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-blue:hover {
    background: #00a1e9;
    color: #fff;
}

.cert-success {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
}

.success-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.success-item:last-child {
    border-bottom: none;
}

.success-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 12px;
}

.success-item span {
    font-size: 13px;
    color: #666;
}

/* 手机端 (max-width: 767px) */
@media (max-width: 767px) {
    .cert-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }

    .cert-left {
        width: 100%;
        height: 250px;
        max-width: none;
    }

    .cert-right {
        width: 100%;
        padding: 0;
    }

    .cert-header h1 {
        font-size: 20px;
    }

    .cert-features li {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* 平板端 (min-width: 768px) */
@media (min-width: 768px) {
    .cert-content {
        flex-direction: row;
        gap: 30px;
    }


    .cert-right {
        flex: 1;
    }

    .cert-breadcrumb {
        padding: 0 25px;
    }

    .cert-content {
        padding: 0 25px;
    }
}

/* 桌面端 (min-width: 992px) */
@media (min-width: 992px) {
    .cert-detail-section {
        padding: 40px 0;
    }

    .cert-breadcrumb {
        padding: 0 30px;
    }

    .cert-content {
        padding: 0 30px;
        gap: 40px;
    }

    .cert-left {
        max-width: 450px;
    }

    .cert-header h2 {
        font-size: 28px;
    }

    .price-info {
        font-size: 32px;
    }
}

.sList2 A:hover {
    FONT-WEIGHT: none;
    BACKGROUND: url(/images/kf02.png) no-repeat 0px 0px;
    COLOR: #fff;
    text-decoration: none;
    HEIGHT: 41px
}

/* 培训基地实景 */
.training-base {
    padding: 40px 0;
    background: #fff;
}

.base-grid {
    margin-top: 35px;
    padding: 0 20px;
}

.base-main {
    width: 100%;
    margin-bottom: 18px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    min-height: 200px;
    max-height: 350px;
    height: 350px;
}

.base-main img {
    width: 100%;
    height: 100%;
    max-height: 350px;
    object-fit: cover;
    display: block;
}

.main-swiper {
    width: 100%;
    height: 100%;
    max-height: 350px;
    position: relative;
    overflow: hidden;
}

.main-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    transition: transform 0.5s ease;
}

.main-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.base-side {
    position: relative;
    min-height: 200px;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 10px;
}

.base-swiper {
    width: 100%;
    height: 100%;
    min-height: 200px;
}

.base-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    transition: transform 0.5s ease;
}

.base-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.base-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.base-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    padding: 10px 12px;
    text-align: center;
}

.base-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.base-small {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.base-small img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
}

/* 平板端 (769px - 992px) */
@media (min-width: 769px) {
    .base-grid {
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding: 0 25px;
    }

    .base-top {
        display: flex;
        gap: 22px;
    }

    .base-main {
        flex: 2;
        margin-bottom: 0;
        height: 430px;
        max-height: 430px;
    }

    .base-main img {
        height: 100%;
        max-height: 430px;
        object-fit: cover;
    }

    .main-swiper {
        height: 100%;
        max-height: 430px;
    }

    .base-side {
        flex: 1;
        margin-bottom: 0;
        min-height: 430px;
        max-height: 430px;
    }

    .base-swiper {
        min-height: 430px;
        max-height: 430px;
    }

    .base-row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .base-small img {
        height: 115px;
    }
}

/* 桌面端 (min-width: 992px) */
@media (min-width: 992px) {
    .base-grid {
        padding: 0 30px;
    }

    .base-main {
        height: 480px;
        max-height: 480px;
    }

    .base-main img {
        max-height: 480px;
    }

    .main-swiper {
        height: 100%;
        max-height: 480px;
    }

    .base-side {
        min-height: 480px;
        max-height: 480px;
    }

    .base-swiper {
        min-height: 480px;
        max-height: 480px;
    }

    .base-row {
        gap: 16px;
    }

    .base-small img {
        height: 170px;
    }
}

/* 手机端 (max-width: 768px) */
@media (max-width: 768px) {
    .training-base {
        padding: 22px 0;
        background: #fff;
    }

    .base-grid {
        display: block;
        margin-top: 22px;
        padding: 0 15px;
    }

    .base-main {
        margin-bottom: 16px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        height: 200px;
        max-height: 200px;
    }

    .base-main img {
        height: 200px;
        object-fit: cover;
    }

    .main-swiper {
        height: 100%;
        max-height: 200px;
    }

    .base-side {
        margin-bottom: 16px;
        min-height: 200px;
    }

    .base-swiper {
        min-height: 200px;
    }

    .base-swiper .swiper-slide {
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .base-label {
        font-size: 12px;
        padding: 8px 10px;
        background: rgba(0, 0, 0, 0.5);
    }

    .base-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .base-small {
        border-radius: 6px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    }

    .base-small img {
        height: 85px;
    }
}

/* 培训动态 */
.training-news {
    padding: 40px 0;
    background: #fff;
}

.news-grid {
    margin-top: 35px;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.news-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #00a1e9;
}

.news-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.news-icon {
    color: #00a1e9;
    margin-right: 8px;
}

.news-more {
    font-size: 14px;
    color: #999;
    text-decoration: none;
}

.news-more:hover {
    color: #00a1e9;
    text-decoration: none;
}

.news-featured {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.news-img {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
}

.news-content h4 a {
    color: #333;
    text-decoration: none;
}

.news-content h4 a:hover {
    color: #00a1e9;
}

.news-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-date {
    font-size: 12px;
    color: #999;
}

.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-list li {
    padding: 12px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 15px;
}

.news-list li:last-child {
    border-bottom: none;
}

.news-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00a1e9;
    border-radius: 50%;
}

.news-list li a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-list li a:hover {
    color: #00a1e9;
}

.news-list.industry li {
    padding-left: 20px;
}

.news-list.industry li::before {
    width: 4px;
    height: 4px;
    background: #ff6600;
}

/* 免费推荐就业 */
.employment-section {
    padding: 30px 15px;
    background: #f8f9fa;
}

.employment-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.employment-left {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.employment-left img {
    width: 100%;
    height: auto;
    display: block;
}

.employment-right {
    flex: 1;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.employment-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00a1e9;
}

.employment-header h4 {
    font-size: 18px;
    font-weight: bold;
    color: #00a1e9;
    margin: 0;
}

.employment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.employment-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.employment-list li:last-child {
    border-bottom: none;
}

.employment-list li a {
    font-size: 14px;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.employment-list li a:hover {
    color: #00a1e9;
}

.employment-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #00a1e9;
    border-radius: 2px;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
}

/* 平板端 (min-width: 768px) */
@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .news-img {
        width: 200px;
        height: 140px;
    }

    .employment-content {
        flex-direction: row;
        padding: 0 25px;
    }

    .employment-left {
        flex: 1;
    }

    .employment-right {
        flex: 1;
    }

    .employment-list li a {
        font-size: 15px;
    }
}

/* 桌面端 (min-width: 992px) */
@media (min-width: 992px) {
    .news-grid {
        grid-template-columns: 2fr 1fr;
        gap: 30px;
        padding: 0 30px;
    }

    .news-section {
        padding: 25px;
    }

    .news-header h3 {
        font-size: 20px;
    }

    .news-img {
        width: 220px;
        height: 150px;
    }

    .news-content h4 {
        font-size: 18px;
    }

    .news-content p {
        font-size: 14px;
    }

    .employment-content {
        padding: 0 30px;
        gap: 30px;
    }

    .employment-left {
        flex: 1;
    }

    .employment-right {
        flex: 1;
    }

    .employment-header h4 {
        font-size: 20px;
    }

    .employment-list li a {
        font-size: 15px;
    }
}

/* 手机端 (max-width: 767px) */
@media (max-width: 767px) {
    .training-news {
        padding: 25px 0;
    }

    .news-grid {
        margin-top: 25px;
        gap: 20px;
    }

    .news-section {
        padding: 15px;
        border-radius: 8px;
    }

    .news-header {
        margin-bottom: 15px;
        padding-bottom: 12px;
    }

    .news-header h3 {
        font-size: 16px;
    }

    .news-featured {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .news-img {
        width: 100%;
        height: 160px;
    }

    .news-content h4 {
        font-size: 15px;
    }

    .news-content p {
        font-size: 13px;
    }

    .news-list li {
        padding: 10px 0;
        padding-left: 12px;
    }

    .news-list li a {
        font-size: 13px;
    }

    .employment-section {
        padding: 25px 0;
    }

    .employment-content {
        gap: 15px;
    }

    .employment-left {
        border-radius: 8px;
    }

    .employment-right {
        padding: 15px;
        border-radius: 8px;
    }

    .employment-header {
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .employment-header h4 {
        font-size: 16px;
    }

    .employment-list li {
        padding: 6px 0;
    }

    .employment-list li a {
        font-size: 13px;
    }

    .employment-dot {
        width: 5px;
        height: 5px;
        margin-top: 6px;
    }
}

/* 合作企业 */
.partner-section {
    padding: 30px 15px;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.partner-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    aspect-ratio: 16/9;
}

.partner-item:hover {
    border-color: #00a1e9;
    box-shadow: 0 4px 12px rgba(0, 161, 233, 0.15);
    transform: translateY(-3px);
}

.partner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
}

/* 平板端 */
@media (max-width: 992px) {
    .partner-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .partner-item {
        padding: 12px;
    }
}

/* 手机端 */
@media (max-width: 768px) {
    .partner-section {
        padding: 25px 0;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0 10px;
    }

    .partner-item {
        padding: 10px;
        border-radius: 6px;
    }
}

/*å°ç±»*/
ul.left_snav_ul {
    list-style: none;
    padding: 0px;
    display: none;
    padding-top: 8px;
}

ul.left_snav_ul > li {
    margin: 0px;
    padding: 5px 0px 5px 10px;
    background: url(../images/left_sli.gif) 0px 13px no-repeat;
}

ul.left_snav_ul > li > a {
    border: 0;
    color: #2F2F2F;
    padding: 5px 0px 5px 0px;
}

ul.left_snav_ul > li > a:hover {
    text-decoration: none;
    color: #00a1e9;
}

.menu_head {
    cursor: pointer;
    font: 600 18px/30px "Open Sans", sans-serif;
    width: 35px;
    text-align: center;
    color: #303c4b;
    display: inline-block;
    position: absolute;
    top: 3px;
    right: 0px;
}

.menu_head:hover {
    color: #00a1e9;
}


.imgList1 {
    PADDING-RIGHT: 2px;
    PADDING-LEFT: 2px;
    PADDING-BOTTOM: 5px;
    PADDING-TOP: 0px;
    DISPLAY: block;
    OVERFLOW: hidden;
    LINE-HEIGHT: 1.8;
    TEXT-ALIGN: center;
}

.imgList1 UL {
    PADDING-RIGHT: 20px;
    PADDING-LEFT: 0px;
    PADDING-BOTTOM: 0px;
    MARGIN: 0px;
    PADDING-TOP: 5px;
    LIST-STYLE-TYPE: none
}

.imgList1 LI {
    FLOAT: left;
    WIDTH: 280px;
    font-size: 14px;
}

.imgList1 LI IMG {
    BORDER-RIGHT: #ddd 0px solid;
    PADDING-RIGHT: 0px;
    BORDER-TOP: #ddd 0px solid;
    DISPLAY: block;
    PADDING-LEFT: 0px;
    BACKGROUND: #fff;
    PADDING-BOTTOM: 0px;
    MARGIN: auto;
    BORDER-LEFT: #ddd 0px solid;
    PADDING-TOP: 0px;
    BORDER-BOTTOM: #ddd 0px solid;
    _vertical-align: bottom
}

.imgList1 LI A:hover IMG {
    BORDER-RIGHT: #b3ada3 0px solid;
    PADDING-RIGHT: 0px;
    BORDER-TOP: #b3ada3 0px solid;
    PADDING-LEFT: 0px;
    BACKGROUND: #f6f6f6;
    PADDING-BOTTOM: 0px;
    BORDER-LEFT: #b3ada3 0px solid;
    PADDING-TOP: 0px;
    BORDER-BOTTOM: #b3ada3 0px solid
}

A.imgLink1:hover IMG {
    BORDER-RIGHT: #b3ada3 0px solid;
    PADDING-RIGHT: 0px;
    BORDER-TOP: #b3ada3 0px solid;
    PADDING-LEFT: 0px;
    BACKGROUND: #f6f6f6;
    PADDING-BOTTOM: 0px;
    BORDER-LEFT: #b3ada3 0px solid;
    PADDING-TOP: 0px;
    BORDER-BOTTOM: #b3ada3 0px solid
}

/*å·¦ä¾§æ°é»*/
.left_news {
    clear: both;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.left_news li {
    color: #545455;
    border-bottom: 1px dotted #dddddd;
    background: url(../images/li.png) no-repeat left 12px;
    line-height: 21px;
    padding: 10px 0px;
    padding-left: 16px;
}

.left_news li a {
    color: #2F2F2F;
}

.left_news li a:hover {
    text-decoration: none;
    color: #00a1e9;
}

.list_box {
    clear: both;
    margin-bottom: 45px;
}


/*æ°é»åè¡¨*/
.list_news {
    clear: both;
    list-style: none;
    margin: 0px;
    padding: 6px 0px 20px 0px;
}

.list_news li {
    color: #666666;
    font-size: 14px;
    background: url(/images/sybttb.png) no-repeat left 15px;
    line-height: 35px;
    margin-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    border-bottom: 1px dashed #e3e2e2; /*dotted*/
}

.list_news li a {
    color: #2F2F2F;
}

.list_news li a:hover {
    text-decoration: none;
    color: #00a1e9;
    font-weight: bold;
    padding-left: 10px;
}

.news_time {
    float: right;
}

.contents {
    clear: both;
    padding: 6px 2px 0px 2px;
    line-height: 28px;
    overflow: auto;
}

.contents_title {
    margin: 0px;
    padding: 10px 0px;
    text-align: center;
    color: #000;
    font-size: 18px;
    color: #434343;
    font-weight: bold;
    line-height: 34px;
}


.page {
    clear: both;
    padding: 1px 0px;
    font-size: 14px;
    text-align: center;
}

.page a {
    padding: 2px 6px;
    border: 1px solid #bfbfbf;
    margin: 3px;
    text-decoration: none;
    border-radius: 2px;
}

.page SPAN {
    padding: 2px 6px;
    border: 1px solid #bfbfbf;
    margin: 3px;
    text-decoration: none;
    border-radius: 2px;
}

.page a:hover {
    border: #000;
}

.page span.current {
    border: #000;
    font-weight: bold;
    border-radius: 2px;
}


#pic-page {
    text-align: center;
    margin-top: 10px;
}

#pic-page a {
    margin: 0 2px;
}

#pic-page a img {
    width: 40px;
    padding: 2px;
    border: solid #ccc 1px;
    margin-bottom: 5px;
}
contentar
#pic-page a:hover img, #pic-page a.active img {
    border: solid #5280DD 1px;
}

.showpic_box, .proinfo_box {
    margin: 20px 0px 20px 0px;
}

.product_h1 {
    margin: 0px;
    line-height: 26px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding-bottom: 10px;
    border-bottom: 1px dotted #cccccc;
}

.product_info {
    list-style: none;
    padding: 0px;
    margin-top: 10px;
}

.product_info li {
    line-height: 24px;
    padding-bottom: 12px;
}

.product_con {
    clear: both;
    border-top: 1px dotted #ccc;
    margin: 10px 0px 20px 0px;
    padding: 20px 0px 0px 0px;
    line-height: 26px;
    overflow: auto;
}

.photo_con {
    clear: both;
    margin: 0px 0px 20px 0px;
    padding: 10px 0px 20px 0px;
    line-height: 26px;
    overflow: auto;
}


.list_p {
    width: 100%;
    float: left;
    margin-bottom: 20px;
    position: relative;
}

.list_p ul {
    margin-left: -60px;
}

.list_p li {
    width: calc(33.333% - 20px);
    float: left;
    margin-left: 20px;
    position: relative;
    background: #F5F7FA;
    border-radius: 4px;
    cursor: pointer;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/*.list_p li:after{width:40px;height:40px;background:url("../images/tji.png") no-repeat;background-size:100%;left:0px;top:0px;}*/
.list_p li i {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    max-height: auto;
    position: relative;
    overflow: hidden;
}

.list_p li h2 {
    width: calc(100% - 30px);
    float: left;
    font-size: 18px;
    height: 30px;
    line-height: 30px;
    padding: 0 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list_p li p {
    width: calc(100% - 30px);
    float: left;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    padding: 0 15px;
    margin-top: 10px;
    position: relative;
}

.list_p li:hover {
    background-color: #00a1e9;
}

.list_p li:hover a {
    color: #fff;
}

.list_p li:hover p {
    color: #fff;
}

.list_p li:hover img {
    transform: scale(1.1);
    transition: 600ms;
}

.related_h2 {
    padding: 30px 0px 12px 0px;
    color: #303c4b;
    margin: 0px;
    display: block;
    font-weight: 300;
    font-size: 24px;
    border-bottom: 5px solid #f4f5f6;
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.related_list {
    padding-top: 12px;
}

.related_news {
    padding-top: 0px;
    clear: both;
}


.download_btn {
    text-align: right;
    margin: 10px 10px 20px 0px;
}

.page-btn {
    background-color: #00a1e9;
    border-radius: 0px;
    border: none;
    transition: background 0.3s;
}

.page-btn:hover, .page-btn:focus {
    background-color: #00a1e9;
}

.grey-btn {
    border-radius: 0px;
    border: none;
    background-color: #E8E8E8;
}

.grey-btn:hover, .grey-btn:focus {
    background-color: #ccc;
}

.a2a_default_style {
    display: inline-block;
}


.feedback {
    margin-top: 50px;
}

.form-horizontal .form-group {
    margin-right: -10px;
    margin-left: -10px;
}

.codeimg {
    margin: 0px 0px -10px -18px;
}

.jltop {
    padding-top: 10px;
    clear: both
}


.point {
    clear: both;
    margin: 20px 0px 20px 0px;
    padding-bottom: 5px;
    line-height: 22px;
}

.point span.to_prev {
    text-align: center;
}

.point span.to_prev a {
    color: #0c548c;
}

.point span.to_prev a:hover {
    color: #00a1e9;
    text-decoration: none;
}

.point span.to_next {
    text-align: center;
}

.point span.to_next a {
    color: #0c548c;
}

.point span.to_next a:hover {
    color: #00a1e9;
    text-decoration: none;
}



.tags {
    margin: 18px 0px 10px 0px
}

.tags a {
    margin: 0px 5px 8px 0px
}

.tags_list {
    padding: 5px 10px 100px 10px
}

.tags_ul {
    margin-top: 0px;
}

.tags_ul li {
    line-height: 28px;
    margin-bottom: 8px;
    padding-bottom: 10px;
}

.tags_ul h3 {
    font-size: 14px;
    padding: 0px;
    margin: 0px;
    line-height: 20px;
}

.tags_ul p {
    font-size: 13px;
    padding: 0px;
    margin: 0px;
    color: #777;
    line-height: 20px;
    padding-top: 8px;
}

ul.ul_sitemap {
    margin: 30px 0px 40px 30px;
}

ul.ul_sitemap li {
    list-style: none;
    line-height: 26px;
    clear: both;
}

ul.ul_sitemap li a {
    color: #7d7d7d;
}

li.small_li_sitemap {
    clear: both;
    padding-left: 12px;
}

li.small_li2_sitemap {
    float: left;
    padding-left: 20px;
}

#translate {
    width: 180px;
    margin: 0 auto;
}

#translate-this {
    margin: 15px 0px 10px 0px;
}


/*é¦é¡µTags*/
.tags_box {
    background-color: #00a1e9;
    padding: 9px 0px 9px 0px;
    text-align: center;
    color: #E9E9EA;
    font-size: 13px;
}

.tags_box a {
    color: #E9E9EA;
    border-right: 1px solid #BBBBBB;
    padding: 0px 8px 0px 8px;
    font-size: 13px;
}

.tags_box a:hover {
    text-decoration: none;
    color: #ffeb3b;
}

.tags_box a:last-child {
    border-right: 0px;
}

.tags_box button {
    display: none;
}

.tags_title {
    font-size: 13px;
    margin-right: -6px;
}

.tags_title a {
    padding: 0px 10px 0px 0px;
}

.tags_title:after {
    content: "ï¼";
}

.link_box {
    background-color: #3e3e3e;
    padding: 10px 0px;
    text-align: center;
    color: #E9E9EA;
    font-size: 13px;
}

.link_box a {
    color: #E9E9EA;
    border-right: 1px solid #BBBBBB;
    padding: 0px 10px 0px 10px;
    font-size: 13px;
}

.link_box a:hover {
    text-decoration: none;
    color: #ffeb3b;
}

.link_box a:last-child {
    border-right: 0px;
}

.link_box button {
    display: none;
}

.link_title {
    font-size: 13px;
    margin-right: -6px;
}

.link_box li {
    display: inline;
}


/*页脚信息*/

.footer {
    background: linear-gradient(135deg, #005a9e 0%, #0066cc 100%);
    padding: 30px 0;
    color: #fff;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer .flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer .left {
    width: 200px;
    flex-shrink: 0;
}

.footer .left img {
    max-width: 150px;
    height: auto;
}

.footer .middle {
    flex: 1;
    min-width: 300px;
    padding: 0 30px;
}

.footer .footnav {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .footnav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer .footnav a:first-child {
    margin-left: 0;
}

.footer .footnav a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .copyright1 {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.footer .copyright1 a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.footer .copyright1 a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer .copyright1 span {
    color: #ffd700;
    font-weight: bold;
}

.footer .right {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
}

.footer .right img {
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
}

.footer .right span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.copyright {
    line-height: 30px;
    padding: 0px 5px;
}

.copyright a {
    color: #fff;
}

.foot_nav {
    width: 25%;
    float: left;
    background-color: #fafafa;
    text-align: center;
    color: #898989;
}

.foot_nav:hover, .foot_nav:focus {
    background-color: #e4e4e4;
    cursor: pointer;
}

.foot_nav a {
    color: #898989;
    display: block;
}

.foot_nav a:hover, .foot_nav a:focus {
    text-decoration: none;
}

.foot_nav span {
    display: block;
    padding: 3px 0px 0px 0px;
}

.webshare {
    width: 230px;
    padding: 5px;
}

.ewebshare {
    width: 200px;
    padding: 5px;
}

.ydhome {
    width: 18px;
    height: 18px;
    background: url(/images/home.png);
    color: #898989;
}


.fixedydnav {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 999;
    opacity: 0.9;
}

.ulstyle a:hover {
    background: #046eaf;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

@media screen and (min-width: 769px) {
    header {
    }

    .logo {
        margin-top: 15px;
        margin-bottom: 15px;
        max-width: 280px;
        height: auto;
    }

    .navbar {
        margin-top: 24px;
        min-height: 50px;
    }

    .navbar-nav > li {
    }

    .navbar-nav > li:first-child {
        border-left: 0;
    }

    .navbar-nav > li:last-child {
    }

    .navbar-nav > li > a {
        text-align: center;
    }

    .navbar-default .navbar-nav > li > a {
        color: #fff;
        padding: 15px 28px 15px 28px;
    }

    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > li > a.active,
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        background-color: #00a1e9;
        color: #fff;
    }

    .navbar-brand {
        display: none;
    }

    .navbar-fixed-top {
        min-height: 40px;
        margin-top: 0px;
        opacity: 0.9;
    }

    .navbar-fixed-top ul.navbar-nav > li > a {
        padding: 14px 25px 14px 25px;
    }

    .nav_small {
        background-color: #00a1e9;
        padding: 10px 0px;
        padding-bottom: 15px;
        border-radius: 0px;
        border: none;
        box-shadow: none;
    }

    .nav_small > li {
    }

    .nav_small > li > a {
        line-height: 20px;
        padding: 7px 0px;
        text-align: center;
        color: #fff;
        font-size: 13px;
    }

    .nav_small > li > a:hover {
        color: #fff;
        background-color: #00a1e9;
    }

    #app_menudown, #small_search {
        display: none;
    }

    .index_left_nav, .footer_nav {
        display: none;
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }

    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }

}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse, .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        min-height: 50px;
        background-color: #00a1e9;
    }

    .navbar-default .navbar-brand {
        color: #fff;
        font-size: 16px;
    }

    .navbar-default .navbar-brand:hover,
    .navbar-default .navbar-brand:focus {
        color: #fff;
    }

    .navbar-toggle {
        border: none;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
        border: none;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #00a1e9;
    }

    .navbar-default .navbar-toggle .icon-bar {
        background-color: #fff;
    }

    .navbar-default .navbar-nav {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .navbar-default .navbar-nav > li {
    }

    .navbar-default .navbar-nav > li:last-child {
        border: none;
    }

    .navbar-default .navbar-nav > li > a,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }

    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus,
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        background-color: #00a1e9;
        color: #fff;
    }

    .navbar-fixed-top {
        margin-top: 0px;
        opacity: 0.9;
    }

    .top_name, .home-btn, .page_bg {
        display: none;
    }

    .language {
        border-left: 0px;
        border-right: 0px;
        float: right;
        height: 33px;
        padding: 5px 10px 0px 10px;
        font-size: 16px;
    }

    .index_img {
        max-width: 790px;
        margin-left: -20px;
    }

    .list_box {
        margin-top: 20px;
    }

    .search_group {
        margin: 10px 0px 20px 0px;
    }

    #topsearch {
        display: none;
    }

    .logo {
        display: none;
    }


    .left_h2 {
        margin-top: 25px;
    }

    .list_related h2.left_h2 {
        margin-top: 60px;
    }

    .product_head h2 {
        margin-top: 30px;
        font-size: 20px;
    }

    .product_head p {
        font-size: 12px;
    }

    .product_img, .product_list2 div.product_img {
        min-height: 100px;
        margin-bottom: 25px;
    }

    .related_list div.product_img {
        min-height: 180px;
    }

    .product_con img, .contents img {
        width: 100%;
    }

    .product_title a {
        font-size: 12px;
    }

    .about_img {
        display: block;
        margin: 0 auto;
        margin-top: 30px;
    }

    .about_contents {
        margin-top: 25px;
        padding: 0px;
    }

    a.about_more {
        width: 270px;
        margin: 0 auto;
        margin-top: 40px;
    }

    .news_box {
        padding-top: 20px;
        margin-bottom: 40px;
    }

    .news_img {
        display: none;
    }

    .news_index {
        padding-left: 0px;
    }

    .news_time {
        font-size: 14px;
    }

    .left_news ul {
        padding-bottom: 20px;
    }

    .index_contact {
        margin-top: 5px;
    }

    .product_h1 {
        line-height: 22px;
        font-size: 16px;
        margin-top: 35px;
    }

    .feedback {
        margin-top: 20px;
    }

    .footer_nav {
        background-color: #fafafa;
    }

    #pic-page a img {
        width: 35px;
    }

    #cmsFloatPanel {
        display: none;
    }

    .point span.to_prev, .point span.to_next {
        text-align: left;
        padding-bottom: 8px;
    }

    .link_box {
        padding-left: 7px;
    }

    .link_box a {
        display: block;
        border-right: 0px;
        padding: 4px 0px;
    }

    .link_title {
        display: block;
    }

    .link_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .link_box button:hover, .link_box button:focus {
        color: #99A1C5;
    }

    .link_list {
        display: none;
        padding-top: 7px;
    }

    .tags_box {
        padding-left: 7px;
    }

    .tags_box a {
        display: block;
        border-right: 0px;
        padding: 4px 0px;
    }

    .tags_title {
        display: block;
    }

    .tags_title:after {
        content: "";
    }

    .tags_box button {
        display: inline-block;
        background-color: transparent;
        border: none;
        float: right;
        margin-top: -20px;
    }

    .tags_box button:hover, .tags_box button:focus {
        color: #99A1C5;
    }

    .tags_rows {
        display: none;
        padding-top: 7px;
    }

    footer {
        margin-bottom: 50px;
    }

    .footer .flex {
        flex-direction: column;
        text-align: center;
    }

    .footer .left {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer .middle {
        min-width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    .footer .right {
        width: 100%;
    }

    .list_p {
        margin-bottom: 10px;
    }

    .list_p ul {
        margin-left: -35px;
        margin-right: 15px;
    }

    .list_p li {
        width: calc(100% - 10px);
        margin-left: 10px;
        padding: 0px;
    }

    .list_p li p {
        display: none;
    }

    .list_p li h2 {
        width: calc(100% - 20px);
        font-size: 16px;
        height: 38px;
        line-height: 22px;
        padding: 10px;
    }

    .list_p li i {
        margin: 0px;
    }

    .ydjltop {
        padding-top: 55px;
        clear: both
    }

    .ql-editor p {
        font-size: 16px;
        line-height: 25px;
        color: #333;
    }

}


@media screen and (min-width: 350px) and (max-width: 768px) {

    .col-mm-1, .col-mm-2, .col-mm-3, .col-mm-4, .col-mm-5, .col-mm-6, .col-mm-7, .col-mm-8, .col-mm-9, .col-mm-10, .col-mm-11, .col-mm-12 {

        float: left;

    }

    .col-mm-12 {

        width: 100%;

    }

    .col-mm-11 {

        width: 91.66666667%;

    }

    .col-mm-10 {

        width: 83.00%;

    }

    .col-mm-9 {

        width: 75%;

    }

    .col-mm-8 {

        width: 66.66666667%;

    }

    .col-mm-7 {

        width: 58.00%;

    }

    .col-mm-6 {

        width: 50%;

    }

    .col-mm-5 {

        width: 41.66666667%;

    }

    .col-mm-4 {

        width: 33.00%;

    }

    .col-mm-3 {

        width: 25%;

    }

    .col-mm-2 {

        width: 16.66666667%;

    }

    .col-mm-1 {

        width: 8.00%;

    }

    .logo {
        max-width: 380px;
    }

}


@media screen and (max-width: 414px) {

    .logo {
        max-width: 280px;
    }

    .index_img {
        max-width: 445px;
        margin-left: -30px;
    }

}

.aTitle {
    FONT-WEIGHT: bold;
    FONT-SIZE: 18px;
    line-height: 30px;
    POSITION: relative;
    margin: 0;
    PADDING-BOTTOM: 10px;
    clear: both;
    PADDING-TOP: 20px;
}

@media screen and (max-width: 767px) {
    #html5zoo-mobile-box {
        display: block
    }

    #html5zoo-pc-box {
        display: none
    }

    #rightBox {
        float: left;
    }

    .navbar {
        min-height: 50px;
    }

    .navbar-default .navbar-collapse, .navbar-default .navbar-form {
    }

    .navbar-default .navbar-toggle {
        border: 0px;
        margin-top: 10px;
        margin-bottom: 0px;
    }

    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background: #00a1e9
    }

    .navbar-default .navbar-toggle .icon-bar {
        background: #fff
    }

    .navbar-default .navbar-nav {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .navbar-default .navbar-nav > li {
    }

    .navbar-default .navbar-nav > li:last-child {
        border: none;
    }

    .navbar-default .navbar-nav > li > a {
        color: #fff;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #fff;
    }

    .navbar-default .navbar-nav > li > a:hover,
    .navbar-default .navbar-nav > li > a:focus,
    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus,
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover {
        background: url(/images/alpha.png);
        color: #fff;
    }

    #navbar {
        border: 0px;
        background: url(/images/alpha.png);
    }

    .navbar .dropdown-menu li ul {
        padding: 0
    }

    .navbar .dropdown-menu li a {
        line-height: 30px;
        display: block;
    }

    .navbar .dropdown-menu li a:hover {
        background: url(/images/alpha.png);
    }

    .navbar .dropdown-menu li ul li a {
        color: #fff;
        padding-left: 40px
    }

    .navbar .dropdown-menu li ul li ul li a {
        color: #fff;
        padding-left: 60px
    }

    .navbar .dropdown-menu a span {
        display: inline;
    }

    .logo {
        text-align: center
    }

    .logo a img {
        max-width: 90%
    }

    .tel {
        display: none
    }

    .searchBox {
        max-width: 100%;
        margin-top: 0;
    }

    footer {
        margin-bottom: 50px;
    }

    footer .row > div {
        display: none;
    }

    footer #footerFeedback {
        display: block
    }

    footer #footerFeedback .footerTitle {
        display: block
    }

    footer #footerFeedback .btn {
        width: 100%
    }

    #app_menudown {
        display: block;
    }

    #cmsFloatPanel {
        display: none;
    }

    .slider__arrows-item {
        display: none;
    }

    .mobile {
        margin: 0px;
        padding: 0px;
    }

    .indexNavigationGroup {
        display: block;
    }

    .positionBar .title {
        display: none;
    }

    .positionBar {
        background: #eee;
    }

    .positionBar span {
        margin: 0px;
        float: left;
        padding-left: 10px;
    }

    .positionBar span a {
        font-size: 12px;
        color: #333;
        line-height: 40px;
        text-decoration: none;
    }

    .positionBar span a:hover {
        color: #000
    }

    .positionBar .moreMenu {
        width: 100%;
    }

    .navigationBox {
        right: 0px;
        width: 100%;
    }

    .welcomeBox {
        display: none;
    }

    .languageBox {
        width: 100%;
        text-align: center
    }

    .languageBox a {
        border: 0;
        display: inline-block;
        float: none
    }

    .topContactBox {
        display: none
    }


    .positionBox .titleBar h5 {
        display: none
    }

    .positionBox .titleBar span {
        display: block;
        line-height: 35px;
        background: none;
        color: #999;
        font-size: 14px
    }

    .detailTitle {
        margin-left: 0
    }

    .aboutBoxBg {
        background-repeat: repeat-y;
        margin-bottom: 30px
    }

    .aboutBox section img {
        width: 100%
    }

    .aboutBox {
        width: 100%;
        overflow: hidden;
        margin: 40px 0px 0px 0px;
    }


    .newsBox .imgNewsBox {
        overflow: hidden;
        margin-top: 20px;
        margin-bottom: 15px;
        margin-left: -15px;
        margin-right: -15px
    }
}

.btnmore {
    text-align: center;
    padding: 20px 0 30px 0;
    background: rgba(236, 235, 235, 1.00);
    margin-bottom: 20px;
}

.btnmore a {
    padding: 10px 20px;
    font-size: 16px;
    color: #666666;
    border: solid #d1d1d1 1px;
    border-radius: 0px;
    display: inline-block;
    background: #d3d3d3;
}

.btnmore a:hover {
    background: #00a1e9;
    color: #fff;
}

.btnmore .sOpen {
    background: #00a1e9;
    color: #fff;
    border: solid #00a1e9 1px;
}

@media only screen and (max-width: 480px) {
    #more {
        width: 100px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    #banner .swiper-pagination {
        display: none;
    }

    .lmjl {
        padding-bottom: 120px;
    }

    .btnmore {
        text-align: center;
        padding: 10px 0 20px 0;
        float: center;
        width: 100%;
    }

    .btnmore a {
        padding: 5px 10px;
        font-size: 12px;
        color: #666666;
        border: solid #d1d1d1 1px;
        border-radius: 0px;
        display: inline-block;
    }

    .btnmore li:nth-child(5) a {
        font-size: 12px;
        color: #666666;
        border: solid #d1d1d1 1px;
        border-radius: 0px;
        display: inline-block;
    }

    .btnmore a:hover {
        background: #00a1e9;
        color: #fff;
    }

    .list_box .left_h2 {
        font-size: 14px;
        line-height: 20px;
    }

    .toptel {
        display: none;
    }

    .Width {
        margin: 0 1rem;
    }

    .w1200 {
        width: 100%;
        margin: 0px auto;
        padding-top: 20px;
        padding-bottom: 20px;
        background: #ffffff;
    }

    .w1201 {
        width: 100%;
        margin: 0px auto;
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .clearfix:after {
        display: block;
        content: '';
        clear: both;
    }

    .clearfix {
        zoom: 1;
    }

    .navm {
        border-bottom: 1px solid #e7e7e9;
        padding-bottom: .3rem;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }

    .navm a {
        float: left;
        width: 25%;
        margin-bottom: 1rem;
        text-align: center;
        font-size: 14px;
    }

    .navm a:nth-child(1), .navm a:nth-child(5) {
        width: 24%;
        margin-right: 1%;
    }

    .navm a img {
        width: 45px;
        margin: 0 auto;
    }

    .navm a h2 {
        font-size: .75rem;
        font-weight: normal;
    }

    .navm a i {
        display: block;
        width: 45px;
        height: 45px;
        margin: 0 auto .2rem auto;
        background-size: 100%;
    }

    .navm .menu-item:nth-child(1) i {
        background-image: url(../images/icon_nav_zixun.png);
    }

    .navm .menu-item:nth-child(2) i {
        background-image: url(../images/icon_nav_ms.png);
    }

    .navm .menu-item:nth-child(3) i {
        background-image: url(../images/icon_nav_zhibo.png);
    }

    .navm .menu-item:nth-child(4) i {
        background-image: url(../images/icon_nav_wx.png);
    }

    .navm .menu-item:nth-child(5) i {
        background-image: url(../images/icon_nav_rili.png);
    }

    .navm .menu-item:nth-child(6) i {
        background-image: url(../images/icon_nav_zwk.png);
    }

    .navm .menu-item:nth-child(7) i {
        background-image: url(../images/icon_nav_sz.png);
    }

    .navm .menu-item:nth-child(8) i {
        background-image: url(../images/icon_nav_app.png);
    }

    .navm .custom-icon-app i {
        background-image: url(../images/icon_nav_app.png);
    }

    .navm .custom-icon-01 i {
        background-image: url(../images/icon_nav_01.png) !important;
    }

    .navm .custom-icon-02 i {
        background-image: url(../images/icon_nav_02.png) !important;
    }

    .navm .custom-icon-03 i {
        background-image: url(../images/icon_nav_03.png) !important;
    }

    .navm .custom-icon-04 i {
        background-image: url(../images/icon_nav_04.png) !important;
    }

    .navm .custom-icon-05 i {
        background-image: url(../images/icon_nav_05.png) !important;
    }

    .navm .custom-icon-06 i {
        background-image: url(../images/icon_nav_06.png) !important;
    }

    .navm .custom-icon-07 i {
        background-image: url(../images/icon_nav_07.png) !important;
    }

    .navm .custom-icon-08 i {
        background-image: url(../images/icon_nav_08.png) !important;
    }

    .navm .custom-icon-09 i {
        background-image: url(../images/icon_nav_09.png) !important;
    }

    .navm .custom-icon-10 i {
        background-image: url(../images/icon_nav_10.png) !important;
    }

    .navm .custom-icon-11 i {
        background-image: url(../images/icon_nav_11.png) !important;
    }

    .navm .custom-icon-12 i {
        background-image: url(../images/icon_nav_12.png) !important;
    }

    .navm .custom-icon-13 i {
        background-image: url(../images/icon_nav_13.png) !important;
    }

    .navm .custom-icon-14 i {
        background-image: url(../images/icon_nav_14.png) !important;
    }

    .navm .custom-icon-15 i {
        background-image: url(../images/icon_nav_15.png) !important;
    }

    .navm .custom-icon-16 i {
        background-image: url(../images/icon_nav_16.png) !important;
    }

    .navm .custom-icon-17 i {
        background-image: url(../images/icon_nav_17.png) !important;
    }

    .navm .custom-icon-18 i {
        background-image: url(../images/icon_nav_18.png) !important;
    }

    .navm .custom-icon-19 i {
        background-image: url(../images/icon_nav_19.png) !important;
    }

    .navm .custom-icon-20 i {
        background-image: url(../images/icon_nav_20.png) !important;
    }

    .navm .custom-icon-21 i {
        background-image: url(../images/icon_nav_21.png) !important;
    }

    .navm .custom-icon-22 i {
        background-image: url(../images/icon_nav_22.png) !important;
    }

    .navm .custom-icon-23 i {
        background-image: url(../images/icon_nav_23.png) !important;
    }

    .navm .custom-icon-24 i {
        background-image: url(../images/icon_nav_24.png) !important;
    }

    .headbg {
        display: none
    }

    .headx {
        display: none
    }
}

#location {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    line-height: 26px;
    padding: 24px 0;
    border-bottom: 1px solid #e9e9e9;
    background: #fff;
}

#location span {
    font-size: 16px;
    display: inline-block;
}

#location span a {
    color: #333333;
}

#location span a:hover {
    color: #00a1e9
}

#location span i {
    font-size: 12px;
    padding: 0 5px
}

@media screen and (max-width: 768px) {
    #location span {
        font-size: 14px;
    }

    #location {
        padding: 10px !important;
    }
}

.RelatedSection {
    background-color: #fbfbfb
}

.RelatedSection:after, .RelatedSection:before {
    display: table;
    content: "";
    clear: both
}

.l-Gap {
    margin-bottom: 25px
}

.l-Gap.none-down {
    margin-bottom: 0
}

.l-Gap.xs-down {
    margin-bottom: 10px
}

.l-Gap.em-down {
    margin-bottom: 1em
}

.l-Gap.s-down {
    margin-bottom: 50px
}

.DestinationTeaser {
    position: relative;
    display: block
}

.DestinationTeaser:active .DestinationTeaser--image > .Media, html:not(.can-touch) .DestinationTeaser:hover .DestinationTeaser--image > .Media {
    transform: scale(1.02) /*æ ç®éæ å¾é¼ æ ç§»ä¸å»å¾çæ¾å¤§ï¼è®¾ç½®1.02ï¼å¯è°æ´å¤§å°*/
}

.DestinationTeaser:active .DestinationTeaser--content, html:not(.can-touch) .DestinationTeaser:hover .DestinationTeaser--content {
    transform: translateY(-1em)
}

.DestinationTeaser--content {
    position: absolute;
    padding-left: calc(50% - 595px);
    padding-right: calc(50% - 595px);
    padding-bottom: 50px;
    color: #fff;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    transition: transform .4s cubic-bezier(.42, 0, .175, 1)
}

.lmbt {
    color: #ffffff;
}

.lmlj {
    color: #ffffff;
    font-size: 18px;
}

.lmlj a {
    color: #ffffff;
    font-size: 18px;
}

.lmlj a:hover {
    color: #da202c;
    font-size: 18px;
}

.GridTeaser--background > .Media, html:not(.can-touch) .GridTeaser:hover .GridTeaser--background > .Media {
    transform: scale(1.02)
}

.GridTeaser:active .GridTeaser--content, html:not(.can-touch) .GridTeaser:hover .GridTeaser--content {
    transform: translateY(-1em)
}

@media print {
    .GridTeaser {
        background-color: transparent
    }
}

.GridTeaser--background {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.GridTeaser--background > .Media {
    transition: transform .4s cubic-bezier(.42, 0, .175, 1);
    transform-origin: bottom;
    height: 100%
}

.GridTeaser--background:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 65%;
    height: 250px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .6) 80%)
}

@media print {
    .GridTeaser--background:after {
        display: none
    }
}

@media screen and (max-width: 1000px) {
    .GridTeaser--background:after {
        max-height: 75%
    }

    .GridTeaser--title {
        font-size: 18px;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 0;
        font-size: calc(16px + .5vw)
    }
}


.clearfix, .c {
    zoom: 1;
    clear: both;
}

.clearfix:after, .clearfix:before, .c:after, .c:before {
    display: table;
    content: "";
}

.clearfix:after, .c:after {
    clear: both;
}

.l {
    float: left;
}

.r {
    float: right;
}

.clear {
    clear: both
}

.content {
    width: 100%;
    overflow: hidden;
}

.gsgg {
    width: 100%;
    height: 65px;
    line-height: 65px;
    background: #f5f5f5;
}

.gsggl {
    width: 360px;
    line-height: 60px;
    color: #a0a0a0;
    font-size: 15px;
}

.gsggr {
    line-height: 60px;
    width: 660px;
}

.gsggr {
    color: #00a1e9;
}

.gsggr a {
    color: #00a1e9;
}

.gsggr a:hover {
    color: #c04800;
    font-weight: bold;
}

.gsggrl {
    width: 85px;
    height: 30px;
    border-radius: 99px;
    background: #00a1e9;
    text-align: center;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    display: inline-block;
    margin-top: 18px;
    margin-left: 40px;
}

.gsggrr {
    margin-left: 18px;
    font-size: 14px;
    color: #00a1e9;
    display: block;
    height: 60px;
    line-height: 60px;
}

.gsggrr a {
    color: #c04800;
    font-weight: bold;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.gsggrr a span {
    font-weight: normal;
}

.gsggrr a:hover {
    color: #00a1e9;
}

.gsggrr span {
    color: #b2b2b2;
    margin-left: 32px;
    float: right;
    font-size: 17px;
}

.tzgg {
    font-size: 14px;
    float: left;
    font-weight: bold;
    color: #00a1e9;
}

.tzgg a {
    font-size: 14px;
    float: left;
    font-weight: bold;
    color: #00a1e9
}

.tzgg a:hover {
    font-size: 14px;
    float: left;
    font-weight: bold;
    color: #00a1e9
}

.tzgg a:link {
    font-size: 14px;
    float: left;
    font-weight: bold;
    color: #00a1e9
}

.tzgg a:visited {
    font-size: 14px;
    float: left;
    font-weight: bold;
    color: #00a1e9
}

.syyqlj UL {
    BORDER-BOTTOM: red 0px solid;
    BORDER-LEFT: red 0px solid;
    BORDER-TOP: red 0px solid;
    BORDER-RIGHT: red 0px solid;
    LINE-HEIGHT: 30px;
    HEIGHT: 30px;
    width: 650px;
}

.syyqlj UL LI {
    LINE-HEIGHT: 30px;
    HEIGHT: 30px;
    COLOR: #000;
    background: url(/images/arr-tz.png) no-repeat 0px 0px;
    padding-left: 15px;
    margin-left: 15px;
}

.syyqlj UL LI span {
    margin-right: 80px;
}

.shell {
    width: 100%;
}

#div1 {
    height: 30px;
    overflow: hidden;
    margin-top: 15px;
}

.summary_foot1 {
    width: 650px;
    height: auto;
    overflow: hidden;
    margin-left: -40px;
    margin-top: 3px;
    color: #333;
}

.summary_foot1 a {
    color: #00a1e9;
    FONT-SIZE: 14px;
}

.summary_foot1 span {
    float: right;
    COLOR: gray ! important;
    FONT-SIZE: 14px;
    padding-left: 1px;
}


.sytzlb {
    margin: auto auto auto auto;
    width: 500px;
    overflow: hidden;
    display: inline-block;
    height: auto;
    FONT-SIZE: 14px;
}

.sytzlb A {
    FONT-SIZE: 14px;
}

.sytzlb A:hover {
    FONT-SIZE: 14px;
}

/* 学校介绍区域 */
.content.school {
    /* padding: 50px 0; */
    /* background: linear-gradient(180deg, #e8f4fd 0%, #f0f7fc 50%, #ffffff 100%); */
}

.content.school .box {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* background-color: #0088dd; */
}

.contenta {
    padding: 0;
    overflow: hidden;
    margin: 0;
    /* display: flex; */
    width: 100%;
    gap: 30px;
    /* background: #fff; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.contental {
    width: 700px;
    position: relative;
    overflow: hidden;
}

.contental .recommend-swiper {
    width: 100%;
    height: 100%;
    position: relative;
}

.contental .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.contental .swiper-slide {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contental .swiper-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.contental .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.contental .swiper-slide:hover img {
    transform: scale(1.05);
}

/* 左右箭头 */
.contental .swiper-button-prev,
.contental .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 60px;
    background: rgba(100, 100, 100, 0.35);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
    padding: 0;
    margin: 0;
}

.contental .swiper-button-prev:hover,
.contental .swiper-button-next:hover {
    background: rgba(100, 100, 100, 0.5);
}

.contental .swiper-button-prev {
    left: 0;
}

.contental .swiper-button-next {
    right: 0;
}

.contental .swiper-button-prev::after,
.contental .swiper-button-next::after {
    content: none !important;
}

.contental .swiper-button-prev span,
.contental .swiper-button-next span {
    display: none;
}

/* 底部指示器 */
.contental .swiper-pagination {
    position: absolute;
    bottom: 60px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.contental .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contental .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 5px;
    background: #ff0000;
}

/* 底部标题条 */
.contental .swiper-slide .slide-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 14px;
    padding: 12px 20px;
    z-index: 5;
}

.contental .am-slider-default .am-control-nav {
    width: 120px;
    right: 0;
    bottom: 25px !important;
}

.contental .am-direction-nav {
    display: none;
}

.contental .am-slider-default .am-control-nav {
    bottom: 0;
}

.contental .am-slider-default .am-control-nav li a {
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 99px;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contental .am-slider-default .am-control-nav li a.am-active {
    background: #FF0000;
}

.contental .am-slider-default .am-control-nav li a:hover {
    background: #FF0000;
}

.contental ul li a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.contental ul li a .wzzz {
    display: block;
    width: 100%;
    height: 67px;
    bottom: 0;
    position: absolute;
    background: rgba(0, 0, 0, .7);
}

.contentalt {
    position: absolute;
    bottom: 20px;
    font-size: 16px;
    color: #fff;
    z-index: 99;
    padding-left: 22px;
}

.contentalt span {
    margin-left: 75px;
}

.contentar {
    width: 480px;
    min-height: 380px;
    padding: 26px 28px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}
.right-content h1{
    font-size: 35px;
    margin-bottom: 25px;
}

.contentar > h2:first-child {
    font-size: 26px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid #0066cc;
    position: relative;
    letter-spacing: 4px;
    text-shadow: 1px 1px 3px rgba(0, 102, 204, 0.15);
    line-height: 1.3;
    flex-shrink: 0;
}

.contentar > h2:first-child::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #0088dd, #33aaff);
    border-radius: 2px;
}

.contentar .school-des {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.contentar .school-des p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
    text-indent: 2em;
    font-weight: 400;
}

.contentar .school-des p:first-of-type {
    font-size: 17px;
    color: #0066cc;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08), rgba(0, 102, 204, 0.03));
    padding: 14px 18px;
    border-left: 4px solid #0066cc;
    margin-bottom: 20px;
    border-radius: 0 8px 8px 0;
    line-height: 1.6;
    text-indent: 2em;
}

.contentar .school-des p:nth-of-type(2) {
    color: #0055aa;
    font-weight: 500;
    font-size: 16px;
}

.contentar .school-des p:nth-of-type(3) {
    color: #222;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(240, 247, 252, 0.6));
    padding: 10px 0;
}

.contentar .school-des p:last-child {
    margin-bottom: 0;
    color: #0066cc;
    font-style: normal;
    font-weight: 500;
    text-align: center;
    padding-top: 16px;
    border-top: 1px dashed #cce6ff;
    font-size: 16px;
}

.contentay {
    width: 480px;
    height: auto;
    padding: 0px 0px 0px 0px;
    background: #fff;
}

.contentart {
    width: 100%;
    overflow: hidden;
    padding-bottom: 5px;
    border-bottom: 1px solid #D3D3D3;
    background: url("../images/xwzxx.jpg") no-repeat left bottom;
}

.contentartl {
    font-size: 23px;
    font-weight: bold;
    color: #fff;
    background: #4C75C2;
    padding: 3px 25px;
}

.contentartr {
    line-height: 40px;
}

.contentarts {
    width: 100%;
    overflow: hidden;
    background: #E6EEF7;
    padding: 0 20px;
}

.contentartst {
    width: 100%;
    overflow: hidden;
    background: url("../images/dwzzbg.jpg") no-repeat left top;
    padding: 0 20px;
}

.contentartsb {
    width: 100%;
    overflow: hidden;
    background: url("../images/cgzsbg.jpg") no-repeat left top;
    padding: 0 20px;
}

.contentartls {
    font-size: 23px;
    font-weight: bold;
    color: #00a1e9;
    height: 40px;
    line-height: 40px;
}

.contentartrs {
    line-height: 40px;
}

.contentartrs a {
    font-size: 15px;
    color: #72869d;
}

.contentartr a {
    font-size: 15px;
    color: #72869d;
}

.contentarbtt {
    font-size: 20px;
    color: #00a1e9;
    width: 100%;
    margin: 10px 0;
}

.contentarbtb {
    font-size: 16px;
    color: #666666;
}

.contentarbtb span {
    font-size: 16px;
    color: #8498ad;
}

.contentarbt {
    margin-bottom: 25px;
}

.contentarbtt {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contentarbt a:hover .contentarbtt {
    color: #00a1e9;
}

.contentarbbl {
    padding-left: 20px;
    background: url("/images/lefd.jpg") no-repeat left center;
    font-size: 17px;
    color: #00a1e9;
}

.contentarbbr {
    font-size: 17px;
    color: #8498ad;
}

.contentarbb ul li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 9px;
}

.contentarbbl {
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
}

.contentarbb ul li a:hover .contentarbbl {
    padding-left: 25px;
    color: #00a1e9;
}

#tab1 {
    width: 100%;
    height: 42px;
    border: 0px #cccccc solid;
    border-bottom: 0;
    background: #d6d6d6;
    FONT-SIZE: 16px;
}

#tab1 ul {
    margin: 0;
    padding: 0;
    FONT-SIZE: 16px;
}

#tab1 li {
    float: left;
    height: 42px;
    line-height: 42px;
    text-align: center;
    border-right: 0px #cccccc solid;
    cursor: pointer;
    FONT-SIZE: 16px;
    width: 50%;
}

#tab1 li.now {
    color: #fff;
    background: #00a1e9;
    font-weight: bold;
    FONT-SIZE: 16px;
}

#tab1 li.now A {
    color: #fff;
    background: #00a1e9;
    font-weight: bold;
    FONT-SIZE: 16px;
}

#tab1 li.now A:hove {
    color: #ff610c;
    background: #fff;
    font-weight: bold;
    FONT-SIZE: 16px;
}

#tab1 li.sylmbt {
    color: #00a1e9;
    FONT-SIZE: 16px;
}

#tab1 li.sylmbt a {
    color: #00a1e9;
}

#tab1 li.sylmbt a:hove {
    color: #00a1e9;
}

#tab1 li.sylmbt a:visited {
    color: #00a1e9;
}

.tablist {
    width: 100%;
    height: auto;
    font-size: 14px;
    line-height: 35px;
    border: 0px #cccccc solid;
    border-top: 0;
    display: none;
    padding-top: 10px;
}

.block {
    display: block;
}

.nr_bk_02 {
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 4px 12px 10px 12px;
}

.boxnew UL {
    PADDING-RIGHT: 0px;
    PADDING-LEFT: 0px;
    PADDING-BOTTOM: 0px;
    PADDING-TOP: 0px;
    margin: 0px;
    list-style-type: none;
}

.boxnew LI {
    CLEAR: both;
    LINE-HEIGHT: 35px;
    list-style-type: none;
    padding: 0px 0px 5px 25px;
    background: url(/images/arr-tz.png) no-repeat 5px 3px;
    height: 35px;
    overflow: hidden;
    width: auto;
    FONT-SIZE: 14px;
    color: #333;
}

.boxnew A {
    FONT-SIZE: 14px;
    color: #333;
}

.boxnew A:hover {
    FONT-SIZE: 14px;
    color: #00a1e9;
}

.summary_foot {
    width: auto;
    height: auto;
    overflow: hidden
}

.summary_foot span {
    PADDING-RIGHT: 5px;
    FLOAT: right;
    COLOR: gray ! important;
    FONT-SIZE: 14px;
    padding-left: 20px;
}


.zxkc {
    margin: 30px 0 0 0;
    padding: 0% 2% 0% 2%;
    background-image: url("/images/syzxkcbg.jpg");
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.zxkc .bt {
    width: 1200px;
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 auto;
    padding: 50px 0 30px;
}

.zxkc .play {
    width: 1200px;
    color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    padding: 0 0 50px;
}

.zxkc .play span {
    padding-left: 20px;
    font-size: 32px;
    font-weight: bold;
    line-height: 45px;
}

.Media, [data-sizes] {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}

.Media > .is-loaded {
    opacity: 1;
    transform: none;
    transition: opacity .3s, transform .6s ease-out
}


#content {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

#show, #news {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f5f5f5;
}

#show .show, #news .news {
    width: 1200px;
    box-sizing: border-box;
    height: auto;
    overflow: hidden;
    padding: 50px 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.show .left {
    width: 1200px;
    flex: 1;
    overflow: hidden;
}

.news .left {
    width: 935px;
    margin-right: 45px;
    flex: 1;
}

.show .right, .news .right {
    width: 280px;
}

.show .left #location, .news .left #location {
    padding-left: 30px;
    padding-right: 30px;
}

.show .left .article {
    box-sizing: border-box;
    padding-left: 40px;
    padding-right: 50px;
    padding-bottom: 50px;
    text-align: center;
    background: #fff;
    margin-bottom: 15px;
    margin-top: -10px;
    position: relative;
}

.show .left .article #download {
    width: 120px;
    height: 40px;
    background: #00a1e9;
    display: block;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    line-height: 140px;
    position: absolute;
    top: 30px;
    right: 30px;
}

.show .left .article #download:hover {
    transition: all .4s ease;
    font-weight: bold;
    box-shadow: 0 4px 10px #ccc;
}

.show .left .article h4 {
    font-size: 30px;
    font-weight: normal;
    line-height: 50px;
    padding-top: 45px;
}

.show .left .article .setting {
    font-size: 14px;
    line-height: 36px;
    height: 36px;
    padding-bottom: 30px;
}

.show .left .setting span {
    font-size: 14px;
    color: #666666;
    margin-right: 20px;
}

.show .left .setting span i {
    padding-right: 5px;
    color: #888;
}

.show .left .article .picture {
    width: 100%;
    height: auto;
    padding-top: 20px;
    padding-bottom: 30px;
    text-align: left;
    font-size: 16px;
    line-height: 40px;
}

.show .left .article .picture img {
    margin: 0;
}

.show .left .article.jobs .picture {
    padding-bottom: 50px;
}

.show .left #word {
    padding: 30px 0;
    font-size: 14px;
    color: #888888;
}

.show .left .content {
    box-sizing: border-box;
    padding: 0 30px 60px 30px;
    background: #fff;
    margin-bottom: 15px;
}

.show .left .content h4 {
    font-size: 16px;
    color: #00a1e9;
    line-height: 44px;
    height: 44px;
    overflow: hidden;
    padding-top: 20px;
    border-bottom: 1px solid #e9e9e9;
    position: relative;
    text-indent: 20px;
}

.show .left .content h4::after {
    width: 100px;
    height: 2px;
    background: #00a1e9;
    position: absolute;
    left: 0;
    bottom: 0px;
    content: '';
}

.show .left .content article {
    padding: 24px 0 70px 0;
    text-align: justify;
}

.show .left #change {
    height: 48px;
    line-height: 48px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.show .left #change a {
    display: block;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 0 20px;
    color: #888888;
    max-width: 100%;
    height: 48px;
    overflow: hidden;
}

.show .left #change a span {
    color: #888888;
}

.show .left #change a:hover {
    border-color: #00a1e9;
    color: #00a1e9;
}

.show .left #change a:hover span {
    color: #00a1e9;
}

.show .left #change.product, .show .left #change.support {
    padding-bottom: 40px;
}

.tabbox {
    width: 1200px;
    height: 340px;
    margin: 50px auto;
    background: #f0f0f0;
}

.tabbox .tab {
    overflow: hidden;
    background: #ccc;
}

.tabbox .tab a {
    display: block;
    width: 50%;
    float: left;
    text-decoration: none;
    color: #333;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0 10px 0;
}

.tabbox .tab a:hover {
    background: #00a1e9;
    color: #fff;
    text-decoration: none;
}

.tabbox .tab a.on {
    background: #00a1e9;
    color: #fff;
    text-decoration: none;
}

.tabbox .content {
    overflow: hidden;
    width: 1200px;
    height: 300px;
    position: relative;
}

.tabbox .content ul {
    position: absolute;
    left: 0;
    top: 0;
    height: 300px;
}

.tabbox .content li {
    width: 1200px;
    height: 300px;
    float: left;
}

.tabbox .content li p {
    padding: 10px;
}

.box1 {
    width: 1200px;
    height: auto;
    margin: 50px auto 10px;
    background: #fff;
    border: 0px solid #d3d3d3;
}

.tab_menu {
    overflow: hidden;
    font-size: 18px;
    font-weight: bold;
}

.tab_menu li {
    width: 16.66666%;
    float: left;
    padding: 10px 0 10px 0;
    color: #333333;
    background: #cccccc;
    text-align: center;
    cursor: pointer;
}

.tab_menu li.current {
    color: #fff;
    background: #00a1e9;
}

.tab_menu li a {
    color: #333333;
    text-decoration: none;
}

.tab_menu li.current a {
    color: #fff;
}

.tab_box {
    padding: 15px 0 0 0;
    margin-left: -15px
}

.tab_box li {
    line-height: 24px;
    overflow: hidden;
}

.tab_box li span {
    margin: 0 5px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #ddd;
}

.tab_box .hide {
    display: none;
}


.c10 {
    text-align: center;
    padding: 5.05vw 15px 3.44vw;
    line-height: 1;
    color: #fff;
    background: url(/images/jmhz.png) no-repeat 50% 0;
    background-size: cover
}

@media (max-width: 780px) {
    .c10 {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

.c10 b {
    display: block;
    font-size: 30px
}

.c10 p {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 1.98vw
}

@media (max-width: 780px) {
    .c10 p {
        line-height: 28px
    }
}

@media (max-width: 480px) {
    .c10 p {
        margin-bottom: 19px
    }
}

.c10 a {
    width: 200px;
    line-height: 43px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background: #136ef8;
    border-radius: 5px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all .6s;
    transition: all .6s
}

.c10 a:hover {
    background: #6f41b7
}

.of {
    overflow: hidden
}

.page-banner {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover !important;
    height: 350px;
    position: relative
}

.page-banner.pc-banner .wz {
    height: 140px
}

.page-banner .wz {
    position: absolute;
    width: 1200px;
    padding: 0 15px;
    text-align: center;
    height: 110px;
    top: 30%;
    right: 0;
    left: 0;
    margin: auto;
    color: #fff
}

.page-banner .wz h3 {
    font-size: 34px;
    margin: 0 0 20px;
    line-height: 1.3;
    font-weight: 400
}

.page-banner .wz p {
    font-size: 16px
}

@media (max-width: 1200px) {
    .page-banner .wz {
        width: 990px
    }
}

@media (max-width: 990px) {
    .page-banner {
        height: 250px
    }

    .page-banner .wz {
        width: 95%;
        height: 60px;
        top: 28%
    }

    .page-banner .wz h3 {
        font-size: 24px;
        margin-bottom: 10px
    }

    .page-banner .wz p {
        font-size: 14px;
        line-height: 25px !important
    }
}

a.lyxp {
    width: 10em;
    display: block;
    border: 1px solid #fff;
    line-height: 2.3em;
    border-radius: 1.4em;
    font-size: 16px;
    color: #fff;
    margin: 20px auto 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center
}

@media (max-width: 990px) {
    a.lyxp {
        width: 140px;
        font-size: 14px;
        margin-top: 12px
    }
}

#knowledge {
    background-color: #d7d5e1;
    width: 100%;
    padding: 50px 0 60px 0;
}

.knowledge-k {
    display: block;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 130px;
    margin: 20px 0;
    border-radius: 3px 3px;
    padding: 15px 13px
}

.knowledge-left {
    width: 84px;
    height: 86px;
    background-color: #00a1e9;
    border-radius: 3px 3px
}

.knowledge-left span {
    height: 46px;
    line-height: 46px;
    font-size: 22px;
    color: #046eaf;
    text-align: center;
    display: block
}

.knowledge-left p {
    font-size: 14px;
    color: #fff;
    height: 30px;
    line-height: 30px;
    text-align: center
}

.knowledge-right {
}

.knowledge-right h1 {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    height: 30px;
    line-height: 30px;
    overflow: hidden
}

.knowledge-right p a {
    font-size: 14px;
    height: 54px;
    line-height: 26px;
    color: #888;
    display: block;
    overflow: hidden;
    margin: 10px 0 0 0;
}

.knowledge-right p a:hover {
    color: #00a1e9
}

@media (max-width: 1390px) {
    .DestinationTeaser--content {
        padding-left: 90px;
        padding-right: 90px
    }
}

@media screen and (max-width: 1200px) {
    .DestinationTeaser--content {
        padding-left: 60px;
        padding-right: 60px
    }
}

@media screen and (max-width: 750px) {
    .DestinationTeaser--content {
        padding-left: 25px;
        padding-right: 25px
    }
}

@media screen and (max-width: 400px) {
    .DestinationTeaser--content {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media print {
    .DestinationTeaser--content {
        max-width: 100%;
        margin: 0
    }
}

@media screen and (max-width: 1200px) {
    .DestinationTeaser--content {
        padding-bottom: 42px
    }
}

@media screen and (max-width: 750px) {
    .DestinationTeaser--content {
        padding-bottom: 30px;
        padding-left: 25px;
        padding-right: 25px
    }
}

@media print {
    .DestinationTeaser--content > * {
        background: #fff !important
    }
}

.DestinationTeaser--title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 25px;
    max-width: 60%
}

@media (max-width: 1600px) {
    .DestinationTeaser--title {
        font-size: calc(14.668px + 1.583vw)
    }
}

@media screen and (max-width: 1000px) {
    .DestinationTeaser--title {
        margin-bottom: .25em;
        max-width: 100%
    }
}

.DestinationTeaser--link .Icon {
    font-size: inherit;
    vertical-align: middle;
    margin-left: .5ex
}

.DestinationTeaser--image {
    overflow: hidden;
    max-height: 500px
}

.DestinationTeaser--image > .Media {
    min-height: 250px;
    transition: transform .4s cubic-bezier(.42, 0, .175, 1);
    transform-origin: bottom
}

.DestinationTeaser--image:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    height: 600px;
    background: rgba(0, 0, 0, transparent);
}

@media print {
    .DestinationTeaser--image:after {
        display: none
    }
}

.Link > .Icon.after {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px
}

.Link > .Icon.after.inline {
    display: inline-flex
}

.is-complete {
    padding-top: 58%
}

@media only screen and (max-width: 479px) {
    .lmlj {
        color: #ffffff;
        font-size: 14px;
    }

    .lmlj a {
        color: #ffffff;
        font-size: 14px;
    }

    .lmlj a:hover {
        color: #da202c;
        font-size: 14px;
    }

    .is-complete {
        padding-top: 66.67%
    }

}


@media screen and (max-width: 1200px) {
    #show .show, #news .news {
        width: 100%;
        height: auto;
    }

    #show1 .show1 {
        width: 100%;
        height: auto;
    }

    .gallery-top {
        height: auto;
    }

    .case .left ul li a {
        margin-bottom: 15px;
        width: 100%;
    }

    .toptel {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    #show .show, #news .news {
        flex-wrap: wrap;
        padding: 50px 0;
    }

    #show .show .left {
        width: 100%;
        margin-left: 45px;
    }

    #show .show .right, #news .news .right {
        width: 100%;
    }

    #show1 .show1 {
        flex-wrap: wrap;
        padding: 50px 0;
    }

    #show1 .show1 .left {
        width: 100%;
        margin-left: 45px;
    }

    #show1 .show1 .right, #news .news .right {
        width: 100%;
    }

    .news .left {
        margin: 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px) {
    #show .show .left {
        margin: 0;
        overflow: initial;
    }

    .show .left .article {
        padding: 0 15px 60px 15px;
    }

    .show .left .article h4 {
        font-size: 22px;
        line-height: 1.5;
        height: auto;
        padding-top: 20px;
    }

    .show .left .article .setting {
        padding-bottom: 25px;
    }

    .show .left .article .picture {
        width: 100%;
        margin: 0 auto;
    }

    .show .left .article .picture img {
        margin: 0 auto;
    }

    .show .left .content {
        padding: 0 15px 20px 15px;
    }

    .show .left .content article {
        padding: 12px 0 35px 0;
    }

    #show1 .show1 .left {
        margin: 0;
        overflow: initial;
    }

    .show1 .left .article1 {
        padding: 0 15px 60px 15px;
    }

    .show1 .left .article1 h4 {
        font-size: 22px;
        line-height: 1.5;
        height: auto;
        padding-top: 20px;
    }

    .show1 .left .article1 .setting {
        padding-bottom: 25px;
    }

    .show1 .left .article1 .picture {
        width: 100%;
        margin: 0 auto;
    }

    .show1 .left .article1 .picture img {
        margin: 0 auto;
    }

    .show1 .left .content {
        padding: 0 15px 20px 15px;
    }

    .show1 .left .content article1 {
        padding: 12px 0 35px 0;
    }

    #change {
        height: 30px;
        line-height: 30px;
    }

    #change a {
        font-size: 12px;
        height: 30px;
        line-height: 30px;
    }

    #show .show, #news .news {
        padding: 10px 0;
    }

    .show .left #change a {
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 10px;
        height: auto;
    }

    .show1 .left #change a {
        max-width: 100%;
        padding: 0 10px;
        margin-bottom: 10px;
        height: auto;
    }

    .tabbox {
        width: 100%;
        height: 300px;
        margin: 20px auto;
        background: #f0f0f0;
    }

    .tabbox .tab {
        overflow: hidden;
        background: #ccc;
    }

    .tabbox .tab a {
        display: block;
        width: 50%;
        float: left;
        text-decoration: none;
        color: #333;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
        padding: 10px 0 10px 0;
    }

    .tabbox .tab a:hover {
        background: #00a1e9;
        color: #fff;
        text-decoration: none;
    }

    .tabbox .tab a.on {
        background: #00a1e9;
        color: #fff;
        text-decoration: none;
    }

    .tabbox .content {
        overflow: hidden;
        width: 100%;
        height: 280px;
        position: relative;
    }

    .tabbox .content ul {
        position: absolute;
        left: 0;
        top: 0;
        height: 280px;
    }

    .tabbox .content li {
        width: 100%;
        height: 280px;
        float: left;
    }

    .tabbox .content li p {
        padding: 10px;
    }

    .box1 {
        width: 100%;
        height: auto;
        margin: 30px auto 10px;
        background: #fff;
        border: 0px solid #d3d3d3;
    }

    .tab_menu li {
        width: 48.7%;
        float: left;
        padding: 10px 0 10px 0;
        color: #333333;
        background: #cccccc;
        text-align: center;
        cursor: pointer;
    }

    .tab_menu li:nth-of-type(odd) {
        margin-top: 10px;
        margin-right: 10px;
    }

    .tab_menu li:nth-child(even) {
        margin-top: 10px;
        margin-right: 0px;
    }

    .tab_menu {
        overflow: hidden;
        font-size: 18px;
        font-weight: bold;
    }
}

@font-face {
    font-family: "iconfont";
    src: url('/fonts/font_680193_mlx1ll180gc1h5mi.eot?t=1527832357670'); /* IE9*/
    src: url('/fonts/font_680193_mlx1ll180gc1h5mi.eot?t=1527832357670#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAArwAAsAAAAAEAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFZW7klRY21hcAAAAYAAAAC8AAACWs84CE1nbHlmAAACPAAABmkAAAiMjJyaCmhlYWQAAAioAAAALwAAADYRjURBaGhlYQAACNgAAAAcAAAAJAfeA45obXR4AAAI9AAAABQAAAA0M+kAAGxvY2EAAAkIAAAAHAAAABwNnA+YbWF4cAAACSQAAAAfAAAAIAEfAItuYW1lAAAJRAAAAUUAAAJtPlT+fXBvc3QAAAqMAAAAYgAAAINEaHAOeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/sc4gYGVgYOpk+kMAwNDP4RmfM1gxMjBwMDEwMrMgBUEpLmmMDgwVDxPZG7438AQw9zA0AAUZgTJAQAslQzUeJzFkr0NwkAMhd/lj78rKBFS6qSgTcM22SFFFojEGAxBxQLZ5GWM8C4mUhDQgq3vpLNPtuV3AFIAsTiJBHB3OAS7KeqmeIztFE9w0f2AvSJrtAQ9c5aseGbDjv1Qj6NezJniLfPJnCrOflx4yKTqk6jbBplm2MFjhUiJ7EutH5j7X+tX89N5XdzaJxqRMIK69IZ2CeZGUJqFEdRnaWjTYGVo5+DZCD+AjSEdwM4Ifdkb0gZDbSB6AC84PT54nGVWa2wcVxW+596dx+7szO7M7Mysd+19emdcP3bt3dkdq0ntVe3UabBj4tQJNQqtm/woCbhqAiRSGghIFColwhChVqqEBOqD/kCioSChVsgIJH5QWipQFBGJKEoqQRGI8A/ITjh3xwlG7N6555zZc8+957vnsUQg5O4N9g7LEpOMkCkyTz5OCIhjUNHoEJQ9v07HwCoLlpPRmFf1ylK1UmcPgVMRM3az47uOKIkp0KAArXKz49WpB21/hu6Cpj0EMJDPHTRqgwbbhETWK3w13Ee/B1axOpiamQgfHZ/NNEumfDppGAOGcUEWBUGmNJbS4LOOHRfiCTF8RUjlrHeKD9AiJAe83OLjailvrH/d3xiqOXGA8+fBzJe012f1nI7juZxtGgNSWpWzObU6nIHTt5SsmRxybxL8yOjre+wD1iRlsosskI+R/eST5GnyOUJqGlTLFbet+x10w3ZadfDKGkh6AZzyDATtquk2wPXcqgYpYKIliY7dnKXQcT2/46BWASzJc5hnssAxfZevztgcEsl30bQYCQJnEBsErkpvg6H23tAMQ6OHVQNc8Aq9NwojACMFerjggfs+pUbaUVXTopWP6CDEhaTwBRGyCe2YIqdzImX5+cYfd1/5uzruKHJYlBVFhhuy8gIK3+8Ln5CV8Nuce59PVn+vK3yOtumNRvQ78BdKVSUpgs6mwouMXUxKMbYkwOtmRYIYk/VYTIaRxnL4o1FYCffMFeHVeAIgoSvKT9ByWlFe5VNa4TgzxHmLLbK9xCYVUkd0nQAxnMHAqFOMKytjI1wmgoYII9AzAPfR8l34KGPpv2rZTvOJM18780Qz6/i/rHVXKV3tzvIZFnt/SqbTSZpV0+mqZaU/WHZXJ+ZQExfM1Q97S7+lX4LVbrSku9rbB+lsGkf/XD9kh9gkchKejUBVb/FHqHktHakkOHh7jKmbm+Hy5ib8M7w9VfpmaSq8fXX5+vX9bDJchjfDZVe8AHvCty+Ir4R3Xn4ZYts+E0JP0D9glOkkhz4XICNWXL9j/h9DneF6faHRGBpuNJBUI/Iu8HcLdcylxiMNHEC3GW462uTn9ALJE590yaN4egxHrw6SyGORf1t2MNXhSHd8QZSmRI8ruO2gE3RaTccuomWJ4YPAo1KdY+93mnZGZJdjwvGvrP107YVnx0YfPz0+9vBcWh8qH3ltKR1+K5/b+4jnbhwQhKfPLS4eWDm9Li28uPLY3Bqla3PzfJ5/YHr6YBDAa6Jwcvco8x48Ozn51KyjZYBS2Tl+SB+9IlHBTmZ2rQkgnmyX3M6n5f3rFjx538Lc2l0IDnIzHEa8p7fY39g+zNNZRBJDBJMv4K61++HSwgxFP0QeRk5GrNbuczyH+6Hm9RX7eiw3sHHYidFBSRoswKf2Fg+NLpyLCUtaPDe+ciquSGH6HteblZT4qZXxXFxbEmLnLnK1yfk1TCxWiidGjkwfeX5obGzjM8eOmva0kTu+ISX/HDE8vTaO54xp2zx67MQzz5w4dpRA/85+QD9PUoTEQax4UAc8XblARfZSeEn39fCSKmvFDL2aKWoyZeGzpgnf0NyaQ6lTc7exuMxusIfJEEEZbAlEl8PBx0MQNNszrFVu8fsXePbw+sLenGyEP7aC1HPrv86AIjGggpVX4EBcYslEeC3veYHnwdnAD9/SY6mzT/0mQzUldeoaqAO2DCDI746gQjCC+4vbcfcz9KFIqmSctEkH7wSB9vQZ6BdLXQMMLUvHtMZaiTXU9YQy9oyoQVRE5x5jsZO9wfIEwESZ3urTO/9WUimF3uLznX+xkTtX4ffZ4SyOtyMyP1GBa5WJiUpYq0zQPZBSwpqSAqRwDemZxy4ZXC1rbJPtOo9n3sKUTJIBRK2F+bJE1sgXEb8KgsaD3rE0CDTAPocJyZuVGXWA7fq/U4CdasJOQdpprYYwSGUMO4QlaFlVdFePahpHZAzarQLAk1h78waA8Tus/V1eiLuqcZf3ga1+bUYJ/kfq/WKHIv3yDuH6PVNgwnC+R/LDgLRb6q/cUk1TLXXzw7RraOf5K5z45oOGEf4jou9FBC5HVIvIxn/1u72tyChFQ4CGQsLNUoI/wTCJ4pv+ld4kBkeW52O8/08ggI6P7Qt2G6oSU2E9/C4W/ZIKz6dS4RmF3kyrpWT4YfhhopyLJeDBpJeE3XHyH+vCdsQAAAB4nGNgZGBgAOKb6lKy8fw2Xxm4WRhA4Lo5gyqC/r+BhYHZC8jlYGACiQIA1b8HWAB4nGNgZGBgbvjfwBDDwgACQJKRARXwAgBHEwJ2eJxjYWBgYH7JwMDCQDwGADB7AR0AAAAAAHYBKgF2AaQB1AJKAq4C0AMQA2oEHgRGeJxjYGRgYOBlqGfgYAABJiDmAkIGhv9gPgMAFsgBqwB4nGWPTU7DMBCFX/oHpBKqqGCH5AViASj9EatuWFRq911036ZOmyqJI8et1ANwHo7ACTgC3IA78EgnmzaWx9+8eWNPANzgBx6O3y33kT1cMjtyDRe4F65TfxBukF+Em2jjVbhF/U3YxzOmwm10YXmD17hi9oR3YQ8dfAjXcI1P4Tr1L+EG+Vu4iTv8CrfQ8erCPuZeV7iNRy/2x1YvnF6p5UHFockikzm/gple75KFrdLqnGtbxCZTg6BfSVOdaVvdU+zXQ+ciFVmTqgmrOkmMyq3Z6tAFG+fyUa8XiR6EJuVYY/62xgKOcQWFJQ6MMUIYZIjK6Og7VWb0r7FDwl57Vj3N53RbFNT/c4UBAvTPXFO6stJ5Ok+BPV8bUnV0K27LnpQ0kV7NSRKyQl7WtlRC6gE2ZVeOEXpc0Yk/KGdI/wAJWm7IAAAAeJxtwUEOgkAMBdB+mDIK4h1L2oDJMJiWRLg9C7a+Rw3devpvRIMWCYwOGQ880WPACyPehCNVWS2LqlsET6KzcSzi1tpp+WseW42k269ykclKF1LEz6SyG/tnXnaiC3XIGBkAAA==') format('woff'),
    url('/fonts/font_680193_mlx1ll180gc1h5mi.ttf?t=1527832357670') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/ url('/fonts/font_680193_mlx1ll180gc1h5mi.svg?t=1527832357670#iconfont') format('svg'); /* iOS 4.1- */
}

.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-name:before {
    content: "\e761";
}

.icon-address:before {
    content: "\e627";
}

.icon-badge:before {
    content: "\e61d";
}

.icon-share:before {
    content: "\e600";
}

.icon-eye:before {
    content: "\e7a2";
}

.icon-persons:before {
    content: "\e6c7";
}

.icon-down:before {
    content: "\e60c";
}

.icon-label:before {
    content: "\e628";
}

.icon-salary:before {
    content: "\e63a";
}

.icon-date:before {
    content: "\e674";
}

.icon-right:before {
    content: "\e685";
}

.iconfont[data-v-8168f87c] {
    vertical-align: middle;
    margin-right: 5px;
    width: 24px;
    text-align: center;
    font-size: 16px;
    display: inline-block
}

.iconfont[data-v-92272472] {
    font-size: 14px;
    padding-right: 10px
}

.ql-snow .ql-editor {
    font-size: 16px;
    line-height: 30px;
    color: #333;
}


.ql-snow .ql-editor p {
    padding-top: 15px;
}

.fanhui a {
    float: right;
    background: #555;
    display: block;
    width: 120px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

.fanhui a:hover {
    background: #333;
}

.aboutbt {
    font-size: 30px;
    color: #666666;
    text-align: center;
    padding-top: 30px;
}

@media screen and (max-width: 480px) {
    .fanhui {
        display: none;
    }

    .aboutbt {
        font-size: 20px;
        color: #666666;
        text-align: center;
        padding-top: 20px;
    }

    .indexNewsList {
        margin-left: -15px;
        margin-right: -15px;
    }

    .newsBox {
        margin: 20px -20px 20px -20px;
        overflow: hidden;
    }

    .newsBox1 {
        margin: 20px 0px 20px -20px;
        overflow: hidden;
    }

    .homeTitleBar h5 {
        font-size: 24px;
    }

    .aboutBoxBg {
        display: none;
    }

    .lmsybk {
        margin-left: 15px;
        margin-right: 15px;
    }

    .productBox {
        margin: 0px -10px 0px -10px;
    }

    .productBox .list {
        clear: both;
        padding: 0px 0px 0px 0px;
        margin-right: 0px;
        margin-left: -40px;
        overflow: hidden;
        font-size: 14px;
    }

    .boxzs {
        width: 100%;
        margin-left: 5px;
        margin-right: 5px;
    }

    .boxzszs {
        margin-top: -20px;
        margin-bottom: -30px;
    }

    .content {
        width: 100%;
        overflow: hidden;
        margin-left: -5px;
        margin-right: -5px;
    }

    .syad1 {
        width: 100%;
        height: auto;
        margin: 0px auto;
        padding-bottom: 0px;
    }

    .syadx {
        padding-bottom: 0px;
    }

    .content.school {
        padding: 20px 0;
    }

    .contenta {
        flex-direction: column;
        margin-left: -5px;
        margin-right: -15px;
        box-shadow: none;
    }

    .newsBox1 {
        margin-left: -10px;
        margin-right: -10px;
    }

    .newsBox2 {
        margin-left: -25px;
        margin-right: -25px;
    }

    .school {
        margin-top: -20px;
    }

    .syjlys1 {
        margin-top: -45px;
    }

    .sy2jl {
        margin-bottom: 20px
    }

    .container {
        padding: 0 15px;
    }

    .lbList {
        LIST-STYLE: none none outside;
        PADDING-LEFT: 18px;
        PADDING-RIGHT: 0px;
        PADDING-BOTTOM: 0px;
        MARGIN: 0px;
        PADDING-TOP: 0px;
        COLOR: #ffffff;
        margin-right: -20px;
    }

    .lbList li {
        float: left;
        border-radius: 0px;
        margin: 8px 20px 8px 0px;
        display: inline;
        width: 140px;
        height: 35px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
        font-weight: none;

        background-color: #00a1e9;
        border: 2px;
    }

    .lbList li:first-child {
        background-color: #f7a140;
    }

    .lbList A {
        DISPLAY: block;
        BACKGROUND: url(/images/lmdh01.png) no-repeat 0px 0px;
        COLOR: #ffffff;
        font-size: 16px;

    }

    .lbList A:hover {
        FONT-WEIGHT: none;
        BACKGROUND: url(/images/lmdh02.png) no-repeat 0px 0px;
        COLOR: #ffffff;
        font-size: 16px;
        text-decoration: none;
    }

    .lbList A:link {
        COLOR: #ffffff;
        font-size: 16px;
        text-decoration: none;
    }

    .lbList A:active {
        COLOR: #ffffff;
        font-size: 16px;
        text-decoration: none;
    }

    .lbList A:visited {
        COLOR: #ffffff;
        font-size: 16px;
        text-decoration: none;
    }
}

.tpsf {
    width: auto;
    height: auto;
}

img {
    max-width: 100%;
    height: auto;
}

.boxfocus {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    min-width: 1200px;
    background-color: transparent;
    width: 1200px;
    margin: 0px auto;
}

.boxfocus .bigpic {
    width: 100% !important;
    position: relative;
    z-index: 0;
}

.boxfocus .bigpic li {
    width: 100% !important;
    height: 350px;
    overflow: hidden;
    text-align: center;
}

.boxfocus .bigpic li a, .boxfocus .bigpic li a:visited {
    widtH: 1200px;
    display: block;
    margin: 0 auto;
    height: 370px
}

.boxfocus .smallpic {
    width: 100%;
    position: absolute;
    z-index: 1;
    top: 334px;
    position: absolute;
    left: 0px;
    line-height: 7px;
    height: 7px;
    overflow: hidden;
    text-align: center;
}

.boxfocus .smallpic li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 20px;
    line-height: 200px;
    height: 7px;
    margin: 0 3px;
    background: #333;
    overflow: hidden;
}

.boxfocus .smallpic .on {
    background: #FC0
}

.gj_list {
    width: 1200px;
    margin-left: 0px;
    height: 63px;
}

.gj_list a {
    float: left;
    display: block;
    position: relative;
    width: 280px;
    height: 63px;
    color: #FFF;
    background: #e2e2e2;
}


.gj_list a.active22 {
    background: #00a1e9;
}

.gj_list a .ac01 {
    display: block;
}

.gj_list a .ac02 {
    display: none;
}

.gj_list a.active22 .ac01 {
    display: none;
}

.gj_list a.active22 .ac02 {
    display: block;
    position: absolute;
    top: 0px;
    transition: 0.3s;
}

.gj_list a img {
    width: 43px;
    height: 43px;
    margin: 10px 0 0 9px;
}

.gj_list a strong {
    color: #636363;
    display: block;
    position: absolute;
    top: 0;
    left: 60px;
    padding-top: 18px;
    font: 500 18px/26px 'Microsoft YaHei';
    text-align: center;
}

.gj_list a.active22 strong {
    color: #fff;
}

.gj_list a strong {
    color: #636363;
}

.gj_list a.active22 strong {
    color: #fff;
}

.pg-box1 {
    margin-right: 26px;
}

/* 培训页面样式 */
.train-hero {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: linear-gradient(135deg, #071428 0%, #0d2137 30%, #1a365d 60%, #2c5282 100%);
}

.train-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
}

.train-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 179, 237, 0.25) 0%, transparent 60%);
    animation: pulse-glow 8s ease-in-out infinite reverse;
}

.train-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.train-hero .hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px),
        radial-gradient(circle, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particles-move 20s linear infinite;
}

@keyframes particles-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-50%, -50%); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.15); }
}

.train-hero .hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.train-hero .hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.train-hero .hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: blur(4px);
    transform: scale(1.05);
    transition: transform 1.5s ease;
}

.train-hero .hero-swiper .swiper-slide-active img {
    transform: scale(1.08);
}

.train-hero .hero-swiper .swiper-pagination {
    bottom: 30px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

.train-hero .hero-swiper .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 0 8px !important;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.train-hero .hero-swiper .swiper-pagination-bullet-active {
    width: 40px;
    height: 14px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 7px;
    border-color: transparent;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.train-hero .hero-swiper .swiper-button-prev,
.train-hero .hero-swiper .swiper-button-next {
    top: 50% !important;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.train-hero .hero-swiper .swiper-button-prev:hover,
.train-hero .hero-swiper .swiper-button-next:hover {
    background: rgba(59, 130, 246, 0.4);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.train-hero .hero-swiper .swiper-button-prev::after,
.train-hero .hero-swiper .swiper-button-next::after {
    font-size: 24px;
    color: #fff;
    font-weight: bold;
}

.train-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 130px 20px;
    color: #fff;
}

.train-hero .hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(37, 99, 235, 0.15));
    backdrop-filter: blur(12px);
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
    animation: badge-fade 0.8s ease-out;
    letter-spacing: 1px;
}

@keyframes badge-fade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.train-hero .hero-title {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 28px;
    line-height: 1.12;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #fff 0%, #a5d8ff 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-fade 0.8s ease-out 0.2s both;
    letter-spacing: 2px;
}

@keyframes title-fade {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

.train-hero .hero-tags {
    display: flex;
    gap: 18px;
    margin-bottom: 32px;
    animation: tags-fade 0.8s ease-out 0.4s both;
}

@keyframes tags-fade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.train-hero .hero-tags .tag {
    padding: 13px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.train-hero .hero-tags .tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.train-hero .hero-tags .tag:hover::before {
    left: 100%;
}

.train-hero .hero-tags .tag.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.train-hero .hero-tags .tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.train-hero .hero-desc {
    font-size: 18px;
    line-height: 2.1;
    opacity: 0.95;
    max-width: 900px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 16px;
    border-left: 5px solid #3b82f6;
    animation: desc-fade 0.8s ease-out 0.6s both;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

@keyframes desc-fade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.train-cards {
    padding: 80px 0;
    background: linear-gradient(180deg, #f1f5f9 0%, #f8fafc 50%, #fff 100%);
    position: relative;
}

.train-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(59, 130, 246, 0.03), transparent);
}

.train-cards .section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
    position: relative;
    padding-bottom: 20px;
}

.train-cards .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.train-cards .cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.train-cards .card-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    transform-style: preserve-3d;
}

.train-cards .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #3b82f6, #2563eb);
    background-size: 300% 100%;
    animation: gradient-flow 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.train-cards .card-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.2);
}

.train-cards .card-item:hover::before {
    opacity: 1;
}

.train-cards .card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.train-cards .card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1), transparent);
}

.train-cards .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-cards .card-item:hover .card-img img {
    transform: scale(1.12);
}

.train-cards .card-title {
    font-size: 22px;
    font-weight: 800;
    padding: 24px 28px 14px;
    color: #0f172a;
    margin: 0;
    position: relative;
}


.train-cards .card-desc {
    font-size: 15px;
    color: #64748b;
    padding: 12px 28px 24px;
    margin: 0;
    line-height: 1.7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.train-cards .card-btn {
    margin: 0 28px 28px;
    width: calc(100% - 56px);
    padding: 16px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.train-cards .card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.train-cards .card-btn:hover::before {
    left: 100%;
}

.train-cards .card-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
}

.train-cards .card-btn:active {
    transform: translateY(-1px);
}

.train-advantages {
    padding: 80px 0;
    background: linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 50%, #fff 100%);
    position: relative;
}

.train-advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
}

.train-advantages .section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
    position: relative;
    padding-bottom: 20px;
}

.train-advantages .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #059669, #10b981, #34d399);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.4);
}

.train-advantages .advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.train-advantages .advantage-item {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.train-advantages .advantage-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.train-advantages .advantage-item::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.train-advantages .advantage-item:hover::before,
.train-advantages .advantage-item:hover::after {
    opacity: 1;
}

.train-advantages .advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.15);
}

.train-advantages .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.train-advantages .advantage-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
}

.train-advantages .advantage-item:hover .advantage-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #059669, #10b981);
}

.train-advantages .advantage-icon svg {
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1;
}

.train-advantages .advantage-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #0f172a;
}

.train-advantages .advantage-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.9;
}

.train-location {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.train-location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, transparent);
}

.train-location .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.train-location .location-info .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 28px;
    color: #0f172a;
    position: relative;
    padding-bottom: 16px;
}

.train-location .location-info .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.train-location .location-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1e3a8a;
}

.train-location .location-detail {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-location .location-detail:hover {
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.12);
    transform: translateY(-2px);
}

.train-location .detail-item {
    display: flex;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.train-location .detail-item:last-child {
    border-bottom: none;
}

.train-location .detail-item:hover {
    padding-left: 12px;
    background: rgba(59, 130, 246, 0.03);
    margin: 0 -36px;
    padding-right: 36px;
}

.train-location .detail-label {
    font-weight: 700;
    color: #475569;
    min-width: 100px;
    font-size: 16px;
}

.train-location .detail-value {
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.train-location .map-placeholder {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-location .map-placeholder:hover {
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
}

.train-location .map-svg {
    width: 100%;
    height: 320px;
}

.train-location .map-tips {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
    padding: 14px 36px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.train-location .map-placeholder:hover .map-tips {
    transform: translateX(-50%) translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.train-location .map-tips span {
    font-size: 16px;
    color: #2563eb;
    font-weight: 700;
}

.train-faq {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.train-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
}

.train-faq .section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
    position: relative;
    padding-bottom: 20px;
}

.train-faq .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #7c3aed, #8b5cf6, #a78bfa);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.4);
}

.train-faq .faq-list {
    max-width: 950px;
    margin: 0 auto;
}

.train-faq .faq-item {
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.train-faq .faq-item:hover {
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.08);
    transform: translateX(4px);
}

.train-faq .faq-item.active {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 10px 36px rgba(59, 130, 246, 0.15);
}

.train-faq .faq-question {
    padding: 24px 28px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.train-faq .faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.train-faq .faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #2563eb, #3b82f6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.train-faq .faq-item.active .faq-question::before {
    opacity: 1;
}

.train-faq .faq-question::after {
    content: '+';
    position: absolute;
    right: 28px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    color: #4338ca;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}

.train-faq .faq-item.active .faq-question::after {
    content: '-';
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.train-faq .faq-answer {
    padding: 0 28px 24px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.9;
    display: none;
    animation: answer-fade 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes answer-fade {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

.train-faq .faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 991px) {
    .train-hero {
        height: 420px;
    }

    .train-hero .hero-title {
        font-size: 36px;
    }

    .train-cards .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .train-advantages .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .train-location .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .train-hero {
        height: 380px;
    }

    .train-hero .hero-content {
        padding: 70px 15px;
    }

    .train-hero .hero-title {
        font-size: 28px;
    }

    .train-hero .hero-tags {
        flex-wrap: wrap;
        gap: 10px;
    }

    .train-hero .hero-tags .tag {
        padding: 10px 20px;
        font-size: 14px;
    }

    .train-hero .hero-desc {
        font-size: 15px;
        padding: 16px 20px;
    }

    .train-cards {
        padding: 45px 15px;
    }

    .train-cards .section-title {
        font-size: 26px;
    }

    .train-cards .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .train-cards .card-img {
        height: 180px;
    }

    .train-advantages {
        padding: 45px 15px;
    }

    .train-advantages .section-title {
        font-size: 26px;
    }

    .train-advantages .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .train-location {
        padding: 45px 15px;
    }

    .train-location .location-grid {
        gap: 24px;
    }

    .train-location .location-info .section-title {
        font-size: 26px;
    }

    .train-location .map-svg {
        height: 250px;
    }

    .train-faq {
        padding: 45px 15px;
    }

    .train-faq .section-title {
        font-size: 26px;
    }

    .train-faq .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .train-faq .faq-answer {
        font-size: 15px;
        padding: 0 20px 18px;
    }
}

.pg-box2 {
    margin-right: 26px;
}

.pg-box3 {
    margin-right: 26px;
}

.pg-box4 {
    margin-right: 0;
}


@media screen and (max-width: 767px) {

    .copyright_p {
        display: none;
    }

}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .newscont {
        padding: 20px;
    }

    .tynrs img {
        width: 100%;
    }

    .newscontl {
        width: 100%;
        float: none;
    }

    .newscontrb ul li {
        height: auto;
    }

    .rongyucon ul li {
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .footer {
        height: auto;
    }

    .newscontltt {
        width: 100%;
    }

    .footerbl {
        width: 100%;
        text-align: center;
        float: none;
    }

    .newscontlb {
        display: none;
    }

    .newscontr {
        width: 100%;
        float: none;
        margin-top: 30px;
    }

    .footerbr {
        width: 100%;
        float: none;
        margin-top: 20px;
    }

    .footert {
        height: auto;
        display: none;
    }

    .footertl {
        width: 100%;
        float: none;
    }

    .footertr {
        width: 100%;
        float: none;
    }

    .contentfb {
        display: none;
    }

    .contentfb_touch {
        display: block;
    }

    .contenterb {
        display: none;
    }

    .contenterb_touch {
        display: block;
    }

    .contentel {
        width: 100%;
        float: none;
        padding: 0;
        border: none;
    }

    .contenter {
        width: 100%;
        float: none;
        padding: 0;
        border: none;
    }

    .contentelb img {
        width: 100%;
    }

    .contentd {
        display: none;
    }

    .contentd_touch {
        display: block;
        margin: 15px 0;
        overflow: hidden;
    }

    .contentcrbst img {
        width: 100%;
    }

    .contentcrtbb ul li {
        width: 46%;
    }

    .contentcrtbt img {
        width: 100%;
    }

    .contentcrtbt {
        overflow: hidden;
    }

    .contentcr {
        width: 100%;
        float: none;
    }

    .contentcls {
        display: none;
    }

    .contentcls_touch {
        display: block;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .contenta {
        background: #ffffff;
        padding: 0;
        height: 198px;
    }

    .contental {
        background: #deefff;
    }

    .contentar {
        background: #fff;
    }

    .contentay {
        background: #deefff;
    }

    .contentb_touch {
        display: block;
        overflow: hidden;
        margin: 20px 0;
    }

    .contentcl {
        width: 100%;
        float: none;
    }

    .contentcltl {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }

    .contentcltbl {
        width: 70%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .contentb {
        display: none;
    }

    .contental {
        width: 100%;
        float: none;
        height: auto;
        min-height: 200px;
    }

    .contental ul li {
        float: left;
        border-radius: 0px;
        margin: 8px 25px 8px 0px;
        display: inline;
        width: 140px;
        height: 35px;
        color: #ffffff;
        text-align: center;
        line-height: 35px;
        font-weight: none;
    }

    .contentar {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .school .contenta {
        display: flex !important;
        flex-direction: column !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
        gap: 0 !important;
    }

    .school .contentar {
        display: none !important;
    }

    .school .contental {
        width: 100% !important;
        height: 200px !important;
        float: none !important;
        background: transparent !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        min-height: 0 !important;
    }

    .school .contental .recommend-swiper {
        width: 100% !important;
        height: 100% !important;
    }

    .school .contental .swiper-slide {
        width: 100% !important;
        height: 100% !important;
    }

    .school .contental .swiper-slide img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        max-width: none !important;
        max-height: none !important;
    }

    .school .contental .swiper-slide:hover img {
        transform: none !important;
    }

    .school .contental .swiper-button-prev,
    .school .contental .swiper-button-next {
        display: none !important;
    }

    .school .contental .swiper-pagination {
        bottom: 10px !important;
        right: 50% !important;
        transform: translateX(50%) !important;
    }

    .school .contental .swiper-slide .slide-title {
        font-size: 12px !important;
        padding: 8px 15px !important;
    }

    .contentar > p:first-child {
        font-size: 20px;
    }

    .contentay {
        width: 100%;
        float: none;
        padding: 2px;
        height: auto;
    }

    .contentarbtt {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 16px;
    }

    .contentarbtb {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        font-size: 14px;
        -webkit-box-orient: vertical;
    }

    .contentarbbl {
        width: 65%;
        font-size: 14px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box !important;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
    }

    .contentarbbr {
        font-size: 14px;
    }

    html, body {
        width: 100%;
    }

    .contental ul li img {
        height: 100%;
    }

    .cgcont ul li {
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .video_tsd ul li {
        width: 100%;
        margin-right: 0;
        float: none;
    }

    .contentalt {
        bottom: 7px;
    }

    .contentalt span {
        margin-left: 0;
        display: block;
    }

    #rollAD {
        width: 280px !important;
        float: left;
    }

    .cgcont img {
        width: 100%;
    }

    .gsggl {
        display: none;
    }

    .gsggr {
        width: 100%;
        float: none;
    }

    #yema .pages span {
        margin-bottom: 20px;
    }

    #yema .pages a {
        margin-bottom: 20px;
    }

    #chbnav_touch {
        display: block;
    }

    .chbnav_touch_nav .chbnav_select {
        left: 0;
    }

    .chbnav_touch_nav_box {
        position: fixed;
        top: 0;
        overflow: auto;
        left: -100%;
        width: 100%;
        height: 100%;
        z-index: 1000;
        background: #fff;
        -webkit-transition: all 0.4s;
        -moz-transition: all 0.4s;
        -ms-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s;
    }

    .chbnav_touch_navli {
        padding: 0 5%;
    }

    .chbnav_touch_navli1 img {
        float: right;
        margin-top: 19px;
    }

    .chbnav_touch_navli2 {
        padding: 0 0 0 5%;
    }

    .chbnav_touch_navli2 a {
        display: block;
        width: 80%;
        float: left;
        border-bottom: 1px solid #f1f1f1;
    }

    .chbnav_touch_navli2_img {
        display: block;
        float: left;
        width: 20%;
        text-align: center;
        border-bottom: 1px solid #f1f1f1;
        border-left: 1px solid #f1f1f1;
        height: 60px;
        line-height: 60px;
        padding-top: 20px;
    }

    .chbnav_touch_navli2_img img {
        width: 10px;
    }

    .chbnav_touch_navli b {
        font-family: "Microsoft YaHei";
        float: right;
        font-size: 15px;
    }

    .chbnav_touch_erji {
        display: none;
        background-color: #f1f1f1;
        padding-left: 20px;
    }

    .chbnav_touch_erji a {
        display: block;
        font-size: 16px;
        color: #00a1e9;
    }

    .chbnav_touch_top_logo {
        position: absolute;
        height: 100%;
        left: 4%;
    }

    .chbnav_touch_top > a {
        display: block;
        height: 100%;
    }

    .chbnav_touch_nav_title {
        height: 58px;
        line-height: 58px;
        border-bottom: 1px solid #DDDDDD;
    }

    .chbnav_touch_nav_title .chbnav_touch_erji {
        line-height: 42px;
        padding: 12px 0 12px 20px;
    }

    .chbnav_touch_nav_title span {
        font-size: 18px;
        color: #00a1e9;
        float: left;
    }

    .chbnav_touch_top_logo img {
        height: 85%;
        margin-top: 5px;
    }

    .right_fd {
        display: none;
    }

    .chbnav_touch_top {
        position: relative;
        height: 60px;
        width: 100%;
        border-bottom: 1px solid #ddd;
        background-color: #ffffff;
    }

    .chbnav_touch_top_list {
        position: absolute;
        right: 4%;
        width: 36px;
        height: 100%;
    }

    .chbnav_touch_top_list_c {
        margin-top: 20px !important;
    }

    .chbnav_touch_top_list_a {
        width: 90%;
        height: 1px;
        margin: 0 auto;
        background-color: #666666;
    }

    .chbnav_touch_top_list_b {
        margin: 8px auto;
    }
}

@media screen and (max-width: 767px) {
    #tab1 {
        width: 100%;
        height: 42px;
        border: 0px #cccccc solid;
        border-bottom: 0;
        background: #d6d6d6;
        FONT-SIZE: 14px;
    }

    #tab1 ul {
        margin: 0;
        padding: 0;
        FONT-SIZE: 14px;
    }

    #tab1 li {
        float: left;
        height: 42px;
        line-height: 42px;
        text-align: center;
        border-right: 0px #cccccc solid;
        cursor: pointer;
        FONT-SIZE: 14px;
        width: 50%;
    }

    #tab1 li.now {
        color: #fff;
        background: #00a1e9;
        font-weight: bold;
        FONT-SIZE: 14px;
    }

    #tab1 li.now A {
        color: #fff;
        background: #00a1e9;
        font-weight: bold;
        FONT-SIZE: 14px;
    }

    #tab1 li.now A:hove {
        color: #ff610c;
        background: #fff;
        font-weight: bold;
        FONT-SIZE: 14px;
    }

    .tablist {
        width: 100%;
        height: auto;
        font-size: 14px;
        line-height: 35px;
        border: 0px #cccccc solid;
        border-top: 0;
        padding-top: 10px;
    }

    .boxnew LI {
        CLEAR: both;
        LINE-HEIGHT: 35px;
        list-style-type: none;
        padding: 0px 0px 5px 25px;
        background: url(/images/arr-tz.png) no-repeat 5px 3px;
        height: 35px;
        overflow: hidden;
        width: auto;
        FONT-SIZE: 14px;
        color: #333;
    }

    .boxnew A {
        FONT-SIZE: 14px;
        color: #333;
    }

    .boxnew A:hover {
        FONT-SIZE: 14px;
        color: #00a1e9;
    }

    .summary_foot .sybtw {
        width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .summary_foot span {
        PADDING-RIGHT: 5px;
        FLOAT: right;
        COLOR: gray ! important;
        FONT-SIZE: 14px;
        padding-left: 20px;
    }

    .contentcltl {
        width: 30%;
    }


    .wt > ul {
        justify-content: space-between;
        padding-top: 0px
    }

    .wt > ul > li {
        margin: 0;
        margin-bottom: 15px;
        width: 48%;
        overflow: hidden;
    }

    .wt > ul > li > a .img {
        width: 100%;
        line-height: 1
    }

    .wt > ul > li > a .img img {
        width: 100%;
        height: auto
    }

    .wt > ul > li > a {
        width: 100%;
        height: auto
    }

    .wt > ul > li > a p {
        font-size: 14px;
        height: 30px;
        line-height: 30px
    }

    #more {
        width: 150px;
        height: 40px;
        line-height: 40px;
        font-size: 14px
    }

    #banner .swiper-pagination {
        display: none;
    }

    .wt > ul .fake {
        width: 48%;
    }

    .wt {
        padding: 0 15px;
    }

    .wt .wtbt {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
    }

    .wt .wtbt:hover {
        text-decoration: none;
        color: #333;
    }

    .boxfocus {
        min-width: 100%;
        background-color: transparent;
        width: 100%;
        margin: 0px auto;
        height: 310px;
        padding-top: 10px;
    }

    .gj_list {
        width: 100%;
        margin-left: 0px;
        height: 63px;
    }

    .gj_list a {
        float: left;
        display: block;
        position: relative;
        width: 100%;
        height: 63px;
        color: #FFF;
        background: #e2e2e2;
        margin-left: 0px;
    }

    .pg-box1 {
        margin-bottom: 15px;
    }

    .pg-box2 {
        margin-bottom: 15px;
    }

    .pg-box3 {
        margin-bottom: 15px;
    }

    .pg-box4 {
        margin-bottom: 30px;
    }

    .newscontl {
        display: none;
    }

    .gsgg {
        display: none;
    }

    .contentartls .bt {
        font-size: 18px;
    }

    .zxkc .bt {
        width: 100%;
        font-size: 24px;
        text-align: center;
    }

    .zxkc .play {
        width: 100%;
    }

    .zxkc .play span {
        font-size: 18px;
    }

}

@media (min-width: 768px) {
    .navm {
        display: none;
    }
}

@media (min-width: 1200px) {
    .language {
        display: none;
    }
}

.lanyun-section-box.float-fix:not([editor]), .lanyun-section-box.is-float:not([editor]) {
    position: absolute;
    z-index: 999
}

[class^=fix-place-] {
    position: relative;
    z-index: -1
}

@media (max-width: 1024px) {
    .lanyun-section-box {
        position: relative
    }
}

@media (max-width: 768px) {
    .lanyun-section-box {
        position: relative
    }
}

.lanyun-section-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.lanyun-section-column > .lanyun-widget-container {
    width: 100%;
    padding: 10px
}

.lanyun-section-box .lanyun-box-container, .lanyun-section-inner-box > .lanyun-widget-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width: 1025px) {
    .lanyun-section-box .lanyun-box-container, .lanyun-section-inner-box > .lanyun-widget-container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .lanyun-section-column {
        width: 100%
    }
}

.lanyun-section-9fwhceqr > .lanyun-widget-container {
    padding: 0% 2% 0% 2%;
    background-image: url("//cdn.lanyuncms.cn/a/364177938823/files/d6eb16d1ca2b245a25d3a3d8daf6a78a.jpg");
    background-position-x: center;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: cover;
}

body.page-16399 .lanyun-section-9fwhceqr .lanyun-box-container {
    --container-width: 1400px;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 768px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 5%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 6%;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 12%;
    }
}

body.page-16399 .lanyun-section-bhb7mhpr > .lanyun-widget-container {
    padding: 0px 10px 0px 0px;
}

.lanyun-section-img {
    text-align: center;
    font-size: 0
}

.lanyun-section-img .lanyun-img {
    max-width: 100%;
    display: inline-block
}

.lanyun-section-img .lanyun-img-wrap {
    display: inline-block
}

.lanyun-section-text .lanyun-text {
    font-size: 14px;
    color: #333;
    line-height: 34px
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 12%;
    }
}

body.page-16399 .lanyun-section-bhb7mhpr > .lanyun-widget-container {
    padding: 0px 10px 0px 0px;
}

body.page-16399 .lanyun-section-vfghn0w6 > .lanyun-widget-container {
    text-align: left;
}

body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
    height: 45px;
}

@media (max-width: 1024px) {
    body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
        height: 40px;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
        height: 34px;
    }
}

body.page-16399 .lanyun-section-kyh7l6ra > .lanyun-widget-container {
    padding: 0px 0px 0px 0px;
}

body.page-16399 .lanyun-section-kyh7l6ra .lanyun-interval {
    justify-content: flex-start;
    height: 30px;
}

body.page-16399 .lanyun-section-kyh7l6ra .lanyun-divider-content {
    margin: 0px 24px 0px 0px;
    font-size: 24px;
    line-height: 1;
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1024px) {
    body.page-16399 .lanyun-section-kyh7l6ra .lanyun-divider-content {
        font-size: 20px;
        margin: 0px 16px 0px 0px;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-kyh7l6ra .lanyun-divider-content {
        font-size: 16px;
        margin: 0px 10px 0px 0px;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-kyh7l6ra .lanyun-divider-content {
        font-size: 16px;
        margin: 0px 10px 0px 0px;
    }
}

body.page-16399 .lanyun-section-8kdsfgip > .lanyun-widget-container {
    margin: 2% 0% 0% 0%;
}

body.page-16399 .lanyun-section-8kdsfgip .lanyun-text {
    color: rgba(255, 255, 255, 1);
    font-size: 48px;
    font-weight: bold;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    body.page-16399 .lanyun-section-8kdsfgip .lanyun-text {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-8kdsfgip .lanyun-text {
        font-size: 24px;
    }
}

body.page-16399 .lanyun-section-8eidfn8x > .lanyun-widget-container {
    margin: 1.2% 0% 0% 0%;
}

@media (min-width: 768px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 5%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 6%;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-bhb7mhpr {
        width: 12%;
    }
}

body.page-16399 .lanyun-section-bhb7mhpr > .lanyun-widget-container {
    padding: 0px 10px 0px 0px;
}

body.page-16399 .lanyun-section-vfghn0w6 > .lanyun-widget-container {
    text-align: left;
}

body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
    height: 45px;
}

@media (max-width: 1024px) {
    body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
        height: 40px;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-vfghn0w6 .lanyun-img {
        height: 34px;
    }
}

@media (min-width: 768px) {
    body.page-16399 .lanyun-section-w56fbynu {
        width: 95%;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body.page-16399 .lanyun-section-w56fbynu {
        width: 94%;
    }
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-w56fbynu {
        width: 87%;
    }
}

body.page-16399 .lanyun-section-w56fbynu > .lanyun-widget-container {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
}

body.page-16399 .lanyun-section-op8o9kxt .lanyun-text {
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    line-height: 1.9;
}

@media (max-width: 767px) {
    body.page-16399 .lanyun-section-op8o9kxt .lanyun-text {
        font-size: 12px;
        line-height: 1.8;
    }
}

.component .yd-table {
    margin: 0 auto;
}

.component {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.component:after {
    content: '';
    display: block;
    clear: both;
}

.floor_basic46 .toggle_main .Title {
    border-radius: 0;
}

#n5152 .Title {
    margin-bottom: 2px;
}

#n5152 .Title i {
    display: none;
}

.floor_basic46 {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
}

.floor_basic46 .toggle_main {
    float: left;
    margin-right: 1%;
    max-width: 25%;
}

.floor_basic46 .Float_right .toggle_main {
    float: right;
    margin-left: 1%;
}

.floor_basic46 .toggle_main .Title {
    border-radius: 0 0 0 0;
    text-align: center;
    margin-bottom: 3%;
    position: relative;
    white-space: nowrap;
}

.floor_basic46 .toggle_main .Title i {
    display: inline-block;
    font-style: normal;
    border-radius: 50%;
    margin-right: 3%;
    transform: scale(0.9, 0.9);
    text-align: center !important;
}

.floor_basic46 .Float_right .toggle_main .Title {
    border-radius: 0 100px 100px 0;
}

.floor_basic46 .content_main {
    overflow: hidden;
}

.floor_basic46 .content_main li {
    position: relative;
    display: none;
    margin-right: 2px;
    margin-left: -40px;
}

.floor_basic46 .content_main li.on {
    display: block;
}

.floor_basic46 .content_main img {
    display: block;
    width: 100%;
}

.floor_basic46 .content_main .content_wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    box-sizing: border-box;
    padding-top: 5%;
    text-align: left;
}

.floor_basic46 .Float_right .content_wrap {
    right: auto;
    left: 0;
    text-align: right;
}

.floor_basic46 .content_main .SubTitle {
    display: inline-block;
    margin: 0;
}

.floor_basic46 .content_main .Description {
    margin: 10%;
}

.floor_basic46 .content_main .Button {
    margin: 0 10%;
    padding: 0 !important;
}

.floor_basic46 .content_main .Button a {
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 100px;
    text-align: center !important;
    white-space: nowrap;
}

.floor_basic46 .content_main .content_wrap {
    width: 40%;
}

.m0 {
    margin-left: -40px;
}

.m1 {
    margin-left: -40px;
}

.m2 {
    margin-left: -40px;
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2)
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3)
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4)
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5)
}

.animate__animated.animate__faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2)
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8)
}

.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2)
}

.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3)
}

@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

.animate__animated.animate__flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}


.zx00 {
    width: 100%;
    margin-top: 25px;
    background: #00a1e9;
    border-radius: 5px;
    padding: 20px 0 20px 0;
    clear: both;
    margin-bottom: 40px;
}

.zx01 {
    width: 75%;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    float: left;
    line-height: 25px;
    text-align: left;
    border-right: 0px solid #FFF;
    padding-top: 20px;
}

.zx01 p {
    padding-left: 40px;
    font-size: 16px;
}

.zx02 {
    width: 25%;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    padding-top: 20px;
}

.jjlx {
    height: 30px;
    line-height: 30px;
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    text-decoration: none;
    width: 100%;
    color: #fff;
}

.jjlx a {
    color: #fff;
}


@media screen and (min-width: 1200px) {
    .full-width0 {
        max-width: 1200px;
    }

    #n5152 .content_wrap {
        width: 100%;
        height: 35%;
        top: 65%;
        left: 0;
        margin: 0;
        padding: 0;
    }

    #n5152 .Description {
        margin: 20px 50px;
    }

    .floor_basic46 .content_main .Button {
        margin: 0 50px;
    }

    .floor_page3 {
        padding: 10px;
    }
}

@media screen and (max-width: 699px) {
    .floor_basic46 .toggle_main {
        float: none;
        width: 100% !important;
        max-width: none;
        padding: 0 10px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .floor_basic46 .toggle_main li {
        float: left;
        width: 55%;
    }

    .floor_basic46 .toggle_main li.m1 {
        float: right;
    }

    .floor_basic46 .toggle_main li.m1 .Title {
    }

    .floor_basic46 .content_main .content_wrap {
        width: 60%;
        padding-top: 10px;
    }

    .floor_basic46 .content_main .Description {
        margin: 10px;
    }

    .zxz {
        width: 100%;
    }

    .zx01 {
        text-align: left;
        margin-left: -30px;
        width: 105%;
    }

    .zx02 {
        text-align: center;
        margin-left: -15px;
    }

    .imgList1 {
        margin-LEFT: -25px;
        margin-RIGHT: -15px;
        PADDING-BOTTOM: 5px;
        PADDING-TOP: 0px;
        DISPLAY: block;
        OVERFLOW: hidden;
        LINE-HEIGHT: 1.8;
        TEXT-ALIGN: center;
    }

    .imgList1 UL {
        PADDING-RIGHT: 20px;
        PADDING-LEFT: 0px;
        PADDING-BOTTOM: 0px;
        MARGIN: 0px;
        PADDING-TOP: 5px;
        LIST-STYLE-TYPE: none
    }

    .imgList1 LI {
        FLOAT: left;
        WIDTH: 230px;
        font-size: 14px;
    }
}

