﻿/*滚动条样式*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f4f7ff;
}

::-webkit-scrollbar-thumb {
    background: #ff9515;
    height: 60px;
}

::-webkit-scrollbar-thumb:window-inactive {
    background: #ff9515;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background: #ff9515;
}

body {
    font-family: "Helvetica Neue", "Helvetica", "Arial", "sans-serif", "微软雅黑";
    position: relative;
   
}

i,
em {
    font-style: normal;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
}

.clear {
    clear: both;
}

@media (min-width: 1440px) {
    .container {
        width: 1430px;
    }

    .section .container {
        width: 1250px;
    }
}

.Animation {
    -webkit-transition: all 1s;
    transition: all 1s;
    opacity: 0;
}

.fullpage {
    width: 100%;
    overflow: hidden;
}

.section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.section ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.img {
    width: 100%;
    overflow: hidden;
}

.img img {
    display: block;
    width: 100%;

    transition: all .5s;
}

.section4_list .img img {
    height: 250px;
}

@media (max-width: 767px) {
    .section .container {
        width: 100%;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {

    body,
    .section {
        padding-top: 0;
    }
}

@media (min-width: 1200px) {

    body,
    .section {}
}

/*foot*/
.footer {
    background-color: #121212;
    font-size: 14px;
    line-height: 20px;
    color: #ccc;
    text-align: center;
    padding: 25px 0;
    text-transform: uppercase;
}

.footer a {
    display: inline-block;
    color: #ccc;
}

.footer a:hover {
    color: #fff;
}

.foot_nav {
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.foot_nav a {
    color: #fff;
    font-size: 16px;
    line-height: 1;
    border-right: 2px #afafaf solid;
    padding: 0 10px;
}

.foot_nav a:last-child {
    border-right: 0;
}

.section .footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 15px 0;
}

.section .foot_nav {
    display: none;
}

.gotop {
    width: 40px;
    height: 40px;
    background: url(../images/gotop.png) no-repeat center;
    background-size: contain;
    position: fixed;
    right: 5px;
    bottom: 110px;
    cursor: pointer;
    display: none;
    transition: all .5s;
}

.gotop:hover {
    background: url(../images/gotop1.png) no-repeat center;
    background-size: contain;
}

@media (max-width: 767px) {
    .footer {
        font-size: 12px;
        line-height: 16px;
        padding: 10px 0 !important;
    }

    .foot_nav,
    .section .copyright a:nth-child(1) {
        display: none;
    }

    .gotop {
        width: 30px;
        height: 30px;
    }
}

/*导航*/
.navbar-default {
    background-color: #1b43886b;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar-brand {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar-brand img {
    display: block;
    height: 20px;
}

.navbar-default .navbar-toggle {
    border: 0;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #ff8b00;
    transition: all .5s;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: transparent;
}

.navbar-default .menu_close .icon-bar:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 6px;
}

.navbar-default .menu_close .icon-bar:nth-child(2) {
    display: none;
}

.navbar-default .menu_close .icon-bar:nth-child(3) {
    transform: rotate(-45deg);
}

.navbar-default .navbar-nav>li>a {
    text-align: center;
    color: #fff;
    transition: all .5s;
    padding-left: 50px;
    padding-right: 30px;
    text-transform: uppercase;
}

.navbar-default .nav>li>a:focus,
.navbar-default .nav>li>a:hover,
.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #ff9515;
    background-color: transparent;
}

.navbar-default .navbar-nav>li>a:after {
    content: "";
    width: 7px;
    height: 7px;
    border: 1px #fff solid;
    border-radius: 100%;
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -4px;
    z-index: 1;
    transition: all .5s;
}

.navbar-default .navbar-nav>li>a:before {
    content: "";
    width: 1px;
    height: 25px;
    border-left: 1px #fff dotted;
    position: absolute;
    left: 33px;
    top: 27px;
    opacity: .52;
    transition: all .5s;
}

.navbar-default .navbar-nav>li:last-child>a:before {
    display: none;
}

.navbar-default .navbar-nav>li:hover>a:after,
.navbar-default .navbar-nav>.active>a:after {
    border-color: #ffa335;
    background-color: #ffa335;
}

.navbar-default .navbar-nav>li:hover>a:before,
.navbar-default .navbar-nav>.active>a:before {
    border-left-color: #ffa335;
}

.navbar-collapse::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.navbar-collapse {
    background-color: rgba(0, 0, 0, .4);
    background-size: cover;
    width: 186px;
    position: fixed;
    right: 15px;
    top: 50px;
    z-index: 1;
    border-top: 0;
    box-shadow: none;
}

.top_tel {
    float: right;
    margin: 15px 0;
}

.top_tel a {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    line-height: 20px;
    color: #e9e9e9;
}

.top_tel a:before {
    flex: 0 0 auto;
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/icon1.png) no-repeat center;
    background-size: contain;
    display: block;
    margin-right: 10px;
}

.language {
    float: right;
    display: flex;
    flex-direction: row;
    align-content: center;
    margin: 17px 0;
}

.language a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    padding: 0 23px;
}

.language a+a {
    border-left: 1px #dcdcdc solid;
}

.language a:hover,
.language a.active {
    color: #fff;
}

@media (max-width: 767px) {
    .top_tel a span {
        display: none;
    }

    .top_tel a:before {
        margin-right: 5px;
    }

    .top_tel a,
    .language a {
        font-size: 14px;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .header {
        display: none;
    }
}

@media (min-width: 768px) {
    .navbar-default .navbar-nav>li>a:before {
        height: 30px;
        top: 34px;
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-nav {
        float: none !important;
        margin: 7.5px -15px;
    }

    .navbar-header {
        float: none;
    }

    .navbar-collapse.collapse {
        display: none !important;
    }

    .collapse.in {
        display: block !important;
    }

    .navbar-nav>li {
        float: none;
    }

    .navbar-collapse.in {
        overflow-y: auto !important;
    }

    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: -15px;
        margin-left: -15px;
    }

    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: 0;
    }

    .navbar-fixed-top .navbar-collapse {
        padding-right: 15px;
        padding-left: 15px;
    }

    .language {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 1200px) {
    .header .container-fluid {
        padding: 0 50px;
    }

    .navbar-brand {
        padding-top: 12px;
        padding-bottom: 22px;
    }

    .navbar-brand img {
        height: 53px;
    }

    .navbar-toggle {
        margin-top: 22px;
        margin-bottom: 22px;
    }

    .navbar-toggle .icon-bar {
        width: 40px;
        height: 4px;
        border-radius: 2px;
    }

    .navbar-toggle .icon-bar+.icon-bar {
        margin-top: 8px;
    }

    .navbar-default .menu_close .icon-bar:nth-child(1) {
        top: 12px;
    }

    .navbar-collapse {
        top: 90px;
        right: 50px;
    }

    .navbar-default .navbar-nav>li>a {
        font-size: 16px;
    }

    .top_tel {
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .language {
        margin: 37px 40px;
    }
}

@media (min-width: 1440px) {
    .header .container-fluid {
        padding: 0 100px;
    }

    .navbar-collapse {
        right: 100px;
    }
}

/*第一屏*/
.section1 {
    display: block;
}

.section1 .swiper-container {
    height: 100%;
}

.banner_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.banner_text .container {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 9;
    transform: translate(-50%, -50%);
}

.banner_text img {
    display: block;
    width: 100%;
}

.banner1 .banner_text img {
    transform: scale(0);
}

.banner2 .banner_text img {
    transform: translateY(-100%);
}

.banner3 .banner_text img {
    transform: translateY(100%);
}

.banner4 .banner_text img {
    transform: translateX(-100%);
}

.banner5 .banner_text img {
    transform: translateX(100%);
}

#fp-nav ul li {
    width: auto;
    height: auto;
    margin: 0;
}

#fp-nav ul li a:after {
    content: "";
    width: 1px;
    height: 0;
    background-color: #ec870e;
    display: block;
    margin: 5px auto;
    transition: all .5s;
}

