body,
html {
    width: 100%;
    height: 100%;
}

/*---------------------首页 S---------------------*/

.logo {
    position: relative;
}

.swiper-wrapper {
    padding: 0 !important
}

.swiper-container {
    width: 100%;
    height: 100%;
}

/* 整屏滚动容器必须占满视口高度：否则 #home 会被内部 4 个 slide 的内容撑高，
   变成“平铺的高容器”，Swiper 误判已在末尾，鼠标滚轮 slideNext 失效、无法翻屏。
   官方站 #home 是 body 直接子元素，height:100% 即 100vh；本项目多包了一层
   .home-container，#app 用 min-height:100% 使高度链断裂，故此处显式锁 100vh。 */
.home-container {
    height: 100vh;
    overflow: hidden;
}

#home {
    height: 100vh !important;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.foot {
    height: 250px !important;
    opacity: 1 !important;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.swiper-button-next, .swiper-button-prev {
    height: 55px !important;
}

.swiper-button-next {
    right: 3% !important;
    background: url(../img/main/right_arrow_bright.png) !important;
    width: 29px !important;
}

.swiper-button-prev {
    left: 3% !important;
    background: url(../img/main/left_arrow_bright.png) !important;
}

.swiper-btn-next {
    position: fixed;
    bottom: 15px;
    z-index: 999999
}

/* 友情链接行：flex布局确保标签+链接同行左对齐，不受外层 text-align:center 影响 */
.friend-link-line {
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 5px 0 0;
}

.friend-link-line p {
    font-size: 15px;
    color: #fffefe;
    float: none;
    margin: 0 5px 0 0;
}

/* 首页 .swiper-slide 有 text-align:center，需覆盖 */
.home-container .friend-link-line,
.bottom-word > .bottom-data > .friend-link-line {
    text-align: left;
}

.btn-toggle:hover {
    cursor: pointer;
}

.nextPage2 {
    background: url(../img/next_w.png) 50% no-repeat;
    background-size: 100%;
}

.nextPage {
    bottom: 5.5%;
    background: url(../img/next_b.png) 50% no-repeat;
    background-size: 100%;
    animation: toggleMove .8s infinite;
    -moz-animation: toggleMove 10.8s infinite;
    -webkit-animation: toggleMove .8s infinite;
    -o-animation: toggleMove .8s infinite;
}

.btn-toggle {
    position: fixed;
    width: 36px;
    height: 30px;
    z-index: 12;
    left: 50%;
    margin-left: -13px;
}

@keyframes toggleMove {
    0% {
        bottom: 5.5%;
        opacity: .3;
    }

    50% {
        bottom: 4.5%;
        opacity: 1;
    }

    100% {
        bottom: 5.5%;
        opacity: .3;
    }
}

/*thl☝*/

.main-wrap {
    width: 100%;
    height: 100%;
    background: url(../img/main/bg.png);
    background-size: 100% 100%;
    position: relative;
}

/*头部nav内容*/


.head-box {
    background-color: rgba(0,0,0,0.2);
    height: 90px;
    width: 100%;
    /* padding: 0 5%;*/
    position: fixed;
    top: 0;
    z-index: 999;
}

    .head-box .logo {
        width: 30%;
        height: 100%;
        text-align: right;
        float: left;
    }

        .head-box .logo #Year {
            font-size: 26px;
            color: #F2A005;
            position: absolute;
            right: 111px;
            margin: 0;
            top: 14px;
        }

@media all and (max-width: 1334px) {
    .head-box .logo #Year {
        left: 258px;
    }
}

.logo img {
    width: 400px;
    height: 60px;
    margin-top: 15px;
}

.head-box ul {
    float: right;
    width: 62%;
    height: 100%;
    position: relative;
}

    .head-box ul .features {
        float: left;
        width: 11%;
        height: 100%;
        line-height: 90px;
        font-size: 15px;
        color: #fff;
        text-align: center;
        letter-spacing: 1px;
        position: relative;
        cursor: pointer;
    }


@media all and (min-width: 1400px) {
    .head-box ul .features {
        font-size: 16px;
    }
}

@media all and (min-width: 1600px) {
    .head-box ul .features {
        font-size: 17px;
    }
}

@media all and (min-width: 1920px) {
    .head-box ul .features {
        font-size: 18px;
    }
}

.head-box ul .block {
    height: 4px;
    width: 11%;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    float: left;
}

/*鼠标经过下划线*/

.selected:before {
    content: '';
    position: absolute;
    left: 10%;
    bottom: 0;
    z-index: 0;
    width: 80%;
    height: 3px;
    background-color: #FFFFFF;
}

/*鼠标经过弹出得div*/

