/**
 * style.less
 * 层叠样式表
 */
:root {
    --primary-blue: #01499E;
    --primary-yellow: #F39B47;
}

.ff {
    font-family: 'iconfont' !important;
}

@font-face {
    font-family: 'OpenSans';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/OpenSans-Regular.eot');
    src: local('Open Sans Regular'), local('OpenSans-Regular'), url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular.woff2') format('woff2'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype'), url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'OpenSans-Bold';
    font-weight: bold;
    font-style: normal;

    src: url('../fonts/OpenSans-Bold.eot');
    src: local('Open Sans Bold'), local('OpenSans-Bold'), url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Bold.woff2') format('woff2'), url('../fonts/OpenSans-Bold.woff') format('woff'), url('../fonts/OpenSans-Bold.ttf') format('truetype'), url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-display: swap;
}

@font-face {
    font-family: 'Staatliches';
    font-weight: normal;
    font-style: normal;

    src: url('../fonts/Staatliches-Regular.eot');
    src: local('Staatliches Regular'), local('Staatliches-Regular'), url('../fonts/Staatliches-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Staatliches-Regular.woff2') format('woff2'), url('../fonts/Staatliches-Regular.woff') format('woff'), url('../fonts/Staatliches-Regular.ttf') format('truetype'), url('../fonts/Staatliches-Regular.svg#Staatliches-Regular') format('svg');
    font-display: swap;
}

.textcolor {
    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.bgcolor {
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

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: #000;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.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: 1px solid #fff;
    border-radius: 50%;
    outline: none;
    background: none;
}

@media (max-width: 1199px) {
    .slick-arrow {
        line-height: 40px;

        left: -10px;

        width: 40px;
        height: 40px;
    }
}

.slick-arrow:before {
    font-family: "Glyphicons Halflings";
    content: '\e257';
    font-size: 24px;
    display: inline-block;

}

.slick-arrow.slick-next {
    right: 3%;
    left: auto;
}

@media (max-width: 1199px) {
    .slick-arrow.slick-next {
        right: -10px;
    }
}

.slick-arrow.slick-next:before {
    content: '\e258';
}

.slick-arrow:hover {
    color: #fff;
    border-color: rgba(25, 110, 193, .8);
    background-color: rgba(25, 110, 193, .8);
}

.slick-dots {
    margin-top: 40px;

    text-align: center;
}

.slick-dots li {
    display: inline-block;

    width: 36px;
    height: 3px;
    margin: 0 6px;

    vertical-align: top;

    background-color: #e2e2e2;
}

@media (max-width: 991px) {
    .slick-dots li {
        width: 20px;
        height: 2px;
    }
}

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

.slick-dots li.slick-active {
    background-color: var(--primary-blue);
}

.header {
    position: relative;
    z-index: 10;
    top: 0;

    width: 100%;
    height: 140px;

    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: right;

    background-color: #fff;
}

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

.header .header-top {
    line-height: 40px;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

@media (max-width: 1199px) {
    .header .header-top {
        line-height: 30px;
    }
}

.header .header-top p {
    display: inline-block;
    float: left;

    margin: 0;

    vertical-align: middle;
}

@media (max-width: 991px) {
    .header .header-top p {
        display: none;
    }
}

.header .header-top .link {
    display: inline-block;
}

.header .header-top .link a,
.header .header-top .link .login {
    line-height: 40px;

    display: inline-block;

    margin-left: 16px;
}

.header .header-top .link a:hover {
    color: var(--primary-yellow);
}

.tc {
    text-align: center;
}

@media (max-width: 1199px) {

    .header .header-top .link a,
    .header .header-top .link .login {
        line-height: 30px;
    }
}

@media (max-width: 991px) {

    .header .header-top .link a,
    .header .header-top .link .login {
        margin-left: 10px;
    }
}


.header .logo {
    position: relative;
    z-index: 2;

    display: inline-block;
    float: left;

    height: 68px;
    margin-top: 20px;

    text-align: left;
    vertical-align: middle;
}

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

.header .logo a {
    display: inline-block;

    height: 100%;
}

.header .logo img {
    position: relative;
    z-index: 2;

    display: inline-block;

    height: 100%;
}

.header .logo p {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 1px;
    display: inline-block;

    margin: 0 0 0 16px;

    vertical-align: middle;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .header .logo p {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .header .logo p {
        display: none;
    }
}

.header .logo p span {
    font-family: 'OpenSans', Arial;
    font-size: 16px;
    font-weight: normal;

    display: block;

    letter-spacing: 3px;
}

@media (max-width: 1199px) {
    .header .logo p span {
        font-size: 14px;

        letter-spacing: 2.2px;
    }
}

.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: #666 !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: var(--primary-blue);
}

.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: var(--primary-blue);
}

.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);
}

.header .nav-right {
    display: inline-block;

    text-align: right;
}

.header .cart {
    font-size: 30px;

    display: inline-block;

    margin-left: 10px;

    cursor: pointer;
    vertical-align: middle;

    color: var(--primary-blue);
}

.header .cart:before {
    font-family: 'iconfont' !important;

    content: '\e64a';
}

.header .pc-search {
    position: relative;

    display: inline-block;

    width: 260px;
    margin-top: 20px;
}

@media (max-width: 1199px) {
    .header .pc-search {
        margin-top: 14px;
    }
}

@media (max-width: 767px) {
    .header .pc-search {
        width: 100px;
    }
}

@media (max-width:340px) {
    .header .pc-search {
        width: 84px;
    }
}

.header .pc-search input {
    line-height: 30px;

    width: 100%;
    padding: 5px 30px 5px 0;

    border-bottom: 1px solid #ddd;
    outline: none;
}

.header .pc-search input::-webkit-input-placeholder,
.header .pc-search textarea::-webkit-input-placeholder {
    color: #999;
}

.header .pc-search input:-o-placeholder,
.header .pc-search textarea:-o-placeholder {
    color: #999;
}

.header .pc-search input::-moz-placeholder,
.header .pc-search textarea::-moz-placeholder {
    color: #999;
}

.header .pc-search input:-ms-input-placeholder,
.header .pc-search textarea:-ms-input-placeholder {
    color: #999;
}

.header .pc-search input:focus::-webkit-input-placeholder,
.header .pc-search textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}

.header .pc-search input:focus::-o-placeholder,
.header .pc-search textarea:focus::-o-placeholder {
    color: #c5c5c5;
}

.header .pc-search input:focus::-moz-placeholder,
.header .pc-search textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}

.header .pc-search input:focus::-ms-input-placeholder,
.header .pc-search textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}

.header .pc-search .submit {
    font-size: 18px;
    line-height: 30px;

    position: absolute;
    right: 0;
    bottom: 5px;

    width: 30px;
    padding: 0;

    text-align: center;

    color: var(--primary-blue);
    outline: none;
    background: none;
}

@media (max-width: 767px) {
    .header .pc-search .submit {
        bottom: 4px;
    }
}

.header .pc-search .submit:before {
    font-family: 'Glyphicons Halflings' !important;
    padding-top: 10px;
    content: '\e003';
}

@media (min-width: 1200px) {
    .header .nav {
        display: block;

        -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: #fff;
    }

    .header .nav .logo {
        display: block;
        float: left;
        margin-top: 10px;
    }

    .header .nav .tbl {
        display: table;

        width: 100%;
        height: 90%;
        padding-top: 14%;
    }

    .header .nav .tbl-cell {
        display: table-cell;

        height: 100%;

        vertical-align: top;
    }
}