#fp-nav ul li a:hover:after,
#fp-nav ul li a.active:after {
    height: 20px;
}

#fp-nav ul li a span {
    width: 8px;
    height: 8px;
    margin: 0 4px 10px;
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background: transparent;
    border: 1px transparent solid;
    transition: all .5s;
}

#fp-nav ul li:hover a span,
#fp-nav ul li a.active span,
#fp-nav ul li:hover a.active span {
    width: 16px;
    height: 16px;
    margin: 0;
    border-color: #ec870e;
}

#fp-nav ul li a span:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 100%;
    border: 1px #999 solid;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#fp-nav.section1-fq-nav ul li a span:after {
    border-color: #fff;
}

#fp-nav ul li:hover a span:after,
#fp-nav ul li a.active span:after,
#fp-nav ul li:hover a.active span:after {
    background-color: #ec870e;
    border-color: #ec870e;
}

#fp-nav.right {
    right: 15px;
}

@media (max-width: 767px) {
    #fp-nav.right {
        right: 5px;
    }

    .section1 .swiper-button-next,
    .section1 .swiper-button-prev {
        width: 18px;
        height: 29px;
        margin-top: -15px;
        background-size: contain;
    }

    .section1 .swiper-button-next {
        right: 20px;
    }

    .section1 .swiper-button-prev {
        left: 20px;
    }

    .banner_bg_PC,
    .banner_text .PC_img {
        display: none;
    }
}

@media (min-width: 768px) {
    .section1 .swiper-button-next {
        right: 40px;
    }

    .section1 .swiper-button-prev {
        left: 40px;
    }

    .section1 .swiper-pagination-bullets {
        bottom: 30px;
    }
}

/*首页标题*/
.index_title {
    text-align: center;
    transform: scale(0);
    margin-bottom: 30px;
    position: relative;
}

.active .index_title {
    opacity: 1;
    transform: scale(1);
}

.index_title a {
    display: inline-block;
    color: #333;
    border: 2px #8a8a8a solid;
    border-bottom: 0;
    padding: 10px 20px 0;
    position: relative;
}

.index_title a:before,
.index_title a:after {
    content: "";
    width: 15px;
    height: 2px;
    background-color: #8a8a8a;
    position: absolute;
    bottom: 0;
}

.index_title a:before {
    left: 0;
}

.index_title a:after {
    right: 0;
}

.index_title span {
    display: block;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: -6px;
    letter-spacing: 1px;
}

.index_title h2 {
    font-size: 24px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}

.index_title h2:before,
.index_title h2:after {
    content: "";
    width: 50px;
    height: 2px;
    background-color: #8a8a8a;
    position: absolute;
    top: 50%;
    margin-top: -1px;
}

.index_title h2:before {
    left: -60px;
}

.index_title h2:after {
    right: -60px;
}

.index_title h2 {
    color: #fff;

}

.index_title span {
    color: #fff;

}

.index_title h2 i {
    color: #ff8b00;
}

.index_more {
    text-align: center;
    transform: scale(0);
    margin-top: 15px;
}

.active .index_more {
    opacity: 1;
    transform: none;
    transition-delay: 1s;
}

.index_more a {
    display: inline-block;
    font-size: 12px;
    line-height: 20px;
    color: #ffffff;
    text-transform: uppercase;
    border: 1px #ffffff solid;
    padding: 5px 20px;
}

.index_more a:hover {
    color: #fff;
    background-color: #2755a5;
}

@media (min-width: 768px) {
    .index_title a {
        padding: 20px 55px 0;
    }

    .index_title a:before,
    .index_title a:after {
        width: 30px;
    }

    .index_title span {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: -7px;
        letter-spacing: 3px;
    }

    .index_title h2 {
        font-size: 32px;
    }

    .index_title h2:before,
    .index_title h2:after {
        width: 120px;
    }

    .index_title h2:before {
        left: -140px;
    }

    .index_title h2:after {
        right: -140px;
    }

    .index_more a {
        font-size: 14px;
        padding: 8px 30px;
    }
}

@media (min-width: 1200px) {
    .index_title a {
        padding: 20px 60px 0;
    }

    .index_title a:before,
    .index_title a:after {
        width: 60px;
    }

    .index_title span {
        font-size: 16px;
        margin-bottom: -8px;
    }

    .index_title h2 {
        font-size: 38px;
    }

    .index_title h2:before,
    .index_title h2:after {
        width: 180px;
    }

    .index_title h2:before {
        left: -200px;
    }

    .index_title h2:after {
        right: -200px;
    }

    .index_more a {
        font-size: 18px;
        padding: 12px 45px;
    }
}

@media (min-width: 1440px) {
    .index_title a {
        padding: 20px 85px 0;
    }

    .index_title span {
        font-size: 18px;
        margin-bottom: -9px;
    }

    .index_title h2 {
        font-size: 45px;
    }

    .index_title h2:before,
    .index_title h2:after {
        width: 224px;
    }

    .index_title h2:before {
        left: -260px;
    }

    .index_title h2:after {
        right: -260px;
    }
}

/*第二屏*/
.section2_list .column:nth-child(1) {
    transform: translate3d(-100%, 0, 0);
}

.section2_list .column:nth-child(2) {
    transform: translate3d(100%, 0, 0);
}

.active .section2_list .column {
    opacity: 1;
    transform: none;
    transition-delay: .5s;
}

.section2_list_left>h2 {
    font-size: 16px;
    color: #ff8b00;
    font-weight: bold;
    margin: 0;
}

.section2_list_left>h2:after {
    content: "";
    width: 42%;
    height: 1px;
    background-color: #2755a5;
    opacity: .46;
    display: block;
    margin-top: 20px;
}

.section2_list_left .text {
    color: #fff;
    line-height: 36px;
    height: 180px;
    overflow: hidden;
    margin: 15px 0;
}