.more-box {
    transition: all .2s;
    transform: translateY(10px);
    opacity: 0;
    visibility: hidden;
}

.features.on .more-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Vue 组件导航栏（首页内联 header / PCNav 子页面）无旧站 JS .on 切换，
   改为纯 CSS :hover 驱动下拉显示，覆盖上面的默认 opacity:0 / visibility:hidden 隐藏 */
.features:hover .more-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
    top: 100%;
    left: 0;
}

.nav {
    position: relative;
}

.block {
    display: none;
}

.more-box {
    width: 100%;
    z-index: 999;
    position: absolute;
}

    .more-box .features-list {
        border-bottom: 1px solid #f0f0f0;
        background-color: #0D97E0;
        font-size: 16px;
        color: #FFFFFF;
        line-height: 40px;
    }

        .more-box .features-list:hover {
            background-color: #18b8ed
        }

        .more-box .features-list:last-child {
            border-bottom: none
        }

        .more-box .features-list a {
            color: #FFFFFF;
            white-space: nowrap;
            height: 40px;
            display: inline-block;
            width: 100%;
        }

.main-wrap .content-box {
    width: 65%;
    height: 70%;
    margin: 5% auto 0;
    position: relative;
}

.content-box .content-word {
    float: left;
    width: 35%;
    height: 50%;
    position: absolute;
    top: 30%;
    vertical-align: middle;
}

@media screen and (max-width: 1340px) {
    .content-box .content-word {
        position: absolute;
        top: 20%;
        width: 40%;
    }

    .content-box .show-box {
        width: 60% !important;
    }
}

.content-word p {
    color: #fefefe;
    display: inline-block;
}

.content-word .title {
    width: 100%;
    text-align: left;
    padding: 8px 0 8px 15px;
    font-size: 22px;
    background: linear-gradient(to right, rgba(8, 121, 199, 1), rgba(8, 121, 199, 0));
}

.content-word .description {
    font-size: 26px;
    margin-top: 25px;
}

.content-word .word {
    font-size: 19px;
    line-height: 28px;
    margin-top: 15px;
    text-align: left;
    text-indent: 2em;
    text-align: justify;
}

.content-box .show-box {
    width: 70%;
    height: 100%;
    float: right;
    position: relative;
    text-align: center;
}

.show-box img {
    height: 80%;
    position: absolute;
    top: 20%;
    right: 0;
    margin-top: -50px;
}

/*底部图片*/

.main-wrap .bottom-img {
    width: 100%;
    height: 110px;
    position: absolute;
    bottom: 0;
}

.bottom-img img {
    width: 100%;
    height: 100%;
}

/*---------------------首页 E---------------------*/
/*---------------------我们的服务 S---------------------*/

.service-wrap {
    background-color: #FBFBFB;
    width: 100%;
    height: 100%;
    position: relative;
}

    .service-wrap .word-content {
        width: 650px;
        text-align: center;
        padding: 4.5% 0 3%;
        margin: 0 auto;
    }

.word-content .title {
    color: #4d4d4d;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 25px;
}

.word-content .introduction {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
}

.service-wrap .features-box {
    width: 55%;
    margin: 0 auto;
}

.features-box .single-box {
    width: 28%;
    height: 200px;
    margin: 0 2.5%;
    float: left;
    margin-top: 40px;
    position: relative;
}

.single-box .img-box {
    width: 100%;
    text-align: center;
    border-radius: 5px;
    background-color: #FFFFFF;
    padding: 15px 0;
    backface-visibility: hidden;
    transform: rotateY(0deg);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    box-shadow: 0 0 10px #ddd;
}

    .single-box .img-box.active,
    .single-box .word-box.active {
        transition: all 0.6s;
    }

.img-box img {
    width: 100px;
}

.img-box p {
    font-size: 22px;
    color: #0091ff;
    text-shadow: 0 2px 4px #BFD7E3;
    margin-top: 8px;
}

.service-wrap .features-box {
    width: 65%;
}

.service-img {
    width: 100%;
    height: 160px;
    position: absolute;
    bottom: 0;
}

    .service-img img {
        width: 100%;
        height: 100%;
    }


/*旋转的内容*/