@media (min-width: 1200px) {
    .header .nav .nav-list1>li {
        float: left;
    }

    .header .nav .nav-list1>li>a {
        font-size: 17px;
        line-height: 60px;

        position: relative;

        display: inline-block;

        padding: 0 15px;

        -webkit-transition: all .4s;
        transition: all .4s;
        vertical-align: middle;

        color: var(--primary-blue);
    }

    .header .nav .nav-list1>li.active>a {
        color: var(--primary-blue);
    }

    .header .nav .nav-list1>li:hover>a {
        color: var(--primary-yellow);
    }

    .header .nav .nav-list1 .nav-list2 {
        position: absolute;
        z-index: 50;
        top: 100%;

        display: none;

        width: 120px;
        padding: 10px 0;

        text-align: center;

        background: -webkit-gradient(linear, right top, left top, from(#af9e8b), to(#F0830C));
        background: -webkit-linear-gradient(right, #af9e8b, #F0830C);
        background: linear-gradient(right, #af9e8b, #F0830C);
    }

    .header .nav .nav-list1 .nav-list2 li {
        position: relative;

        list-style: none;

        text-align: center;
    }

    .header .nav .nav-list1 .nav-list2 li>a {
        font-size: 15px;
        line-height: 30px;

        position: relative;
        z-index: 1;

        display: block;

        padding: 5px 0;

        -webkit-transition: all .2s;
        transition: all .2s;
        white-space: nowrap;

        color: #fff;
    }

    .header .nav .nav-list1 .nav-list2 li>a:hover {
        text-decoration: underline;
    }

    .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 (min-width: 1200px) and (max-width: 1350px) {
    .header .nav .nav-list1>li>a {
        padding: 0 12px;
    }
}

@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: #999;
    }

    .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: var(--primary-blue);
    background-color: var(--primary-blue);
}

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

.header .nav-down {
    position: absolute;
    z-index: 9;
    top: 100%;
    left: 0;

    display: none;

    width: 100%;
    padding: 50px 0;

    text-align: left;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

.header .nav-down .navlist1 {
    font-size: 0;

    overflow: hidden;
}

.header .nav-down .navlist1>li {
    font-size: 14px;

    display: inline-block;

    width: 26%;
    margin-bottom: -999px;
    padding: 0 10px;
    padding: 0 3%;
    padding-bottom: 999px;

    vertical-align: top;

    border-right: 1px solid rgba(255, 255, 255, .5);
}

@media (max-width: 1199px) {
    .header .nav-down .navlist1>li {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .header .nav-down .navlist1>li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .header .nav-down .navlist1>li {
        width: 100%;
    }
}

.header .nav-down .navlist1>li:nth-child(1) {
    width: 48%;
}

@media (max-width: 1199px) {
    .header .nav-down .navlist1>li:nth-child(1) {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .header .nav-down .navlist1>li:nth-child(1) {
        width: 100%;
        margin-bottom: 20px;
    }
}

.header .nav-down .navlist1>li:nth-child(1) ul.navlist2 {
    font-size: 0;
}

.header .nav-down .navlist1>li:nth-child(1) ul.navlist2>li {
    font-size: 14px;

    display: inline-block;

    width: 50%;

    vertical-align: top;
}

.header .nav-down .navlist1>li:nth-child(1) ul.navlist2>li:last-child {
    /* margin-top: -30px; */
}

@media (max-width: 767px) {
    .header .nav-down .navlist1>li:nth-child(1) ul.navlist2>li {
        width: 100%;
    }
}


.header .nav-down .navlist1>li:nth-child(3) {
    border-right: none;
}



.header .nav-down .navlist1>li>a {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}

.header .nav-down .navlist1>li>a:before {
    font-family: 'iconfont' !important;
    font-size: 40px;
    font-weight: normal;
    line-height: 40px;

    display: inline-block;

    margin-right: 10px;

    vertical-align: middle;
}

@media (max-width: 1199px) {
    .header .nav-down .navlist1>li>a:before {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .header .nav-down .navlist1>li>a:before {
        font-size: 40px;
        line-height: 40px;
    }
}

.header .nav-down .navlist1>li .navlist2 {
    margin-top: 20px;
}

.header .nav-down .navlist1>li .navlist2>li>a {
    font-size: 14px;
    line-height: 24px;

    position: relative;

    display: block;

    padding: 6px 6px 6px 20px;
}

.header .nav-down .navlist1>li .navlist2>li>a:before {
    font-family: 'Glyphicons Halflings' !important;

    position: absolute;
    left: 0;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    content: '\e258';
}

.header .nav-down .navlist1>li .navlist2>li>a:hover {
    text-decoration: underline;
}

.header .stuck {
    position: fixed;
    z-index: 9;
    top: 0;

    width: 100%;
    height: 90px;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

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

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

.header .nav .nav-list1 {
    margin-top: 20px;
}

.header .stuck .nav .nav-list1 {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .header .stuck .logo {
        margin-top: 5px;
    }
}

.header .stuck .pc-search {
    margin-top: 10px;
}

@media (max-width: 1199px) {
    .header .stuck .pc-search {
        margin-top: 14px;
    }
}

.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: var(--primary-blue);
    }

    .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: var(--primary-blue);
    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%;
}

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

.banner img {
    display: block;
}

.banner .slick-dots {
    font-size: 0;

    position: absolute;
    z-index: 2;
    bottom: 10px;

    width: 100%;
    height: 10px;
}

.banner .slick-dots>li {
    position: relative;

    display: inline-block;

    width: 10px;
    height: 10px;

    vertical-align: top;

    opacity: .6;
    border-radius: 50%;
}

.banner .slick-dots .slick-active {
    opacity: 1;
    background-color: var(--primary-blue);
}

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

.banner .slick-arrow {
    display: none !important;
}

.banner:hover .slick-arrow {
    display: block !important;
}

.banner .item {
    position: relative;

    display: block;
    overflow: hidden;
}

.banner .item img {
    display: block;

    width: 100%;
}

.banner .text {
    position: absolute;
    top: 50%;

    width: 100%;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    color: #fff;
}

.banner .text-1 {
    text-align: right;
}

.banner .text-1 .note {
    display: inline-block;

    width: 50%;
    padding: 0 1% 0 13%;

    text-align: left;
}

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

.banner .text-1 h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.66666667;
    color: var(--primary-blue);
    margin-left: 0;
}

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

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

@media (max-width: 767px) {
    .banner .text-1 h2 {
        font-size: 20px;
    }
}

.banner .slick-current .item h2 {
    -webkit-animation: fadeInRight 1.5s 0s ease both;
    animation: fadeInRight 1.5s 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%;
    }
}

.banner-in .text-inner {
    position: absolute;
    top: 50%;

    width: 100%;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
}

.banner-in .text-inner h3 {
    font-size: 30px;
    font-weight: bold;

    margin: 0;

    color: var(--primary-blue);
}

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

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

.banner-in .text-inner h4 {
    font-size: 36px;
    font-weight: bold;

    display: inline-block;

    margin: 0;

    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

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

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

@-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;

    padding: 40px 0;
}

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

.title h2 {
    font-size: 30px;
    line-height: 1;

    margin: 0;
}

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

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

.title p {
    font-size: 14px;
    line-height: 1.71428571;

    margin: 0;

    color: #666;
}

.home-catalog .catalog>ul {
    font-size: 0;

    margin: 0 -10px;
}

.home-catalog .catalog>ul>li {
    font-size: 14px;

    display: inline-block;

    width: 28%;
    padding: 0 10px;

    vertical-align: top;
}

@media (max-width: 1199px) {
    .home-catalog .catalog>ul>li {
        width: 25%;
    }
}

@media (max-width: 991px) {
    .home-catalog .catalog>ul>li {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog>ul>li {
        width: 100%;
    }
}

.home-catalog .catalog>ul>li:nth-child(1) {
    width: 44%;
}

@media (max-width: 1199px) {
    .home-catalog .catalog>ul>li:nth-child(1) {
        width: 50%;
    }
}

@media (max-width: 991px) {
    .home-catalog .catalog>ul>li:nth-child(1) {
        width: 100% !important;
        margin-bottom: 20px;
    }
}

.home-catalog .catalog>ul>li:nth-child(1) .itembox .note>ul>li {
    width: 50%;
}

@media (max-width: 767px) {
    .home-catalog .catalog>ul>li:nth-child(1) .itembox .note>ul>li {
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 1199px) {
    .home-catalog .catalog>ul>li:nth-child(3) .itembox .title-catalog b a:before {
        font-size: 46px;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog ul li {
        width: 100% !important;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog>ul>li:nth-child(3) .itembox .title-catalog b a:before {
        font-size: 36px;
    }
}

.home-catalog .catalog .itembox {
    padding: 30px;

    border: 1px solid #f0f0f0;
}

@media (max-width: 1199px) {
    .home-catalog .catalog .itembox {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog .itembox {
        padding: 14px;
    }
}

.home-catalog .catalog .itembox .title-catalog {
    padding-bottom: 10px;

    border-bottom: 1px solid #bddff5;
}

.home-catalog .catalog .itembox .title-catalog b {
    font-size: 18px;
    line-height: 30px;

    display: inline-block;

    text-align: center;

    background-image: -webkit-linear-gradient(right, #18a7a3, var(--primary-blue));
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .home-catalog .catalog .itembox .title-catalog b {
        font-size: 16px;
    }
}

.home-catalog .catalog .itembox .title-catalog b a {
    display: block;
}

.home-catalog .catalog .itembox .title-catalog b a:before {
    font-size: 60px;
    font-weight: normal;
    line-height: 60px;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 1199px) {
    .home-catalog .catalog .itembox .title-catalog b a:before {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog .itembox .title-catalog b a:before {
        font-size: 40px;
        line-height: 40px;
    }
}

.home-catalog .catalog .itembox .title-catalog a.more {
    font-size: 20px;
    line-height: 38px;

    display: inline-block;
    float: right;

    width: 40px;
    height: 40px;
    margin-top: 50px;

    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;

    opacity: .5;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 50%;
}

@media (max-width: 1199px) {
    .home-catalog .catalog .itembox .title-catalog a.more {
        font-size: 18px;
        line-height: 28px;

        width: 30px;
        height: 30px;
        margin-top: 60px;
    }
}

@media (max-width: 767px) {
    .home-catalog .catalog .itembox .title-catalog a.more {
        margin-top: 40px;
    }
}

.home-catalog .catalog .itembox .title-catalog a.more:before {
    font-family: 'Glyphicons Halflings' !important;
    font-size: 14px;
    content: '\e258';
}

.home-catalog .catalog .itembox .title-catalog a.more:hover {
    opacity: .8;
    color: #fff;
    background-color: var(--primary-blue);
}

.home-catalog .catalog .itembox .note {
    margin-top: 20px;
}

.home-catalog .catalog .itembox .note>ul {
    font-size: 0;

    margin: 0 -8px;
}

.home-catalog .catalog .itembox .note>ul>li {
    font-size: 14px;

    display: inline-block;

    width: 100%;
    padding: 4px 8px;

    vertical-align: top;
}

.home-catalog .catalog .itembox .note>ul>li a {
    line-height: 30px;

    display: block;

    padding: 0 14px;

    -webkit-transition: all .2s;
    transition: all .2s;
    font-size: 13px;
    color: #666;
    background-color: #f6f6f6;
}

.home-catalog .catalog .itembox .note>ul>li a:hover {
    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

.home-product {
    position: relative;
}

.home-product:before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 40%;

    content: '';

    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

.home-product .title,
.home-product .slick-product {
    position: relative;
    z-index: 2;
}

.home-product .title h2 {
    color: #fff;
}

.home-product .slick-product {
    margin: 0 -12px;
    margin-top: 30px;
}

.home-product .slick-product .slick-slide {
    padding: 0 12px;
}

.home-product .slick-product .item {
    position: relative;

    display: block;
    padding-bottom: 100px;
    -webkit-transition: all .2s;
    transition: all .2s;

    background-color: #f6f6f6;
}

.home-product .slick-product .item .ibox {
    padding-bottom: 60%;
    position: relative;
}

.home-product .slick-product .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.inner-wrap .default {
    border-left: 5px solid #13aad8;
    padding: 8px 16px 0px 16px;
    background-color: #f4f8fa;
    color: #1da6cf;
    font-size: 18px;
    line-height: 30px;
    height: 48px;
}

.mt20 {
    margin-top: 20px;
}

.js1 {
    color: #666;
}

.js1 p {
    font-size: 14px;
    line-height: 1.875;
    margin: 0;
}

.js2 {
    color: #666;
}

.js2 p {
    font-size: 16px;
    line-height: 1.875;
    margin: 0;
}

.home-product .slick-product .item .note {
    padding: 14px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 90px;
    z-index: 2;
    background-color: #f6f6f6;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.home-product .slick-product .item .note b {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;

    position: relative;

    display: -webkit-box;
    overflow: hidden;

    padding-right: 30px;

    color: var(--primary-blue);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.home-product .slick-product .item .note b:after {

    position: absolute;
    right: 0;

}

.home-product .slick-product .item .note .ds {
    font-size: 14px;
    line-height: 24px;

    overflow: hidden;

    max-height: 28px;
    margin: 8px 0 0 0;

    color: rgba(68, 68, 68, .7);

}

@media (max-width: 767px) {
    .home-product .slick-product .item .note .ds {
        font-size: 13px;
        line-height: 20px;

        height: 20px;
        margin: 0;
    }
}

.home-product .slick-product .item .note span {
    font-size: 14px;
    line-height: 20px;

    display: -webkit-box;
    overflow: hidden;

    height: 25px;
    margin: 0;

    color: rgba(68, 68, 68, .7);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
    .home-product .slick-product .item .note span {
        font-size: 13px;
        line-height: 18px;

        height: 20px;
        margin: 0;
    }
}

.home-product .slick-product .item:hover .note {
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

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

.home-product .slick-product .item:hover .note b {
    color: #fff;
}

.home-product .slick-product .item:hover .note .ds {
    color: rgba(255, 255, 255, .5);
    max-height: 400px;
}

.home-about .about {
    font-size: 0;
}

.home-about .about .pic,
.home-about .about .text {
    font-size: 14px;

    display: inline-block;

    vertical-align: top;
}

.home-about .about .pic {
    overflow: hidden;

    width: 44%;
}

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

    .home-about .about .pic img {
        max-width: 100%;
    }
}

.home-about .about .text {
    width: 56%;
    padding-left: 3%;
}

@media (max-width: 767px) {
    .home-about .about .text {
        width: 100%;
        margin-top: 30px;
        padding: 0;
    }
}

.home-about .about .text .title-text:after {
    display: block;

    width: 0;
    height: 2px;
    margin-top: 20px;

    content: '';
    -webkit-transition: all 1s;
    transition: all 1s;

    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.home-about .about .text .title-text h1 {
    font-size: 24px;
    font-weight: bold;

    margin: 0;

    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 991px) {
    .home-about .about .text .title-text h1 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .home-about .about .text .title-text h1 {
        font-size: 16px;
    }
}

.home-about .about .text .title-text h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;

    margin: 10px 0 0 0;
}

@media (max-width: 991px) {
    .home-about .about .text .title-text h2 {
        font-size: 20px;
    }
}

.home-about .about .text .note {
    margin-top: 40px;
}

@media (max-width: 991px) {
    .home-about .about .text .note {
        margin-top: 10px;
    }
}

.home-about .about .text .note p {
    font-size: 16px;
    line-height: 1.875;

    margin: 0;

    color: #777;
}

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

.home-about .about .text .more {
    overflow: hidden;

    margin-top: 80px;
}

@media (max-width: 991px) {
    .home-about .about .text .more {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .home-about .about .text .more {
        margin-top: 20px;
    }
}

.home-about .about .text .more a {
    line-height: 46px;

    display: inline-block;

    height: 46px;
    padding: 0 40px;

    color: #fff;
    color: rgba(255, 255, 255, .8);
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

.home-about .about .text .more a:hover {
    background: -webkit-gradient(linear, right top, left top, from(#0a71e7), to(#e47a02));
    background: -webkit-linear-gradient(right, #0a71e7, #e47a02);
    background: linear-gradient(right, #0a71e7, #e47a02);
}

@media (max-width: 991px) {
    .home-about .about .text .more a {
        padding: 0 30px;
    }
}

@media (max-width: 767px) {
    .home-about .about .text .more a {
        padding: 0 20px;
    }
}

.home-about .about .text .more img {
    float: right;

    max-width: 250px;
}

@media (max-width: 767px) {
    .home-about .about .text .more img {
        max-width: 200px;
    }
}

.home-about .about .animated .title-about:after {
    width: 100%;
}

.home-about .number {
    margin-top: 50px;
}

.home-about .number ul {
    font-size: 0;

    border: 1px solid #e6e6e6;
}

.home-about .number ul li {
    font-size: 14px;

    display: inline-block;

    width: 25%;
    padding: 30px;

    text-align: center;
    vertical-align: top;

    border-right: 1px solid #e6e6e6;
}

@media (max-width: 991px) {
    .home-about .number ul li {
        padding: 20px 14px;
    }
}

@media (max-width: 767px) {
    .home-about .number ul li {
        width: 50%;

        border-bottom: 1px solid #e6e6e6;
    }

    .home-about .number ul li:nth-child(2n) {
        border-right: none;
    }

    .home-about .number ul li:nth-child(3),
    .home-about .number ul li:nth-child(4) {
        border-bottom: none;
    }
}

.home-about .number ul li:last-child {
    border-right: none;
}

.home-about .number .item b {
    font-family: 'Staatliches', Arial;
    font-size: 72px;
    font-weight: normal;

    display: inline-block;

    background-image: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .home-about .number .item b {
        font-size: 60px;
    }
}

@media (max-width: 991px) {
    .home-about .number .item b {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home-about .number .item b {
        font-size: 40px;
    }
}

.home-about .number .item p {
    font-size: 18px;
    line-height: 1.66666667;

    margin: 0;

    color: #666;
}

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

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

.home-what {
    font-size: 0;

    position: relative;

    padding-bottom: 0;

    background-color: #f8f8f8;
}


.home-what .what,
.home-what .data {
    font-size: 14px;

    position: relative;
    z-index: 2;

    display: inline-block;

    vertical-align: top;
}

@media (max-width: 991px) {

    .home-what .what,
    .home-what .data {
        width: 100%;
    }
}

.home-what .what {
    width: 55%;
    padding-right: 5%;
}

@media (max-width: 991px) {
    .home-what .what {
        width: 100%;
        padding-right: 0;
    }
}

.home-what .what .title-what h3 {
    font-family: 'Staatliches', Arial;
    font-size: 48px;
    line-height: 1;

    display: inline-block;

    margin: 0;

    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
    .home-what .what .title-what h3 {
        font-size: 30px;
    }
}

.home-what .what .title-what h2 {
    font-size: 30px;
    font-weight: bold;

    margin: 10px 0 0 0;
}

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

.home-what .what .item {
    position: relative;

    margin-top: 30px;
    padding-left: 80px;
}

@media (max-width: 991px) {
    .home-what .what .item {
        padding-left: 60px;
    }
}

@media (max-width: 767px) {
    .home-what .what .item {
        padding-left: 40px;
    }
}

.home-what .what .item span.number {
    font-family: 'Staatliches', Arial;
    font-size: 60px;
    line-height: 1;

    position: absolute;
    top: 0;
    left: 0;

    color: #d3d3d3;
}

@media (max-width: 767px) {
    .home-what .what .item span.number {
        font-size: 50px;
    }
}

.home-what .what .item b {
    font-size: 20px;
    line-height: 30px;

    display: block;

    margin-bottom: 10px;
}

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

.home-what .what .item p {
    font-size: 15px;
    line-height: 1.6;

    margin: 0;

    color: #666;
}

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

.home-what .data {
    width: 45%;

    color: #fff;
}

@media (max-width: 991px) {
    .home-what .data {
        width: 100%;
        margin-top: 30px;
    }
}

.home-what .data .title-data h2 {
    font-family: 'Staatliches', Arial;
    font-size: 72px;

    margin: 0;
}

@media (max-width: 991px) {
    .home-what .data .title-data h2 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .home-what .data .title-data h2 {
        font-size: 30px;
    }
}

@media (max-width: 991px) {
    .home-what .data .pic img {
        max-width: 100%;
    }
}

.home-what .data .note {
    width: 180%;
    padding: 80px 14% 100px 40px;

    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

@media (max-width: 991px) {
    .home-what .data .note {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .home-what .data .note {
        padding: 30px 14px;
    }
}

.home-what .data .note .desc {
    max-width: 450px;
}

.home-what .data .note .desc {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .home-what .data .note .desc {
        margin-top: 10px;
    }
}

.home-what .data .note p {
    font-size: 16px;
    line-height: 2.25;

    margin: 0;
}

@media (max-width: 767px) {
    .home-what .data .note p {
        font-size: 14px;
        line-height: 24px;
    }
}

.home-link {
    padding-bottom: 25px;
}

.home-link ul li {
    font-size: 14px;
    float: left;
    margin-right: 20px;
    color: #666;
}

.home-link .title h2 {
    display: inline-block;

    color: var(--primary-blue);
}

.home-news .title h2 {
    display: inline-block;

    color: var(--primary-blue);
}

.home-news .title a.more {
    line-height: 30px;

    display: inline-block;
    float: right;

    margin-top: 4px;

    color: #999;
}

@media (max-width: 767px) {
    .home-news .title a.more {
        margin-top: 0;
    }
}

.home-news .title a.more:hover {
    text-decoration: underline;

    color: var(--primary-blue);
}

.home-news .slick-news {
    margin: 0 -22px;
    margin-top: 30px;
}

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

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

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

.home-news .slick-news .item {
    border: 1px solid #ddd;
}

.home-news .slick-news .item .pic {
    position: relative;

    display: block;
}

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

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

.home-news .slick-news .item .date {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 20px;

    display: block;

    padding: 16px;

    text-align: center;

    color: #fff;
    background-color: var(--primary-blue);
}

.home-news .slick-news .item .date b {
    font-size: 30px;
    line-height: 1;

    display: block;
}

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

.home-news .slick-news .item .date span {
    font-size: 14px;
    line-height: 20px;

    display: block;

    margin-top: 6px;
}

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

.home-news .slick-news .item .desc b {
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;

    -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;

    height: 72px;
    margin: 8px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.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 b {
    color: var(--primary-blue);
}

.footer {
    font-size: 0;

    position: relative;

    overflow: hidden;

    text-align: center;

    color: #fff;
    border-top: 5px solid var(--primary-yellow);
    background-color: #333;
}

.footer .foot {
    overflow: hidden;

    padding: 30px 0;
}

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

.footer .foot-left,
.footer .foot-nav {
    font-size: 14px;

    display: inline-block;

    text-align: left;
    vertical-align: top;
}

.footer .foot-left {
    float: left;

    width: 40%;
}

@media (max-width: 1199px) {
    .footer .foot-left {
        display: none;
        float: none;

        width: 100%;
    }
}

/* .footer .foot-left .title-foot p {
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;
    color: #fff;
    line-height: 30px;
} */

.footer .foot-left .title-foot p {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;

    background-image: -webkit-linear-gradient(right, #098fc9, #F0830C);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .footer .foot-left .title-foot p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .footer .foot-left .title-foot p {
        display: none;
    }
}

.footer .foot-left .title-foot p span {
    font-family: 'OpenSans', Arial;
    font-size: 16px;
    font-weight: normal;

    display: block;

    letter-spacing: 3px;
}

@media (max-width: 1199px) {
    .footer .foot-left .title-foot p span {
        font-size: 14px;

        letter-spacing: 2.2px;
    }
}

.footer .foot-left .text {
    margin-top: 30px;
}

.footer .foot-left .text p {
    line-height: 30px;

    margin: 0;
}

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

.footer .foot-left .text img {
    max-width: 130px;
    margin-top: 10px;
}

.footer .foot-nav {
    width: 60%;
}

@media (max-width: 1199px) {
    .footer .foot-nav {
        width: 100%;
    }
}

.footer .foot-nav>ul {
    font-size: 0;

    margin: 0 -18px;
}

@media (min-width: 1200px) {
    .footer .foot-nav>ul {
        width: 100%;
        padding: 0;

        text-align: justify;
        text-justify: distribute-all-lines;
    }

    .footer .foot-nav>ul:after {
        display: inline-block;
        overflow: hidden;

        width: 100%;
        height: 0;
        margin: 0;

        content: '';
    }
}

.footer .foot-nav>ul>li {
    display: inline-block;

    padding: 0 18px;

    text-align: left;
    vertical-align: top;
}

@media (max-width: 1199px) {
    .footer .foot-nav>ul>li {
        display: block;
    }
}

.footer .foot-nav>ul>li>a {
    font-size: 18px;
    line-height: 2;

    display: block;

    color: #fff;
}

@media (max-width: 1199px) {
    .footer .foot-nav>ul>li>a {
        font-size: 16px;
    }
}

.footer .foot-nav>ul>li>ul {
    margin-top: 20px;
}

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

@media (max-width: 1199px) {
    .footer .foot-nav>ul>li>ul>li {
        display: inline-block;

        vertical-align: top;
    }
}

.footer .foot-nav>ul>li>ul>li>a {
    font-size: 14px;
    line-height: 2;

    display: block;

    color: rgba(255, 255, 255, .5);
}

@media (max-width: 1199px) {
    .footer .foot-nav>ul>li>ul>li>a {
        padding: 0 10px;
    }
}

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

    color: #fff;
}

.footer .copyright {
    padding: 20px 0;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, .1);
}

@media (max-width: 1199px) {
    .footer .copyright {
        padding: 10px 0;
    }
}

.footer .copyright p {
    font-size: 14px;
    line-height: 30px;

    margin: 0;
}

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

.fixed-bg {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;

    display: block;
    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .7);
}

.fixed-login,
.fixed-registered {
    position: fixed;
    z-index: 12;
    top: 50%;
    left: 50%;

    display: none;

    width: 100%;
    max-width: 400px;
    padding: 30px;

    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);

    background-color: #fff;
}

@media (max-width: 767px) {

    .fixed-login,
    .fixed-registered {
        max-width: 90%;
    }
}

.fixed-login .fclose,
.fixed-registered .fclose {
    font-size: 24px;
    line-height: 40px;

    position: absolute;
    top: 0;
    right: 0;

    width: 40px;
    height: 40px;

    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;

    color: #666;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.fixed-login .fclose:after,
.fixed-registered .fclose:after {
    font-family: 'iconfont' !important;

    content: '\e64e';
}

.fixed-login .fclose:hover,
.fixed-registered .fclose:hover {
    color: #fff;
    background-color: var(--primary-blue);
}

.fixed-login .title-login img,
.fixed-registered .title-login img,
.fixed-login .title-registered img,
.fixed-registered .title-registered img,
.fixed-login .title-login .tt,
.fixed-registered .title-login .tt,
.fixed-login .title-registered .tt,
.fixed-registered .title-registered .tt {
    display: inline-block;

    vertical-align: middle;
}

.fixed-login .title-login img,
.fixed-registered .title-login img,
.fixed-login .title-registered img,
.fixed-registered .title-registered img {
    max-width: 70px;
    margin-right: 20px;
}

.fixed-login .title-login .tt,
.fixed-registered .title-login .tt,
.fixed-login .title-registered .tt,
.fixed-registered .title-registered .tt {
    font-size: 24px;
    line-height: 30px;
}

@media (max-width: 767px) {

    .fixed-login .title-login .tt,
    .fixed-registered .title-login .tt,
    .fixed-login .title-registered .tt,
    .fixed-registered .title-registered .tt {
        font-size: 20px;
    }
}

.fixed-login .title-login .tt b,
.fixed-registered .title-login .tt b,
.fixed-login .title-registered .tt b,
.fixed-registered .title-registered .tt b {
    display: block;
}

.fixed-login .title-login .tt p,
.fixed-registered .title-login .tt p,
.fixed-login .title-registered .tt p,
.fixed-registered .title-registered .tt p {
    font-weight: bold;

    margin: 0;

    text-transform: uppercase;

    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.fixed-login .message input,
.fixed-registered .message input {
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    margin-top: 20px;
    padding: 10px;

    border-bottom: 1px solid #dadada;
    outline: none;
    background: none;
}

@media (max-width: 767px) {

    .fixed-login .message input,
    .fixed-registered .message input {
        font-size: 14px;

        margin-top: 10px;
    }
}

.fixed-login .message input::-webkit-input-placeholder,
.fixed-registered .message input::-webkit-input-placeholder,
.fixed-login .message textarea::-webkit-input-placeholder,
.fixed-registered .message textarea::-webkit-input-placeholder {
    color: #aeaeae;
}

.fixed-login .message input:-o-placeholder,
.fixed-registered .message input:-o-placeholder,
.fixed-login .message textarea:-o-placeholder,
.fixed-registered .message textarea:-o-placeholder {
    color: #aeaeae;
}

.fixed-login .message input::-moz-placeholder,
.fixed-registered .message input::-moz-placeholder,
.fixed-login .message textarea::-moz-placeholder,
.fixed-registered .message textarea::-moz-placeholder {
    color: #aeaeae;
}

.fixed-login .message input:-ms-input-placeholder,
.fixed-registered .message input:-ms-input-placeholder,
.fixed-login .message textarea:-ms-input-placeholder,
.fixed-registered .message textarea:-ms-input-placeholder {
    color: #aeaeae;
}

.fixed-login .message input:focus::-webkit-input-placeholder,
.fixed-registered .message input:focus::-webkit-input-placeholder,
.fixed-login .message textarea:focus::-webkit-input-placeholder,
.fixed-registered .message textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}

.fixed-login .message input:focus::-o-placeholder,
.fixed-registered .message input:focus::-o-placeholder,
.fixed-login .message textarea:focus::-o-placeholder,
.fixed-registered .message textarea:focus::-o-placeholder {
    color: #c5c5c5;
}

.fixed-login .message input:focus::-moz-placeholder,
.fixed-registered .message input:focus::-moz-placeholder,
.fixed-login .message textarea:focus::-moz-placeholder,
.fixed-registered .message textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}

.fixed-login .message input:focus::-ms-input-placeholder,
.fixed-registered .message input:focus::-ms-input-placeholder,
.fixed-login .message textarea:focus::-ms-input-placeholder,
.fixed-registered .message textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}

.fixed-login .message .submit,
.fixed-registered .message .submit,
.fixed-login .message .registered,
.fixed-registered .message .registered {
    font-size: 16px;
    line-height: 44px;

    display: inline-block;

    margin-top: 20px;
    padding: 0 20px;

    vertical-align: middle;

    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.fixed-login .message .submit:hover,
.fixed-registered .message .submit:hover,
.fixed-login .message .registered:hover,
.fixed-registered .message .registered:hover {
    background: -webkit-gradient(linear, right top, left top, from(#014DAB), to(#014DAB));
    background: -webkit-linear-gradient(right, #014DAB, #014DAB);
    background: linear-gradient(right, #014DAB, #014DAB);
}

.fixed-login .message a.fbtn-login,
.fixed-registered .message a.fbtn-login,
.fixed-login .message a.fbtn-registered,
.fixed-registered .message a.fbtn-registered {
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    margin-top: 20px;
    padding: 0 20px;

    vertical-align: middle;

    color: var(--primary-blue);
}

@media (max-width: 767px) {

    .fixed-login .message a.fbtn-login,
    .fixed-registered .message a.fbtn-login,
    .fixed-login .message a.fbtn-registered,
    .fixed-registered .message a.fbtn-registered {
        font-size: 14px;

        padding: 0 10px;
    }
}

.fixed-login .message a.fbtn-login:hover,
.fixed-registered .message a.fbtn-login:hover,
.fixed-login .message a.fbtn-registered:hover,
.fixed-registered .message a.fbtn-registered:hover {
    text-decoration: underline;
}

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

.inner {
    overflow: hidden;

    padding: 20px 0 60px;
}

.title-about {
    overflow: hidden;

    padding: 20px 0;

    color: #f8f8f8;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

@media (max-width: 767px) {
    .title-about {
        padding: 10px 0;
    }
}

.title-about h2 {
    font-size: 24px;
    line-height: 30px;

    margin: 0;
}

@media (max-width: 991px) {
    .title-about h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.title-about h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;

    margin: 0;
}

@media (max-width: 991px) {
    .title-about h3 {
        font-size: 24px;
    }
}

.title-inner {
    position: relative;
}

.title-inner b {
    font-size: 60px;
    font-weight: bold;
    line-height: 1;

    margin: 0;

    color: #eee;
}

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

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

.title-inner h2 {
    font-size: 26px;
    font-weight: bold;

    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;

    margin: 0;

    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    color: var(--primary-blue);
}

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

.inner-location {
    overflow: hidden;

    color: #f8f8f8;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

@media (max-width: 767px) {
    .inner-location {
        padding-bottom: 10px;
    }
}

.inner-location .title-location {
    display: inline-block;
}

.inner-location .title-location h2 {
    font-size: 24px;
    font-weight: bold;
    line-height: 70px;

    margin: 0;
}

@media (max-width: 767px) {
    .inner-location .title-location h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

.inner-location .location {
    display: inline-block;
    float: right;
}

@media (max-width: 767px) {
    .inner-location .location {
        display: block;
        float: none;
    }
}

.inner-location .location span {
    display: inline-block;

    vertical-align: middle;
}

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

    vertical-align: middle;
}

.inner-location .location>ul>li {
    display: inline-block;

    vertical-align: top;
}

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

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

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

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

@media (max-width: 767px) {
    .inner-location .location>ul>li {
        line-height: 30px;
    }

    .inner-location .location>ul>li>a {
        line-height: 30px;
    }

}

.inner-location .location>ul>li:hover>a {
    text-decoration: underline;
}

.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;
    }
}

.sidenav {
    margin-top: 50px;
}

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

.sidenav>ul>li {
    position: relative;

    margin-bottom: 3px;

    color: #f2f2f2;
}

.sidenav>ul>li .icon-sidenav {
    line-height: 44px;

    position: absolute;
    top: 0;
    right: 0;

    display: block;

    width: 44px;

    cursor: pointer;
    text-align: center;
}

.sidenav>ul>li .icon-sidenav:after {
    font-family: 'iconfont' !important;

    content: '\e625';
    -webkit-transition: all .4s;
    transition: all .4s;
}

.sidenav>ul>li>a {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;

    display: block;

    padding: 10px 44px 10px 10px;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #f2f2f2;
    background-color: #000;
}

.sidenav>ul>li>ul {
    display: none;
}

.sidenav>ul>li>ul>li {
    border-bottom: 1px solid #222;
}

@media (max-width: 991px) {
    .sidenav>ul>li>ul>li {
        display: inline-block;

        vertical-align: top;
    }
}

.sidenav>ul>li>ul>li>a {
    font-size: 15px;
    line-height: 28px;

    display: block;

    padding: 10px 30px;

    color: #bcbcbc;
    background-color: #181818;
}

@media (max-width: 991px) {
    .sidenav>ul>li>ul>li>a {
        padding: 5px 14px;

        background: none;
    }
}

.sidenav>ul>li>ul>li.active>a,
.sidenav>ul>li>ul>li:hover>a {
    color: var(--primary-blue);
}

.sidenav>ul>li.current .icon-sidenav {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sidenav>ul>li.current>a {
    color: var(--primary-blue);
}

.sidenav>ul>li.current>ul {
    display: block;
}

.sidenav>ul>li:hover>a {
    color: var(--primary-blue);
}

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

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

.inner-about .about {
    font-size: 0;

    padding: 50px 0;
}

@media (max-width: 767px) {
    .inner-about .about {
        padding: 20px 0 40px;
    }
}

.inner-about .about .number,
.inner-about .about .about-text {
    font-size: 14px;

    display: inline-block;

    vertical-align: middle;
}

.inner-about .about .number {
    width: 24%;
    padding: 10px 2%;

    text-align: center;

    border-right: 1px solid #e2e2e2;
}

@media (max-width: 767px) {
    .inner-about .about .number {
        width: 100%;
        padding: 10px 0;

        border-right: none;
    }
}

.inner-about .about .number ul li {
    display: block;

    margin: 15px 0;
}

@media (max-width: 767px) {
    .inner-about .about .number ul li {
        display: inline-block;

        padding: 0 14px;

        vertical-align: top;
    }
}

.inner-about .about .number .item b {
    font-family: 'Staatliches', Arial;
    font-size: 72px;
    font-weight: normal;

    display: inline-block;

    background-image: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

@media (max-width: 1199px) {
    .inner-about .about .number .item b {
        font-size: 60px;
    }
}

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

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

.inner-about .about .number .item p {
    font-size: 18px;
    line-height: 1.66666667;

    margin: 0;

    color: #666;
}

@media (max-width: 1199px) {
    .inner-about .about .number .item p {
        font-size: 16px;
    }
}

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

.inner-about .about .about-text {
    width: 76%;
    padding-left: 5%;

    color: #333;
}

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

.inner-about .about .about-text p {
    font-size: 16px;
    line-height: 2.25;

    margin: 0;
}

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

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

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

.inner-about .jobs {
    font-size: 0;

    background-color: #f5f5f5;
}

.inner-about .jobs .pic,
.inner-about .jobs .text {
    font-size: 14px;

    display: inline-block;

    width: 50%;

    vertical-align: middle;
}

@media (max-width: 767px) {

    .inner-about .jobs .pic,
    .inner-about .jobs .text {
        width: 100%;
    }
}

.inner-about .jobs .pic {
    overflow: hidden;
}

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

.inner-about .jobs .text {
    padding: 30px 14% 30px 30px;
}

@media (max-width: 1470px) {
    .inner-about .jobs .text {
        padding-right: 5%;
    }
}

@media (max-width: 767px) {
    .inner-about .jobs .text {
        padding: 20px 10px;
    }
}

.inner-about .jobs .text .note {
    overflow: hidden;

    max-height: 432px;
    margin-top: 20px;

    color: #333;
}

@media (max-width: 991px) {
    .inner-about .jobs .text .note {
        max-height: 312px;
    }
}

@media (max-width: 767px) {
    .inner-about .jobs .text .note {
        max-height: 288px;
    }
}

.inner-about .jobs .text .note p {
    font-size: 16px;
    line-height: 2.25;

    margin: 0;
}

@media (max-width: 991px) {
    .inner-about .jobs .text .note p {
        font-size: 15px;
        line-height: 26px;
    }
}

@media (max-width: 767px) {
    .inner-about .jobs .text .note p {
        font-size: 14px;
        line-height: 24px;
    }
}

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

.inner-about .jobs .text a.more {
    font-size: 16px;
    line-height: 50px;

    display: inline-block;

    margin-top: 30px;
    padding: 0 50px;

    color: #bbb;
    border: 1px solid #d6d6d6;
}

@media (max-width: 767px) {
    .inner-about .jobs .text a.more {
        line-height: 40px;

        padding: 0 40px;
    }
}

.inner-about .jobs .text a.more:hover {
    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-news .news ul li {
    padding-top: 30px;
    padding-bottom: 30px;

    border-bottom: 1px solid #e5eefe;
}

@media (max-width: 767px) {
    .inner-news .news ul li {
        padding: 14px 0;
    }
}

.inner-news .news .item {
    position: relative;

    padding: 20px 0 20px 160px;
}

@media (max-width: 991px) {
    .inner-news .news .item {
        padding-left: 120px;
    }
}

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

.inner-news .news .item .date {
    position: absolute;
    top: 50%;
    left: 0;

    display: block;

    width: 130px;
    padding: 20px 10px;

    -webkit-transition: all .2s;
    transition: all .2s;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;

    color: var(--primary-blue);
    background-color: #e5eefe;
}

@media (max-width: 991px) {
    .inner-news .news .item .date {
        width: 100px;
        padding: 10px;
    }
}

@media (max-width: 767px) {
    .inner-news .news .item .date {
        width: 70px;
    }
}

.inner-news .news .item .date b {
    font-size: 60px;
    line-height: 1;

    display: block;
}

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

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

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

.inner-news .news .item .date span {
    font-size: 16px;
    line-height: 30px;

    display: block;
}

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

.inner-news .news .item .note b {
    font-size: 18px;
    line-height: 30px;

    display: -webkit-box;
    overflow: hidden;

    height: 30px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.inner-news .news .item .note b a {
    display: block;
}

.inner-news .news .item .note p {
    font-size: 14px;
    line-height: 24px;

    display: -webkit-box;
    overflow: hidden;

    height: 48px;
    margin: 8px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.inner-news .news .item:hover .date {
    color: #fff;
    background-color: #18a4a7;
}

.inner-news .news .item:hover .note b {
    color: #18a4a7;
}

.inner-news .news .item:hover a.more {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

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

@media (max-width: 991px) {

    .inner-news-show .news-show,
    .inner-single .news-show,
    .inner-news-show .single,
    .inner-single .single {
        margin-top: 20px;
    }
}

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

.inner-news-show .title-news-show h1,
.inner-single .title-news-show h1,
.inner-news-show .title-single h1,
.inner-single .title-single h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;

    margin: 0;

    color: var(--primary-blue);
}

@media (max-width: 991px) {

    .inner-news-show .title-news-show h1,
    .inner-single .title-news-show h1,
    .inner-news-show .title-single h1,
    .inner-single .title-single h1 {
        font-size: 18px;
    }
}

.inner-news-show .title-news-show p,
.inner-single .title-news-show p,
.inner-news-show .title-single p,
.inner-single .title-single p {
    font-size: 14px;
    line-height: 24px;

    margin: 10px 0 0 0;

    color: #888;
}

.inner-news-show .title-news-show p span,
.inner-single .title-news-show p span,
.inner-news-show .title-single p span,
.inner-single .title-single p span {
    display: inline-block;

    vertical-align: middle;
}

.inner-news-show .text-top,
.inner-single .text-top {
    overflow: hidden;

    margin-top: 30px;
    padding: 10px 5%;

    color: #999;
    background-color: #f5f5f5;
}

.inner-news-show .text-top:before,
.inner-single .text-top:before,
.inner-news-show .text-top:after,
.inner-single .text-top:after {
    font-family: Arial;
    font-size: 72px;
    line-height: 40px;

    display: block;

    content: '“';
}

.inner-news-show .text-top:before,
.inner-single .text-top:before {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
}

.inner-news-show .text-top:after,
.inner-single .text-top:after {
    float: right;

    content: '“';
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.inner-news-show .text-top .note,
.inner-single .text-top .note {
    padding: 20px 5%;
}

.inner-news-show .text-top p,
.inner-single .text-top p {
    font-size: 14px;
    line-height: 30px;
}

.inner-news-show .text,
.inner-single .text {
    margin-top: 30px;

    color: #333;
}

.inner-news-show .text p,
.inner-single .text p {
    font-size: 16px;
    line-height: 1.875;

    margin: 0;
}

@media (max-width: 991px) {

    .inner-news-show .text p,
    .inner-single .text p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .inner-news-show .text p,
    .inner-single .text p {
        font-size: 14px;
    }
}

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

.product-sort {
    margin-top: 20px;
    padding: 0 12px 20px 12px;

    background-color: #f2f9ff;
}

.product-sort ul.psort1>li {
    font-size: 0;

    position: relative;

    min-height: 100px;
    padding: 20px 0;
    padding-left: 110px;

    border-bottom: 1px solid #d0e4f5;
}

.product-sort ul.psort1>li:last-child {

    border-bottom: none;
}

@media (max-width: 767px) {
    .product-sort ul.psort1>li {
        min-height: 80px;
        padding-left: 0;
    }
}

.product-sort ul.psort1>li>a {
    font-size: 16px;
    font-weight: bold;
    line-height: 30px;

    position: absolute;
    top: 20px;
    left: 0;

    display: inline-block;

    width: 150px;
    padding: 15px 0;

    text-align: center;
    vertical-align: top;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

@media (max-width: 767px) {
    .product-sort ul.psort1>li>a {
        position: relative;
        top: 0;

        padding: 5px 0;
    }
}

.product-sort ul.psort1>li:hover>a {
    text-decoration: underline;
}

.product-sort ul.psort1>li ul.psort2 {
    font-size: 14px;

    display: block;

    padding: 0 30px 0 60px;
}

@media (max-width: 767px) {
    .product-sort ul.psort1>li ul.psort2 {
        width: 100%;
        margin-top: 10px;
        padding: 0;
    }
}

.product-sort ul.psort1>li ul.psort2>li {
    display: inline-block;

    vertical-align: top;

    color: var(--primary-blue);
}

.product-sort ul.psort1>li ul.psort2>li:after {
    margin: 0 10px;

    content: '|';
}

@media (max-width: 767px) {
    .product-sort ul.psort1>li ul.psort2>li:after {
        margin: 0 6px;
    }
}

.product-sort ul.psort1>li ul.psort2>li:last-child:after {
    display: none;
}

.product-sort ul.psort1>li ul.psort2>li>a {
    line-height: 30px;

    display: inline-block;
}

@media (max-width: 767px) {
    .product-sort ul.psort1>li ul.psort2>li>a {
        font-size: 13px;
        line-height: 24px;
    }
}

.product-sort ul.psort1>li ul.psort2>li:hover>a,
.product-sort ul.psort1>li ul.psort2>li.active>a {
    text-decoration: underline;
}

.inner-product .product .item {
    position: relative;

    display: block;
    padding-bottom: 90px;

    -webkit-transition: all .2s;
    transition: all .2s;
    margin-bottom: 20px;


}

.inner-product .product .item .ibox {
    padding-bottom: 91.42857143%;
    position: relative;
}

.inner-product .product .item .ibox img {
    -webkit-transition: all 1s;
    transition: all 1s;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

.inner-product .product .item .note {
    padding: 14px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    height: 94px;
    z-index: 2;
    background-color: #f6f6f6;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
}

.inner-product .product .item .note b {
    font-size: 18px;
    font-weight: normal;
    line-height: 30px;

    position: relative;

    display: -webkit-box;
    overflow: hidden;

    padding-right: 30px;

    color: var(--primary-blue);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

.inner-product .product .item .note b:after {
    position: absolute;
    right: 0;

}

.inner-product .product .item .note .ds {
    font-size: 14px;
    line-height: 24px;

    /*  display: -webkit-box;*/
    overflow: hidden;

    max-height: 28px;
    margin: 8px 0 0 0;

    color: rgba(68, 68, 68, .7);

    /*   -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; */
}

@media (max-width: 767px) {
    .inner-product .product .item .note .ds {
        font-size: 13px;
        line-height: 20px;

        height: 20px;
        margin: 0;
    }
}

.inner-product .product .item .note span {
    font-size: 14px;
    line-height: 20px;

    display: -webkit-box;
    overflow: hidden;

    height: 25px;
    margin: 0;

    color: rgba(68, 68, 68, .7);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

@media (max-width: 767px) {
    .inner-product .product .item .note span {
        font-size: 13px;
        line-height: 18px;

        height: 20px;
        margin: 0;
    }
}

.inner-product .product .item:hover .note {
    height: 100%;
    background: -webkit-gradient(linear, right top, left top, from(#23a9e2), to(#F0830C));
    background: -webkit-linear-gradient(right, #23a9e2, #F0830C);
    background: linear-gradient(right, #23a9e2, #F0830C);
}

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

.inner-product .product .item:hover .note b {
    color: #fff;
}

.inner-product .product .item:hover .note {}

.inner-product .product .item:hover .note .ds {
    color: rgba(255, 255, 255, .8);
    max-height: 400px;
}

.inner-product-show .product-show .item {
    border: 1px solid #eee;
}

.inner-product-show .product-show .item .ibox {
    padding-bottom: 91.42857143%;
}

.inner-product-show .product-show .slick-product-for {
    position: relative;
}

.inner-product-show .product-show .slick-product-for:after {
    font-family: 'iconfont' !important;
    font-size: 50px;

    position: absolute;
    z-index: 2;
    right: 20px;
    bottom: 20px;

    content: '\e642';

    color: rgba(255, 255, 255, .9);
}

@media (max-width: 991px) {
    .inner-product-show .product-show .slick-product-for:after {
        display: none;
    }
}

.inner-product-show .product-show .slick-product-nav {
    margin: 0 -5px;
    margin-top: 10px;
}

.inner-product-show .product-show .slick-product-nav .slick-slide {
    padding: 0 5px;
}

.inner-product-show .product-show .slick-product-nav .slick-current .item {
    border-color: #9ecaf5;
}

.inner-product-show .product-show .slick-product-nav .slick-arrow {
    left: 0;

    width: auto;
    height: auto;

    opacity: 0;
    color: #333;
    border: none;
}

@media (max-width: 991px) {
    .inner-product-show .product-show .slick-product-nav .slick-arrow {
        opacity: 1;
    }
}

.inner-product-show .product-show .slick-product-nav .slick-arrow:before {
    content: '\eb60';
}

.inner-product-show .product-show .slick-product-nav .slick-arrow.slick-next {
    right: 0;
    left: auto;
}

.inner-product-show .product-show .slick-product-nav .slick-arrow.slick-next:before {
    content: '\e625';
}

.inner-product-show .product-show .slick-product-nav .slick-arrow:hover {
    color: #000;
    background: none;
}

.inner-product-show .product-show .slick-product-nav:hover .slick-arrow {
    opacity: 1;
}

@media (max-width: 991px) {
    .inner-product-show .product-show .product-info {
        margin-top: 30px;
    }
}

.inner-product-show .product-show .product-info .title-product-info h1 {
    font-size: 30px;
    line-height: 1.25;

    margin: 0;

    color: var(--primary-blue);
}

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

.inner-product-show .product-show .product-info .title-product-info h1 span {
    font-size: 16px;

    display: block;

    color: #666;
}

.inner-product-show .product-show .product-info .text {
    min-height: 290px;
    margin-top: 30px;

    color: #666;
}

@media (max-width: 991px) {
    .inner-product-show .product-show .product-info .text {
        min-height: auto;
    }
}

.inner-product-show .product-show .product-info .text p {
    font-size: 16px;
    line-height: 24px;

    margin: 0;
}

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

.inner-product-show .product-show .product-info .link .btn-parameter,
.inner-product-show .product-show .product-info .link .btn-contact {
    display: inline-block;

    margin-top: 20px;
    margin-right: 20px;

    vertical-align: top;
}

.inner-product-show .product-show .product-info .link .btn-parameter a,
.inner-product-show .product-show .product-info .link .btn-contact a {
    line-height: 42px;

    display: inline-block;

    padding: 0 30px;

    color: #fff;
    background-color: var(--primary-blue);
}

.inner-product-show .product-show .product-info .link .btn-parameter a:hover,
.inner-product-show .product-show .product-info .link .btn-contact a:hover {
    background-color: #0a5aa8;
}

.inner-product-show .product-show .product-info .link .btn-contact a {
    background-color: #18a7a3;
}

.inner-product-show .product-choose .title-product-choose {
    margin-top: 30px;

    color: var(--primary-blue);
}

.inner-product-show .product-choose .title-product-choose h2 {
    font-size: 24px;

    margin: 0;
}

.inner-product-show .product-choose .choose-sort {
    position: relative;
    z-index: 2;

    overflow: hidden;
    /* overflow-x: auto; */

    margin-top: 20px;

    /* border-bottom: 1px solid #9ecaf5; */

    /* -webkit-overflow-scrolling: touch; */
}

/* .inner-product-show .product-choose .choose-sort::-webkit-scrollbar
{
    position: absolute;
    bottom: 0;

    width: 5px;
    width: 100%;
    height: 5px;
}
.inner-product-show .product-choose .choose-sort::-webkit-scrollbar-track
{
    border-radius: 4px;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}
.inner-product-show .product-choose .choose-sort::-webkit-scrollbar-thumb
{
    border-radius: 5px;
    background-color: rgba(0, 0, 0, .1);
}
.inner-product-show .product-choose .choose-sort::-webkit-scrollbar-thumb:hover
{
    border-radius: 5px;
    background: rgba(0, 0, 0, .3);
} */

.inner-product-show .product-choose .choose-sort>ul {
    font-size: 0;
    margin: 0 -4px;
    /* padding-left: 1px; */

    /* white-space: nowrap; */
}

.inner-product-show .product-choose .choose-sort>ul>li {
    font-size: 14px;

    display: inline-block;
    margin: 4px;
    /*   margin-bottom: -1px;
    margin-left: -1px; */

    vertical-align: top;

    border: 1px solid #9ecaf5;
}

@media (max-width: 767px) {
    .inner-product-show .product-choose .choose-sort>ul>li {
        text-align: center;
    }
}

.inner-product-show .product-choose .choose-sort>ul>li>a {
    font-size: 16px;
    line-height: 30px;

    display: inline-block;

    padding: 15px 50px;

    color: #666;
}

@media (max-width: 1199px) {
    .inner-product-show .product-choose .choose-sort>ul>li>a {
        font-size: 14px;
        line-height: 24px;

        padding: 10px 20px;
    }
}

@media (max-width: 1199px) {
    .inner-product-show .product-choose .choose-sort>ul>li>a {
        padding: 10px;
    }
}

.inner-product-show .product-choose .choose-sort>ul>li.active {
    background-color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-sort>ul>li.active>a {
    font-weight: bold;

    color: #ffffff;
}

.inner-product-show .product-choose .choose-list {
    margin-top: 16px;
}

.inner-product-show .product-choose .choose-list .tablewrap {
    overflow: hidden;
    overflow-x: auto;

    width: 100%;
    max-width: 100%;
}

.inner-product-show .product-choose .choose-list table {
    font-size: 16px;

    width: 100%;

    text-align: center;

    color: #666;
}

@media (max-width: 1199px) {
    .inner-product-show .product-choose .choose-list table {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .inner-product-show .product-choose .choose-list table {
        font-size: 12px;
    }
}

.inner-product-show .product-choose .choose-list table tr:nth-child(1) {
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-product-show .product-choose .choose-list table tr:nth-child(odd) {
    background-color: #f2f2f2;
}

.inner-product-show .product-choose .choose-list table tr th {
    font-weight: normal;
    line-height: 30px;

    padding: 20px 10px;

    text-align: center;
    white-space: nowrap;

    color: #fff;
}

@media (max-width: 767px) {
    .inner-product-show .product-choose .choose-list table tr th {
        line-height: 20px;

        padding: 10px 4px;
    }
}

.inner-product-show .product-choose .choose-list table tr td {
    line-height: 30px;

    position: relative;

    padding: 10px;
}

@media (max-width: 767px) {
    .inner-product-show .product-choose .choose-list table tr td {
        line-height: 20px;

        padding: 6px 4px;
    }
}

.inner-product-show .product-choose .choose-list table tr th,
.inner-product-show .product-choose .choose-list table tr td {
    width: 10%;
}

.inner-product-show .product-choose .choose-list table tr th:nth-child(1),
.inner-product-show .product-choose .choose-list table tr td:nth-child(1) {
    width: 25%;
}

.inner-product-show .product-choose .choose-list table tr th:nth-child(3),
.inner-product-show .product-choose .choose-list table tr td:nth-child(3) {
    width: 11%;
}

.inner-product-show .product-choose .choose-list table tr td:last-child input {
    border: 1px solid #eeeeee;
    padding: 0 10px;
    width: 120px;
}

.inner-product-show .product-choose .choose-list table tr:nth-child(odd) td input {
    border: none;

}

.inner-product-show .product-choose .choose-list table tr a.popen {
    display: inline-block;

    cursor: pointer;
}

.inner-product-show .product-choose .choose-list table tr a.popen:after {
    font-family: 'iconfont' !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 30px;

    display: inline-block;
    float: right;

    height: 30px;
    margin-left: 4px;

    content: '\e6d2';
    vertical-align: middle;

    color: var(--primary-blue);
    display: none;
}

@media (max-width: 767px) {
    .inner-product-show .product-choose .choose-list table tr a.popen:after {
        font-size: 14px;
        line-height: 20px;

        margin-left: 2px;
    }
}

.inner-product-show .product-choose .choose-list table tr input[type='text'] {
    width: 100%;
    min-width: 100px;

    text-align: center;

    color: var(--primary-blue);
    border: 1px solid #d8d8d8;
    background-color: #fff;
}

.inner-product-show .product-choose .choose-list table tr input[type='checkbox'] {
    cursor: pointer;

    border: 1px solid var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr input::-webkit-input-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea::-webkit-input-placeholder {
    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr input:-o-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:-o-placeholder {
    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr input::-moz-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea::-moz-placeholder {
    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr input:-ms-input-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:-ms-input-placeholder {
    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr input:focus::-webkit-input-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}

.inner-product-show .product-choose .choose-list table tr input:focus::-o-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:focus::-o-placeholder {
    color: #c5c5c5;
}

.inner-product-show .product-choose .choose-list table tr input:focus::-moz-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}

.inner-product-show .product-choose .choose-list table tr input:focus::-ms-input-placeholder,
.inner-product-show .product-choose .choose-list table tr textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 100%;

    display: none;

    width: 390px;
    height: 400px;
    padding: 30px 20px;

    text-align: left;

    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-close {
    font-size: 24px;
    line-height: 40px;

    position: absolute;
    top: -20px;
    right: -20px;

    width: 40px;
    height: 40px;

    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;
    text-align: center;

    color: #666;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-close:after {
    font-family: 'iconfont' !important;

    content: '\e64e';
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-close:hover {
    color: #fff;
    background-color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-text {
    overflow-y: auto;

    height: 100%;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-text::-webkit-scrollbar {
    position: absolute;
    left: 0;

    width: 3px;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-text::-webkit-scrollbar-track {
    background-color: #ececec;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .desc-text::-webkit-scrollbar-thumb {
    background-color: #9d9d9d;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .title-desc h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;

    margin: 0;

    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .title-desc h4 {
    font-size: 16px;
    line-height: 24px;

    margin: 0;

    color: var(--primary-blue);
}

.inner-product-show .product-choose .choose-list table tr .desc-choose .note {
    margin-top: 20px;

    color: #333;
}

.inner-product-show .product-choose .choose-list table tr .desc-choose p {
    font-size: 14px;
    line-height: 24px;

    margin: 0;
}

.inner-product-show .product-choose .choose-list table tr.active .desc-choose {
    display: block;
}

.inner-product-show .product-choose .choose-list .choose-bottom {
    overflow: hidden;

    margin-top: 20px;
}

.inner-product-show .product-choose .choose-list .choose-bottom .product-page {
    display: inline-block;

    margin-top: 6px;
}

.inner-product-show .product-choose .choose-list .choose-bottom .product-page>ul>li {
    font-size: 16px;

    display: inline-block;

    vertical-align: top;
}

.inner-product-show .product-choose .choose-list .choose-bottom .product-page>ul>li a {
    line-height: 30px;

    display: inline-block;

    padding: 0 4px;

    color: var(--primary-blue);
}


.inner-product-show .product-choose .choose-list .choose-bottom a.addcart {
    line-height: 44px;
    display: inline-block;
    float: right;

    padding: 0 26px;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-product-show .product-choose .choose-list .choose-bottom a.addcart:hover {
    background: -webkit-gradient(linear, right top, left top, from(#014DAB), to(#18a7a3));
    background: -webkit-linear-gradient(right, #014DAB, #18a7a3);
    background: linear-gradient(right, #014DAB, #18a7a3);
}

.inner-product-show .product-parameter {
    padding-top: 40px;
}

.inner-product-show .product-parameter .title-parameter {
    font-weight: bold;

    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-product-show .product-parameter .title-parameter h2 {
    font-size: 24px;
    line-height: 56px;

    margin: 0;

    color: #fff;
}

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

.inner-product-show .product-parameter .parameter-sort {
    margin-top: 20px;

    border-bottom: 1px solid #9ecaf5;
}

.inner-product-show .product-parameter .parameter-sort>ul {
    font-size: 0;

    padding-left: 1px;
}

.inner-product-show .product-parameter .parameter-sort>ul>li {
    font-size: 14px;

    display: inline-block;

    margin-bottom: -1px;
    margin-left: -1px;

    vertical-align: top;

    border: 1px solid #9ecaf5;
}

.inner-product-show .product-parameter .parameter-sort>ul>li>a {
    font-size: 16px;
    line-height: 30px;
    font-weight: bold;
    display: inline-block;

    padding: 15px 50px;

    color: #666;
}

@media (max-width: 1199px) {
    .inner-product-show .product-parameter .parameter-sort>ul>li>a {
        font-size: 14px;
        line-height: 24px;
        padding: 10px 20px;
    }
}

.inner-product-show .product-parameter .parameter-sort>ul>li.active {
    border-bottom-color: #fff;
}

.inner-product-show .product-parameter .parameter-sort>ul>li.active>a {
    color: var(--primary-blue);
}

.inner-product-show .product-parameter .parameter-list {
    margin-top: 30px;

    color: #666;
}

.inner-product-show .product-parameter .parameter-list p {
    font-size: 16px;
    line-height: 1.875;

    margin: 0;
}

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

.inner-product-show .product-parameter .parameter-list .yingyong>ul>li {
    padding: 20px 0;

    border-bottom: 1px solid #ddd;
}

@media (max-width: 767px) {
    .inner-product-show .product-parameter .parameter-list .yingyong>ul>li {
        padding: 16px 0;
    }
}

.inner-product-show .product-parameter .parameter-list .yingyong .item {
    position: relative;

    padding-left: 90px;
}

@media (max-width: 767px) {
    .inner-product-show .product-parameter .parameter-list .yingyong .item {
        padding-left: 70px;
    }
}

.inner-product-show .product-parameter .parameter-list .yingyong .item:before {
    position: absolute;
    top: 50%;
    left: 20px;

    display: block;

    width: 30px;
    height: 36px;

    content: '';
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    background: url(../img/download.png) no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    .inner-product-show .product-parameter .parameter-list .yingyong .item:before {
        left: 10px;
    }
}

.inner-product-show .product-parameter .parameter-list .yingyong .item b {
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;

    display: inline;
    overflow: hidden;

    height: 30px;

    color: var(--primary-blue);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-product-show .product-parameter .parameter-list .yingyong .item p {
    font-size: 14px;
    line-height: 24px;
    overflow: hidden;

    height: 24px;
    margin: 6px 0 0 0;

    color: #666;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.inner-product-show .product-parameter .parameter-list .yingyong .item a.down {
    font-size: 16px;
    line-height: 30px;
    float: right;
    display: inline;

    margin-top: 14px;

    color: var(--primary-blue);
}

@media (max-width: 767px) {
    .inner-product-show .product-parameter .parameter-list .yingyong .item a.down {
        font-size: 14px;

        margin-top: 4px;
    }
}

.inner-product-show .product-parameter .parameter-list .yingyong .item a.down:hover {
    text-decoration: underline;

    color: #0a5aa8;
}

.inner-product-show .product-parameter .parameter-list .yingyong .item:hover b {
    text-decoration: underline;

    color: #0a5aa8;
}

.inner-cart {
    padding: 50px 0;
}

.inner-cart .cart-left,
.inner-cart .cart-right {
    float: left;
}

.inner-cart .cart-left {
    position: relative;

    width: 26%;
    padding: 30px;

    text-align: center;

    border: 1px solid #ddd;
}

@media (max-width: 767px) {
    .inner-cart .cart-left {
        width: 100%;
        padding: 20px 10px;
    }
}

.inner-cart .cart-left:before {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 6px;

    content: '';

    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-cart .cart-left p {
    font-size: 18px;
    line-height: 1.88888889;

    margin: 0;
}

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

.inner-cart .cart-left p span {
    font-size: 24px;
    font-weight: bold;

    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .inner-cart .cart-left p span {
        font-size: 20px;
    }
}

.inner-cart .cart-left .submit {
    margin-top: 20px;
}

.inner-cart .cart-left .submit a {
    font-size: 18px;
    line-height: 50px;

    display: block;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

@media (max-width: 767px) {
    .inner-cart .cart-left .submit a {
        font-size: 16px;
        line-height: 40px;
    }
}

.inner-cart .cart-left .submit a:hover {
    background: -webkit-gradient(linear, right top, left top, from(#014DAB), to(#014DAB));
    background: -webkit-linear-gradient(right, #014DAB, #014DAB);
    background: linear-gradient(right, #014DAB, #014DAB);
}

.inner-cart .cart-right {
    width: 74%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .inner-cart .cart-right {
        width: 100%;
        padding: 30px 0 0 0;
    }
}

.inner-cart .cart-right>ul>li {
    padding: 20px 0;

    border-bottom: 1px solid #ddd;
}

.inner-cart .cart-right .item {
    position: relative;

    padding-right: 130px;
}

.inner-cart .cart-right .item .ctt b {
    font-size: 24px;
    font-weight: normal;
    line-height: 30px;

    display: block;
    display: -webkit-box;
    overflow: hidden;

    height: 30px;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

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

@media (max-width: 767px) {
    .inner-cart .cart-right .item .ctt b {
        font-size: 18px;
    }
}

.inner-cart .cart-right .item .ctt p {
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;

    display: -webkit-box;
    overflow: hidden;

    margin: 0;

    color: var(--primary-blue);

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media (max-width: 991px) {
    .inner-cart .cart-right .item .ctt p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .inner-cart .cart-right .item .ctt p {
        font-size: 14px;
    }
}

.inner-cart .cart-right .item .cinfo {
    position: absolute;
    top: 0;
    right: 0;
}

.inner-cart .cart-right .item .cinfo p {
    font-size: 16px;
    line-height: 30px;

    margin: 0;

    color: #666;
}

@media (max-width: 991px) {
    .inner-cart .cart-right .item .cinfo p {
        font-size: 14px;
    }
}

.inner-cart .cart-right .item .cinfo b {
    font-size: 18px;
    font-weight: normal;
    line-height: 24px;

    display: block;

    color: var(--primary-blue);
}

@media (max-width: 991px) {
    .inner-cart .cart-right .item .cinfo b {
        font-size: 16px;
    }
}

.inner-cart .cart-right .submit {
    margin-top: 40px;

    text-align: right;
}

.inner-cart .cart-right .submit a {
    font-size: 18px;
    line-height: 50px;

    display: inline-block;

    padding: 0 60px;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

@media (max-width: 767px) {
    .inner-cart .cart-right .submit a {
        font-size: 16px;
        line-height: 40px;

        padding: 0 40px;
    }
}

.inner-cart .cart-right .submit a:hover {
    background: -webkit-gradient(linear, right top, left top, from(#014DAB), to(#014DAB));
    background: -webkit-linear-gradient(right, #014DAB, #014DAB);
    background: linear-gradient(right, #014DAB, #014DAB);
}

.inner-contact .contact {
    margin-top: 30px;
}

.inner-contact .contact .title-contact {
    display: inline-block;

    text-align: left;

    background-image: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}

.inner-contact .contact .title-contact h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 24px;

    margin: 0;
}

@media (max-width: 1199px) {
    .inner-contact .contact .title-contact h1 {
        font-size: 20px;
    }
}

.inner-contact .contact .title-contact p {
    font-family: 'OpenSans', Arial;
    font-size: 16px;
    font-weight: normal;

    display: block;

    letter-spacing: 3px;
}

@media (max-width: 1199px) {
    .inner-contact .contact .title-contact p {
        font-size: 14px;

        letter-spacing: 2.2px;
    }
}

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

@media (max-width: 767px) {
    .inner-contact .contact .note {
        margin-top: 10px;
    }
}

.inner-contact .contact .note p {
    font-size: 16px;
    line-height: 30px;

    position: relative;

    margin-bottom: 20px;
    padding: 10px 0 10px 60px;

    color: #666;
    border-bottom: 1px solid #e7e7e7;
}

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

        margin-bottom: 10px;
        padding-left: 40px;
    }
}

.inner-contact .contact .note p span {
    font-weight: bold;

    position: absolute;
    top: 10px;
    left: 0;

    color: var(--primary-blue);
}

.inner-contact .contact .map {
    height: 460px;
}

@media (max-width: 991px) {
    .inner-contact .contact .map {
        height: 300px;
        margin-top: 30px;
    }
}

.inner-contact .contact .map #dituContent {
    height: 100%;
}


.inner-about .inquiry {
    padding-top: 10px;
    padding-bottom: 30px;
}

.inner-about .inquiry form input,
.inner-about .inquiry form textarea {
    font-size: 16px;
    line-height: 30px;

    width: 100%;
    margin-top: 50px;
    padding: 15px 16px;

    resize: vertical;

    color: rgba(0, 0, 0, .8);
    border: 1px solid #eee;
    outline: none;
    background: none;
    background-color: #f8f8f8;
}

@media (max-width: 1199px) {

    .inner-about .inquiry form input,
    .inner-about .inquiry form textarea {
        font-size: 14px;

        margin-top: 20px;
    }
}

@media (max-width: 767px) {

    .inner-about .inquiry form input,
    .inner-about .inquiry form textarea {
        line-height: 24px;

        padding: 10px;
    }
}

.inner-about .inquiry form input::-webkit-input-placeholder,
.inner-about .inquiry form textarea::-webkit-input-placeholder {
    color: #999;
}

.inner-about .inquiry form input:-o-placeholder,
.inner-about .inquiry form textarea:-o-placeholder {
    color: #999;
}

.inner-about .inquiry form input::-moz-placeholder,
.inner-about .inquiry form textarea::-moz-placeholder {
    color: #999;
}

.inner-about .inquiry form input:-ms-input-placeholder,
.inner-about .inquiry form textarea:-ms-input-placeholder {
    color: #999;
}

.inner-about .inquiry form input:focus::-webkit-input-placeholder,
.inner-about .inquiry form textarea:focus::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .5);
}

.inner-about .inquiry form input:focus::-o-placeholder,
.inner-about .inquiry form textarea:focus::-o-placeholder {
    color: rgba(0, 0, 0, .5);
}

.inner-about .inquiry form input:focus::-moz-placeholder,
.inner-about .inquiry form textarea:focus::-moz-placeholder {
    color: rgba(0, 0, 0, .5);
}

.inner-about .inquiry form input:focus::-ms-input-placeholder,
.inner-about .inquiry form textarea:focus::-ms-input-placeholder {
    color: rgba(0, 0, 0, .5);
}

.inner-about .inquiry form .submit {
    font-size: 18px;
    line-height: 66px;

    display: inline-block;

    margin-top: 40px;
    padding: 0 40px;
    color: #fff;
    border-radius: 0;
    outline: none;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.pages {
    margin: 40px auto 10px;
    width: auto;
    height: 34px;
    text-align: center;
}

.pages ul li {
    display: inline-block;
}

.pages a,
.pages span {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 4px 12px;
    margin: 0 3px;
    line-height: 24px;
    background: #fff;
    color: #666;
    border-radius: 4px;
}

.pages .cur span,
.pages a:hover {
    color: #4770FF;
    border: 1px solid #4770FF;
}

.pages .dis span {
    color: #c9c6c6;
    border: 1px solid #eee;
}

@media (max-width: 991px) {
    .inner-about .inquiry form .submit {
        line-height: 46px;
    }
}

@media (max-width: 767px) {
    .inner-about .inquiry form .submit {
        font-size: 15px;
    }
}

.inner-about .inquiry form .submit:hover {
    text-decoration: underline;
}

nav {
    text-align: center;
}

.pagination {
    margin: 50px 0 0 0;
    padding: 0;
}

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

.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%;
    background-color: rgba(255, 255, 255, .7);
}

@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: var(--primary-blue);
}

.pagination>li>a:focus,
.pagination>li>a:hover,
.pagination>li>span:focus,
.pagination>li>span:hover {
    color: #fff;
    background-color: var(--primary-blue);
}

.product_content p,
.product_content p span {
    white-space: pre-wrap !important;
}

.product_content img {
    max-width: 100%;
    height: auto;
}

.sclass .content_txt {
    font-size: 14px;
    color: #777;
    text-align: left;
}

.sclass img {
    max-width: 100%;
    height: auto;
    margin: 10px 0 20px 0;
}

/*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;
}

.home-catalog .catalog>ul>li:nth-child(1) ul li:last-child {
    /* margin-top: -30px; */
}

.select-product {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.select-product select {
    line-height: 34px;

    height: 34px;
    padding: 0 10px;

    color: #666;
    border: 1px solid #dcdcdc;
    outline: none;
    max-width: 120px;
    appearance: none;
    background: url(../images/select_bg.png) no-repeat right center;
}

@media(max-width:767px) {
    .select-product {
        margin-right: 0;
    }

    .select-product select {
        max-width: 80px;
    }
}

.select-product select option {
    line-height: 34px;
}

.header .nav-right form {
    display: inline-block;
    vertical-align: middle;
}

.header .cart {
    margin-top: 16px;
}


.screen-choose {
    margin-top: 16px;
    padding: 10px;

    border: 1px solid #d4d9de;
}

.screen-choose p {
    font-size: 16px;

    display: inline-block;

    margin: 0 4px;

    vertical-align: middle;

    color: #666;
}

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

.screen-choose .screen-item {
    display: inline-block;

    margin: 4px;

    vertical-align: middle;
}

.screen-choose .screen-item .btn-screen {
    line-height: 24px;

    padding: 5px 20px;

    cursor: pointer;
    -webkit-transition: all .2s;
    transition: all .2s;

    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

@media (max-width: 767px) {
    .screen-choose .screen-item .btn-screen {
        padding: 5px 10px;
    }
}

.screen-choose .screen-item .btn-screen:hover {
    background: #ebebeb !important;
}

.screen-choose .screen-item .fixed-screen {
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;

    display: none;

    width: 100%;
    height: 100%;

    background-color: rgba(0, 0, 0, .5);
}

.screen-choose .screen-item .fixed-screen .screen-wrap {
    position: absolute;
    top: 50%;
    left: 50%;

    overflow: hidden;

    width: 80%;

    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);

    border-radius: 10px;
    background-color: #fff;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .title-screen {
    padding: 10px 30px;

    background-color: #edeff0;
}

@media (max-width: 767px) {
    .screen-choose .screen-item .fixed-screen .screen-wrap .title-screen {
        padding: 10px;
    }
}

.screen-choose .screen-item .fixed-screen .screen-wrap .title-screen h3 {
    font-size: 20px;
    line-height: 30px;

    margin: 0;
}

@media (max-width: 991px) {
    .screen-choose .screen-item .fixed-screen .screen-wrap .title-screen h3 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .screen-choose .screen-item .fixed-screen .screen-wrap .title-screen h3 {
        font-size: 16px;
    }
}

.screen-choose .screen-item .fixed-screen .screen-wrap .title-screen .close-screen {
    font-size: 30px;
    line-height: 30px;

    position: absolute;
    top: 10px;
    right: 30px;

    cursor: pointer;

    color: var(--primary-blue);
}

.screen-choose .screen-item .fixed-screen .screen-wrap .title-screen .close-screen:before {
    font-family: 'iconfont' !important;

    display: inline-block;

    content: '\e629';
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-info {
    font-size: 0;

    /* margin: 0 -5px; */
    padding: 20px 30px;

    border-bottom: 1px solid #d4d9dd;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-info .checkbox-inline {
    font-size: 14px;
    font-weight: normal;

    display: inline-block;

    min-width: 16.66666667%;
    margin: 10px 0;
    /* padding: 0 5px; */

    vertical-align: top;
}

@media (max-width: 767px) {
    .screen-choose .screen-item .fixed-screen .screen-wrap .screen-info .checkbox-inline {
        min-width: 50%;
    }
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-info .checkbox-inline input {
    width: 14px;
    height: 14px;
    margin-right: 6px;

    border: 1px solid #767676;
    border-radius: 4px;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-info .checkbox-inline label {
    font-weight: normal;

    margin: 0;

    cursor: pointer;

    color: #666;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom {
    padding: 18px 30px;
}

@media (max-width: 767px) {
    .screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom {
        padding: 10px;
    }
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom .clearall {
    line-height: 36px;

    display: inline-block;

    padding: 0;

    color: var(--primary-blue);
    border: none;
    outline: none;
    background: none;
    box-shadow: none;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom .clearall:hover {
    color: #0a5aa8;
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom .primary {
    line-height: 36px;

    display: inline-block;
    float: right;

    padding: 0;
    padding: 0 14px;

    color: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;
    background-color: var(--primary-blue);
}

.screen-choose .screen-item .fixed-screen .screen-wrap .screen-bottom .primary:hover {
    background-color: #0a5aa8;
}

.banner .slick-slide {
    height: auto;
}

.header .link {
    position: relative;
}

.header .link .login {
    position: relative;
}

.header .logindown {
    font-size: 14px;

    position: absolute;
    z-index: 2;
    top: 100%;
    right: -50px;

    display: none;

    width: 200px;
    padding: 10px;

    text-align: left;

    color: #333;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.header .logindown>li {
    padding: 6px 0;

    border-bottom: 1px solid #dcdcdc;
}

.header .logindown>li p {
    line-height: 30px;

    display: block;
    float: none;

    margin: 0;
    padding: 0 10px;
}

.header .logindown a {
    line-height: 24px !important;

    display: block !important;

    margin: 0 !important;
    padding: 4px 10px;
}

.header .logindown a:before {
    display: none;
}

.header .logindown a:hover {
    color: var(--primary-blue);
}

.inner-location .title-location h3 {
    font-size: 30px;
    font-weight: bold;
    line-height: 1;

    margin: 0 0 20px;
}

@media (max-width: 991px) {
    .inner-location .title-location h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .inner-location .title-location h3 {
        font-size: 20px;
    }
}

.inner-order {
    padding: 50px 0;
}

.inner-order .order-left,
.inner-order .order-right {
    float: left;
}

.inner-order .order-left {
    position: relative;

    width: 26%;

    text-align: center;
}

@media (max-width: 767px) {
    .inner-order .order-left {
        width: 100%;
    }
}

.inner-order .order-left>ul>li {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .inner-order .order-left>ul>li {
        display: inline-block;

        margin-bottom: 0;

        vertical-align: top;
    }
}

.inner-order .order-left>ul>li a {
    font-size: 16px;

    display: block;

    padding: 20px;

    text-align: center;

    background-color: #ebebeb;
}

@media (max-width: 991px) {
    .inner-order .order-left>ul>li a {
        padding: 10px 30px;
    }
}

.inner-order .order-left>ul>li.active a,
.inner-order .order-left>ul>li:hover a {
    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-order .order-right {
    width: 74%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .inner-order .order-right {
        width: 100%;
        padding: 30px 0 0 0;
    }
}

.inner-order .order-right>ul>li {
    padding: 20px 0;

    border-bottom: 1px solid #ddd;
}

.inner-order .order-right .order-list {
    margin-bottom: 30px;
}

.inner-order .order-right .order-list .item {
    display: block;
}

.inner-order .order-right .order-list .item .title-item {
    padding: 10px;

    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-order .order-right .order-list .item .title-item h3 {
    font-size: 14px;
    line-height: 30px;

    margin: 0;

    color: #fff;
}

.inner-order .order-right .order-list .item .desc {
    background-color: #f2f2f2;
}

.inner-order .order-right .order-list .item .desc>ul>li:nth-child(2n) {
    background-color: #ebebeb;
}

.inner-order .order-right .order-list .item .desc>ul>li .tt {
    font-size: 0;
}

.inner-order .order-right .order-list .item .desc>ul>li p,
.inner-order .order-right .order-list .item .desc>ul>li b {
    font-size: 14px;
    line-height: 30px;

    display: inline-block;

    margin: 0;
    padding: 6px 10px;

    vertical-align: top;
}

.inner-order .order-right .order-list .item .desc>ul>li p {
    width: 20%;
}

@media (max-width: 767px) {
    .inner-order .order-right .order-list .item .desc>ul>li p {
        width: 50%;
    }
}

.inner-order .order-right .order-list .item .desc>ul>li p:nth-child(2) {
    width: 70%;
}

@media (max-width: 767px) {
    .inner-order .order-right .order-list .item .desc>ul>li p:nth-child(2) {
        width: 25%;
    }
}

.inner-order .order-right .order-list .item .desc>ul>li b {
    width: 10%;

    color: var(--primary-blue);
}

@media (max-width: 767px) {
    .inner-order .order-right .order-list .item .desc>ul>li b {
        width: 25%;
    }
}

.inner-order .order-right .order-list .item .total {
    font-size: 16px;
    font-weight: bold;

    margin-top: 20px;

    color: var(--primary-blue);
}

.inner-personal {
    padding: 50px 0;
}

.inner-personal .personal-left,
.inner-personal .personal-right {
    float: left;
}

.inner-personal .personal-left {
    position: relative;

    width: 26%;

    text-align: center;
}

@media (max-width: 767px) {
    .inner-personal .personal-left {
        width: 100%;
    }
}

.inner-personal .personal-left>ul>li {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .inner-personal .personal-left>ul>li {
        display: inline-block;

        margin-bottom: 0;

        vertical-align: top;
    }
}

.inner-personal .personal-left>ul>li a {
    font-size: 16px;

    display: block;

    padding: 20px;

    text-align: center;

    background-color: #ebebeb;
}

@media (max-width: 991px) {
    .inner-personal .personal-left>ul>li a {
        padding: 10px 30px;
    }
}

.inner-personal .personal-left>ul>li.active a,
.inner-personal .personal-left>ul>li:hover a {
    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-personal .personal-right {
    width: 74%;
    padding-left: 30px;
}

@media (max-width: 767px) {
    .inner-personal .personal-right {
        width: 100%;
        padding: 30px 0 0 0;
    }
}

.inner-personal .personal-right .personal {
    max-width: 600px;
    margin: 0 auto;
}

.inner-personal .personal-right .personal input {
    font-size: 16px;
    line-height: 24px;

    width: 100%;
    margin-top: 20px;
    padding: 10px;

    border: 1px solid #dadada;
    outline: none;
    background: none;
}

@media (max-width: 767px) {
    .inner-personal .personal-right .personal input {
        font-size: 14px;

        margin-top: 10px;
    }
}

.inner-personal .personal-right .personal input::-webkit-input-placeholder,
.inner-personal .personal-right .personal textarea::-webkit-input-placeholder {
    color: #aeaeae;
}

.inner-personal .personal-right .personal input:-o-placeholder,
.inner-personal .personal-right .personal textarea:-o-placeholder {
    color: #aeaeae;
}

.inner-personal .personal-right .personal input::-moz-placeholder,
.inner-personal .personal-right .personal textarea::-moz-placeholder {
    color: #aeaeae;
}

.inner-personal .personal-right .personal input:-ms-input-placeholder,
.inner-personal .personal-right .personal textarea:-ms-input-placeholder {
    color: #aeaeae;
}

.inner-personal .personal-right .personal input:focus::-webkit-input-placeholder,
.inner-personal .personal-right .personal textarea:focus::-webkit-input-placeholder {
    color: #c5c5c5;
}

.inner-personal .personal-right .personal input:focus::-o-placeholder,
.inner-personal .personal-right .personal textarea:focus::-o-placeholder {
    color: #c5c5c5;
}

.inner-personal .personal-right .personal input:focus::-moz-placeholder,
.inner-personal .personal-right .personal textarea:focus::-moz-placeholder {
    color: #c5c5c5;
}

.inner-personal .personal-right .personal input:focus::-ms-input-placeholder,
.inner-personal .personal-right .personal textarea:focus::-ms-input-placeholder {
    color: #c5c5c5;
}

.inner-personal .personal-right .personal .submit {
    font-size: 16px;
    line-height: 44px;

    display: inline-block;

    margin-top: 20px;
    padding: 0 40px;

    vertical-align: middle;

    color: #fff;
    border: none;
    border-radius: 0;
    outline: none;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}

.inner-personal .personal-right .personal .submit:hover {
    background: -webkit-gradient(linear, right top, left top, from(#014DAB), to(#014DAB));
    background: -webkit-linear-gradient(right, #014DAB, #014DAB);
    background: linear-gradient(right, #014DAB, #014DAB);
}

.inner-cart .cart-right input {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #dcdcdc;
    outline: none;
    margin-top: 20px;
}

.inner-cart .cart-right input:focus {
    color: #c5c5c5c;
}

.inner-cart .cart-right .submit input {
    font-size: 16px;
    line-height: 30px;
    width: 200px;
    margin: 0 auto;

    display: block;

    -webkit-transition: all .2s;
    transition: all .2s;

    color: #fff;
    background: -webkit-gradient(linear, right top, left top, from(#18a7a3), to(#014DAB));
    background: -webkit-linear-gradient(right, #18a7a3, #014DAB);
    background: linear-gradient(right, #18a7a3, #014DAB);
}