﻿/**
 * style.less
 * 层叠样式表
 */
.ff {
    font-family: 'iconfont' !important;
}

@font-face {
    font-family: 'Tungsten';
    font-weight: bold;
    font-style: normal;
    src: url('../font/Tungsten-Bold.eot');
    src: local('Tungsten Bold'), local('Tungsten-Bold'), url('../font/Tungsten-Bold.eot') format('embedded-opentype'), url('../font/Tungsten-Bold.woff2') format('woff2'), url('../font/Tungsten-Bold.woff') format('woff'), url('../font/Tungsten-Bold.ttf') format('truetype'), url('../font/Tungsten-Bold.svg') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Staatliches';
    font-weight: normal;
    font-style: normal;
    src: url('../font/Staatliches-Regular.eot');
    src: local('Staatliches Regular'), local('Staatliches-Regular'), url('../font/Staatliches-Regular.eot') format('embedded-opentype'), url('../font/Staatliches-Regular.woff2') format('woff2'), url('../font/Staatliches-Regular.woff') format('woff'), url('../font/Staatliches-Regular.ttf') format('truetype'), url('../font/Staatliches-Regular.svg') format('svg');
    font-display: swap;
}

body {
    font-family: 'Microsoft YaHei', 'WenQuanYi Micro Hei', 'Heiti SC', 'PingFang SC', 'Hiragino Sans GB', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 14px;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    height: 120px;
    padding: 0 30px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

@media (max-width: 1199px) {
    .header {
        height: 70px;
        padding: 0 15px;
    }
}

.header .logo {
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 60px;
    margin-top: 30px;
    -webkit-transition: all .4s;
    transition: all .4s;
    vertical-align: middle;
}

@media (max-width: 1350px) {
    .header .logo {
        height: 50px;
        margin-top: 35px;
    }
}

@media (max-width: 1199px) {
    .header .logo {
        height: 50px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .header .logo {
        height: 40px;
        margin-top: 15px;
    }
}

@media (max-width: 360px) {
    .header .logo {
        height: 34px;
        margin-top: 18px;
    }
}

.header .logo a {
    display: inline-block;
    height: 100%;
}

.header .logo img {
    position: relative;
    z-index: 2;
    display: inline-block;
    height: 100%;
}

.header .nav-collapse {
    position: relative;
    display: none;
    float: right;
    width: 20px;
    height: 40px;
    margin-left: 10px;
    padding: 0;
    cursor: pointer;
    background: none;
}

@media (max-width: 1199px) {
    .header .nav-collapse {
        display: block;
        margin-top: 14px;
    }

    .header .nav-collapse.nav-collapse-1 {
        position: absolute;
        z-index: 9999;
        top: 5px;
        right: 20px;
        display: block;
        margin-top: 8px;
        border: none;
    }

    .header .nav-collapse.nav-collapse-1 .btn-line {
        background-color: #fff !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .header .nav-collapse.nav-collapse-xs:hover .btn-line {
        background-color: #000;
    }
}

.header .nav-collapse .btn-line {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fff;
}

.header .nav-collapse .btn-line:nth-child(3),
.header .nav-collapse .btn-line:nth-child(1) {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    content: '';
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    background-color: #fff;
}

.header .nav-collapse .btn-line:nth-child(1) {
    top: 35%;
}

.header .nav-collapse .btn-line:nth-child(2) {
    top: 50%;
}

.header .nav-collapse .btn-line:nth-child(3) {
    top: 65%;
}

.header .nav-collapse.active {
    border-color: transparent;
}

.header .nav-collapse.active .btn-line {
    background-color: #fff;
}

.header .nav-collapse.active .btn-line:nth-child(2) {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
}

.header .nav-collapse.active .btn-line:nth-child(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) rotateZ(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotateZ(45deg);
}

.header .nav-collapse.active .btn-line:nth-child(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) rotateZ(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    transform: translateX(-50%) rotateZ(-45deg);
}

@media (min-width: 1200px) {
    .header .nav {
        position: relative;
        z-index: 2;
        float: right;
        -webkit-transition: all .4s;
        transition: all .4s;
    }

    .header .nav .logo {
        display: none;
    }
}

@media (max-width: 1199px) {
    .header .nav {
        position: fixed;
        z-index: 9998;
        top: 0;
        left: 0;
        display: none;
        width: 100%;
        height: 100%;
        padding: 0 26px;
        -webkit-transition: left .3s;
        transition: left .3s;
        text-align: left;
        text-align: center;
        background: #051d49;
        color: #fff;
    }

    .header .nav .logo {
        display: block;
        float: left;
    }

    .header .nav .tbl {
        display: table;
        width: 100%;
        /*height: 100%;*/
        padding-top: 18%;
    }

    .header .nav .tbl-cell {
        display: table-cell;
        height: 100%;
        vertical-align: middle;
    }
}

@media (min-width: 1200px) {
    .header .nav .nav-list1 {
        margin: 0 -24px;
    }

    .header .nav .nav-list1>li {
        position: relative;
        float: left;
    }

    .header .nav .nav-list1>li>a {
        font-size: 17px;
        line-height: 120px;
        position: relative;
        display: inline-block;
        padding: 0 18px;
        -webkit-transition: all .4s;
        transition: all .4s;
        vertical-align: middle;
        color: #fff;
    }

    .header .nav .nav-list1>li:hover>a,
    .header .nav .nav-list1>li.active>a {
        color: #ffc700;
    }

    .header .nav .nav-list1 .nav-list2 {
        position: absolute;
        z-index: 50;
        top: 80%;
        display: none;
        min-width: 100%;
        padding: 10px 0;
        text-align: center;
        background-color: #051d49;
    }

    .header .nav .nav-list1 .nav-list2 li {
        position: relative;
        list-style: none;
    }

    .header .nav .nav-list1 .nav-list2 li>a {
        font-size: 15px;
        line-height: 45px;
        position: relative;
        z-index: 1;
        display: block;
        padding: 0 18px;
        -webkit-transition: all .2s;
        transition: all .2s;
        white-space: nowrap;
        color: #fff;
    }

    .header .nav .nav-list1 .nav-list2 li>a:hover {
        color: #051d49;
        background-color: #ffc700;
    }

    .header .nav .nav-list1 .nav-list2 li img {
        max-width: 400px;
    }

    .header .nav .nav-list1 .nav-list3 {
        position: absolute;
        top: -20px;
        left: 100%;
        display: none;
        min-width: 120px;
        padding: 20px 0;
        text-align: left;
        background-color: #fff;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    }

    .header .nav .nav-list1 .nav-list3 li {
        border-bottom: 1px dashed rgba(255, 255, 255, .2);
    }

    .header .nav .nav-list1 .nav-list3 li>a {
        line-height: 30px;
        padding: 0 20px;
    }
}

@media (min-width: 1200px) and (max-width: 1470px) {
    .header .nav .nav-list1>li>a {
        padding: 0 14px;
    }
}

@media (max-width: 1199px) {
    .header .nav .nav-list1 {
        text-align: left;
    }

    .header .nav .nav-list1>li {
        position: relative;
    }

    .header .nav .nav-list1>li>a {
        font-size: 16px;
        line-height: 30px;
        display: block;
        padding: 4px 0;
    }

    .header .nav .nav-list1 .open-nav {
        font-size: 20px;
        line-height: 30px;
        position: absolute;
        top: 0;
        right: 0;
    }

    .header .nav .nav-list1 .open-nav:after {
        font-family: 'iconfont' !important;
        content: '\e629';
    }

    .header .nav .nav-list1 .current .open-nav:after {
        font-family: 'iconfont' !important;
        content: '\e628';
    }

    .header .nav .nav-list1 .nav-list2 {
        display: none;
    }

    .header .nav .nav-list1 .nav-list2>li a {
        font-size: 14px;
        line-height: 30px;
        display: block;
        color: #fff;
    }

    .header .nav .nav-list1 .nav-list2>li a:before {
        margin-right: 4px;
        content: '-';
    }
}

.header .language {
    display: inline-block;
    float: right;
    margin-top: 45px;
    margin-left: 28px;
    -webkit-transition: all .4s;
    transition: all .4s;
    color: #fff;
}

@media (max-width: 1199px) {
    .header .language {
        margin-top: 20px;
        margin-left: 0;
    }
}

.header .language a {
    line-height: 30px;
    display: inline-block;
    width: 30px;
    height: 30px;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;
    border: 1px solid #fff;
}

.header .language a:hover,
.header .language a.active {
    color: #333;
    border-color: #ffc700;
    background-color: #ffc700;
}

.header .back-btn {
    position: absolute;
    left: 15px;
}

.header.fixed-header {
    height: 80px;
    background-color: rgba(5, 29, 73, .8);
}

@media (max-width: 1199px) {
    .header.fixed-header {
        height: 70px;
    }
}

.header.fixed-header .logo {
    margin-top: 10px;
}

@media (max-width: 1350px) {
    .header.fixed-header .logo {
        height: 50px;
        margin-top: 15px;
    }
}

@media (max-width: 1199px) {
    .header.fixed-header .logo {
        height: 50px;
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .header.fixed-header .logo {
        height: 40px;
        margin-top: 15px;
    }
}

@media (max-width: 360px) {
    .header.fixed-header .logo {
        height: 34px;
        margin-top: 18px;
    }
}

.header.fixed-header .nav .nav-list1>li>a {
    line-height: 80px;
}

.header.fixed-header .language {
    margin-top: 25px;
}

@media (max-width: 1199px) {
    .header.fixed-header .language {
        margin-top: 20px;
    }
}

@media (min-width: 1200px) {
    .header.fixed-header .nav .nav-list1 .nav-list2 {
        top: 100%;
        background-color: rgba(5, 29, 73, .8);
    }

    .header.fixed-header .nav .nav-list1 .nav-list2>li>a {
        color: #fff;
    }
}

.header-inner {
    background-color: #051d49;
}

.online-wrap .btn {
    line-height: 36px;
    position: fixed;
    z-index: 9;
    right: 0;
    bottom: 55px;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    text-align: center;
    border-radius: 0;
    background-color: rgba(0, 0, 0, .7);
}

@media (min-width: 992px) {
    .online-wrap .btn {
        display: none;
    }
}

.online-wrap .btn:before {
    font-family: 'iconfont' !important;
    font-size: 18px;
    display: inline-block;
    content: '\e6d2';
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
    color: #fff;
}

.online-wrap .btn.active:before {
    -webkit-transform: rotateZ(225deg);
    -ms-transform: rotate(225deg);
    transform: rotateZ(225deg);
}

.online-wrap .code-pic {
    position: fixed;
    z-index: 101;
    right: 45px;
    bottom: 180px;
    display: none;
    max-width: 120px;
}

.online-wrap .code-pic .pic-box {
    padding: 5px;
    background-color: #fff;
}

.online-wrap .code-pic img {
    display: block;
    max-width: 100%;
}

.online-wrap .online {
    position: fixed;
    z-index: 8;
    top: 50%;
    right: 0;
    -webkit-transition: right .3s;
    transition: right .3s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

@media (max-width: 991px) {
    .online-wrap .online {
        top: auto;
        right: -60px;
        bottom: 100px;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(0%);
    }

    .online-wrap .online.active {
        right: 0;
    }
}

.online-wrap .online a {
    line-height: 48px;
    position: relative;
    display: block;
    width: 48px;
    height: 48px;
    margin: 2px auto;
    padding: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: center;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.online-wrap .online a:before {
    font-size: 20px;
    color: #a1a5b3;
}

@media (min-width: 992px) {
    .online-wrap .online a:hover {
        text-decoration: none;
        background-color: #ffc700;
    }

    .online-wrap .online a:hover:before {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .online-wrap .online a {
        line-height: 40px;
        width: 40px;
        height: 40px;
    }

    .online-wrap .online a:before {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .online-wrap .online .icon-phone:hover .phone-num {
        right: 100%;
    }
}

.online-wrap .online .icon-phone .phone-num {
    position: absolute;
    z-index: -1;
    top: 0;
    right: -300px;
    padding-right: 0;
    -webkit-transition: right .3s;
    transition: right .3s;
    white-space: nowrap;
}

.online-wrap .online .icon-phone .phone-num p {
    margin: 0;
    padding: 0 10px;
    color: #fff;
    background-color: #ffc700;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .12);
}

.online-wrap .online .code:before {
    font-size: 24px;
}

@media (max-width: 767px) {
    .online-wrap .online .code:before {
        font-size: 22px;
    }
}

.online-wrap .online .code .mask {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 100%;
    display: none;
    width: 130px;
    height: 130px;
    padding-right: 5px;
}

.online-wrap .online .code .mask .mask-box {
    border: 1px solid #e5e5e5;
    background-color: #fff;
}

.online-wrap .online .code .mask img {
    display: block;
    width: 100%;
}

.online-wrap .online .code .mask p {
    font-size: 13px;
    line-height: 16px;
    margin: 5px 0 8px 0;
    color: #888;
}

.online-wrap .online .sale {
    width: 158px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .online-wrap .online .sale {
        width: 50px;
    }
}

.online-wrap .online .sale a {
    width: 158px;
    height: 162px;
    background: none;
}

@media (max-width: 991px) {
    .online-wrap .online .sale a {
        width: 50px;
        height: 50px;
    }
}

.online-wrap .online .sale img {
    max-width: 100%;
}

.online-wrap .icon-qq:before {
    font-family: 'iconfont' !important;
    content: '\e62d';
}

.online-wrap .icon-weixin:before {
    font-family: 'iconfont' !important;
    content: '\e604';
}

.online-wrap .icon-message:before {
    font-family: 'iconfont' !important;
    font-size: 24px !important;
    content: '\e72e';
}

.online-wrap .icon-skype:before {
    font-family: 'iconfont' !important;
    content: '\e616';
}

.online-wrap .icon-whatsapp:before {
    font-family: 'iconfont' !important;
    content: '\e751';
}

.online-wrap .icon-phone:before {
    font-family: 'iconfont' !important;
    content: '\e61c';
}

.online-wrap .icon-arrow-top:before {
    font-family: 'iconfont' !important;
    content: '\e622';
}

.xs-online {
    position: fixed;
    z-index: 9;
    right: 0;
    bottom: 0;
    display: none;
    width: 100%;
    background-color: rgba(51, 51, 51, .9);
    box-shadow: 0 -2px 14px 1px rgba(0, 0, 0, .2);
}

@media (max-width: 991px) {
    .xs-online {
        display: block;
    }
}

.xs-online ul {
    overflow: hidden;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
}

.xs-online ul li {
    float: left;
    width: 20%;
    list-style: none;
    border-left: 1px solid rgba(255, 255, 255, .6);
}

.xs-online ul li>a {
    font-size: 10px;
    display: block;
    padding: 8px 0;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 320px) {
    .xs-online ul li>a {
        font-size: 8px;
    }
}

.xs-online ul li>a:before {
    font-family: 'iconfont' !important;
    font-size: 16px;
    font-style: normal;
    display: block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.xs-online ul li:first-child {
    border-left: none;
}

.xs-online ul li.tel>a:before {
    content: '\e601';
}

.xs-online ul li.mail>a:before {
    font-weight: normal;
    content: '\e649';
}

.xs-online ul li.message>a:before {
    font-weight: normal;
    content: '\e826';
}

.xs-online ul li.home>a:before {
    font-weight: normal;
    content: '\e6c8';
}

.xs-online ul li.map>a:before {
    font-weight: normal;
    content: '\e63e';
}

.xs-online ul li.product>a:before {
    font-weight: normal;
    content: '\e7e9';
}

.xs-online ul li.top>a:before {
    font-weight: normal;
    content: '\e622';
}

.xs-online ul li.whatsapp>a:before {
    font-weight: normal;
    content: '\e64e';
}

.xs-online ul li.wechat>a:before {
    font-weight: normal;
    content: '\e604';
}

.xs-online ul li.wechat img {
    position: absolute;
    top: -90px;
    left: 50%;
    display: none;
    width: 90px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.xs-online ul li.wechat:hover img {
    display: block;
}

.banner {
    font-size: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-color: #000;
}

@media (max-width: 767px) {
    .banner .slick-banner {
        width: 160%;
        margin-left: -30%;
    }
}

.banner img {
    display: block;
}

@media (min-width: 1200px) {
    .banner img {
        position: absolute;
        top: 50%;
        left: 50%;
    }
}

@media (max-width: 1199px) {
    .banner img {
        top: 0;
        left: 0;
        width: 100%;
    }
}

.banner .slick-dots {
    font-size: 0;
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    height: 10px;
    background-color: #051d49;
}

@media (max-width: 991px) {
    .banner .slick-dots {
        height: 4px;
    }
}

.banner .slick-dots>li {
    position: relative;
    display: inline-block;
    height: 10px;
    vertical-align: top;
}

@media (max-width: 991px) {
    .banner .slick-dots>li {
        height: 4px;
    }
}

.banner .slick-dots>li:before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    content: '';
    background-color: #ffc700;
}

.banner .slick-dots .slick-active:before {
    -webkit-animation: bwidth 4.5s linear infinite;
    animation: bwidth 4.5s linear infinite;
}

.banner .slick-dots button {
    display: none;
}

.banner .item {
    position: relative;
    display: block;
    overflow: hidden;
}

.banner .item img {
    display: block;
    width: 100%;
}

.banner .text {
    position: absolute;
    z-index: 2;
    top: 54%;
    width: 100%;
    padding: 0 14%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

@media (max-width: 991px) {
    .banner .text {
        padding: 0 8%;
    }
}

@media (max-width: 767px) {
    .banner .text {
        padding: 0 20%;
    }
}

.banner .text h3 {
    font-family: 'Staatliches', Arial;
    font-size: 100px;
    line-height: 1.4;
    margin: 0;
    color: #ffc700;
}

@media (max-width: 1470px) {
    .banner .text h3 {
        font-size: 80px;
    }
}

@media (max-width: 1199px) {
    .banner .text h3 {
        font-size: 70px;
    }
}

@media (max-width: 991px) {
    .banner .text h3 {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .banner .text h3 {
        font-size: 30px;
    }
}

.banner .text h4 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1470px) {
    .banner .text h4 {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text h4 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .banner .text h4 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .banner .text h4 {
        font-size: 18px;
    }
}

.banner .text h4 b {
    font-family: 'Staatliches', Arial;
    font-weight: normal;
    color: #ffc700;
}

.banner .text h5 {
    font-family: 'Staatliches', Arial;
    font-size: 48px;
    line-height: 1.4;
    margin: 0;
    color: #ffc700;
}

@media (max-width: 1470px) {
    .banner .text h5 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .banner .text h5 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .banner .text h5 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text h5 {
        font-size: 16px;
    }
}

.banner .text p {
    font-size: 48px;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1470px) {
    .banner .text p {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .banner .text p {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .banner .text p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text p {
        font-size: 16px;
    }
}

.banner .text p b {
    font-size: 60px;
}

@media (max-width: 1470px) {
    .banner .text p b {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text p b {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .banner .text p b {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .banner .text p b {
        font-size: 18px;
    }
}

.banner .text2 {
    position: absolute;
    z-index: 2;
    top: 55%;
    width: 100%;
    padding: 0 8%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

@media (max-width: 1470px) {
    .banner .text2 {
        padding: 0 5%;
        top: 58%;
    }
}

@media (max-width: 991px) {
    .banner .text2 {
        padding: 0 8%;
    }
}

@media (max-width: 767px) {
    .banner .text2 {
        padding: 0 20%;
    }
}

.banner .text2 h3 {
    font-family: Arial;
    font-size: 30px;
    line-height: 1.8;
    margin: 0;
    color: #fff;
}

.banner .text2 h3 b {
    color: #ffc700;
}

@media (max-width: 1470px) {
    .banner .text2 h3 {
        font-size: 26px;
    }
}

@media (max-width: 1199px) {
    .banner .text2 h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .banner .text2 h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .banner .text2 h3 {
        font-size: 12px;
        max-width: 60%;
        line-height: 18px;
        margin-top: 10px;
    }
}

.banner .text2 h4 {
    font-size: 56px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1470px) {
    .banner .text2 h4 {
        font-size: 44px;
    }
}

@media (max-width: 1199px) {
    .banner .text2 h4 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .banner .text2 h4 {
        font-size: 30px;
    }
}

.banner .text2 h4 b {
    font-family: Arial;
    font-weight: bold;
    color: #ffc700;
    font-size: 60px;
}
@media (max-width: 767px) {
    .banner .text2 h4 {
        font-size: 18px;
    }
    .banner .text2 h4 b {
        font-size: 26px;
    }
}
.banner .text2 h5 {
    font-family: Arial;
    font-size: 36px;
    line-height: 1.4;
    margin: 0;
    color: #ffc700;
    font-weight: bold;
}

@media (max-width: 1470px) {
    .banner .text2 h5 {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .banner .text2 h5 {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .banner .text2 h5 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text2 h5 {
        font-size: 12px;
        letter-spacing: -0.5px;
    }
}

.banner .text2 p {
    font-size: 48px;
    line-height: 1.4;
    margin: 30px 0 0 0;
    width: 470px !important;
    height: 246px;
    background: url(../image/banner2_img1.jpg) no-repeat left;
}

@media (max-width: 1470px) {
    .banner .text2 p {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .banner .text2 p {
        font-size: 32px;
        width: 280px !important;
        height: 168px !important;
        background-size: contain;
        margin: 10px 0 0 60px;
    }
}

@media (max-width: 991px) {
    .banner .text2 p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text2 p {
        margin: 10px 0 0 0;
        display: none;
        width: 168px !important;
        height: 214px;
        background: none;
    }
}

@media (max-width: 1470px) {
    .banner .text2 p img {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text2 p img {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .banner .text2 p img {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .banner .text2 p img {
        font-size: 18px;
    }
}

.banner .text3 {
    position: absolute;
    z-index: 2;
    top: 55%;
    width: 100%;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
}

@media (max-width: 1400px) {
    .banner .text3 {
        text-align: center;
        top: 55%;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .banner .text3 {
        text-align: center;
        top: 55%;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .banner .text3 {
        text-align: center;
        top: 50%;
        width: 100%;
    }
}

.banner .text3 h3 {
    font-family: 'Staatliches', Arial;
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    color: #fff;
}

@media (max-width: 1470px) {
    .banner .text3 h3 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    .banner .text3 h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .banner .text3 h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .banner .text3 h3 {
        font-size: 16px;
    }
}

.banner .text3 h4 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1470px) {
    .banner .text3 h4 {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text3 h4 {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .banner .text3 h4 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .banner .text3 h4 {
        font-size: 18px;
    }
}

.banner .text3 h4 b {
    font-family: 'Staatliches', Arial;
    font-weight: normal;
    color: #ffc700;
}

.banner .text3 h5 {
    font-family: 'Staatliches', Arial;
    font-size: 48px;
    line-height: 1.4;
    margin: 0;
    color: #ffc700;
}

@media (max-width: 1470px) {
    .banner .text3 h5 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .banner .text3 h5 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .banner .text3 h5 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text3 h5 {
        font-size: 16px;
    }
}

.banner .text3 p {
    font-size: 48px;
    line-height: 1.4;
    margin: 30px auto 0 auto;
    width: 1157px !important;
    height: 271px;
    background: url(../image/banner3_img.png) no-repeat;
}

@media (max-width: 1470px) {
    .banner .text3 p {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .banner .text3 p {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .banner .text3 p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .banner .text3 p {
        margin: 0 auto;
        background: url(../image/banner3_img.png) no-repeat center;
        width: 90% !important;
        height: 80px;
        background-size: contain;
    }
}

@media (max-width: 1470px) {
    .banner .text3 p img {
        font-size: 50px;
    }
}

@media (max-width: 1199px) {
    .banner .text3 p img {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .banner .text3 p img {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .banner .text3 p img {
        font-size: 18px;
    }
}

.banner .slick-arrow {
    top: auto;
    right: 120px;
    bottom: 30px;
    left: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

@media (max-width: 991px) {
    .banner .slick-arrow {
        right: 100px;
        bottom: 10px;
    }
}

@media (max-width: 767px) {
    .banner .slick-arrow {
        right: -webkit-calc(20% + 50px);
        right: calc(20% + 50px);
    }
}

.banner .slick-arrow.slick-next {
    right: 40px;
}

@media (max-width: 767px) {
    .banner .slick-arrow.slick-next {
        right: 20%;
    }
}

.banner .slick-current .item img {
    -webkit-animation: bzoom 4s 0s ease both;
    animation: bzoom 4s 0s ease both;
}

.banner .slick-current .item h3 {
    -webkit-animation: zoomIn 1s 0s ease both;
    animation: zoomIn 1s 0s ease both;
}

.banner .slick-current .item h5 {
    -webkit-animation: fadeInLeft 1s 0s ease both;
    animation: fadeInLeft 1s 0s ease both;
}

.banner .slick-current .item h4,
.banner .slick-current .item p {
    -webkit-animation: fadeInRight 1s 0s ease both;
    animation: fadeInRight 1s 0s ease both;
}

@media (max-width: 991px) {
    .banner-in .slickbanner {
        width: 140%;
        max-width: 140%;
        margin-left: -20%;
    }
}

@media (max-width: 767px) {
    .banner-in .slickbanner {
        width: 200%;
        max-width: 200%;
        margin-left: -50%;
    }
}

@-webkit-keyframes bzoom {
    0% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bzoom {
    0% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.bzoom {
    -webkit-animation-name: bzoom;
    animation-name: bzoom;
}

@-webkit-keyframes bwidth {
    0% {
        width: 0;
        opacity: 1;
        -webkit-width: 0;
        -ms-width: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
        -webkit-width: 100%;
    }
}

@keyframes bwidth {
    0% {
        width: 0;
        opacity: 1;
        -webkit-width: 0;
        -ms-width: 0;
    }

    100% {
        width: 100%;
        opacity: 1;
        -webkit-width: 100%;
    }
}

.bwidth {
    -webkit-animation-name: bwidth;
    animation-name: bwidth;
}

.home {
    overflow: hidden;
}

.title h2 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
}

@media (max-width: 991px) {
    .title h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .title h2 {
        font-size: 24px;
    }
}

.title p {
    font-size: 14px;
    line-height: 1.71428571;
    margin: 0;
    color: #666;
}

.home-offer {
    position: relative;
}

.home-offer .offer-list .pic {
    overflow: hidden;
    background-color: #000;
}

.home-offer .offer-list .pic img {
    width: 100%;
    opacity: .6;
}

@media (max-width: 767px) {
    .home-offer .offer-list .pic img {
        width: 200%;
        margin-left: -50%;
    }
}

.home-offer .offer-list .text {
    position: absolute;
    z-index: 2;
    top: 40%;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.home-offer .offer-list .text .text-top h3 {
    font-weight: 300;
    display: inline-block;
    border-bottom: 1px solid #ffc700;
}

.home-offer .offer-list .text .text-top .num {
    font-size: 190px;
    line-height: 1.2;
}

@media (max-width: 1470px) {
    .home-offer .offer-list .text .text-top .num {
        font-size: 140px;
    }
}

@media (max-width: 1199px) {
    .home-offer .offer-list .text .text-top .num {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    .home-offer .offer-list .text .text-top .num {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .home-offer .offer-list .text .text-top .num {
        font-size: 40px;
    }
}

.home-offer .offer-list .text .text-top .tt {
    font-size: 120px;
    line-height: 1.5;
}

@media (max-width: 1470px) {
    .home-offer .offer-list .text .text-top .tt {
        font-size: 90px;
    }
}

@media (max-width: 1199px) {
    .home-offer .offer-list .text .text-top .tt {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .home-offer .offer-list .text .text-top .tt {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home-offer .offer-list .text .text-top .tt {
        font-size: 30px;
    }
}

.home-offer .offer-list .text .note {
    margin-top: 14px;
}

@media (max-width: 767px) {
    .home-offer .offer-list .text .note {
        margin: 0;
    }
}

.home-offer .offer-list .text .note p {
    font-size: 36px;
    line-height: 1.38888889;
    margin-top: 0;
}
.home-offer .offer-list .text .note .sec {
    font-size: 40px;
}
.home-offer .offer-list .text .note .sec b {
    color: #ffc700;
    font-size: 40px;
}
@media (max-width: 1470px) {
    .home-offer .offer-list .text .note p {
        font-size: 30px;
    }
    .home-offer .offer-list .text .note .sec {
        font-size: 22px;
    }
    .home-offer .offer-list .text .note .sec b {
        font-size: 22px;
    }
}

@media (max-width: 1199px) {
    .home-offer .offer-list .text .note p {
        font-size: 24px;
    }
    .home-offer .offer-list .text .note .sec {
        font-size: 20px;
    }
    .home-offer .offer-list .text .note .sec b {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .home-offer .offer-list .text .note p {
        font-size: 20px;
    }
    .home-offer .offer-list .text .note .sec {
        font-size: 17px;
    }
    .home-offer .offer-list .text .note .sec b {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .home-offer .offer-list .text .note p {
        font-size: 16px;
    }
    .home-offer .offer-list .text .note p b {
        font-size: 30px;
        ;
    }
    .home-offer .offer-list .text .note .sec {
        font-size: 14px;
    }
    .home-offer .offer-list .text .note .sec b {
        font-size: 14px;
    }
}

.home-offer .offer-list .text .note p b {
    color: #ffc700;
    font-size: 46px;
    ;
}

.home-offer .slick-current .text-top {
    -webkit-animation: fadeInDown 1s 0s ease both;
    animation: fadeInDown 1s 0s ease both;
}

.home-offer .slick-current .note {
    -webkit-animation: fadeInUp 1s 0s ease both;
    animation: fadeInUp 1s 0s ease both;
}
@media (max-width: 767px) {
    .home-offer .offer-list .text .note p b {
        font-size: 30px;
        ;
    }
}

.home-offer .offer-nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background-color: rgba(0, 0, 0, .4);
}

@media (max-width: 1199px) {
    .home-offer .offer-nav {
        padding: 20px 0;
    }
}

@media (max-width: 767px) {
    .home-offer .offer-nav {
        padding: 10px 0;
    }
}

.home-offer .slick-offer-nav {
    display: inline-block;
}

.home-offer .slick-offer-nav .slick-track {
    width: auto !important;
}

.home-offer .slick-offer-nav .slick-slide {
    display: inline-block !important;
    float: none;
    vertical-align: top;
}

.home-offer .slick-offer-nav .item {
    line-height: 34px;
    display: block;
    padding: 0 20px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 30px;
}

@media (max-width: 767px) {
    .home-offer .slick-offer-nav .item {
        line-height: 28px;
        border-width: 1px;
    }
}

.home-offer .slick-offer-nav .slick-current .item {
    color: #fff;
    border-color: #ffc700;
    background-color: #ffc700;
}

.home-offer .slick-offer-nav .slick-slide {
    font-size: 16px;
    padding: 0 24px;
    vertical-align: top;
}

@media (max-width: 1199px) {
    .home-offer .slick-offer-nav .slick-slide {
        padding: 0 14px;
    }
}

@media (max-width: 991px) {
    .home-offer .slick-offer-nav .slick-slide {
        padding: 0 8px;
    }
}

@media (max-width: 767px) {
    .home-offer .slick-offer-nav .slick-slide {
        font-size: 14px;
        padding: 4px;
    }
}

.home-campus .row {
    margin: 0;
}

.home-campus .row .borderzero {
    padding: 0;
}

.home-campus .item {
    position: relative;
    display: block;
    background-color: #000;
}

.home-campus .item .ibox {
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: .7;
}

.home-campus .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}

.home-campus .item p {
    font-size: 36px;
    font-weight: bold;
    position: absolute;
    z-index: 2;
    top: 50px;
    display: block;
    width: auto;
    margin: 0;
    padding: 0 30px;
    color: #fff;
}

@media (max-width: 991px) {
    .home-campus .item p {
        font-size: 30px;
        top: 30px;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .home-campus .item p {
        font-size: 24px;
        top: 14px;
        padding: 0 10px;
    }
}

.home-campus .item-1 .ibox {
    padding-bottom: 73.95833333%;
    opacity: .8;
}

.home-campus .item-2 .ibox {
    padding-bottom: 73.95833333%;
}

.home-campus .item-2 p {
    font-size: 24px;
}

@media (max-width: 991px) {
    .home-campus .item-2 p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .home-campus .item-2 p {
        font-size: 16px;
    }
}

.home-campus .item:hover .ibox {
    opacity: .9;
}

.home-campus .item:hover .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-campus .item:hover p {
    color: #ffc700;
}

.home-video {
    padding: 90px 0;
    background: url(../image/video_bg.jpg) no-repeat center fixed;
    background-size: cover;
}

@media (max-width: 1199px) {
    .home-video {
        padding: 50px 0;
        background: url(../image/video_bg.jpg) no-repeat center;
        background-size: cover;
    }
}

.home-video .slick-video-for {
    font-size: 0;
    padding: 0 3%;
}

@media (max-width: 1199px) {
    .home-video .slick-video-for {
        padding: 0;
    }
}

.home-video .slick-video-for .slick-slide {
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .home-video .slick-video-for .slick-slide {
        padding: 70px 0;
    }
}

@media (max-width: 991px) {
    .home-video .slick-video-for .slick-slide {
        padding: 50px 0;
    }
}

@media (max-width: 767px) {
    .home-video .slick-video-for .slick-slide {
        padding: 20px 0;
    }
}

.home-video .slick-video-for .slick-current {
    position: relative;
    z-index: 2;
}

.home-video .slick-video-for .slick-current .item {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.home-video .slick-video-for .slick-current .item .ibox {
    opacity: .7;
}

.home-video .slick-video-for .slick-current .item .play {
    opacity: 1;
}

.home-video .slick-video-for .slick-current .item video {
    width: 500px !important;
    height: 300px !important;
}

.home-video .slick-video-for .slick-current .item:hover .ibox {
    opacity: .9;
}

.home-video .slick-video-for .slick-current .item:hover .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-video .slick-video-for .slick-current .item:hover .play {
    color: #ffc700;
}

.home-video .slick-video-for .item {
    -webkit-transition: all .6s;
    transition: all .6s;
    background-color: #000;
}

.home-video .slick-video-for .item .ibox {
    padding-bottom: 56.2%;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: .5;
}

.home-video .slick-video-for .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}

.home-video .slick-video-for .item .play {
    font-size: 60px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    display: block;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    opacity: 0;
    color: #fff;
}

@media (max-width: 991px) {
    .home-video .slick-video-for .item .play {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .home-video .slick-video-for .item .play {
        font-size: 30px;
    }
}

.home-video .slick-video-for .item .play:after {
    font-family: 'iconfont' !important;
    content: '\e64c';
}

.home-video .video-nav {
    position: relative;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .home-video .video-nav {
        margin-top: 20px;
    }
}

.home-video .video-nav:after {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    content: '';
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}

.home-video .video-nav .slick-video-nav {
    font-size: 0;
    max-width: 58%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

@media (max-width: 991px) {
    .home-video .video-nav .slick-video-nav {
        max-width: 68%;
    }
}

@media (max-width: 767px) {
    .home-video .video-nav .slick-video-nav {
        max-width: 90%;
    }
}

.home-video .video-nav .slick-video-nav .item {
    font-size: 14px;
    position: relative;
    padding-bottom: 20px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .home-video .video-nav .slick-video-nav .item {
        padding-bottom: 10px;
    }
}

.home-video .video-nav .slick-video-nav .item:after {
    position: absolute;
    z-index: 2;
    bottom: 0;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    opacity: 0;
    background-color: #ffc700;
}

.home-video .video-nav .slick-video-nav .item:before {
    position: absolute;
    z-index: 2;
    bottom: 2px;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    margin-left: -2px;
    content: '';
    opacity: 0;
    border-width: 0 4px 4px 4px;
    border-style: solid;
    border-color: transparent transparent #ffc700 transparent;
}

.home-video .video-nav .slick-video-nav .item p {
    font-size: 18px;
    line-height: 2;
    margin: 0;
}

@media (max-width: 767px) {
    .home-video .video-nav .slick-video-nav .item p {
        font-size: 16px;
    }
}

.home-video .video-nav .slick-video-nav .slick-current .item:after,
.home-video .video-nav .slick-video-nav .slick-current .item:before {
    opacity: 1;
}

.home-video .video-nav .slick-video-nav .slick-current .item p {
    font-weight: bold;
    color: #ffc700;
}

.home-overseas {
    font-size: 0;
    position: relative;
    border-top: 8px solid #ffc700;
}

@media (max-width: 1199px) {
    .home-overseas {
        border-top-width: 4px;
    }
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for {
        width: 140%;
        margin-left: -20%;
    }
}

.home-overseas .slick-overseas-for .item {
    font-size: 14px;
    position: relative;
    background-color: #000;
}

.home-overseas .slick-overseas-for .item .ibox {
    padding-bottom: 47.39583333%;
    opacity: .9;
}

.home-overseas .slick-overseas-for .item .note {
    position: absolute;
    z-index: 2;
    top: 46%;
    width: 100%;
    padding: 0 15px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for .item .note {
        padding: 0 17%;
    }
}

.home-overseas .slick-overseas-for .item .note .desc {
    max-width: 700px;
    margin: 0 auto;
}

.home-overseas .slick-overseas-for .item .note h4 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for .item .note h4 {
        font-size: 16px;
    }
}

.home-overseas .slick-overseas-for .item .note h3 {
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0 0 0;
}

@media (max-width: 1470px) {
    .home-overseas .slick-overseas-for .item .note h3 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .home-overseas .slick-overseas-for .item .note h3 {
        font-size: 30px;
        margin: 10px 0 0 0;
    }
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for .item .note h3 {
        font-size: 20px;
    }
}

.home-overseas .slick-overseas-for .item .note p {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    height: 48px;
    margin: 14px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for .item .note p {
        font-size: 14px;
    }
}

.home-overseas .slick-overseas-for .item .note a.more {
    line-height: 46px;
    display: inline-block;
    margin-top: 30px;
    padding: 0 46px;
    -webkit-transition: all .2s;
    transition: all .2s;
    border: 2px solid #fff;
}

@media (max-width: 1199px) {
    .home-overseas .slick-overseas-for .item .note a.more {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-for .item .note a.more {
        line-height: 30px;
        margin-top: 10px;
        padding: 0 20px;
    }
}

.home-overseas .slick-overseas-for .item .note a.more:hover {
    color: #333;
    background-color: #fff;
}

.home-overseas .slick-overseas-for .slick-current .note h4,
.home-overseas .slick-overseas-for .slick-current .note h3 {
    -webkit-animation: fadeInDown 1s 0s ease both;
    animation: fadeInDown 1s 0s ease both;
}

.home-overseas .slick-overseas-for .slick-current .note p,
.home-overseas .slick-overseas-for .slick-current .note a.more {
    -webkit-animation: fadeInUp 1s 0s ease both;
    animation: fadeInUp 1s 0s ease both;
}

.home-overseas .slick-overseas-nav {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    background-color: rgba(5, 29, 73, .5);
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-nav {
        position: relative;
        background-color: rgba(5, 29, 73, .8);
    }
}

.home-overseas .slick-overseas-nav .item {
    padding: 20px 10px;
    cursor: pointer;
    text-align: center;
    color: #fff;
}

@media (max-width: 1199px) {
    .home-overseas .slick-overseas-nav .item {
        padding: 10px 6px;
    }
}

.home-overseas .slick-overseas-nav .item p {
    font-size: 18px;
    line-height: 2;
    margin: 0;
}

@media (max-width: 1199px) {
    .home-overseas .slick-overseas-nav .item p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-nav .item p {
        font-size: 14px;
        line-height: 20px;
    }
}

.home-overseas .slick-overseas-nav .item p:after {
    display: block;
    width: 40px;
    height: 1px;
    margin: 0 auto;
    margin-top: 8px;
    content: '';
    background-color: #fff;
}

@media (max-width: 767px) {
    .home-overseas .slick-overseas-nav .item p:after {
        width: 30px;
        margin-top: 4px;
    }
}

.home-overseas .slick-overseas-nav .slick-current .item {
    color: #333;
    background-color: #ffc700;
}

.home-overseas .slick-overseas-nav .slick-current .item p:after {
    background-color: #333;
}

.home-features {
    position: relative;
}

.home-features .features-pic {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: opacity .8s;
    transition: opacity .8s;
    opacity: .6;
}

.home-features .features-pic .pic {
    background-color: #000;
}

.home-features .features-pic img {
    max-width: 100%;
    opacity: .6;
}

@media (max-width: 767px) {
    .home-features .features-pic img {
        max-width: 200%;
        margin-left: -50%;
    }
}

.home-features .features-pic.active {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.home-features .features-sort {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 100%;
    color: #fff;
}

.home-features .features-sort>ul {
    font-size: 0;
}

.home-features .features-sort>ul>li {
    font-size: 14px;
    display: inline-block;
    width: 10%;
    padding: 3% 4%;
    -webkit-transition: all .6s;
    transition: all .6s;
    vertical-align: top;
    border-left: 1px solid rgba(255, 255, 255, .2);
}

@media (max-width: 767px) {
    .home-features .features-sort>ul>li {
        padding: 30px 10px;
    }
}

.home-features .features-sort>ul>li.active {
    width: 70%;
}

.home-features .features-sort>ul>li.active .title-item {
    display: none;
}

.home-features .features-sort>ul>li.active .text {
    opacity: 1;
}

.home-features .features-sort .item .title-item {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 767px) {
    .home-features .features-sort .item .title-item {
        margin-top: 20px;
    }
}

.home-features .features-sort .item .title-item:before {
    font-family: 'iconfont' !important;
    font-size: 50px;
    line-height: 50px;
    display: block;
    width: 100%;
    margin-bottom: 20px;
    content: '\e62a';
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .title-item:before {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .title-item:before {
        font-size: 22px;
        line-height: 22px;
        margin-left: -2px;
    }
}

@media (min-width: 992px) {
    .home-features .features-sort .item .title-item h3 {
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }
}

.home-features .features-sort .item .title-item h3 {
    font-size: 30px;
    font-weight: 300;
    line-height: 50px;
    display: inline-block;
    margin: 0;
    letter-spacing: 4px;

}

@media (max-width: 1199px) {
    .home-features .features-sort .item .title-item h3 {
        font-size: 24px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .title-item h3 {
        font-size: 18px;
        line-height: 18px;
    }
}

.home-features .features-sort .item .text {
    width: 700px;
    opacity: 0;
}

@media (max-width: 991px) {
    .home-features .features-sort .item .text {
        width: 100%;
    }
}

.home-features .features-sort .item .text .tt h4 {
    font-size: 36px;
    line-height: 1.38888889;
    margin: 0;
    color: #fff;
}

@media (max-width: 1470px) {
    .home-features .features-sort .item .text .tt h4 {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .tt h4 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .tt h4 {
        font-size: 18px;
    }
}

.home-features .features-sort .item .text .title-features {
    margin-top: 40px;
    color: #ffc700;
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .title-features {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .title-features {
        margin-top: 10px;
    }
}

.home-features .features-sort .item .text .title-features:before {
    font-family: 'iconfont' !important;
    font-size: 60px;
    line-height: 60px;
    display: inline-block;
    margin-right: 10px;
    content: '\e62a';
    vertical-align: middle;
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .title-features:before {
        font-size: 40px;
        line-height: 40px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .title-features:before {
        font-size: 24px;
        line-height: 24px;
    }
}

.home-features .features-sort .item .text .title-features h3 {
    font-size: 48px;
    font-weight: bold;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
}

@media (max-width: 1470px) {
    .home-features .features-sort .item .text .title-features h3 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .title-features h3 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .title-features h3 {
        font-size: 18px;
    }
}

.home-features .features-sort .item .text .note {
    overflow: hidden;
    max-height: 325px;
    margin-top: 30px;
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .note {
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .note {
        margin-top: 10px;
    }
}

.home-features .features-sort .item .text .note p {
    font-size: 17px;
    line-height: 35px;
    margin: 0;
}

@media (max-width: 1199px) {
    .home-features .features-sort .item .text .note p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .home-features .features-sort .item .text .note p {
        font-size: 13px;
    }
}

.home-features .features-sort .item-xuanxiu .title-item:before,
.home-features .features-sort .item-xuanxiu .text .title-features:before {
    content: '\e623';
}

.home-features .features-sort .item-xiaofeng .title-item:before,
.home-features .features-sort .item-xiaofeng .text .title-features:before {
    content: '\e601';
}

.home-features .features-sort .item-tiyu .title-item:before,
.home-features .features-sort .item-tiyu .text .title-features:before {
    content: '\e667';
}

.home-environment {
    font-size: 0;
    position: relative;
    border-top: 8px solid #ffc700;
    padding: 30px 0;
}

.home-environment .item {
    font-size: 14px;
    position: relative;
    display: block;
    /* background-color: #000; */
}

.home-environment .item .ibox {
    padding-bottom: 66.006%;
    /* opacity: .6; */
}

.home-environment .item .note {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 5%;
    padding: 50px;
    background-color: #ffc700;
}

@media (max-width: 1470px) {
    .home-environment .item .note {
        left: 3%;
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .home-environment .item .note {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .home-environment .item .note {
        left: 15%;
        padding: 10px;
    }
}

.home-environment .item .note p {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.66666667;
    margin: 0;
}

@media (max-width: 1470px) {
    .home-environment .item .note p {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .home-environment .item .note p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .home-environment .item .note p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .home-environment .slick-environment-for {
        width: 100%;
        /* margin-left: -20%; */
    }
}

.home-environment .slick-environment-for .slick-current .item img {
    -webkit-animation: bzoom 4s 0s ease both;
    animation: bzoom 4s 0s ease both;
}

.home-environment .slick-environment-nav {
    position: absolute;
    z-index: 2;
    bottom: 50px;
    left: 25%;
    width: 50%;
}
.home-environment .slick-environment-nav .slick-list {
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 1199px) {
    .home-environment .slick-environment-nav {
        bottom: 20px;
        left: 15%;
        width: 70%;
    }
}

@media (max-width: 767px) {
    .home-environment .slick-environment-nav {
        position: relative;
        bottom: 0;
        left: 5%;
        width: 90%;
    }
}

.home-environment .slick-environment-nav .item {
    cursor: pointer;
}

.home-environment .slick-environment-nav .slick-current .item .ibox {
    opacity: 1;
}

.home-environment .slick-environment-nav .slick-current .item .ibox img {
    border: 3px solid #ffc700;
}

@media (max-width: 767px) {
    .home-environment .slick-environment-nav .slick-current .item .ibox img {
        border-width: 2px;
    }
}

.home-news {
    padding: 120px 0;
    background: url(../image/news_bg.jpg) no-repeat center fixed;
    background-size: cover;
}

@media (max-width: 1470px) {
    .home-news {
        padding: 80px 0;
    }
}

@media (max-width: 1199px) {
    .home-news {
        padding: 50px 0;
        background: url(../image/news_bg.jpg) no-repeat center;
        background-size: cover;
    }
}

.home-news .slick-news {
    margin: 0 -24px;
}

@media (max-width: 1199px) {
    .home-news .slick-news {
        margin: 0 -10px;
    }
}

.home-news .slick-news .slick-slide {
    padding: 0 24px;
}

@media (max-width: 1199px) {
    .home-news .slick-news .slick-slide {
        padding: 0 10px;
    }
}

.home-news .slick-news .item {
    background-color: #fff;
}

.home-news .slick-news .item .pic .ibox {
    padding-bottom: 73.33333333%;
}

.home-news .slick-news .item .pic .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
@media (min-width: 1199px) {
    .home-news .slick-news .item .desc {
        height: 210px;
    }
}

.home-news .slick-news .item .desc {
    padding: 20px;
}

.home-news .slick-news .item .desc b {
    font-size: 18px;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    height: 30px;
    color: #051d49;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.home-news .slick-news .item .desc p {
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    overflow: hidden;
    margin: 8px 0 0 0;
    max-height: 96px;
    color: #888;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.home-news .slick-news .item .desc a.more {
    line-height: 30px;
    display: block;
    margin-top: 14px;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #aaa;
}

.home-news .slick-news .item:hover .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.home-news .slick-news .item:hover .desc a.more {
    color: #051d49;
}

.home-news .slick-news .slick-dots {
    width: 100%;
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 1199px) {
    .home-news .slick-news .slick-dots {
        margin-top: 20px;
    }
}

.home-news .slick-news .slick-dots li {
    display: inline-block;
    width: 30px;
    height: 10px;
    margin: 0 8px;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
    vertical-align: middle;
    opacity: .3;
    border-radius: 10px;
    background-color: #fff;
}

@media (max-width: 767px) {
    .home-news .slick-news .slick-dots li {
        width: 10px;
    }
}

.home-news .slick-news .slick-dots li.slick-active {
    opacity: 1;
}

.home-news .slick-news .slick-dots li button {
    display: none;
}

.footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #051d49;
}

.footer .foot {
    overflow: hidden;
    padding: 70px 30px;
}

@media (max-width: 1199px) {
    .footer .foot {
        padding: 30px 15px;
    }
}

@media (max-width: 767px) {
    .footer .foot {
        padding: 15px;
    }
}

.footer .foot-left,
.footer .foot-right {
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 767px) {

    .footer .foot-left,
    .footer .foot-right {
        display: block;
    }
}

@media (max-width: 767px) {
    .footer .foot-left {
        text-align: center;
    }
}

.footer .foot-left img {
    max-width: 400px;
}

@media (max-width: 767px) {
    .footer .foot-left img {
        display: block;
        max-width: 80%;
        margin: 0 auto;
    }
}

.footer .foot-right {
    float: right;
}

@media (max-width: 767px) {
    .footer .foot-right {
        float: none;
        margin-top: 20px;
    }
}

.footer .foot-right .foot-nav {
    display: inline-block;
}

.footer .foot-right .foot-nav>ul {
    margin: 0 -15px;
}

@media (max-width: 767px) {
    .footer .foot-right .foot-nav>ul {
        margin: 0 -10px;
    }
}

.footer .foot-right .foot-nav>ul>li {
    display: inline-block;
    vertical-align: top;
}

.footer .foot-right .foot-nav>ul>li>a {
    font-size: 16px;
    line-height: 30px;
    display: block;
    padding: 0 15px;
}

@media (max-width: 767px) {
    .footer .foot-right .foot-nav>ul>li>a {
        font-size: 14px;
        padding: 0 10px;
    }
}

.footer .foot-right .foot-nav>ul>li>a:hover {
    text-decoration: underline;
}

.footer .foot-right .foot-text {
    overflow: hidden;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .footer .foot-right .foot-text {
        display: none;
        margin-top: 10px;
    }
}

.footer .foot-right .foot-text .text {
    display: inline-block;
    max-width: 460px;
    font-size: 15px;
}

.footer .foot-right .foot-text .text p {
    line-height: 30px;
    margin: 0;
}

.footer .foot-right .foot-text .text p a:hover {
    text-decoration: underline;
}

.footer .foot-right .foot-text .pic {
    display: inline-block;
    float: right;
}

@media (max-width: 767px) {
    .footer .foot-right .foot-text .pic {
        display: block;
        float: none;
        text-align: center;
    }
}

.footer .foot-right .foot-text .pic img {
    max-width: 130px;
}

.footer .copyright {
    clear: both;
    padding: 25px 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 767px) {
    .footer .copyright {
        margin-top: 0;
        padding: 10px 15px;
    }
}

.footer .copyright p {
    line-height: 30px;
    margin: 0;
    color: #fff;
}

@media (max-width: 767px) {
    .footer .copyright p {
        line-height: 24px;
    }
}

.inner-wrap {
    padding-top: 120px;
}

@media (max-width: 1199px) {
    .inner-wrap {
        padding-top: 70px;
    }
}

.inner-wrap .container {
    max-width: 1230px;
    margin: 0 auto;
}

.inner {
    padding: 50px 0;
}

.title-inner {
    text-align: center;
}

.title-inner h2 {
    font-size: 46px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    color: #616161;
}

@media (max-width: 1470px) {
    .title-inner h2 {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .title-inner h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .title-inner h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {
    .title-inner h2 {
        font-size: 24px;
    }
}

.title-inner h2:after {
    display: block;
    width: 36px;
    height: 4px;
    margin: 0 auto;
    margin-top: 14px;
    content: '';
    background-color: #616161;
}

.location {
    margin-top: 14px;
    text-align: center;
}

.location>ul {
    display: inline-block;
}

.location>ul:before {
    font-family: 'iconfont' !important;
    font-size: 20px;
    line-height: 30px;
    margin-right: 2px;
    content: '\e62e';
    color: #ffc700;
}

.location>ul>li {
    display: inline-block;
    vertical-align: top;
    color: #aaa;
}

.location>ul>li:after {
    content: '>';
}

.location>ul>li:last-child:after {
    display: none;
}

.location>ul>li>a {
    line-height: 30px;
    display: inline-block;
}

.location>ul>li:hover>a {
    text-decoration: underline;
    color: #ffc700;
}

.inner-text {
    margin-top: 30px;
    padding: 30px 50px;
    background-color: #f4f4f4;
}

@media (max-width: 991px) {
    .inner-text {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .inner-text {
        margin-top: 20px;
        padding: 20px 14px;
    }
}

.inner-text p {
    font-size: 16px;
    line-height: 2.25;
    margin: 0;
    color: #666;
}

@media (max-width: 767px) {
    .inner-text p {
        font-size: 14px;
    }
}

.inner-sidenav {
    position: relative;
    overflow: hidden;
    height: 55px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    text-align: center;
    background-color: #ffc700;
}

.inner-sidenav .container {
    padding: 0;
}

.inner-sidenav .nav-inner {
    position: relative;
    z-index: 2;
    overflow-x: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
    /*定义滚动条轨道 内阴影+圆角*/
    /*定义滑块 内阴影+圆角*/
    /*滑块效果*/
}

.inner-sidenav .nav-inner::-webkit-scrollbar {
    position: absolute;
    bottom: 0;
    width: 5px;
    width: 100%;
    height: 5px;
}

.inner-sidenav .nav-inner::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #ffc700;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.inner-sidenav .nav-inner::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .1);
}

.inner-sidenav .nav-inner::-webkit-scrollbar-thumb:hover {
    border-radius: 5px;
    background: rgba(0, 0, 0, .3);
}

.inner-sidenav ul {
    font-size: 0;
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.inner-sidenav ul li {
    display: inline-block;
}

.inner-sidenav ul li a {
    font-size: 16px;
    line-height: 50px;
    display: inline-block;
    padding: 0 20px;
    -webkit-transition: all .2s;
    transition: all .2s;
    color: #051d49;
}

@media (max-width: 767px) {
    .inner-sidenav ul li a {
        font-size: 15px;
        padding: 0 10px;
    }
}

.inner-sidenav ul li.active a,
.inner-sidenav ul li:hover a {
    font-weight: bold;
}

.inner-about .about {
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .inner-about .about {
        margin-top: 20px;
    }
}

.inner-about .about p {
    font-size: 16px;
    line-height: 2;
    margin: 0;
    color: #666;
}

@media (max-width: 991px) {
    .inner-about .about p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .inner-about .about p {
        font-size: 14px;
    }
}

.inner-about .about img {
    max-width: 100%;
    height: auto !important;
}

.inner-about .about video {
    max-width: 100%;
    height: auto !important;
}

.inner-team .team>ul>li {
    margin-top: 60px;
}

.inner-team .team .item {
    font-size: 0;
}

.inner-team .team .item .pic,
.inner-team .team .item .text {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}

.inner-team .team .item .pic {
    width: 20%;
}

@media (max-width: 767px) {
    .inner-team .team .item .pic {
        width: 100%;
    }
}

.inner-team .team .item .pic .ibox {
    padding-bottom: 117.77777778%;
}

.inner-team .team .item .text {
    width: 80%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .inner-team .team .item .text {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.inner-team .team .item .text .title-text:after {
    display: block;
    width: 32px;
    height: 6px;
    margin-top: 10px;
    content: '';
    background-color: #ffc700;
}

.inner-team .team .item .text .title-text h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    display: -webkit-box;
    color: #051d49;
    overflow: hidden;
    height: 40px;
    margin: 14px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {
    .inner-team .team .item .text .title-text h3 {
        font-size: 24px;
        margin: 0;
    }
}

.inner-team .team .item .text .title-text h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    height: 30px;
    margin: 14px 0 0 0;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {
    .inner-team .team .item .text .title-text h4 {
        font-size: 16px;
        margin: 4px 0 0 0;
    }
}

.inner-team .team .item .text .note {
    margin-top: 14px;
}

.inner-team .team .item .text .note p {
    font-size: 16px;
    line-height: 2.25em;
    margin: 0;
    color: #000;
}

.inner-team .team .item .text .note p strong {
    color: #051d49;
}

@media (max-width: 991px) {
    .inner-team .team .item .text .note p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .inner-team .team .item .text .note p {
        font-size: 14px;
    }
}

.inner-team .team .item .text .note img {
    max-width: 100%;
    height: auto !important;
}

.inner-about .team>ul>li {
    margin-top: 60px;
}

.inner-about .team .item {
    font-size: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.inner-about .team .item .pic,
.inner-about .team .item .text {
    font-size: 14px;
    display: inline-block;
    vertical-align: top;
}

.inner-about .team .item .pic {
    width: 20%;
}

@media (max-width: 767px) {
    .inner-about .team .item .pic {
        width: 100%;
    }
}

.inner-about .team .item .pic .ibox {
    padding-bottom: 117.77777778%;
}

.inner-about .team .item .text {
    width: 80%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .inner-about .team .item .text {
        width: 100%;
        padding: 20px 0 0 0;
    }
}

.inner-about .team .item .text .title-text:after {
    display: block;
    width: 32px;
    height: 6px;
    margin-top: 10px;
    content: '';
    background-color: #ffc700;
}

.inner-about .team .item .text .title-text h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    display: -webkit-box;
    overflow: hidden;
    height: 40px;
    margin: 14px 0 0 0;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {
    .inner-about .team .item .text .title-text h3 {
        font-size: 24px;
        margin: 0;
    }
}

.inner-about .team .item .text .title-text h4 {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    height: 30px;
    margin: 14px 0 0 0;
    color: #666;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {
    .inner-about .team .item .text .title-text h4 {
        font-size: 16px;
        margin: 4px 0 0 0;
    }
}

.inner-about .team .item .text .note {
    margin-top: 14px;
}

.inner-about .team .item .text .note p {
    font-size: 16px;
    line-height: 2.25em;
    margin: 0;
    color: #000;
}

@media (max-width: 991px) {
    .inner-about .team .item .text .note p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .inner-about .team .item .text .note p {
        font-size: 16px;
    }
}

.inner-about .team .item .text .note img {
    max-width: 100%;
    height: auto !important;
}

.inner-team .team-other .item {
    position: relative;
    display: block;
    margin-top: 40px;
    cursor: default;
    cursor: pointer;
}

@media (max-width: 767px) {
    .inner-team .team-other .item {
        margin-top: 20px;
    }
}

.inner-team .team-other .item .ibox {
    padding-bottom: 117.77777778%;
}

.inner-team .team-other .item .text {
    position: absolute;
    z-index: 2;
    bottom: 0;
    overflow: hidden;
    width: 100%;
    height: 130px;
    padding: 10px 20px 20px 20px;
    -webkit-transition: all .6s;
    transition: all .6s;
    color: #fff;
    background-color: #051d49;
}

@media (max-width: 1199px) {
    .inner-team .team-other .item .text {
        position: relative;
        bottom: auto;
        height: auto;
    }
}

.inner-team .team-other .item .text .title-text:after {
    display: block;
    width: 32px;
    height: 6px;
    margin-top: 10px;
    content: '';
    background-color: #ffc700;
}

.inner-team .team-other .item .text .title-text h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    display: -webkit-box;
    overflow: hidden;
    height: 32px;
    margin: 14px 0 0 0;
    color: #ffc700;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 991px) {
    .inner-team .team-other .item .text .title-text h3 {
        font-size: 20px;
    }
}

.inner-team .team-other .item .text .title-text h4 {
    font-size: 18px;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    /*    height: 30px; */
    margin: 6px 0 0 0;
    /*    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; */
}

@media (max-width: 991px) {
    .inner-team .team-other .item .text .title-text h4 {
        font-size: 16px;
    }
}

.inner-team .team-other .item .text .note {
    margin-top: 20px;
}

@media (max-width: 991px) {
    .inner-team .team-other .item .text .note {
        margin-top: 10px;
    }
}

.inner-team .team-other .item .text .note p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0;
}

.inner-team .team-other .item .text .note p b {
    font-weight: bold;
    color: #ffc700;
}

@media (max-width: 991px) {
    .inner-team .team-other .item .text .note p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .inner-team .team-other .item .text .note p {
        font-size: 14px;
    }
}

.inner-team .team-other .item .text .note p span {
    color: #ffc700;
}

.inner-team .team-other .item:hover .text {
    height: 100%;
    background-color: rgba(5, 29, 73, .7);
    overflow-y: auto;
}

.inner-team .graduates-number {
    padding: 20px 15px;
    background-color: #fff;
}

.inner-team .graduates-number ul {
    font-size: 0;
}

.inner-team .graduates-number ul li {
    font-size: 14px;
    display: inline-block;
    float: none;
    text-align: center;
    vertical-align: top;
}

.inner-team .graduates-number .item {
    display: inline-block;
    max-width: 220px;
    margin: 10px 0;
}

.inner-team .graduates-number .item b {
    font-family: 'Staatliches', Arial;
    font-size: 100px;
    font-weight: normal;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    color: #ffc700;
}

@media (max-width: 1470px) {
    .inner-team .graduates-number .item b {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .inner-team .graduates-number .item b {
        font-size: 60px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .inner-team .graduates-number .item b {
        font-size: 50px;
    }
}

.inner-team .graduates-number .item p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0;
}

@media (max-width: 767px) {
    .inner-team .graduates-number .item p {
        font-size: 14px;
    }
}

.colleges_txt {
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    color: #000;
}

.colleges_txt b {
    color: #051d49;
    font-size: 30px;
}

.colleges_txt label {
    color: #ffc700;
}

.colleges_txt2 {
    padding: 0;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    line-height: 3em;
}

.colleges_txt2 b {
    color: #051d49;
    font-size: 30px;
}

.colleges_txt2 label {
    color: #ffc700;
    font-size: 30px;
}

.inner-team .colleges {
    padding: 50px 0;
    background-size: cover;
}

@media (max-width: 1199px) {
    .inner-team .colleges {
        padding: 30px 0;
        background-size: cover;
    }
}

.inner-team .colleges .title-colleges {
    text-align: center;
    color: #051d49;
}

.inner-team .colleges .title-colleges h2 {
    font-size: 24px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-team .colleges .title-colleges h2 {
        font-size: 24px;
    }
}

.inner-team .colleges .title-colleges h2 b {
    color: #ffc700;
}

.inner-team .colleges .colleges-info {
    margin-top: 30px;
}

.inner-team .colleges .colleges-info ul {
    margin: 0;
}

.inner-team .colleges .colleges-info ul li {
    margin-top: -1px;
    margin-left: -1px;
    padding: 0;
    border: 1px solid #eee;
}

.inner-team .colleges .colleges-info .item {
    position: relative;
    overflow: hidden;
}

.inner-team .colleges .colleges-info .item p {
    line-height: 30px;
    position: absolute;
    bottom: 0;
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    height: 30px;
    margin: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    text-align: center;
    color: #333;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-team .colleges .colleges-info .item:hover p {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    color: #fff;
    background-color: #051d49;
}

@media (max-width: 1199px) {
    .inner-team .colleges .colleges-info .img-box img {
        max-width: 100%;
        height: auto;
        padding: 20px;

    }
}

.inner-overseas {
    background: url(../image/overseas_bg.jpg) no-repeat center top;
}

.inner-overseas .overseas>ul>li {
    font-size: 0;
    margin-top: 60px;
}

.inner-overseas .overseas>ul>li:nth-child(2n) .pic {
    left: 50%;
}

@media (max-width: 767px) {
    .inner-overseas .overseas>ul>li:nth-child(2n) .pic {
        left: 0;
    }
}

.inner-overseas .overseas>ul>li:nth-child(2n) .text {
    right: 50%;
}

@media (max-width: 767px) {
    .inner-overseas .overseas>ul>li:nth-child(2n) .text {
        right: 0;
    }
}

.inner-overseas .overseas .pic,
.inner-overseas .overseas .text {
    font-size: 14px;
    position: relative;
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

@media (max-width: 767px) {

    .inner-overseas .overseas .pic,
    .inner-overseas .overseas .text {
        display: block;
        width: 100%;
    }
}

.inner-overseas .overseas .pic {
    padding: 0 15px;
}

@media (max-width: 767px) {
    .inner-overseas .overseas .pic {
        padding: 0;
    }
}

.inner-overseas .overseas .pic img {
    max-width: 100%;
}

.inner-overseas .overseas .text {
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .inner-overseas .overseas .text {
        margin: 0;
    }
}

.inner-overseas .overseas .text .title-text {
    position: relative;
    padding-left: 50px;
}

@media (max-width: 767px) {
    .inner-overseas .overseas .text .title-text {
        padding-left: 40px;
    }
}

.inner-overseas .overseas .text .title-text:before {
    font-family: 'iconfont' !important;
    font-size: 36px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    content: '\e681';
    color: #ffc700;
}

@media (max-width: 767px) {
    .inner-overseas .overseas .text .title-text:before {
        font-size: 30px;
    }
}

.inner-overseas .overseas .text .title-text h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    color: #051d49;
}

@media (max-width: 1199px) {
    .inner-overseas .overseas .text .title-text h3 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .inner-overseas .overseas .text .title-text h3 {
        font-size: 16px;
    }
}

.inner-overseas .overseas .text .note {
    margin-top: 30px;
}

@media (max-width: 767px) {
    .inner-overseas .overseas .text .note {
        margin-top: 20px;
    }
}

.inner-overseas .overseas .text .note p {
    font-size: 16px;
    line-height: 2.25;
    margin: 0;
    color: #666;
}

@media (max-width: 1199px) {
    .inner-overseas .overseas .text .note p {
        font-size: 14px;
        line-height: 26px;
    }
}

.inner-overseas .overseas-honor {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .inner-overseas .overseas-honor {
        margin-top: 30px;
    }
}

.inner-overseas .overseas-honor .title-honor {
    position: relative;
    text-align: center;
}

.inner-overseas .overseas-honor .title-honor:before {
    font-family: 'iconfont' !important;
    font-size: 36px;
    line-height: 30px;
    display: inline-block;
    margin-top: 2px;
    content: '\e681';
    vertical-align: middle;
    color: #ffc700;
}

.inner-overseas .overseas-honor .title-honor h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
    display: inline-block;
    margin: 0;
    vertical-align: middle;
    color: #051d49;
}

@media (max-width: 767px) {
    .inner-overseas .overseas-honor .title-honor h2 {
        font-size: 20px;
    }
}

.inner-overseas .overseas-honor .list .item {
    margin-top: 50px;
    text-align: center;
}

@media (max-width: 991px) {
    .inner-overseas .overseas-honor .list .item {
        margin-top: 30px;
    }
}

.inner-overseas .overseas-honor .list .item .pic {
    border: 1px solid #ededed;
}

.inner-overseas .overseas-honor .list .item .pic .ibox {
    padding-bottom: 42.85714286%;
}

.inner-overseas .overseas-honor .list .item p {
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    overflow: hidden;
    height: 30px;
    margin: 10px 0 0 0;
    color: #777;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 1199px) {
    .inner-overseas .overseas-honor .list .item p {
        font-size: 14px;
    }
}

.inner-collectivization .collectivization {
    max-width: 1620px;
    margin: 0 auto;
    margin-top: 50px;
}

@media (max-width: 1470px) {
    .inner-collectivization .collectivization {
        margin-top: 30px;
    }
}

.inner-collectivization .collectivization .slick-collectivization {
    padding: 0 3%;
}

@media (max-width: 1199px) {
    .inner-collectivization .collectivization .slick-collectivization {
        padding: 0;
    }
}

.inner-collectivization .collectivization .slick-collectivization .slick-slide {
    padding: 100px 0;
}

@media (max-width: 1199px) {
    .inner-collectivization .collectivization .slick-collectivization .slick-slide {
        padding: 70px 0;
    }
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization .slick-collectivization .slick-slide {
        padding: 0;
    }
}

.inner-collectivization .collectivization .slick-collectivization .slick-current {
    position: relative;
    z-index: 2;
}

.inner-collectivization .collectivization .slick-collectivization .slick-current .item {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    background: none;
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization .slick-collectivization .slick-current .item {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.inner-collectivization .collectivization .slick-collectivization .slick-current .item .ibox {
    opacity: 1;
}

.inner-collectivization .collectivization .slick-collectivization .slick-current .item .note {
    opacity: 1;
}

.inner-collectivization .collectivization .slick-collectivization .item {
    -webkit-transition: all .6s;
    transition: all .6s;
    background-color: #000;
}

.inner-collectivization .collectivization .slick-collectivization .item .ibox {
    padding-bottom: 56%;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: .5;
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization .slick-collectivization .item .ibox {
        opacity: 1;
    }
}

.inner-collectivization .collectivization .slick-collectivization .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}

.inner-collectivization .collectivization .slick-collectivization .item .note {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
    padding: 14px 30px;
    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    opacity: 0;
    color: #fff;
    background-color: rgba(5, 29, 73, .75);
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization .slick-collectivization .item .note {
        font-size: 12px;
        padding: 8px 10px;
    }
}

.inner-collectivization .collectivization .slick-collectivization .item .note p {
    margin: 0;
}

.inner-collectivization .collectivization .slick-collectivization .item .note:after {
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 6px;
    content: '';
    background-color: #ffc700;
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization .slick-collectivization .item .note {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .inner-collectivization .collectivization .slick-collectivization .item .note {
        font-size: 18px;
    }
}

.inner-collectivization .collectivization-text {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization-text {
        margin-top: 30px;
    }
}

.inner-collectivization .collectivization-text p {
    font-size: 16px;
    line-height: 2em;
    margin: 0;
    color: #000;
}

@media (max-width: 991px) {
    .inner-collectivization .collectivization-text p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .inner-collectivization .collectivization-text p {
        font-size: 14px;
    }
}

.inner-hundred {
    padding-bottom: 0;
}

.inner-hundred .hundred {
    font-size: 0;
    position: relative;
}

.inner-hundred .hundred-sort {
    font-size: 0;
    margin-top: 50px;
    border-bottom: 15px solid #ffc700;
    background-color: #e6e6e6;
}

@media (max-width: 991px) {
    .inner-hundred .hundred-sort {
        border-bottom-width: 4px;
    }
}

.inner-hundred .hundred-sort>li {
    display: inline-block;
    width: 25%;
    vertical-align: top;
}

.inner-hundred .hundred-sort .item {
    padding: 20px 10px;
    cursor: pointer;
    text-align: center;
}

@media (max-width: 991px) {
    .inner-hundred .hundred-sort .item {
        padding: 10px;
    }
}

.inner-hundred .hundred-sort .item b {
    font-size: 30px;
    font-weight: normal;
    line-height: 40px;
    display: block;
    color: #999;
}

@media (max-width: 1199px) {
    .inner-hundred .hundred-sort .item b {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .inner-hundred .hundred-sort .item b {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .inner-hundred .hundred-sort .item b {
        font-size: 16px;
        line-height: 24px;
    }
}

.inner-hundred .hundred-sort .active .item {
    background-color: #ffc700;
}

.inner-hundred .hundred-sort .active .item b {
    color: #333;
}

.inner-hundred .hundred-list {
    position: relative;
    padding: 30px 0;
}

.inner-hundred .hundred-list .list {
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0;
}

.inner-hundred .hundred-list .list:nth-child(1) {
    position: relative;
}

.inner-hundred .list.active {
    z-index: 2;
    opacity: 1;
}

.inner-hundred .list .item {
    font-size: 14px;
    position: relative;
    display: block;
    /* background-color: #000; */
}

.inner-hundred .list .item .ibox {
    padding-bottom: 66.006%;
    /* opacity: 1; */
}

@media (max-width: 767px) {
    .inner-hundred .list .slick-environment-inner-for {
        width: 100%;
        /* margin-left: -20%; */
    }
}

.inner-hundred .list .slick-environment-inner-for .slick-current .item img {
    -webkit-animation: bzoom 4s 0s ease both;
    animation: bzoom 4s 0s ease both;
}

.inner-hundred .list .slick-environment-inner-nav {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 0;
    width: 100%;
    padding: 0 10px;
}

@media (max-width: 1199px) {
    .inner-hundred .list .slick-environment-inner-nav {
        bottom: 30px;
        padding: 0 15px;
    }
}

@media (max-width: 767px) {
    .inner-hundred .list .slick-environment-inner-nav {
        position: relative;
        bottom: 0;
        padding: 0;
    }
}

.inner-hundred .list .slick-environment-inner-nav .item {
    cursor: pointer;
}

.inner-hundred .list .slick-environment-inner-nav .slick-current .item .ibox {
    opacity: 1;
}

.inner-hundred .list .slick-environment-inner-nav .slick-current .item .ibox img {
    border: 3px solid #ffc700;
}

@media (max-width: 767px) {
    .inner-hundred .list .slick-environment-inner-nav .slick-current .item .ibox img {
        border-width: 2px;
    }
}

.hundred-list .item .note {
    position: absolute;
    z-index: 2;
    top: 10%;
    left: 5%;
    padding: 50px;
    background-color: rgba(255, 199, 0, .8);
}

@media (max-width: 1470px) {
    .hundred-list .item .note {
        left: 3%;
        padding: 30px;
    }
}

@media (max-width: 1199px) {
    .hundred-list .item .note {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .hundred-list .item .note {
        left: 15%;
        padding: 10px;
    }
}

.hundred-list .item .note p {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.66666667;
    margin: 0;
}

@media (max-width: 1470px) {
    .hundred-list .item .note p {
        font-size: 30px;
    }
}

@media (max-width: 1199px) {
    .hundred-list .item .note p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .hundred-list .item .note p {
        font-size: 16px;
    }
}

/*
CONTACT HD
*/
.inner_contact {
    margin: 40px 0 0 0;
}

.inner_contact .content {
    background: #f5f5f5;
    margin: 0 auto;
    padding: 50px 20px 50px 50px;
    height: 770px;
}
.inner_contact .content img {
    max-width: 100%;
    margin: 30px 0;
}

@media (min-width: 1880px) {
    .inner_contact .content img {
        max-width: 645px;
    }

    .inner_contact .content {
        height: 830px;
    }
}
.inner_contact .title {
    font-size: 3rem;
    color: #051d49;
}

.inner_contact .title i {
    font-size: 5rem;
    margin-right: 15px;
    color: #051d49;
}

.inner_contact li {
    font-size: 1.6rem;
    color: #888888;
    line-height: 4rem;
    height: 4rem;
    margin-top: 3.8rem;
    border-bottom: 1px solid #eee;
}

.inner_contact li label {
    font-weight: bold;
    color: #051d49;
}

.inner_contact li i {
    font-size: 2rem;
    margin-right: 15px;
    color: #051d49;
}

/*
*/
.inner-news .news .item,
.inner-news .news-top .item {
    position: relative;
    margin-top: 30px;
}

.inner-news .news .item .text,
.inner-news .news-top .item .text {
    position: absolute;
    z-index: 2;
    bottom: 0;
    width: 100%;
}

.inner-news .news .item .ibox img,
.inner-news .news-top .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
    height: auto;
}

.inner-news .news .item:hover .ibox img,
.inner-news .news-top .item:hover .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.inner-news .news .item:hover .text .note b,
.inner-news .news-top .item:hover .text .note b {
    text-decoration: underline;
}

.inner-news .news-top .item .ibox {
    padding-bottom: 45%;
}

.inner-news .news-top .item .text {
    padding: 20px 30px 20px 110px;
    background-color: rgba(255, 199, 0, .8);
}

@media (max-width: 767px) {
    .inner-news .news-top .item .text {
        position: relative;
        padding: 10px 10px 10px 80px;
    }
}

.inner-news .news-top .item .text .date {
    position: absolute;
    top: 20px;
    left: 30px;
    text-align: center;
    color: #051d49;
}

@media (max-width: 767px) {
    .inner-news .news-top .item .text .date {
        top: 10px;
        left: 10px;
    }
}

.inner-news .news-top .item .text .date b,
.inner-news .news-top .item .text .date span {
    line-height: 1;
    display: block;
}

.inner-news .news-top .item .text .date b {
    font-size: 46px;
}

@media (max-width: 767px) {
    .inner-news .news-top .item .text .date b {
        font-size: 30px;
    }
}

.inner-news .news-top .item .text .note b,
.inner-news .news-top .item .text .note p {
    line-height: 30px;
    height: 30px;
}

@media (max-width: 767px) {

    .inner-news .news-top .item .text .note b,
    .inner-news .news-top .item .text .note p {
        line-height: 24px;
        height: 24px;
    }
}

.inner-news .news-top .item .text .note b {
    font-size: 18px;
    display: -webkit-box;
    overflow: hidden;
    color: #051d49;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 767px) {
    .inner-news .news-top .item .text .note b {
        font-size: 16px;
    }
}

.inner-news .news-top .item .text .note p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(5, 29, 73, .7);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-news .news .item .date {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 16px;
    padding: 14px;
    text-align: center;
    color: #051d49;
    background-color: #ffc700;
}

.inner-news .news .item .date b,
.inner-news .news .item .date span {
    line-height: 1;
    display: block;
}

.inner-news .news .item .date b {
    font-size: 30px;
    font-weight: normal;
}

@media (max-width: 767px) {
    .inner-news .news .item .date b {
        font-size: 24px;
    }
}

.inner-news .news .item .text {
    padding: 20px 14px;
    background-color: rgba(255, 255, 255, .9);
}

@media (max-width: 767px) {
    .inner-news .news .item .text {
        padding: 8px 10px;
    }
}

.inner-news .news .item .text b,
.inner-news .news .item .text p {
    line-height: 26px;
    height: 26px;
}

.inner-news .news .item .text b {
    font-size: 16px;
    display: -webkit-box;
    overflow: hidden;
    color: #051d49;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-news .news .item .text p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: rgba(5, 29, 73, .7);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-news .news .item:hover .text b {
    text-decoration: underline;
}

.inner-news-show .news-show {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
}

@media (max-width: 991px) {
    .inner-news-show .news-show {
        margin-top: 20px;
    }
}

.inner-news-show .title-news-show {
    text-align: center;
}

.inner-news-show .title-news-show h1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    color: #051d49;
}

@media (max-width: 991px) {
    .inner-news-show .title-news-show h1 {
        font-size: 18px;
    }
}

.inner-news-show .text {
    margin-top: 30px;
    color: #333;
}

.inner-news-show .text p {
    font-size: 16px;
    line-height: 2;
    margin: 0;
    color: #333;
}

@media (max-width: 991px) {
    .inner-news-show .text p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .inner-news-show .text p {
        font-size: 14px;
    }
}

.inner-news-show .text img {
    max-width: 100%;
    height: auto !important;
}

/* .inner-results .results-top {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 150px;
}

@media (max-width: 767px) {
    .inner-results .results-top {
        padding-left: 80px;
    }
}

.inner-results .results-top .results-pic {
    position: absolute;
    top: 0;
    left: 0;
}

.inner-results .results-top .results-pic img {
    max-width: 130px;
}

@media (max-width: 767px) {
    .inner-results .results-top .results-pic img {
        max-width: 70px;
    }
}

.inner-results .results-top .title-inner,
.inner-results .results-top .location {
    text-align: left;
}

.inner-results .results-top .title-inner {
    padding-top: 20px;
}

@media (max-width: 767px) {
    .inner-results .results-top .title-inner {
        padding-top: 0;
    }
}

.inner-results .results-top .title-inner h2:after {
    margin-left: 0;
}

.inner-results .results-top .location {
    margin-top: 6px;
}

.inner-results .results {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 60px;
}

@media (max-width: 767px) {
    .inner-results .results {
        margin-top: -10px;
        padding: 0 10px 0 35px;
    }
}

.inner-results .results>ul {
    font-size: 0;
    padding-top: 40px;
    border-left: 5px solid #051d49;
}

@media (max-width: 767px) {
    .inner-results .results>ul {
        border-left-width: 2px;
    }
}

.inner-results .results>ul>li {
    font-size: 14px;
    position: relative;
    margin-top: 60px;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .inner-results .results>ul>li {
        margin-top: 30px;
    }
}

.inner-results .results>ul>li:nth-child(1) {
    margin-top: 0;
}

.inner-results .results>ul>li:before {
    position: absolute;
    top: 3px;
    left: -14px;
    display: block;
    width: 22px;
    height: 22px;
    content: '';
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #ffc700;
}

.inner-results .results .item p {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #051d49;
}

@media (max-width: 767px) {
    .inner-results .results .item p {
        font-size: 16px;
    }
}

.inner-results .results .item img {
    max-width: 100%;
    height: auto !important;
    margin-top: 10px;
}
 */
.inner-graduates .graduates-text {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
}

.inner-graduates .graduates-text img {
    max-width: 100%;
}
.inner-graduates .graduates-text p {
    font-size: 16px;
    line-height: 2.25em;
    margin: 0;
}

.inner-graduates .graduates-text p b {
    font-weight: bold;
    color: #ffc700;
}

.inner-graduates .graduates-text p label {
    font-weight: bold;
    color: #051d49;
    display: inline;
}

@media (max-width: 767px) {
    .inner-graduates .graduates-text p {
        font-size: 14px;
    }
}

.inner-graduates .graduates-number {
    padding: 20px 15px;
    background-color: #f5f5f5;
}

.inner-graduates .graduates-number ul {
    font-size: 0;
}

.inner-graduates .graduates-number ul li {
    font-size: 14px;
    display: inline-block;
    float: none;
    text-align: center;
    vertical-align: top;
}

.inner-graduates .graduates-number .item {
    display: inline-block;
    max-width: 220px;
    margin: 10px 0;
}

.inner-graduates .graduates-number .item b {
    font-family: 'Staatliches', Arial;
    font-size: 100px;
    font-weight: normal;
    line-height: 1;
    display: block;
    margin-bottom: 20px;
    color: #ffc700;
}

@media (max-width: 1470px) {
    .inner-graduates .graduates-number .item b {
        font-size: 80px;
    }
}

@media (max-width: 991px) {
    .inner-graduates .graduates-number .item b {
        font-size: 60px;
        margin-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .inner-graduates .graduates-number .item b {
        font-size: 50px;
    }
}

.inner-graduates .graduates-number .item p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0;
}
.inner-graduates .graduates-number .item p b {
    font-weight: bold;
    font-size: 20px;
    color: #ffc700;
}

@media (max-width: 767px) {
    .inner-graduates .graduates-number .item p {
        font-size: 14px;
    }
    .inner-graduates .graduates-number .item p b {
        font-size: 16px;
    }
}

.inner-graduates .network {
    padding: 50px 0;
    background: url(../image/network_inner_bg.jpg) no-repeat center;
    background-size: cover;
}

@media (max-width: 1199px) {
    .inner-graduates .network {
        padding: 30px 0;
    }
}

.inner-graduates .network .title-network {
    text-align: center;
    color: #fff;
}

.inner-graduates .network .title-network h2 {
    font-size: 30px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-graduates .network .title-network h2 {
        font-size: 24px;
    }
}

.inner-graduates .network .title-network h2 b {
    color: #ffc700;
}

.inner-graduates .network .title-network h3 {
    font-size: 20px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-graduates .network .title-network h3 {
        font-size: 18px;
    }
}

.inner-graduates .network .title-network h3 b {
    color: #ffc700;
}

.inner-graduates .network .title-network p {
    font-size: 16px;
    line-height: 30px;
    max-width: 970px;
    margin: 0 auto;
    margin-top: 14px;
}

@media (max-width: 767px) {
    .inner-graduates .network .title-network p {
        font-size: 14px;
        line-height: 24px;
    }
}

.inner-graduates .network2 {
    padding: 10px 0;
    text-align: center;
}

.inner-graduates .network2 .title-network2 h2 {
    font-size: 30px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-graduates .network2 .title-network2 h2 {
        font-size: 24px;
    }
}

.inner-graduates .network2 .title-network2 h2 b {
    color: #ffc700;
}

.inner-graduates .network2 .title-network2 h3 {
    font-size: 20px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-graduates .network2 .title-network2 h3 {
        font-size: 18px;
    }
}

.inner-graduates .network2 .title-network2 h3 b {
    color: #ffc700;
}

.inner-graduates .network .network-info {
    font-size: 0;
    margin-top: 60px;
}

@media (max-width: 991px) {
    .inner-graduates .network .network-info {
        margin-top: 30px;
    }
}

.inner-graduates .network .network-info .pic,
.inner-graduates .network .network-info .text {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.inner-graduates .network .network-info .pic {
    width: 66%;
}

@media (max-width: 991px) {
    .inner-graduates .network .network-info .pic {
        width: 100%;
    }
}

.inner-graduates .network .network-info .pic img {
    max-width: 100%;
}

.inner-graduates .network .network-info .text {
    width: 34%;
    text-align: center;
}

@media (max-width: 991px) {
    .inner-graduates .network .network-info .text {
        width: 100%;
    }
}

.inner-graduates .network .network-info .text ul {
    display: inline-block;
}

.inner-graduates .network .network-info .text ul li {
    font-size: 18px;
    font-weight: bold;
    line-height: 26px;
    position: relative;
    display: block;
    margin: 30px 0;
    padding: 10px 30px 10px 68px;
    text-align: center;
    color: #ffc700;
    border: 2px solid #ffc700;
    border-radius: 30px;
}

@media (max-width: 991px) {
    .inner-graduates .network .network-info .text ul li {
        font-size: 16px;
    }
}

.inner-graduates .network .network-info .text ul li p {
    margin: 0;
}

.inner-graduates .network .network-info .text ul li:before {
    position: absolute;
    top: 8px;
    left: 8px;
    display: block;
    width: 30px;
    height: 30px;
    content: '';
    border-radius: 50%;
    background-color: #ffc700;
}

.inner-graduates .network .network-info .text ul li:nth-child(2) {
    color: #14a6f1;
    border-color: #14a6f1;
}

.inner-graduates .network .network-info .text ul li:nth-child(2):before {
    background-color: #14a6f1;
}

.inner-graduates .network .network-info .text ul li:nth-child(3) {
    color: #1bb479;
    border-color: #1bb479;
}

.inner-graduates .network .network-info .text ul li:nth-child(3):before {
    background-color: #1bb479;
}

.inner-graduates .network .network-info .text ul li:nth-child(4) {
    color: #7386a8;
    border-color: #7386a8;
}

.inner-graduates .network .network-info .text ul li:nth-child(4):before {
    background-color: #7386a8;
}

.inner-graduates .colleges {
    padding: 50px 0;
    background: url(../image/colleges_bg.jpg) no-repeat center fixed;
    background-size: cover;
}

@media (max-width: 1199px) {
    .inner-graduates .colleges {
        padding: 30px 0;
        background: url(../image/colleges_bg.jpg) no-repeat center;
        background-size: cover;
    }
}

.inner-graduates .colleges .title-colleges {
    text-align: center;
    color: #fff;
}

.inner-graduates .colleges .title-colleges h2 {
    font-size: 24px;
    line-height: 1.4;
    display: block;
}

@media (max-width: 991px) {
    .inner-graduates .colleges .title-colleges h2 {
        font-size: 24px;
    }
}

.inner-graduates .colleges .title-colleges h2 b {
    color: #ffc700;
}

.inner-graduates .colleges .colleges-info {
    margin-top: 30px;
}

.inner-graduates .colleges .colleges-info ul {
    margin: 0;
}

.inner-graduates .colleges .colleges-info ul li {
    margin-top: -1px;
    margin-left: -1px;
    padding: 0;
    border: 1px solid #eee;
}

.inner-graduates .colleges .colleges-info .item {
    position: relative;
    overflow: hidden;
}

.inner-graduates .colleges .colleges-info .item p {
    line-height: 30px;
    position: absolute;
    bottom: 0;
    display: -webkit-box;
    overflow: hidden;
    width: 100%;
    height: 30px;
    margin: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    text-align: center;
    color: #333;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-graduates .colleges .colleges-info .item:hover p {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    color: #fff;
    background-color: #051d49;
}

@media (max-width: 1199px) {
    .inner-graduates .colleges .colleges-info .img-box img {
        max-width: 100%;
        height: auto;

    }
}

.inner-graduates .interview {
    padding: 50px 0;
}

@media (max-width: 1199px) {
    .inner-graduates .interview {
        padding: 30px 0;
    }
}

.inner-graduates .interview .container {
    padding: 0 3%;
}

.inner-graduates .interview .title-interview {
    text-align: center;
}

.inner-graduates .interview .title-interview h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    display: block;
    color: #051d49;
}

@media (max-width: 991px) {
    .inner-graduates .interview .title-interview h2 {
        font-size: 24px;
    }
}

.inner-graduates .interview .title-interview h2 b {
    color: #ffc700;
}

.inner-graduates .interview .interview-top {
    font-size: 0;
    margin-top: 30px;
}

.inner-graduates .interview .interview-top .pic,
.inner-graduates .interview .interview-top .text {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
}

.inner-graduates .interview .interview-top .pic {
    width: 16%;
}

@media (max-width: 1199px) {
    .inner-graduates .interview .interview-top .pic {
        width: 26%;
    }
}

@media (max-width: 767px) {
    .inner-graduates .interview .interview-top .pic {
        display: block;
        width: 50%;
        margin: 0 auto;
    }
}

.inner-graduates .interview .interview-top .text {
    width: 84%;
    padding-left: 20px;
}

@media (max-width: 1199px) {
    .inner-graduates .interview .interview-top .text {
        width: 74%;
    }
}

@media (max-width: 767px) {
    .inner-graduates .interview .interview-top .text {
        display: block;
        width: 100%;
        margin-top: 20px;
        padding: 0;
    }
}

.inner-graduates .interview .interview-top .text .title-text:after {
    display: block;
    width: 30px;
    height: 4px;
    content: '';
    background-color: #ffc700;
}

.inner-graduates .interview .interview-top .text .title-text h3 {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.4;
    display: block;
    margin: 0;
    color: #051d49;
}

@media (max-width: 1199px) {
    .inner-graduates .interview .interview-top .text .title-text h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .inner-graduates .interview .interview-top .text .title-text h3 {
        font-size: 20px;
    }
}

.inner-graduates .interview .interview-top .text p {
    font-size: 16px;
    line-height: 2.25;
    margin: 0;
    color: #666;
}

@media (max-width: 767px) {
    .inner-graduates .interview .interview-top .text p {
        font-size: 14px;
    }
}

.inner-graduates .interview-list>ul>li {
    margin-top: 30px;
}

.inner-graduates .interview-list>ul>li.current .item .title-interview-list:after {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.inner-graduates .interview-list .item .title-interview-list {
    position: relative;
    padding: 10px 90px 10px 100px;
    cursor: pointer;
    border-radius: 50px;
    background-color: #f6f6f6;
}

@media (max-width: 991px) {
    .inner-graduates .interview-list .item .title-interview-list {
        padding: 6px 60px 6px 60px;
    }
}

.inner-graduates .interview-list .item .title-interview-list:before {
    font-family: 'iconfont' !important;
    font-size: 46px;
    line-height: 70px;
    position: absolute;
    top: 10px;
    left: 10px;
    display: block;
    width: 70px;
    height: 70px;
    content: '\e6b2';
    text-align: center;
    border-radius: 50%;
    background-color: #ffc700;
}

@media (max-width: 991px) {
    .inner-graduates .interview-list .item .title-interview-list:before {
        font-size: 30px;
        line-height: 40px;
        width: 40px;
        height: 40px;
    }
}

.inner-graduates .interview-list .item .title-interview-list:after {
    font-family: 'iconfont' !important;
    font-size: 30px;
    line-height: 90px;
    position: absolute;
    top: 0;
    right: 40px;
    content: '\eb60';
    -webkit-transition: all .4s;
    transition: all .4s;
}

@media (max-width: 991px) {
    .inner-graduates .interview-list .item .title-interview-list:after {
        font-size: 22px;
        line-height: 62px;
        right: 20px;
    }
}

.inner-graduates .interview-list .item .title-interview-list h3 {
    font-size: 36px;
    font-weight: bold;
    line-height: 70px;
    display: -webkit-box;
    overflow: hidden;
    height: 70px;
    margin: 0;
    color: #051d49;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 1199px) {
    .inner-graduates .interview-list .item .title-interview-list h3 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .inner-graduates .interview-list .item .title-interview-list h3 {
        font-size: 24px;
        line-height: 52px;
        height: 52px;
    }
}

@media (max-width: 767px) {
    .inner-graduates .interview-list .item .title-interview-list h3 {
        font-size: 18px;
    }
}

.inner-graduates .interview-list .item .text {
    overflow: hidden;
    max-height: 60px;
    padding: 30px 0 0 0;
    -webkit-transition: max-height .6s;
    transition: max-height .6s;
}

@media (max-width: 767px) {
    .inner-graduates .interview-list .item .text {
        max-height: 44px;
        padding-top: 14px;
    }
}

.inner-graduates .interview-list .item .text p {
    line-height: 2.14285714;
    margin: 0;
    color: #666;
}

.inner-graduates .interview-list .item .text.topen {
    max-height: 1200px;
}

nav {
    text-align: center;
}

.pagination {
    margin: 50px 0 0 0;
    padding: 0;
}

@media (max-width: 991px) {
    .pagination {
        margin-top: 50px;
    }
}

.pagination li.prev a,
.pagination li.next a {
    border-radius: 50%;
}

.pagination li.prev a span:before,
.pagination li.next a span:before {
    font-family: 'iconfont' !important;
    content: '\eb60';
}

.pagination li.next a span:before {
    content: '\e625';
}

.pagination li a {
    line-height: 36px;
    display: block;
    width: 36px;
    height: 36px;
    margin: 0 6px;
    padding: 0;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;
    color: #666;
    border: none;
    border-radius: 50%;
}

@media (max-width: 991px) {
    .pagination li a {
        line-height: 30px;
        width: 30px;
        height: 30px;
    }
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    color: #fff;
    background-color: #ffc700;
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #fff;
    background-color: #ffc700;
}

.slick-arrow {
    line-height: 58px;
    position: absolute;
    z-index: 9;
    z-index: 8;
    top: 50%;
    left: 3%;
    overflow: hidden;
    width: 58px;
    height: 58px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #fff;
    border: none;
    border: 0px solid #051d49;
    border-radius: 50%;
    outline: none;
    background-color: rgba(0, 0, 0, .5);
}

@media (max-width: 1199px) {
    .slick-arrow {
        line-height: 40px;
        left: -10px;
        width: 40px;
        height: 40px;
    }
}

.slick-arrow:before {
    font-family: 'iconfont' !important;
    font-size: 24px;
    display: inline-block;
    content: '\e619';
}

.slick-arrow.slick-next {
    right: 3%;
    left: auto;
}

@media (max-width: 1199px) {
    .slick-arrow.slick-next {
        right: -10px;
    }
}

.slick-arrow.slick-next:before {
    content: '\eb61';
}

.slick-arrow:hover {
    color: #fff;
    border-color: rgba(255, 199, 0, .8);
    background-color: rgba(255, 199, 0, .8);
}

/*PAGES*/
.page_info {
    text-align: center;
    width: 100%;
    margin: 10px auto;
    padding: 50px 0;
    color: #999;
    clear: both;
    font-size: 1.4rem !important;
}

.page_info span {
    padding: 0 2px;
    font-weight: bold;
}

.page_list {
    height: 24px;
    line-height: 24px;
    text-align: center;
    clear: both;
    letter-spacing: 0;
    font-size: 10px;
    margin: 50px auto;
    padding: 50px 0;
    clear: both;
    width: 100%;
}

.page_list a {
    display: inline-block;
    color: #898989;
    border: 1px solid #e8e8e8;
    background: #f8f8f8;
    text-align: center;
    padding: 0 8px;
    margin: 0 1px;
}

.page_list a:hover {
    color: #fff;
    border: 1px solid #898989;
    background: #898989;
}

.page_list a.on {
    color: #333;
    border: 1px solid #ccc;
    background: #E5EDF2;
}

.fancybox-slide--iframe .fancybox-content {
    width: 733px !important;
    max-width: 80%;
    height: 500px !important;
    max-height: 50% !important;
    margin: 0;
}

.home-news .slick-news .item .pic .ibox img {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.home-news .slick-news .item:hover .pic .ibox img {
    transform: translateX(-50%) scale(1.1);
}

.inner-news .news .item .ibox img {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.inner-news .news .item:hover .ibox img {
    transform: translateX(-50%) scale(1.1);
}

.home-features .features-sort>ul>li .item .text .pic {
    display: none;
}

.home-features .features-sort>ul>li .item .text .pic img {
    max-width: 100%;
    height: auto !important;
}

@media(max-width: 991px) {
    .home-features .features-pic {
        display: none
    }

    .home-features .features-sort {
        position: relative;
    }

    .home-features .features-sort>ul>li {
        width: 100%;
        color: #333;
        padding: 0;
    }

    .home-features .features-sort>ul>li.active {
        width: 100%;
    }

    .home-features .features-sort .item .text {
        opacity: 1;
    }

    .home-features .features-sort .item .title-item {}

    .home-features .features-sort .item .text .tt {
        display: none
    }

    .home-features .features-sort>ul>li.active .title-item {
        display: block
    }

    .home-features .features-sort .item .title-item {
        background-color: #051d49;
        padding: 0 15px;
        position: relative;
        margin-top: 1px;
    }

    .home-features .features-sort .item .title-item:after {
        font-family: 'iconfont' !important;
        content: '\e625';
        position: absolute;
        right: 10px;
        top: 0;
        line-height: 40px;
        font-size: 20px;
        color: #fff;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
    }

    .home-features .features-sort .item .title-item {
        text-align: left;
        color: #ffc700;
        height: 40px;
    }

    .home-features .features-sort .item .title-item h3 {
        line-height: 40px;
    }

    .home-features .features-sort .item .text {
        padding: 0 15px;
        max-height: 0px;
        -webkit-transition: max-height .6s ease;
        -moz-transition: max-height .6s ease;
        -ms-transition: max-height .6s ease;
        -o-transition: max-height .6s ease;
        transition: max-height .6s ease;
        margin: 0;
        background-color: #fff;
        overflow: hidden;

    }

    .home-features .features-sort .item .text .note {}

    .home-features .features-sort .item .text .note p {
        line-height: 24px;
    }

    .home-features .features-sort>ul>li.active .item .title-item:after {
        transform: rotate(90deg);
    }

    .home-features .features-sort>ul>li.active .item .text {
        max-height: 1200px;
        padding-bottom: 20px;
    }

    .home-features .features-sort>ul>li .item .text .pic {
        display: block;
        margin-top: 10px;
    }

    .home-features .features-sort .item .title-item:before {
        display: inline-block;
        width: auto;
        vertical-align: middle;
        line-height: 40px;
        margin-right: 10px;
        float: left
    }

    .home-features .features-sort .item .text .title-features {
        color: #051d49;
    }

    .home-features .features-sort .item .text .title-features:before {
        display: none
    }

    .home-features .features-sort .item .title-item:before {
        margin-bottom: 0;
    }

    .home-features .features-sort>ul>li.active .title-item {
        background-color: #ffc700
    }

    .home-features .features-sort>ul>li.active .item .title-item {
        color: #051d49;
    }

    .home-features .features-sort>ul>li.active .item .title-item:after {
        color: #051d49;
    }
}

.inner-graduates .interview-list .item .title-interview-list h3 {
    position: relative;
}
.inner-graduates .interview-list .item .title-interview-list h3:after {
    position: absolute;
    right: 0px;
    font-size: 16px;
    top: 0;
    content: '点击展开';
    font-weight: normal;
    color: #666;
}
@media(max-width:767px) {
    .inner-graduates .interview-list .item .title-interview-list h3:after {
        font-size: 14px;
    }
}
.inner-graduates .interview-list>ul>li.current .item .title-interview-list h3:after {
    content: '点击收起';
}

.inner-results {
    padding-bottom: 0;
}
.inner-results .results {
    margin-top: 30px;
    padding: 50px 0;

    background: url(../image/results_bg.jpg) no-repeat center fixed;
    background-size: cover;
}
@media (max-width: 1199px) {
    .inner-results .results {
        background: url(../image/results_bg.jpg) no-repeat center;
        background-size: cover;
    }
}
.inner-results .results .slick-results {
    max-width: 1000px;
    margin: 0 auto;
}
.inner-results .results .item .title-results {
    padding: 10px 20px;

    background-color: #ffc700;
}
.inner-results .results .item .title-results h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;

    margin: 0;

    color: #051d49;
}
@media (max-width: 991px) {
    .inner-results .results .item .title-results h3 {
        font-size: 16px;
    }
}
.inner-results .results .item .pic img {
    width: 100%;
}
.inner-results .results .slick-arrow {
    line-height: 100px;

    left: -100px;

    width: auto;
    height: auto;

    color: #ffc700;
    border: none;
}
@media (max-width: 991px) {
    .inner-results .results .slick-arrow {
        line-height: 50px;

        left: -30px;
    }
}
.inner-results .results .slick-arrow:before {
    font-size: 100px;

    display: block;

    content: '\eb60';
}
@media (max-width: 991px) {
    .inner-results .results .slick-arrow:before {
        font-size: 50px;
    }
}
.inner-results .results .slick-arrow.slick-next {
    right: -100px;
    left: auto;
}
@media (max-width: 991px) {
    .inner-results .results .slick-arrow.slick-next {
        right: -30px;
    }
}
.inner-results .results .slick-arrow.slick-next:before {
    content: '\e625';
}
.inner-results .results .slick-arrow:hover {
    color: #fff;
    background: none;
}
.home-features-other {
    padding: 100px 0 0 0;

    background: url(../image/tese_bg.jpg) no-repeat center;
    background-size: cover;
}
@media (max-width: 991px) {
    .home-features-other {
        padding-top: 50px;
        background: url(../image/mtese_bg.jpg) no-repeat center;
        background-size: cover;
    }
}
.home-features-other .title {
    text-align: center;

    color: #fff;
}
.home-features-other .features-other {
    font-size: 0;

    position: relative;

    max-width: 1190px;
    margin: 0 auto;
    margin-top: 60px;
}
@media (max-width: 767px) {
    .home-features-other .features-other {
        margin-top: 30px;
    }
}
.home-features-other .features-other .finfo {
    font-size: 14px;

    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;

    width: 100%;

    opacity: 0;
}
.home-features-other .features-other .itemsort {
    position: relative;
    z-index: 3;

    width: 230px;
    height: 230px;
    margin: 0 auto;
    padding: 10px;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #051d49;
    border-radius: 50%;
    background-color: rgba(255, 199, 0, .65);
}
@media (max-width: 991px) {
    .home-features-other .features-other .itemsort {
        width: 160px;
        height: 160px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itemsort {
        width: 80px;
        height: 80px;
        padding: 6px;
    }
}
.home-features-other .features-other .itemsort .titem {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;

    border-radius: 50%;
    background-color: #ffc700;
}
.home-features-other .features-other .itemsort .titem b {
    font-size: 36px;

    position: absolute;
    top: 50%;
    left: 0;

    width: 100%;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width: 991px) {
    .home-features-other .features-other .itemsort .titem b {
        font-size: 26px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itemsort .titem b {
        font-size: 14px;
    }
}
.home-features-other .features-other .itemsort .titem b:before {
    font-family: 'iconfont' !important;
    font-size: 70px;
    font-weight: normal;
    line-height: 1;

    display: block;

    content: '\e62a';
}
@media (max-width: 991px) {
    .home-features-other .features-other .itemsort .titem b:before {
        font-size: 50px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itemsort .titem b:before {
        font-size: 30px;
    }
}
.home-features-other .features-other .itembox {
    font-size: 14px;

    display: inline-block;

    width: 25%;

    vertical-align: bottom;
}
.home-features-other .features-other .itembox:after {
    display: block;

    width: 1px;
    height: 410px;
    margin: 0 auto;

    content: '';

    background-color: #ffc700;
}
.home-features-other .features-other .itembox .return-f {
    margin-top: 20px;

    text-align: right;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .return-f {
        margin-top: 4px;
    }
}
.home-features-other .features-other .itembox .return-f a {
    font-size: 18px;
    line-height: 40px;

    display: inline-block;

    padding: 0 30px;

    color: #051d49;
    background-color: #ffc700;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .return-f a {
        font-size: 16px;
        line-height: 44px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .return-f a {
        font-size: 14px;
        line-height: 30px;

        padding: 0 20px;
    }
}
.home-features-other .features-other .itembox .finfo {
    font-size: 0;
}
.home-features-other .features-other .itembox .finfo .finfo-left,
.home-features-other .features-other .itembox .finfo .finfo-right {
    display: inline-block;

    vertical-align: top;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-left,
    .home-features-other .features-other .itembox .finfo .finfo-right {
        display: block;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-left {
    width: 30%;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-left {
        width: 100%;
        display: none;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-left:after {
    display: block;

    width: 1px;
    height: 500px;
    margin: 0 auto;

    content: '';

    background-color: #ffc700;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-left:after {
        display: none;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right {
    width: 70%;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right {
        width: 100%;
        margin-top: 14px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .pic img {
    width: 100%;
}
.home-features-other .features-other .itembox .finfo .finfo-right .text {
    margin-top: 10px;

    color: #fff;
}
.home-features-other .features-other .itembox .finfo .finfo-right .text p {
    font-size: 18px;
    line-height: 1.66666667;

    margin: 0;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .text p {
        font-size: 16px;
        line-height: 24px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .text p {
        font-size: 12px;
        line-height: 18px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .text p b {
    color: #ffc700;
}
.home-features-other .features-other .itembox .finfo .finfo-right .list>ul {
    font-size: 0;

    text-align: center;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list>ul {
        margin: 0 -6px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list>ul>li {
    font-size: 14px;

    display: inline-block;

    width: 33.33333333%;
    margin-bottom: 30px;

    vertical-align: top;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list>ul>li {
        margin-bottom: 10px;
        padding: 0 2px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox {
    max-width: 200px;
    margin: 0 auto;
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    padding-top: 10px;

    color: #ffc700;
    border-radius: 50%;
    background-color: #051d49;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon {
        width: 130px;
        height: 130px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon {
        width: 80px;
        height: 80px;
        padding-top: 4px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon img {
    display: block;

    max-width: 90px;
    margin: 0 auto;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon img {
        max-width: 70px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon img {
        max-width: 50px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon b {
    font-size: 24px;
    line-height: 1;

    display: block;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon b {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .ficon b {
        font-size: 14px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .note {
    margin-top: 10px;

    color: #fff;
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .note p {
    font-size: 16px;
    line-height: 1.5;

    margin: 0;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .note p {
        font-size: 15px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox .finfo .finfo-right .list .fbox .note p {
        font-size: 12px;
        line-height: 16px;
    }
}
.home-features-other .features-other .itembox .finfo .finfo-right .list .fbox:hover .ficon {
    -webkit-animation: swing 1s 0s ease both;
    animation: swing 1s 0s ease both;
}
.home-features-other .features-other .itembox-baimen:after {
    height: 350px;
}
.home-features-other .features-other .itembox-baimen .itemsort .titem b:before {
    content: '\e623';
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for {
    font-size: 0;
}
@media (max-width: 1199px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for {
        padding: 0;
    }
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-slide {
    padding: 100px 0;
}
@media (max-width: 1199px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-slide {
        padding: 50px 0;
    }
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-slide {
        padding: 50px 0;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-slide {
        padding: 50px 0;
    }
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current {
    position: relative;
    z-index: 2;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item {
    -webkit-transform: scale(1.7);
    -ms-transform: scale(1.7);
    transform: scale(1.7);

    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item .ibox {
    opacity: 1;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item .play {
    opacity: 1;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item:hover .ibox {
    opacity: .9;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item:hover .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .slick-current .item:hover .play {
    color: #ffc700;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item {
    -webkit-transition: all .6s;
    transition: all .6s;

    background-color: #000;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .ibox {
    -webkit-transition: all .2s;
    transition: all .2s;

    opacity: .5;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .play {
    font-size: 60px;

    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;

    display: block;

    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);

    opacity: 0;
    color: #fff;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .play {
        font-size: 40px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .play {
        font-size: 30px;
    }
}
.home-features-other .features-other .itembox-baimen .slick-xuanxiu-for .item .play:after {
    font-family: 'iconfont' !important;

    content: '\e64c';
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav {
    position: relative;

    margin-top: 20px;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-baimen .xuanxiu-nav {
        margin-top: 20px;
    }
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav:after {
    position: absolute;
    bottom: 0;

    display: block;

    width: 100%;

    content: '';

    border-bottom: 2px solid rgba(255, 255, 255, .3);
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav {
    font-size: 0;

    max-width: 100%;
    margin: 0 auto;

    text-align: center;

    color: #fff;
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item {
    font-size: 14px;

    position: relative;

    padding-bottom: 20px;

    cursor: pointer;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item {
        padding-bottom: 10px;
    }
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item:after {
    position: absolute;
    z-index: 2;
    bottom: 0;

    display: block;

    width: 100%;
    height: 2px;

    content: '';

    opacity: 0;
    background-color: #ffc700;
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item:before {
    position: absolute;
    z-index: 2;
    bottom: 2px;
    left: 50%;

    display: block;

    width: 0;
    height: 0;
    margin-left: -2px;

    content: '';

    opacity: 0;
    border-width: 0 4px 4px 4px;
    border-style: solid;
    border-color: transparent transparent #ffc700 transparent;
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item p {
    font-size: 18px;
    line-height: 2;

    margin: 0;
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .item p {
        font-size: 16px;
    }
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .slick-current .item:after,
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .slick-current .item:before {
    opacity: 1;
}
.home-features-other .features-other .itembox-baimen .xuanxiu-nav .slick-xuanxiu-nav .slick-current .item p {
    font-weight: bold;

    color: #ffc700;
}
.home-features-other .features-other .itembox-tiyu:after {
    height: 490px;
}
.home-features-other .features-other .itembox-tiyu .itemsort .titem b:before {
    content: '\e667';
}
.home-features-other .features-other .itembox-xiaofeng:after {
    height: 430px;
}
.home-features-other .features-other .itembox-xiaofeng .itemsort .titem b:before {
    content: '\e601';
}
.home-features-other .features-other .itembox-xiaofeng .finfo .finfo-right .list>ul>li {
    width: 50%;
}
.home-features-other .features-other .itembox-xiaofeng .finfo .finfo-right .list>ul .fbox {
    max-width: 280px;
}
.home-features-other .features-other .itembox-xiaofeng .finfo .finfo-right .list>ul .fbox .ficon {
    width: 170px;
    height: 170px;
    padding-top: 20px;
}
@media (max-width: 991px) {
    .home-features-other .features-other .itembox-xiaofeng .finfo .finfo-right .list>ul .fbox .ficon {
        width: 150px;
        height: 150px;
    }
}
@media (max-width: 767px) {
    .home-features-other .features-other .itembox-xiaofeng .finfo .finfo-right .list>ul .fbox .ficon {
        width: 90px;
        height: 90px;
        padding-top: 10px;
    }
}
.home-features-other .features-other .itemclick {
    cursor: pointer;
}
.home-features-other .features-other .itemclick:hover {
    background-color: rgba(5, 29, 73, .65);
}
.home-features-other .features-other .itemclick:hover .titem {
    color: #ffc700;
    background-color: #051d49;
}
.home-features-other .features-other.factive .itembox:after {
    opacity: 0;
}
.home-features-other .features-other.factive .itemclick {
    opacity: 0;
}
.home-features-other .features-other.factive .iactive .finfo {
    z-index: 4;

    opacity: 1;
}

.slick-collectivization .slick-arrow {
    line-height: 100px;

    left: 14%;

    width: auto;
    height: auto;

    color: #ffc700;
    border: none;
}
@media(max-width:1199px) {
    .slick-collectivization .slick-arrow {
        left: 10%;
    }
}
@media (max-width: 991px) {
    .slick-collectivization .slick-arrow {
        line-height: 50px;

        left: 0px;
    }
}
.slick-collectivization .slick-arrow:before {
    font-size: 100px;

    display: block;

    content: '\eb60';
}
@media (max-width: 991px) {
    .slick-collectivization .slick-arrow:before {
        font-size: 50px;
    }
}
.slick-collectivization .slick-arrow.slick-next {
    right: 14%;
    left: auto;
}
@media(max-width:1199px) {
    .slick-collectivization .slick-arrow.slick-next {

        right: 10%;
    }
}
@media (max-width: 991px) {
    .slick-collectivization .slick-arrow.slick-next {
        right: 0px;
    }
}
.slick-collectivization .slick-arrow.slick-next:before {
    content: '\e625';
}
.slick-collectivization .slick-arrow:hover {
    color: #fff;
    background: none;
}

.home-features-other .features-other .itembox-jingying .finfo .finfo-right {
    padding-left: 6%;
}
@media(max-width:991px) {
    .home-features-other .features-other .itembox-jingying .finfo .finfo-right {
        padding-left: 0%;
    }
}
.home-environment {
    background: url(../image/video_bg.jpg) no-repeat center;
    background-size: cover;
}
.home-environment .slick-environment-for {
    max-width: 1200px;
    margin: 0 auto;
}
.inner-hundred .hundred {
    background: url(../image/video_bg.jpg) no-repeat center;
    background-size: cover;
}
.inner-hundred .hundred-list {
    max-width: 1200px;
    margin: 0 auto;
}

@media(max-width:767px) {
    .home-features-other .features-other .itembox:after {
        height: 330px;
    }
    .home-features-other .features-other .itembox-baimen:after {
        height: 280px;
    }
    .home-features-other .features-other .itembox-tiyu:after {
        height: 400px;
    }
    .home-features-other .features-other .itembox-xiaofeng:after {
        height: 320px;
    }
}

.slick-environment-for .slick-arrow {
    line-height: 100px;

    left: -100px;

    width: auto;
    height: auto;

    color: #ffc700;
    border: none;
}
@media (max-width: 991px) {
    .slick-environment-for .slick-arrow {
        line-height: 50px;

        left: -30px;
    }
}
.slick-environment-for .slick-arrow:before {
    font-size: 100px;

    display: block;

    content: '\eb60';
}
@media (max-width: 991px) {
    .slick-environment-for .slick-arrow:before {
        font-size: 50px;
    }
}
.slick-environment-for .slick-arrow.slick-next {
    right: -100px;
    left: auto;
}
@media (max-width: 991px) {
    .slick-environment-for .slick-arrow.slick-next {
        right: -30px;
    }
}
.slick-environment-for .slick-arrow.slick-next:before {
    content: '\e625';
}
.slick-environment-for .slick-arrow:hover {
    color: #fff;
    background: none;
}

.slick-environment-inner-for .slick-arrow {
    line-height: 100px;

    left: -100px;

    width: auto;
    height: auto;

    color: #ffc700;
    border: none;
}
@media (max-width: 991px) {
    .slick-environment-inner-for .slick-arrow {
        line-height: 50px;

        left: -30px;
    }
}
.slick-environment-inner-for .slick-arrow:before {
    font-size: 100px;

    display: block;

    content: '\eb60';
}
@media (max-width: 991px) {
    .slick-environment-inner-for .slick-arrow:before {
        font-size: 50px;
    }
}
.slick-environment-inner-for .slick-arrow.slick-next {
    right: -100px;
    left: auto;
}
@media (max-width: 991px) {
    .slick-environment-inner-for .slick-arrow.slick-next {
        right: -30px;
    }
}
.slick-environment-inner-for .slick-arrow.slick-next:before {
    content: '\e625';
}
.slick-environment-inner-for .slick-arrow:hover {
    color: #fff;
    background: none;
}
.inner-signup {
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .inner-signup {
        padding-bottom: 50px;
    }
}
@media (max-width: 767px) {
    .inner-signup .lg-signup {
        display: none;
    }
}
.inner-signup .slick-signup {
    margin-top: 60px;
}
.inner-signup .slick-signup .item {
    width: 100%;
}
.inner-signup .slick-signup .item img {
    width: 100%;
}
.inner-signup .xs-signup {
    display: none;

    margin-top: 30px;
}
@media (max-width: 767px) {
    .inner-signup .xs-signup {
        display: block;
    }
}
.inner-signup .xs-signup img {
    width: 100%;
}
.inner-signup .signup-message {
    margin-top: 20px;
}
.inner-signup .signup-message .item {
    position: relative;

    margin-top: 30px;
    padding: 0 10px 0 50px;

    border: 1px solid #eee;
    background-color: #f8f8f8;
}
@media (max-width: 767px) {
    .inner-signup .signup-message .item {
        margin-top: 14px;
    }
}
.inner-signup .signup-message .item:before {
    font-family: 'iconfont' !important;
    font-size: 24px;
    line-height: 60px;

    position: absolute;
    top: 0;
    left: 0;

    width: 50px;

    content: '\e62f';
    text-align: center;

    color: #adadad;
}
@media (max-width: 767px) {
    .inner-signup .signup-message .item:before {
        line-height: 50px;
    }
}
.inner-signup .signup-message .item-tel:before {
    content: '\e641';
}
.inner-signup .signup-message .item-grade:before {
    content: '\e67d';
}
.inner-signup .signup-message .item input {
    font-size: 16px;
    line-height: 30px;

    width: 100%;
    padding: 15px 0;

    outline: none;
    background: none;
}
@media (max-width: 767px) {
    .inner-signup .signup-message .item input {
        font-size: 14px;

        padding: 10px 0;
    }
}
.inner-signup .signup-message .item input::-webkit-input-placeholder,
.inner-signup .signup-message .item textarea::-webkit-input-placeholder {
    color: #aaa;
}
.inner-signup .signup-message .item input:-o-placeholder,
.inner-signup .signup-message .item textarea:-o-placeholder {
    color: #aaa;
}
.inner-signup .signup-message .item input::-moz-placeholder,
.inner-signup .signup-message .item textarea::-moz-placeholder {
    color: #aaa;
}
.inner-signup .signup-message .item input:-ms-input-placeholder,
.inner-signup .signup-message .item textarea:-ms-input-placeholder {
    color: #aaa;
}
.inner-signup .signup-message .item input:focus::-webkit-input-placeholder,
.inner-signup .signup-message .item textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}
.inner-signup .signup-message .item input:focus::-o-placeholder,
.inner-signup .signup-message .item textarea:focus::-o-placeholder {
    color: #c5c5c5;
}
.inner-signup .signup-message .item input:focus::-moz-placeholder,
.inner-signup .signup-message .item textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}
.inner-signup .signup-message .item input:focus::-ms-input-placeholder,
.inner-signup .signup-message .item textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}
.inner-signup .signup-message .submit {
    font-size: 16px;
    line-height: 60px;

    width: 100%;
    margin-top: 30px;
    padding: 0;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    border-radius: 0;
    outline: none;
    background-color: #051d49;
}
@media (max-width: 767px) {
    .inner-signup .signup-message .submit {
        font-size: 14px;
        line-height: 50px;

        margin-top: 24px;
    }
}
.inner-signup .signup-message .submit:hover {
    color: #051d49;
    background-color: #ffc700;
}
.inner-signupenter .signupenter {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .inner-signupenter .signupenter {
        margin-top: 20px;
    }
}
.inner-signupenter .signupenter ul li:nth-child(2) .item .note {
    background-color: #44a6a7;
}
.inner-signupenter .signupenter ul li:nth-child(3) .item .note {
    background-color: #051d49;
}
.inner-signupenter .signupenter .item {
    display: block;

    margin-top: 30px;
}
@media (max-width: 767px) {
    .inner-signupenter .signupenter .item {
        margin-top: 14px;
    }
}
.inner-signupenter .signupenter .item .pic .ibox {
    padding-bottom: 105.26315789%;
}
.inner-signupenter .signupenter .item .pic .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
}
.inner-signupenter .signupenter .item .note {
    position: relative;

    padding: 30px 90px 30px 20px;

    color: #fff;
    background-color: #ffc700;
}
@media (max-width: 1199px) {
    .inner-signupenter .signupenter .item .note {
        padding: 20px 70px 20px 10px;
    }
}
@media (max-width: 767px) {
    .inner-signupenter .signupenter .item .note {
        padding: 10px 50px 10px 10px;
    }
}
.inner-signupenter .signupenter .item .note:after {
    font-family: 'iconfont' !important;
    font-size: 24px;
    line-height: 56px;

    position: absolute;
    top: 30px;
    right: 30px;

    width: 56px;
    height: 56px;

    content: '\eb61';
    text-align: center;

    border: 1px solid #fff;
    border-radius: 50%;
}
@media (max-width: 1199px) {
    .inner-signupenter .signupenter .item .note:after {
        line-height: 40px;

        top: 20px;
        right: 10px;

        width: 40px;
        height: 40px;
    }
}
@media (max-width: 767px) {
    .inner-signupenter .signupenter .item .note:after {
        font-size: 18px;
        line-height: 30px;

        top: 10px;
        display: none;
        width: 30px;
        height: 30px;
    }
}
.inner-signupenter .signupenter .item .note p {
    font-size: 24px;
    font-weight: bold;
    line-height: 56px;

    margin: 0;
}
@media (max-width: 1199px) {
    .inner-signupenter .signupenter .item .note p {
        font-size: 20px;
        line-height: 40px;
    }
}
@media (max-width: 991px) {
    .inner-signupenter .signupenter .item .note p {
        font-size: 16px;
    }
}
@media (max-width: 767px) {
    .inner-signupenter .signupenter .item .note p {
        line-height: 30px;

    }
    .inner-signupenter .signupenter .item .note {
        padding: 10px 10px 10px 10px;
    }
}
.inner-signupenter .signupenter .item:hover .pic .ibox img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.lg-signup .item {
    position: relative;
}
.lg-signup .item .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    cursor: pointer;
    z-index: 2;
    color: #ffffff;
    font-size: 80px;
    text-shadow: 0 0 20px #051d49;

}
.lg-signup .item .play:before {
    font-family: 'iconfont' !important;
    content: "\e644";
}

.xss-signup .item {
    position: relative;
}
.xss-signup .item .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    cursor: pointer;
    z-index: 2;
    color: #ffffff;
    font-size: 80px;
    text-shadow: 0 0 20px #051d49;

}
.xss-signup .item .play:before {
    font-family: 'iconfont' !important;
    content: "\e644";
}

.inner-about-video .container {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
}
.inner-about-video .about-video .item {
    margin-top: 30px;
}

.inner-about-video .about-video .item .ibox {
    padding-bottom: 70%;
}
.inner-about-video .about-video .item .ibox iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.inner-about-video .about-video .item .desc {
    background-color: #051d49;
    text-align: center;
    color: #fff;
    transition: all .2s;
}
.inner-about-video .about-video .item .desc p {
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    word-break: break-all;
}
.inner-about-video .about-video .item:hover .desc {
    background-color: #ffc700;
    color: #051d49;
}
@media(max-width:1470px) {
    .inner-about-video .about-video ul li {
        width: 50%;
    }
}
@media(max-width:767px) {
    .inner-about-video .about-video ul li {
        width: 100%;
    }
}

@media(min-width:1200px) {
    .inner-team .team-middle-other ul li {
        width: 25%;
    }
    .inner-team .team-high-other ul li {
        width: 33.333333%;
    }
}

.inner-team .team-other .item .text::-webkit-scrollbar {
    width: 4px;
    position: absolute;
    left: 0;
}

.inner-team .team-other .item .text::-webkit-scrollbar-track {
    background-color: #dcdcdc;
}

.inner-team .team-other .item .text::-webkit-scrollbar-thumb {
    background-color: #9f9f9f;
}

/* 头部加电话 */
.header .tel {
    position: absolute;
    right: 30px;
    top: 8%;
    line-height: 30px;
    font-size: 24px;
    color: #ffffff;
    font-weight: bold;
}
.header .tel img {
    width: 26px;
    filter: brightness(0) invert(1);
    margin-right: 10px;
}
.header .tel a {
    display: flex;
    align-items: center;
}
@media (min-width: 1200px) {
    .header .nav .nav-list1>li>a,
    .header .language {
        transform: translateY(10px);
    }
}
@media (max-width: 1199px) {
    .header .tel {
        display: none;
    }
}