.single-box .word-box {
    width: 100%;
    padding: 15px 0;
    background-image: linear-gradient(#486FF2, #42A3EA);
    border-radius: 5px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    z-index: 9999;
}

.word-box p {
    color: #FFFFFF;
    font-size: 18px;
    text-align: center;
}

.word-box .text {
    font-size: 14px;
    color: #FFFFFF;
    line-height: 22px;
    margin: 10px 15px;
    text-align: justify;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
    white-space: normal !important;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/*---------------------我们的服务 E---------------------*/
/*---------------------我们的产品 S---------------------*/

.product-wrap {
    width: 100%;
    height: 100%;
    background: url(../img/main/product_bg.png);
    background-size: 100% 100%;
}

    .product-wrap .word-content .title {
        color: #FFFFFF;
    }

    .product-wrap .word-content .introduction {
        color: #fefefe;
    }

/*轮播图*/
/* 必要布局样式css */
.slide-item-body ul li {
    width: 33.333%;
    float: left;
    display: block;
    height: 200px;
    padding-top: 42px;
    margin-bottom: 30px;
    border: none;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: inherit;
    padding-top: 0;
    border-radius: 0;
    background-color: #f5f5f5;
    color: #000;
    z-index: 10002;
}

    .slide-item-body ul li a {
        display: block;
        box-shadow: 0 5px 20px 1px rgba(49, 49, 49, 0.2);
    }

.new-img img {
    width: 100%;
    height: auto;
    border: none;
    display: block;
}

.slide-item {
    /*width: 870px;*/
    width: 65%;
    height: 45%;
    position: relative;
    margin: 0 auto;
    /* overflow: hidden; */
}

.slide-item-box {
    padding: 50px 0;
    height: 100%;
}

.slide-item-body {
    /* padding-top:20px; */
    margin-left: -70px;
    height: 100%;
}

    .slide-item-body ul li {
        margin-left: 15px;
        margin-right: 15px;
        /*padding-top: 20px;*/
        /*height: 300px;*/
        width: 33.3%;
    }

    .slide-item-body .tempWrap {
        padding-top: 20px;
    }

    .slide-item-body ul {
        padding-top: 10px;
        overflow: visible;
        height: 100%;
    }

        .slide-item-body ul li:hover {
            -ms-transform: translateY(-10px);
            -webkit-transform: translateY(-10px);
            -moz-transform: translateY(-10px);
            -o-transform: translateY(-10px);
            transform: translateY(-10px);
            z-index: 1002;
            position: relative;
            left: 0;
        }


.switch-img img {
    width: 100%;
    height: 230px;
}

.switch-img .word-introduction {
    width: 100%;
    height: 15%;
    font-size: 16px;
    color: #666666;
    background-color: #FFFFFF;
    overflow: hidden;
    padding: 10px 0;
}

    .switch-img .word-introduction p {
        overflow: hidden;
        /*内容超出后隐藏*/
        text-overflow: ellipsis;
        /* 超出内容显示为省略号*/
        white-space: nowrap;
        /*文本不进行换行*/
    }

/*查看更多*/

.bottom-btn {
    width: 100%;
    text-align: center;
    /* bottom: 50px; */
}

    .bottom-btn span {
        border-radius: 50px;
        border: 2px solid #f3f3f3;
        padding: 6px 22px;
        color: #FFFFFF;
        font-size: 18px;
        display: inline-block;
        cursor: pointer;
    }

    /*了解更多*/
    .bottom-btn .black {
        border: 2px solid #4c4c4c;
        color: #4d4d4d;
    }

/*---------------------我们的服务 E---------------------*/
/*---------------------合作单位S---------------------*/
.unit-wrap {
    background-color: #FAFAFA;
}

    .unit-wrap .unit-box {
        width: 65%;
        margin: 1% auto 5% auto;
    }

.unit-box .single-unit {
    width: 22.7%;
    margin: 20px 1.15%;
    float: left;
    box-shadow: 0 0 15px #f1f1f1;
    text-align: center;
    height: 130px;
}

.single-unit img {
    width: 100%;
    height: 100%
}

/*---------------------合作单位 E---------------------*/

/*---------------------底部内容 S---------------------*/
.bottom-word {
    width: 100%;
    height: 250px !important;
    background: url(../img/main/bottom_bg.png);
    background-size: 100% 100%;
    /* 子页面（普通滚动页）：footer 处于正常文档流，位于页面内容末尾，避免脱离文档流错位 */
    position: relative;
}

/* 首页整屏 Swiper 末屏：footer 绝对定位于末屏底部（仅首页生效，不影响子页面） */
.home-container .bottom-word {
    position: absolute;
    bottom: 0;
}

    .bottom-word .fp-tableCell {
        height: 250px !important;
    }

    .bottom-word .bottom-title {
        padding: 12px 10%;
        font-size: 16px;
        color: #FFFFFF;
        background-color: rgba(39, 65, 114, 0.9);
    }

.bottom-title p {
    float: left;
}

.bottom-title span {
    float: right;
}

.bottom-word .bottom-data {
    padding: 0 10%;
}

.bottom-data .nav-list {
    padding: 10px 0;
    border-bottom: 1px solid #FFFFFF;
}

.nav-list .single-nav {
    float: left;
    font-size: 17px;
    color: #FFFFFF;
    padding-right: 40px;
    position: relative;
    cursor: pointer;
}

.different:before {
    content: '';
    position: absolute;
    right: 20px;
    top: 5px;
    z-index: 0;
    width: 1px;
    height: 14px;
    background-color: #FFFFFF;
}

/*公司信息*/
.bottom-data .data-word {
    height: 106px;
    position: relative;
}

/*左部*/
.data-word .data-left {
    float: left;
    height: 100%;
    position: relative;
}

.data-left .logo-data {
    margin-top: 20px;
}

.logo-data img {
    width: 250px;
}

.data-left p {
    font-size: 15px;
    color: #fffefe;
    position: absolute;
    bottom: 0;
    left: 0;
}

/*中部*/
.data-word .data-central {
    float: left;
    position: absolute;
    left: 40%;
    top: 20px;
}

.data-central p {
    color: #fefefe;
    font-size: 15px;
}

.data-central .phone {
    margin-top: 16px;
    text-align: center;
}

/*右部*/
.data-word .data-right {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 18px;
    border: 1px dashed #FFFFFF;
}

.data-right .data-text {
    float: left;
    font-size: 15px;
    color: #fefefe;
    margin-top: 16px;
}

.data-text .provider {
    margin-top: 6px;
}

.data-right .code {
    margin-left: 18px;
    float: left;
}

.code img {
    width: 80px;
}

/*链接列表：在 flex 容器内正常流显示*/
.link-list {
    padding: 0;
    float: none;
    display: inline;
}

    .link-list a {
        color: #ffb04a;
        font-size: 15px;
        margin-right: 12px;
        cursor: pointer;
    }

        .link-list a:hover {
            text-decoration: underline
        }

/*---------------------底部内容 E---------------------*/
/*媒介查询兼容*/

@media screen and (max-width: 1340px) {
    .img-box img {
        width: 80px;
    }

    .word-box .text {
        margin: 9px 15px !important;
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        word-wrap: break-word;
        word-break: break-all;
        white-space: normal !important;
        -webkit-line-clamp: 4 !important;
        -webkit-box-orient: vertical;
    }

    .features-box .single-box {
        height: 160px;
    }

    /*.product-wrap .word-introduction p {
					margin: 2% 2% 0 5%;	
				}*/
    .product-wrap .arrow-sign img {
        width: 20px;
    }

    .product-wrap .arrow-left img {
        position: absolute;
        top: 60%;
        left: 0;
    }

    .product-wrap .arrow-right img {
        position: absolute;
        top: 60%;
        right: 0;
    }

    .data-word .data-central {
        float: left;
        position: absolute;
        left: 35%;
        top: 20px;
    }
}

/* 合作单位布局 */
.unit-wrap .fp-tableCell {
    /* display: block; */
    /*vertical-align: top;*/
}

#fp-nav ul li a span {
    background-color: #2A4371 !important;
}
/*详情页面*/
.info_wrap {
    width: 1180px;
    margin: 0 auto;
    padding: 50px 0;
}

    .info_wrap .title {
        font-size: 19px;
        color: #4c4c4c;
        text-align: center;
        font-weight: 600;
        position: relative;
    }

        .info_wrap .title p {
            background: #fff;
            padding: 0 10px;
        }

            .info_wrap .title p:after {
                content: "";
                position: absolute;
                width: 80%;
                height: 2px;
                background-color: #D1D1D1;
                z-index: -1;
                left: 10%;
                top: 50%;
                transform: translateY(-50%);
            }

    .info_wrap .time {
        font-size: 15px;
        color: #a0a0a0;
        text-align: center;
        margin-top: 15px
    }

    .info_wrap .info-content {
        font-size: 16px;
        color: #969696;
        line-height: 28px;
        margin-top: 15px
    }

        .info_wrap .info-content p {
            text-indent: 2em
        }

/* 线条运动
        --------------------------------------------------*/
.nav02 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #fff;
    transform: scaleX(0);
    transition: all .5s;
}

.nav02 ul .features.active:before {
    transform: scaleX(1);
}

/* 选中项与 hover 完全一致：仅底部白色横线，不做任何背景/文字变化 */
.nav02 ul .features.active,
.head-box ul .features.active {
    background: transparent !important;
}

/* 下划线同时支持 .active（选中项）与 :hover（悬停项），
   与首页内联导航一致：选中项 + 悬停项可同时显示两条白线 */
.nav02 ul li:hover::before {
    transform: scaleX(1);
}