.section2_list_left .text p {
    margin: 0;
}

.index_about_more {
    text-align: left;
    transform: translate3d(0, 100%, 0);
}

.active .index_about_more {
    opacity: 1;
    transform: none;
    transition-delay: 1s;
}

.index_about_more a {
    display: inline-block;
    border: 1px rgba(255, 255, 255, 0.63) solid;
    color: #ffffff;
    background: url(../images/icon2.png) no-repeat center right 30px;
    background-size: 30px auto;
    padding: 5px 20px;
    padding-right: 80px;
    text-transform: uppercase;
}

.index_about_more a:hover {
    color: #ff8b00;
    border-color: #ff8b00;
    background-image: url(../images/icon2_1.png);
}

.section2_list .img {
    box-shadow: 0 0 9px rgba(0, 0, 0, .3);
}

.section2_list .img:hover img {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .section2_list .column:nth-child(2) {
        display: none;
    }

    .section2_list_left>h2:after {
        margin-top: 10px;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .section2_list_left .text {
        line-height: 30px;
        height: 90px;
    }
}

@media (min-width: 768px) {
    .section2_list {
        margin-top: 50px;
    }

    .section2_list .column {
        padding: 15px;
    }

    .section2_list_left>h2 {
        font-size: 20px;
    }

    .section2_list_left .text {
        height: 216px;
        margin: 30px 0;
    }
}

@media (min-width: 1200px) {
    .section2_list {
        margin-left: -25px;
        margin-right: -25px;
        margin-top: 80px;
    }

    .section2_list .column {
        padding: 15px 25px;
    }

    .section2_list_left>h2 {
        font-size: 24px;
    }

    .section2_list_left>h2:after {
        margin-top: 40px;
    }

    .section2_list_left .text {
        margin-bottom: 80px;
    }
}

/*第三屏*/
.section3 .index_title a {
    color: #fffefe;
    border-color: #f3f3f3;
}

.section3 .index_title span {
    color: #ff8b00;
}

.section3 .index_title a:before,
.section3 .index_title a:after,
.section3 .index_title h2:before,
.section3 .index_title h2:after {
    background-color: #f3f3f3;
}

.section3_list {
    margin-left: -6px;
    margin-right: -6px;
    transform: translate3d(0, 100%, 0);
}

.active .section3_list {
    opacity: 1;
    transform: none;
    transition-delay: .5s;
}

.section3_list .column {
    padding: 0 6px;
    margin: 6px 0;
}

.section3_list .swiper-container {
    height: 100%;
    padding: 6px 0;
}

.section3_list>.column>.inner {
    width: 100%;
    height: 100%;
    padding: 6px 0;
}

.section3_list>.column>.inner>.img,
.section3_list .swiper-slide .img {
    width: 100%;
    height: 100%;
}

.section3_list1 {
    margin-left: -6px;
    margin-right: -6px;
}

.section3_list1 a {
    display: block;
    background-color: #fff;
    padding: 5px;
    color: #333;
}

.section3_list1 a h2 {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    padding: 10px 0;
    text-transform: uppercase;
}

.section3_list1 a .img img {
    max-width: 60px;
    margin: 0 auto;
}

.section3_list1 a em {
    display: block;
    text-align: right;
    margin-top: 10px;
    text-transform: uppercase;
}

.section3_list1 a:hover h2 {
    color: #2755a5;
}

@media (max-width: 767px) {
    .section3 .index_title {
        margin-bottom: 15px;
    }

    .section3_list .col-md-3 {
        display: none;
    }

    .section3_list .col-md-9 {
        margin: 0;
    }

    .section3_list1 a em {
        font-size: 12px;
    }
}

@media (max-width: 359px) {
    .section3_list1 .column:nth-child(n+5) {
        display: none;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .section3_list1 .column {
        width: 25%;
    }

    .section3_list1 .column:nth-child(n+5) {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .section3_list {
        display: flex;
        flex-direction: row;
    }

    .section3_list1 a {
        padding: 10px;
    }

    .section3_list1 a h2 {
        font-size: 20px;
        padding: 20px 0;
    }

    .section3_list1 a .img img {
        max-width: 136px;
    }
}

@media (min-width: 1200px) {
    .section3_list {
        margin: 10px 0;
    }
}

/*第四屏*/
.section4_list {
    transform: translate3d(0, 100%, 0);
    position: relative;
}

.active .section4_list {
    opacity: 1;
    transform: none;
    transition-delay: .5s;
}

.section4_list a {
    display: block;
    color: #333;
    position: relative;
    padding-bottom: 10px;
    position: relative;
}

.section4_list a:before,
.section4_list a:after {
    content: "";
    width: 0;
    height: 3px;
    background-color: #2755a5;
    position: absolute;
    transition: all .8s;
}

.section4_list a:before {
    top: 0;
    left: 0;
}

.section4_list a:after {
    bottom: 10px;
    right: 0;
}

.section4_list a:hover:before,
.section4_list a:hover:after {
    width: 100%;
}

.section4_list a .text {
    background-color: #fff;
    padding: 10px;
    transition: all .5s;
}

.section4_list a:hover .text {
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
}

.section4_list a h2 {
    font-size: 12px;
    line-height: 20px;
    height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 0 0 5px;
}

.section4_list a .date {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 5px;
}

.section4_list a .date:before {
    content: "";
    width: 66%;
    height: 1px;
    background-color: #bababa;
    opacity: .5;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.section4_list a .date span {
    font-size: 12px;
    color: #888;
}

.section4_list a .date em {
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/icon3.png) no-repeat center;
    background-size: contain;
}

.section4_list a:hover .date em {
    background-image: url(../images/icon3_1.png);
}

.section4_list .swiper-pagination {
    width: 100%;
}

.section4_list .swiper-pagination-bullet {
    opacity: .6;
    margin: 0 5px;
}

.section4_list .swiper-pagination-bullet-active {
    background-color: #ff9515;
}

@media (max-width: 359px) {
    .section .footer {
        display: none;
    }
}

@media (max-width: 767px) {
    .section4 .index_more {
        margin-top: 30px;
    }

    .section4_list .swiper-slide {
        padding: 0 45px;
    }

    .section4_list a {
        padding-bottom: 5px;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .section4 .index_more {
        margin-top: 5px;
    }

    .section4_list .swiper-slide {
        padding: 0 15px;
    }

    .section4_list a h2 {
        height: 20px;
        -webkit-line-clamp: 1;
        margin: 0;
    }

    .section4_list a .date,
    .section4_list .swiper-pagination {
        display: none;
    }
}

@media (min-width: 768px) {
    .section4_list .swiper-slide {
        padding: 0 10px;
    }

    .section4_list a .text {
        padding: 15px;
    }

    .section4_list a h2 {
        font-size: 14px;
        line-height: 24px;
        height: 48px;
        margin-bottom: 10px;
    }

    .section4_list a .date {
        padding-top: 10px;
    }

    .section4_list a .date span {
        font-size: 14px;
    }

    .section4_list a .date em {
        width: 18px;
        height: 18px;
    }

    .section4_list .swiper-pagination {
        display: none;
    }
}

@media (min-width: 1200px) {
    .section4_list {
        margin: 60px 0;
    }

    .section4_list .swiper-slide {
        padding: 0 35px;
    }

    .section4_list a .text {
        padding: 20px;
    }

    .section4_list a h2 {
        font-size: 16px;
        line-height: 30px;
        height: 60px;
        margin-bottom: 15px;
    }

    .section4_list a .date {
        padding-top: 15px;
    }
}

@media (min-width: 768px) and (max-height: 768px) {
    .index_title a {
        padding: 20px 55px 0;
    }

    .index_title a:before,
    .index_title a:after {
        width: 30px;
    }

    .index_title span {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: -7px;
        letter-spacing: 3px;
    }

    .index_title h2 {
        font-size: 32px;
    }

    .index_title h2:before,
    .index_title h2:after {
        width: 120px;
    }

    .index_title h2:before {
        left: -140px;
    }

    .index_title h2:after {
        right: -140px;
    }

    .index_more a {
        font-size: 14px;
        padding: 8px 30px;
    }

    .section2_list_left .text {
        height: 180px;
        margin: 20px 0;
    }

    .section3_list {
        margin-top: 30px;
        margin-bottom: 0;
    }

    .section3_list1 a h2 {
        font-size: 16px;
        padding: 10px 0;
    }

    .section3_list1 a .img img {
        max-width: 86px;
    }

    .section3 .index_more,
    .section4 .index_more {
        display: none;
    }
}

@media (min-width: 992px) and (max-height: 768px) {

    body,
    .section {}

    .navbar-brand {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .navbar-brand img {
        height: 20px;
    }

    .top_tel {
        margin: 15px 0;
    }

    .language {
        margin: 17px 20px;
    }

    .navbar-toggle {
        margin-top: 8px;
        margin-bottom: 8px;
    }

    .navbar-toggle .icon-bar {
        width: 22px;
        height: 2px;
    }

    .navbar-toggle .icon-bar+.icon-bar {
        margin-top: 4px;
    }

    .navbar-default .menu_close .icon-bar:nth-child(1) {
        top: 6px;
    }

    .navbar-collapse {
        top: 50px;
    }

    .section2 .container,
    .section3 .container,
    .section4 .container {
        width: 970px;
    }

    .section2_list {
        margin-top: 30px;
    }

    .section2_list_left>h2 {
        font-size: 20px;
    }

    .section2_list_left>h2:after {
        margin-top: 20px;
    }

    .section2_list .img {
        width: 80%;
        margin: 0 auto;
    }

    .section4_list {
        margin-bottom: 0;
    }

    .section4_list a .text {
        padding: 15px;
    }

    .section4_list a h2 {
        font-size: 14px;
        line-height: 24px;
        height: 48px;
        margin-bottom: 10px;
    }

    .section4_list a .date {
        padding-top: 10px;
    }
}

@media (min-width: 1200px) and (max-height: 768px) {

    body,
    .section {}

    .navbar-brand img {
        height: 30px;
    }

    .top_tel {
        margin: 20px 0;
    }

    .language {
        margin-top: 22px;
        margin-bottom: 22px;
    }

    .navbar-toggle {
        margin-top: 13px;
        margin-bottom: 13px;
    }

    .section4 .index_title {
        margin-top: -30px;
    }

    .section3 .index_more,
    .section4 .index_more {
        display: block;
    }
}

/*内页*/
.wrapper {
    min-height: 85vh;
}

.location_main {
    margin: 30px 0;
}

.location b,
.location a {
    display: inline-block;
    color: #666;
    font-weight: normal;
    text-transform: uppercase;
}

.location a:hover {
    color: #ff8b00;
}

.submenu_title {
    background: url(../images/icon4.png) no-repeat center left 20px #333;
    background-size: 25px;
    color: #fefefe;
    padding: 20px 20px 20px 60px;
}

.submenu_title h2,
.submenu_title .h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
}

.submenu_title span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 6px;
}

.submenu {
    width: 65%;
    float: left;
}

.submenu li a {
    font-size: 18px;
    display: block;
    color: #333;
    line-height: 30px;
    padding: 10px 5px;
    text-transform: uppercase;
    padding: 14px 25px 14px 20px;
    text-overflow: ellipsis;
    white-space: nowrap;
    
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.submenu li a:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    opacity: .24;
    position: absolute;
    left: 0;
    bottom: 0;
}

.submenu li>a:after {
    content: "+";
    font-size: 16px;
    line-height: 1;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    transition: all .5s;
}

.submenu li>a:focus,
.submenu li>a:hover,
.submenu li.active>a,
.submenu li.active>a:focus {
    color: #ff8b00;
}

.submenu li.active a:after {
    transform: rotate(45deg);
}

.submenu .levelMenu {
    display: none;
}

.submenu .levelMenu a {
    padding-left: 48px;
    padding-right: 20px;
}

.submenu .levelMenu a:hover,
.submenu .levelMenu a.active {
    color: #ff8b00;
}

.submenu1 {
    background-color: transparent;
    transition: all 1s;
}
.submenu_main .nav li{
    width: 150px;
    float: left;
}
.submenu1 li>a:before {
    background-color: #858585;
    opacity: 1;
}


.submenu1 li>a:after {
    display: none;
}

.submenu1 li>a:focus,
.submenu1 li>a:hover,
.submenu1 li.active>a,
.submenu1 li.active>a:focus {
    color: #ec870e;
    background-color: transparent;
}

.submenuFixed {
    position: fixed;
    top: 110px;
    z-index: 1;
}

.inside_box_right {
    width: 100%;
    overflow: hidden;
    padding-top: 50px;
}

.inside_title {
    margin-bottom: 30px;
    color: #000;
    text-align: center;
    border-bottom: 1px #bfbfbf solid;
    padding-bottom: 20px;
    position: relative;
}

.inside_title h2,
.inside_title .h2 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}

.inside_title h2:after,
.inside_title .h2:after {
    content: "";
    width: 42px;
    height: 3px;
    background-color: #de8820;
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.inside_title h2 em,
.inside_title .h2 em {
    color: #de8820;
}

.inside_title1 {
    position: relative;
    min-height: 24px;
    text-align: center;
}

.inside_title1 h2,
.inside_title1 .h2 {
    display: inline-block;
    font-size: 20px;
    color: #ff9b23;
    margin: 0 0 30px;
    border-bottom: 1px #ff9737 solid;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.inside_main {
    margin: 30px 0;
    position: relative;
    transition: all .5s;
}

.inside_main .container {
    position: relative;
}

.InfoContent {
    line-height: 2.4;
    position: relative;
    overflow: hidden;
    word-break: break-all;
}
.aboutimg{
    width: 47%;margin-right: 3%;float: left;
}
.aboutimg img{border-radius: 10px;width: 100%;}
.aboutinfo{
    width: 50%;float: left;
}
.aboutinfo p{
    font-size: 16px;list-style: 25px;
}

.InfoContent p {
    margin: 0;
}

.InfoContent img {
    max-width: 100%;
    height: auto !important;
}

.InfoTitle {
    margin-bottom: 15px;
    border-bottom: 1px #dad9d9 solid;
    padding-bottom: 15px;
    text-align: center;
}

.InfoTitle h4 {
    font-size: 18px;
    margin: 0;
    line-height: 1.4;
}

.InfoTitle .date {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.info_previous_next_wrap {
    border-top: 1px #dad9d9 solid;
    padding-top: 16px;
    margin-top: 40px;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
}

.info_previous_next_wrap b {
    font-weight: normal;
}

.info_previous_next_wrap a {
    color: #666;
    text-decoration: none;
}

.info_previous_next_wrap a:hover {
    color: #ff9515;
}

.info_Previous,
.info_Next {
    margin-bottom: 10px;
    width: 49%;float: left;

}

@media (max-width: 767px) {
    .submenu_title {
        display: none;
    }

    .submenu_main {
        width: 50%;
        max-width: 210px;
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        z-index: 1030;
        background-color: #333;
        padding-top: 40px;
        overflow-y: scroll;
    }

    .submenu_main::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .submenu li a {
        padding: 10px 20px 10px 15px;
    }

    .submenu li a:after {
        right: 10px;
    }

    .menu_icon {
        width: 24px;
        height: 24px;
        background: url(../images/icon5.png) no-repeat center;
        background-size: contain;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -12px;
    }

    .submenu_close {
        width: 100%;
        height: 40px;
        background: url(../images/close.png) no-repeat center;
        background-size: 30px;
        position: absolute;
        top: 0;
        left: 0;
    }

    .info_previous_next_wrap {
        font-size: 12px;
        margin-top: 30px;
    }
}
.location{
    width: 35%;float: left;font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 30px;
}
@media (min-width: 768px) {
    .inside_box {
        
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .submenu_main {
        flex: 0 0 auto;
        width: 200px;
        /* margin-right: 15px; */
    }

    .submenu_main1 {
        width: 100%;
    }

    .submenu1 {
        width: 65%;float: left;
    }

    .submenu1 li>a {
        font-size: 16px;
        color: #333;
        line-height: 30px;
        padding: 10px 5px;
    }

    .inside_title {
        margin-bottom: 25px;
    }

    .inside_title h2,
    .inside_title .h2 {
        font-size: 24px;
    }

    .inside_title1 h2,
    .inside_title1 .h2 {
        font-size: 24px;
        margin-bottom: 50px;
    }
}

@media (min-width: 992px) {}
.top_banner{width: 100%;overflow: hidden;}
.top_banner_inner{
    width: 100%;
    height: 100%;
}
.top_banner_inner img{
    width: 100%;

}
@media (min-width: 1200px) {
    .location_main {
        margin: 30px 0;
    }

    .inside_main {
        margin: 30px 0;
    }

    .location_main .container-fluid,
    .inside_main .container-fluid {
        padding: 0 50px;
    }

    .location {
        font-size: 18px;
        text-align: right;
    }

    .submenu_main {
        width: 230px;
        /* margin-right: 45px; */
    }

    .submenu_main1 {
        /* margin-right: 70px; */
    }

    .submenu1 li>a {
        font-size: 18px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .inside_title h2,
    .inside_title .h2 {
        font-size: 30px;
    }

    .inside_title h2:after,
    .inside_title .h2:after {
        height: 5px;
        bottom: -3px;
    }
}
  .submenu_main {
        width: 100%;
        border-top: 4px #ec870e solid;
        padding: 0 5px;
    }
@media (min-width: 1440px) {

    .location_main .container-fluid,
    .inside_main .container-fluid {
        padding: 0 100px;
    }

  

    .inside_title h2,
    .inside_title .h2 {
        font-size: 36px;
    }

    .inside_title h2:after,
    .inside_title .h2:after {
        height: 8px;
        bottom: -5px;
    }

    .InfoTitle {
        margin-bottom: 30px;
    }

    .InfoTitle h4 {
        font-size: 24px;
    }
}

@media (min-width: 1600px) {
    .inside_main .container-fluid {
        
    }
}

/*关于我们*/
.culture_main,
.history_main {
    padding: 50px 0;
    margin: 0;
}

.culture_bg {
    background: url(../images/bg1.jpg) center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.culture_list .column {
    margin: 20px 0;
}

.culture_list .inner {
    text-align: center;
}

.culture_list .inner:hover img {
    transform: scale(1.1);
}

.culture_list .inner h2 {
    font-size: 18px;
    margin: 0;
    text-transform: uppercase;
}

.culture_list .inner span {
    display: block;
    color: #666;
    font-style: italic;
    text-transform: capitalize;
}

.culture_list .inner p {
    line-height: 30px;
    margin: 20px 0 0;
    word-break: break-all;
}

.history_main .inside_title1 h2 {
    color: #333;
    border-bottom-color: #8e8e8e;
}

.honor_main {
    background-color: #efefef;
    margin-bottom: 0;
    padding: 30px 0;
}

.history_list,
.honor_list {
    padding: 0 50px;
    position: relative;
}

.history_list .swiper-button-prev,
.history_list .swiper-button-next,
.honor_list .swiper-button-prev,
.honor_list .swiper-button-next {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    background: url(../images/icon3.png) no-repeat center;
    background-size: contain;
}

.history_list .swiper-button-prev,
.honor_list .swiper-button-prev {
    left: 0;
    transform: rotate(180deg);
}

.history_list .swiper-button-next,
.honor_list .swiper-button-next {
    right: 0;
}

.history_list .swiper-container:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #d4d4d4;
    position: absolute;
    left: 0;
    top: 50%;
}

.history_list .inner {
    display: flex;
    flex-direction: column;
}

.history_list .swiper-slide:nth-child(even) .inner {
    flex-direction: column-reverse;
    margin-top: 178px;
}

.history_list .swiper-slide-active {
    padding-left: 50px;
}

.history_list .inner .date span {
    display: inline-block;
    font-size: 18px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    background-color: #bfbfbf;
    border-radius: 5px;
    padding: 6px 10px;
    transform: translateX(-50%);
    margin-left: 21px;
    min-width: 114px;
}

.history_list .swiper-slide:nth-child(odd) .inner .date:after,
.history_list .swiper-slide:nth-child(even) .inner .date:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #bfbfbf;
    border-radius: 100%;
    display: block;
    margin-left: 15px;
}

.history_list .swiper-slide:nth-child(odd) .inner .date:after {
    margin-top: 10px;
}

.history_list .swiper-slide:nth-child(even) .inner .date:before {
    margin-bottom: 10px;
}

.history_list .inner>i {
    display: block;
    width: 42px;
    height: 42px;
    background-color: #bfbfbf;
    border-radius: 100%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 42px;
}

.history_list .inner:hover .date span,
.history_list .inner:hover>i,
.history_list .swiper-slide-active .inner .date span,
.history_list .swiper-slide-active .inner>i {
    background-color: #ff8b00;
}

.history_list .inner .info {
    position: relative;
    padding-left: 15px;
    margin-left: 21px;
}

.history_list .inner .info:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #bfbfbf;
    position: absolute;
    top: 0;
    left: 0;
}

.history_list .inner .text {
    font-size: 16px;
    line-height: 30px;
    height: 120px;
    overflow-y: auto;
    word-break: break-all;
}

.history_list .inner .text::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

.history_list .inner .text p {
    margin: 0;
}

@media (max-width: 767px) {
    .culture_bg {
        background-attachment: initial;
    }

    .history_list .swiper-slide:nth-child(even) .inner {
        margin-top: 138px;
    }

    .history_list .inner .date span {
        font-size: 14px;
        line-height: 20px;
        margin-left: 16px;
    }

    .history_list .swiper-slide:nth-child(odd) .inner .date:after,
    .history_list .swiper-slide:nth-child(even) .inner .date:before {
        width: 8px;
        height: 8px;
        margin-left: 13px;
    }

    .history_list .swiper-slide:nth-child(odd) .inner .date:after {
        margin-top: 5px;
    }

    .history_list .swiper-slide:nth-child(even) .inner .date:before {
        margin-bottom: 5px;
    }

    .history_list .inner>i {
        width: 32px;
        height: 32px;
        font-size: 16px;
        line-height: 32px;
    }

    .history_list .inner .info {
        margin-left: 16px;
    }

    .history_list .inner .text {
        font-size: 14px;
        line-height: 24px;
        height: 96px;
    }

    .history_main .PC_img {
        display: none;
    }
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .culture_list .column {
        float: left;
        width: 50%;
    }

    .culture_list .inner p {
        height: 90px;
    }
}

@media (min-width: 768px) {

    .culture_main,
    .history_main {
        padding: 70px 0;
    }

    .culture_list .column:after {
        content: "";
        width: 1px;
        height: 100%;
        border-left: 1px #c2c2c2 dotted;
        position: absolute;
        top: 0;
        right: 0;
    }

    .culture_list .column:nth-child(2n):after {
        display: none;
    }

    .culture_list .inner h2 {
        font-size: 24px;
    }

    .culture_list .inner p {
        height: 90px;
    }

    .honor_main {
        padding: 60px 0;
    }

    .history_main .min_img {
        display: none;
    }
}

@media (min-width: 992px) {
    .culture_list .column:nth-child(2n):after {
        display: block;
    }

    .culture_list .column:nth-child(4n):after {
        display: none;
    }
}

@media (min-width: 1200px) {

    .culture_main,
    .history_main {
        padding: 100px 0;
    }
}

@media (min-width: 1440px) {
    .culture_main {
        padding-bottom: 130px;
    }

    .culture_list .column {
        padding: 0 50px;
    }

    .culture_list .inner h2 {
        font-size: 30px;
    }

    .culture_list .inner span {
        font-size: 16px;
    }

    .culture_list .inner p {
        font-size: 16px;
        line-height: 36px;
        height: 108px;
    }
}

/*产品中心*/
.pro_body {
    background-color: #f1f1f1;
}

.pro_list {
    margin-left: -5px;
    margin-right: -5px;
}

.pro_list .column {
    padding: 0 5px;
    margin: 5px 0;
}

.pro_list a {
    display: block;
    color: #333;
    text-align: center;
    background-color: #fff;
    position: relative;
}

.pro_list a .img {
    padding: 30px 0 20px;
}

.pro_list a img {
    max-width: 100px;
    margin: 0 auto;
}

.pro_list a h2,
.pro_list .h2 {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    background-color: #d2d2d2;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
    text-transform: uppercase;
}

.pro_list a:before,
.pro_list a:after {
    content: "";
    width: 0;
    height: 1px;
    background-color: #de8820;
    position: absolute;
    transition: all .5s;
}

.pro_list a h2:before,
.pro_list a h2:after,
.pro_list .h2:before,
.pro_list .h2:after {
    content: "";
    width: 1px;
    height: 0;
    background-color: #de8820;
    position: absolute;
    transition: all .5s;
    transition-delay: .45s;
}

.pro_list a:before {
    top: 0;
    left: 0;
}

.pro_list a:after {
    bottom: 0;
    right: 0;
}

.pro_list a h2:before,
.pro_list .h2:before {
    bottom: 0;
    left: 0;
}

.pro_list a h2:after,
.pro_list .h2:after {
    top: 0;
    right: 0;
}

.pro_list a:hover:before,
.pro_list a:hover:after {
    width: 100%;
}

.pro_list a:hover h2:before,
.pro_list a:hover h2:after,
.pro_list a:hover .h2:before,
.pro_list a:hover .h2:after {
    height: 100%;
}

.pro_list a i {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/icon6.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: all .5s;
}

.pro_list a:hover i {
    background-image: url(../images/icon6_1.png);
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .pro_list a img {
        max-width: 150px;
    }
}

@media (min-width: 768px) {
    .pro_list a .img {
        padding: 40px 0 30px;
    }

    .pro_list a img {
        max-width: 180px;
    }

    .pro_list a h2,
    .pro_list .h2 {
        font-size: 18px;
        line-height: 24px;
    }

    .pro_list a i {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
}

@media (min-width: 1200px) {
    .pro_list a img {
        max-width: 200px;
    }
}

@media (min-width: 1440px) {
    .pro_list a .img {
        padding: 70px 0 50px;
    }

    .pro_list a img {
        max-width: 225px;
        max-height: 203px;
    }

    .pro_list a h2,
    .pro_list .h2 {
        font-size: 20px;
        line-height: 30px;
    }
}

/*合作伙伴*/
.list {
    margin-left: -5px;
    margin-right: -5px;
}

.list .column {
    padding: 0 5px;
    margin: 10px 0;
}

.list a {
    display: block;
    color: #333;
}

.list a .img {
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .2);
}

.list a:hover img {
    transform: scale(1.1);
}

.list a h4 {
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    margin: 15px 0 0;
    border-bottom: 1px #ddd solid;
    padding-bottom: 10px;
}

.list a:hover h4 {
    color: #165ad3;
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .list .column {
        width: 33.33333%;
    }
}

@media (min-width: 992px) {
    .list {
        margin-left: -15px;
        margin-right: -15px;
    }

    .list .column {
        padding: 0 15px;
        margin: 20px 0;
    }

    .list .column h4 {
        font-size: 16px;
        margin-top: 25px;
        padding-bottom: 20px;
    }
}

/*新闻中心*/

.news_list a:hover {
    color: #ec870e;
}
.news_list .column{
    border-bottom: 1px dotted #c1c1c1;
    padding: 30px 0;
    overflow: hidden;
}
.news_list .column:last-child  {
    border-bottom: 0;
}

.news_list  .img {
    flex: 0 0 auto;
    width: 20%;
    margin-right: 5%;
    float: left;
}

.news_list  .img a:hover {
    transform: scale(1.1);
}

.news_list  .text {
    width: 75%;
    float: left;
}

.news_list  .title {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.news_list  h2 a{
    font-size: 20px;
    text-align: left;
    margin: 0;
    color: #333;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}

.news_list  span {
    flex: 0 0 auto;
    font-size: 16px;
    color: #777;
    margin-left: 15px;
}

.news_list  p {
    text-align: left;
    color: #666;
    font-size: 14px;
    line-height: 20px;
    height: 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin: 10px 0 10px;
}

.news_list  em a {
    display: inline-block;
    background: url(../images/icon7.png) no-repeat center left;
    background-size: 16px;
    padding-left: 20px;
    line-height: 20px;
    font-size: 15px;
    color: #333;
    text-transform: uppercase;
    margin-top: 15px;
}

/*竖屏*/
@media (max-width: 767px) and (orientation: portrait) {
    

   
}


.news-type{width: 100%;
    height: 24px;
    text-align: center;
    margin: 0 auto;
    color: #242424;
    font-size: 0.875em;
    border-bottom: #242424 1px dotted;}




/*技术支持*/
.tech_main .inside_title1 {
    margin-bottom: 30px;
}

.tech_main .inside_title1 h2 {
    color: #333;
    border-bottom: 0;
    padding-bottom: 0;
    margin: 0;
}

.training_main {
    background-color: #f6f6f5;
    padding: 50px 0;
    margin: 0;
}

.training_list {
    margin-left: -8px;
    margin-right: -8px;
}

.training_list .column {
    padding: 0 8px;
    margin: 8px 0;
}

.training_list a {
    display: block;
    color: #fff;
    position: relative;
}

.training_list a:hover img {
    transform: scale(1.1);
}

.training_list a h2 {
    font-size: 16px;
    text-align: center;
    margin: 0;
    background-color: rgba(0, 0, 0, .49);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px 5px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    text-transform: uppercase;
}

.training_list a:hover h2 {
    color: #ff9c00;
}

.download_main {
    padding: 50px 0;
    margin: 0;
}

.download_list {
    margin-left: -10px;
    margin-right: -10px;
}

.download_list .column {
    padding: 0 10px;
    margin: 10px 0;
}

.download_list a {
    display: block;
    color: #fff;
    background-color: #7e7e7e;
    padding: 20px;
    text-align: right;
    text-transform: uppercase;
}

.download_list a .img {
    /*max-width: 100px;*/
    margin-bottom: 5px;
}

.download_list a h2 {
    font-size: 16px;
    text-align: left;
    margin: 0 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.download_list a em {
    display: inline-block;
    font-size: 14px;
    border-bottom: 1px #f6f6f5 solid;
}

.download_list a:hover em {
    color: #ff8b00;
    border-bottom-color: #ff8b00;
}

.login_success {
    margin-top: 15px;
    display: none;
    text-transform: uppercase;
}

.login_success span {
    display: inline-block;
    background-color: #ff8a00;
    border-radius: 10px;
    color: #fff;
    padding: 6px 30px;
}

.login_success .exit_logon {
    background-color: #545454;
    cursor: pointer;
    margin-left: 5px;
}

.login {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1030;
    width: 90%;
    max-width: 300px;
    background-color: #fff;
    box-shadow: 0 0 16px rgba(0, 0, 0, .2);
    border-radius: 10px;
    padding: 20px;
    max-height: 90%;
    overflow-y: auto;
    display: none;
}

.login::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.login_close {
    width: 30px;
    height: 30px;
    background: url(../images/icon6.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(45deg);
    cursor: pointer;
}

.login>h2 {
    font-size: 18px;
    line-height: 1;
    margin: 0 0 15px;
    text-align: center;
    text-transform: uppercase;
}

.login .form-group {
    margin-bottom: 10px;
}

.login .form-control {
    border-radius: 10px;
    background-color: #e8e8e8;
    box-shadow: none;
    outline: none !important;
}

.login_btn {
    text-align: center;
    margin-top: 15px;
}

#login .login_btn {
    margin-top: 25px;
}

.login_btn .btn {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    border: none;
    background-color: #ffa500;
    border-radius: 10px;
    padding: 10px 50px;
    outline: none !important;
    text-transform: uppercase;
}

.log_on {
    text-align: right;
    cursor: pointer;
}

.log_on:hover {
    color: #ffa500;
}

/*横屏*/
@media (max-width: 767px) and (orientation: landscape) {
    .download_list .column {
        float: left;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .tech_main .inside_title1 {
        margin-bottom: 50px;
    }

    .training_list a h2 {
        font-size: 18px;
        padding: 15px;
    }

    /*.download_list a .img {
        max-width: 100px;
    }*/
    .download_list a h2 {
        font-size: 20px;
    }

    .download_list a em {
        font-size: 16px;
    }

    .login_success {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }

    .login {
        max-width: 460px;
        padding: 30px;
    }

    .login_close {
        top: 15px;
        right: 15px;
    }

    .login>h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .login .form-group {
        margin-bottom: 20px;
    }

    .login .form-control {
        height: 42px;
    }

    .login_btn {
        margin-top: 30px;
    }

    #login .login_btn {
        margin-top: 50px;
    }

    .login_btn .btn {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {

    .training_main,
    .download_main {
        padding: 80px 0;
    }

    .training_list a h2 {
        font-size: 24px;
        padding: 20px 15px;
    }

    .login {
        max-width: 690px;
        padding: 50px;
    }

    .login>h2 {
        font-size: 30px;
    }

    .login_btn .btn {
        font-size: 24px;
    }
}

@media (min-width: 1440px) {
    .tech_main .inside_title1 h2 {
        font-size: 36px;
    }

    /*.download_list a .img {
        max-width: 146px;
    }*/
    .download_list a h2 {
        font-size: 24px;
    }

    .download_list a em {
        font-size: 18px;
    }
}

/*联系我们*/
.contact_list_title {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact_info p {
    margin-bottom: 5px;
}

.contact_info p a {
    display: block;
    color: #333;
    line-height: 2;
}

.contact_wrap .wechat {
    overflow: hidden;
    margin-left: -12px;
    margin-right: -12px;
    margin-top: 20px;
}

.contact_wrap .wechat .img {
    float: left;
    width: 50%;
    padding: 0 12px;
}

.contact_wrap .wechat .img img {
    max-width: 140px;
    margin: 0 auto;
    border: 1px #ddd solid;
}

.contact_wrap .wechat .img span {
    display: block;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    text-transform: uppercase;
}

.message_form {
    margin: 50px 0;
}

.message_form form {
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    padding: 15px;
}

.message_form h2 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.message_form .form-control {
    height: 40px;
    color: #555;
    background-color: transparent;
    border-color: #c1c1c1;
    border-width: 0 0 1px 0;
    border-radius: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.message_form .error .form-control {
    border-color: #ff8b00;
}

.message_form .error .valid_message {
    position: absolute;
    width: 100%;
    left: 0;
    font-size: 12px;
    color: #ff8b00;
    display: none;
}

.message_btn .btn {
    display: block;
    background-color: #0f77b2;
    border: 1px #0f77b2 solid;
    color: #fff;
    border-radius: 20px;
    margin: 30px auto 0;
    padding-left: 50px;
    padding-right: 50px;
    outline: none !important;
    text-transform: uppercase;
    width: 200px;
}

.message_btn .btn:hover {
    background-color: transparent;
    color: #0f77b2;
}

.map {
    height: 240px;
    margin: 50px 0;
}

.map #dituContent {
    width: 100%;
    height: 100%;
    border: 1px #c2c2c2 solid;
}

.map img {
    display: block;
    width: 100%;
    height: 100%;
}

.afterSale_sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.afterSale_sidebar a {
    display: block;
    background-color: #f08200;
    font-size: 12px;
    color: #fff;
    margin: 10px 0;
    padding: 5px 10px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.afterSale_sidebar a:before {
    content: "";
    width: 16px;
    height: 16px;
    background: url(../images/icon8.png) no-repeat center;
    background-size: contain;
    display: block;
    margin-left: 10px;
    transform: rotateY(180deg);
}

.afterSale_sidebar a span {
    border-right: 1px rgba(241, 241, 241, .3) solid;
    padding-right: 10px;
    display: block;
    line-height: 20px;
}

@media (min-width: 768px) {
    .contact_list {
       
        flex-direction: row;
        justify-content: center;
    }

    .contact_list_title {
        flex: 0 0 auto;
        font-size: 20px;
        margin-right: 20px;
        margin-bottom: 0;
    }

    .contact_list_right {
        width: 100%;
        overflow: hidden;
      
        padding-left: 10px;
    }

    .contact_wrap {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact_wrap .wechat .img img {
        max-width: 130px;
    }

    .contact_wrap .wechat .img span {
        font-size: 20px;
        margin-top: 20px;
    }

    .message_form form {
        padding: 30px;
    }

    .message_form h2 {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .message_form .form-group {
        margin-bottom: 30px;
    }

    .map {
        height: 400px;
    }

}

@media (min-width: 992px) {
    .contact_wrap .wechat {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {

    .contact_list_title,
    .contact_wrap .wechat .img span {
        font-size: 24px;
    }

    .contact_info p a {
        font-size: 16px;
    }

    .message_form {
        margin: 30px 0;
    }

    .message_form h2 {
        font-size: 24px;
    }

    .message_form .row {
        padding-left: -50px;
        padding-right: -50px;
    }

    .message_form .column {
        padding: 0 50px;
    }

    .message_btn .btn {
        font-size: 16px;
        margin-top: 40px;
    }

    .afterSale_sidebar {
        left: 0;
        right: auto;
    }

    .afterSale_sidebar a {
        font-size: 18px;
        padding: 10px 20px;
        flex-direction: row;
    }

    .afterSale_sidebar a:before {
        width: 26px;
        height: 26px;
        margin-left: 0;
        margin-right: 10px;
        transform: none;
    }

    .afterSale_sidebar a span {
        border-left: 1px rgba(241, 241, 241, .3) solid;
        border-right: 0;
        padding-left: 10px;
        padding-right: 0;
        line-height: 30px;
    }
}

@media (min-width: 1600px) {
    .map {
        width: 100%;
        display: block;
        height: 600px;
    }
}

/*动画*/
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation: fadeInDown 1s;
    animation: fadeInDown 1s;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInUp {
    -webkit-animation: fadeInUp 1s;
    animation: fadeInUp 1s;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInLeft {
    -webkit-animation: fadeInLeft 1s;
    animation: fadeInLeft 1s;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none
    }
}

.fadeInRight {
    -webkit-animation: fadeInRight 1s;
    animation: fadeInRight 1s;
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation: zoomIn 1s;
    animation: zoomIn 1s
}




@media (min-width: 460px) {
    #dowebok {
        width: 100%;


    }

    .banner_bg_PC {
        display: none;

    }

}

@media (min-width: 1420px) {
    .banner_bg_PC {
        display: block;

    }

    .banner_bg_min {
        display: none;

    }

}


@media (min-width: 1680px) {
    .banner_bg_PC {
        display: block;

    }

    .banner_bg_min {
        display: none;

    }

}


@media (min-width: 1920px) {

    .banner_bg_PC {
        display: block;

    }

    .banner_bg_min {
        display: none;

    }

}

/*分页样式*/
.green-black {
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
    overflow: hidden
}

.green-black ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0
}

.green-black ul li {
    float: left;
    font-family: microsoft yahei;
    margin: 0 2px;
    padding: 0 10px;
    line-height: 25px;
    background: #fff;
    border: 1px solid #ff8b00;
    list-style: none;
}

.green-black ul li a:marker {
    display: none;
}

.green-black ul li a {
    float: left;
    color: #555;
    display: block
}

.green-black ul li:hover {
    text-decoration: none;
    color: #fff;
    border: 1px #ff8b00 solid;
    background-color: #ff8b00
}

.green-black ul li:hover select {
    background-color: #ff8b00;
    border: 1px solid #fff;
}

.green-black ul li:hover a {
    color: #fff
}

.green-black ul li:hover a:hover {
    color: #fff;
    text-decoration: none
}

.green-black span.current {
    padding: 5px 8px 5px 8px;
    padding: 5px 8px 4px 8px;
    border: 1px solid #ccc;
    color: #fff;
    height: 12px;
    line-height: 12px;
    zoom: 1;
    overflow: auto;
    background: url(../images/page_bg02.png) top repeat-x #1c68a9;
    margin-left: 3px;
    margin-right: 3px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-size: 12px
}



DIV.green-black SPAN.current {
    PADDING-RIGHT: 8px;
    PADDING-LEFT: 8px;
    FONT-WEIGHT: bold;
    PADDING-BOTTOM: 2px;
    COLOR: #fff;
    MARGIN-RIGHT: 2px;
    PADDING-TOP: 2px;
    BORDER: 1px solid #ff8b00;
    font-size: 100%;
    background-color: #ff8b00;
}

DIV.green-black SPAN.disabled {
    PADDING-RIGHT: 8px;
    PADDING-LEFT: 8px;
    PADDING-BOTTOM: 2px;
    COLOR: #fff;
    MARGIN-RIGHT: 2px;
    PADDING-TOP: 2px;
    BORDER: #ff8b00 1px solid;
    font-size: 100%
}
.link{
    width: 40%;
    float: left;
    text-align: right;
}

.fenzhan{
    width: 60%;
    float: left;
}