﻿* {
    margin: 0;
    padding: 0;
    color: #333;
    font-family: "Microsoft YaHei";
}

a {
    text-decoration: none;
    color: #333;
}

a:hover,
a:focus {
    text-decoration: none;
}

ul,
ul li,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    border: none;
}

.img img {
    display: inline-block;
    vertical-align: middle;
}

.block {
    display: block;
}

.wrapper {
    width: 1200px;
    margin: 0 auto;
}

.supMax{
    width: 48%;
    margin: 1% 1%
}

@media screen and (max-width: 1350px) {
    .wrapper {
        width: 100%;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1000px) {
    .wrapper {
        width: 100%;
        /*padding: 0 10px;*/
    }
}

.rowListblue {
    height: 0;
    position: absolute;
    background: rgba(0, 0, 0, .6);
    top: -800px;
    width: 96%;
    height: 100%;
    text-align: center;
    color: #fff;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rowListblue a {
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 7px 20px;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    height: 0;
    visibility: hidden;
}

.clearfix {
    *zoom: 1;
}


/* header */

header {
    width: 100%;
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all .3s ease;
    background-color: rgba(115, 115, 115, 0.4);
}

header.otherheader {
    position: fixed !important;
    background: #333 !important;
    border-bottom-color: #333 !important;
}

header.headeractive {
    background: #333;
    transition: all .3s ease;
    border-bottom-color: #333;
    border: none;
}

header .header {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.header a {
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.header .logo {
    height: 80px;
}

.header .logo img {
    max-height: 60px;
    display: inline-block;
    vertical-align: middle;
}

nav.nav_pc ul {
    display: flex;
    position: relative;
}

nav.nav_pc ul li {
    position: relative;
    width: 90px;
    height: 80px;
    margin: 0 15px;
    overflow: hidden;
}

nav.nav_pc ul li .more {
    position: absolute;
    left: 0;
    top: 80px;
    width: 100%;
    height: 100%;
    color: #EA362E;
    text-align: center;
    transition: all .4s ease;
}

nav.nav_pc ul li:hover .more {
    top: 0px;
    transition: all .4s ease;
}

nav.nav_pc ul li a {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .4s ease;
}

nav.nav_pc ul li:hover a {
    top: -80px;
    transition: all .4s ease;
}

nav.nav_pc ul li.active a {
    color: #fff;
    position: relative;
}

nav.nav_pc ul li.others.active a {
    color: red;
    position: relative;
}

nav.nav_pc ul li.module a.active2 {
    color: red;
}

nav.nav_pc ul li.module a.active2.more {
    color: #EA362E;
}

nav.nav_pc ul li.index a {
    color: #fff;
}

nav.nav_pc ul li.index.active a {
    color: #fff;
    position: relative;
}

nav.nav_pc ul li.active::after {
    position: absolute;
    bottom: 13px;
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    left: 0;
    border-radius: 2px;
}

@media screen and (max-width:1080px) {
    nav.nav_pc ul li.active::after {
        display: none;
    }
}

nav.nav_pc ul li.active:hover a {
    top: 0;
}

nav.nav_pc ul li.active:hover .more {
    top: 80px;
}

header #bling,
header #blings {
    position: absolute;
    width: 90px;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 12px;
    border-radius: 2px;
}

.nav_m {
    position: relative;
    width: 30px;
    right: 0px;
    box-sizing: border-box;
    margin: 19px 0;
    cursor: pointer;
    float: right;
    display: none;
}

.nav_m span {
    display: block;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 2px;
    position: absolute;
    top: 0px;
    transition: all .5s;
}

.nav_m span.active:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    transition: all .5s
}

.nav_m span.active:nth-child(3) {
    transform: translateY(-9px) rotate(-44deg);
    transition: all .5s;
}

.nav_m span:nth-child(2) {
    top: 8px;
}

.nav_m span:nth-child(3) {
    top: 16px;
}

@media screen and (max-width:1400px) {
    header .header {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
}

@media screen and (max-width:1080px) {
    nav.nav_pc {
        display: none;
        width: 100%;
        position: absolute;
        left: 0;
        top: 60px;
        background: rgba(0, 0, 0, .8);
        box-sizing: border-box;
        padding: 0 20px;
    }
    .nav_m {
        display: block;
    }
    header {
        height: 60px;
        line-height: 60px;
        border-bottom: none;
    }
    header .header {
        height: 60px;
        line-height: 60px;
    }
    .header .logo img {
        max-height: 40px;
    }
    nav.nav_pc ul {
        flex-wrap: wrap;
    }
    nav.nav_pc ul li {
        width: 33.33%;
        margin: 0;
        height: 60px;
    }
    .header .logo {
        height: 60px;
    }
    header #bling,
    header #blings {
        display: none;
    }
}

@media screen and (max-width:768px) {
    header {
        height: 48px;
        line-height: 48px;
        background-color: #000;
    }
    header .header {
        height: 48px;
        line-height: 48px;
        padding: 0;
        width: 96%;
    }
    .header .logo img {
        max-height: 40px;
    }
    .header .logo {
        height: 48px;
    }
    nav.nav_pc ul li {
        width: 100%;
        height: 36px;
        line-height: 36px;
        border-bottom: 1px solid #666;
    }
    nav.nav_pc {
        top: 48px;
        padding: 10px;
    }
    nav.nav_pc ul li a {
        text-align: left !important;
        text-indent: 1rem
    }
    .nav_m {
        margin: 14px 0;
    }

    .supMax{
        width: 100%;
    }
}


/* 语言切换 */

.top {
    position: absolute;
    right: 0;
    bottom: -31px;
    line-height: 0;
}

.top .top_r a {
    font-size: 14px;
    color: #fff;
    background-color: #333;
    padding: 8px 12px;
    border-right: 1px solid #c4c4c4;
    /*height: 14px;*/
    line-height: 14px;
    display: inline-block;
}

.top .top_r a:last-child {
    border-right: none;
}

.top .top_r a:hover,
top .top_r a.active {
    color: #EA362E;
}

header.headeractive .top {
    display: none;
}

@media screen and (max-width:1080px) {
    .top {
        position: relative;
        top: initial;
        bottom: initial;
        padding-bottom: 10px;
    }
    .top .top_r {
        box-sizing: border-box;
        padding: 0 20px;
        text-align: right;
    }
}


/*search*/

.searBtn i {
    font-size: 30px;
    color: #fff;
}

.searBtn:hover i {
    color: #EA362E;
}

#search {
    width: 100%;
    padding: 0 0 50px;
    display: flex;
    flex-flow: column-reverse;
}

#search form.form-inline {
    /* display: none; */
    position: relative;
}

#search .form-control {
    border-radius: 1.2rem;
    width: 100%;
    /* display: none; */
    /* width: 0;
    height: 0;
    margin: 0;
    padding: 0; */
}

#search .s-icon {
    color: #444;
    background: #fff;
    position: absolute;
    right: 8px;
    top: 1px;
    font-size: 1.5rem;
    z-index: 1;
    border-radius: 0 1.2rem 1.2rem 0;
}

#searchBtn {
    position: absolute;
    right: 0;
    top: 0;
    width: 35px;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    background: none;
    border-radius: 0 1.2rem 1.2rem 0;
    border: none;
    z-index: 2;
}

#search #searchBtn:hover+.s-icon {
    color: #008aec;
}

#search .searchBtn {
    font-size: 1.2rem;
}

.news .list.search li {
    width: 50%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    margin: 30px 0;
    box-shadow: 0 5px 15px #e9e9e9;
    display: flex;
    float: left;
    height: 180px;
    transition: all .4s ease;
}

@media (min-width:992px) {
    #search {
        width: 50%;
    }
}

@media (max-width:992px) {
    .searBtn {
        display: none;
    }
}

@media (max-width:767px) {
    .ad-banner .search {
        display: none;
    }
    .news .list.search li {
        width: 100%;
        margin: 10px 0;
        float: none;
        height: auto;
    }
    .news .list.search .content #more {
        bottom: 10px;
    }
}


/* banner */

#banner {
    position: relative;
    background: #333;
}

#banner .img {
    opacity: .5;
}

#banner .swiper-wrapper {
    opacity: .5;
}

#banner img {
    width: 100%;
    height: auto;
}

#banner .swiper-pagination {
    /*width: 1360px;*/
    height: 20px;
    border-radius: 50%;
    margin: 0 auto;
    bottom: 34px;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    text-align: center;
}

#banner .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    position: relative;
}

#banner .swiper-pagination-bullet::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#banner.banner1 {
    padding-top: 81px;
}

#banner #mask {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
}

#banner #mask img {
    max-width: 50%;
    max-height: 50%;
    height: auto;
    margin: 0 auto;
    position: relative;
    top: 25%;
    width: auto;
}

@media screen and (max-width:1080px) {
    #banner.banner1 {
        padding-top: 61px;
    }
}

@media screen and (max-width:768px) {
    #banner.banner1 {
        padding-top: 50px;
    }
    #banner {
        margin-top: 46px;
    }
}

#bus {
    padding-bottom: 50px;
}

#bus .supMax .suppLits {
    border: 1px solid #c4c0c0;
    width: 100%;
    height: 100%;
    padding: 20px;
}

@media screen and (max-width:768px) {
    /*#bus .supMax:nth-child(3),
    #bus .supMax:nth-child(4) {
        margin-top: 20px;
    }*/
}

#advOne {
    position: relative;
}

#advOne img {
    width: 100%;
    position: absolute;
    z-index: -999;
    height: 100%;
}

#advOne .con {
    /* position: absolute;
    width: 1200px;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); */
    text-align: center;
    color: #fff;
    padding: 50px 0;
}

#advOne .con h3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 36px;
    color: #FFFFFF;
    margin-bottom: 25px;
}

#advOne .con .intro p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 18px;
    color: #FFFFFF;
}

#advOne .con .hengxian {
    width: 120px;
    height: 6px;
    background: #ffffff;
    margin: 40px auto 25px auto;
}

@media screen and (max-width: 574px) {
    #advOne .con h3 {
        font-size: 24px;
    }
}

#sectSix {}

#sectSix .company-vedio {
    padding: 10px;
}

#sectSix .company-vedio img {
    width: 100%;
    min-height: 160px;
}

#sectSix .company-vedio .videoMax {
    position: relative;
}

#sectSix .company-vedio #playBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: solid 1px #fff;
    border-radius: 50px;
    height: 50px;
    width: 50px;
    cursor: pointer;
}

#sectSix .company-vedio #playBtn .circle_inner_play {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 20px;
    border-color: transparent transparent transparent #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -7px;
}

#sectSix .company-vedio .content {
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px 0;
}

#sectSix .company-vedio .content a {
    height: 40px;
    line-height: 40px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 20px;
    color: #1A1A1A;
}

#sectSix .company-vedio .content .intro {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #1A1A1A;
}

#sectSix .company-vedio .content .videoEngith {
    margin-top: 15px;
}

#sectSix .company-vedio .content .videoEngith span {
    color: #1A1A1A;
}

#sectSix .company-vedio .content .videoEngith .sanjiao {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 10px solid #000000;
    border-bottom: 7px solid transparent;
    display: inline-block;
    margin-left: 7px;
}


/* sectOne  product */

#sectOne {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 70px;
}

.head {
    padding: 40px 0;
}

.head h3 {
    font-size: 36px;
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    color: #000;
}

.head .intro {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    text-transform: uppercase;
    text-align: center;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.head .hengxian {
    width: 80px;
    height: 3px;
    background: #EA362E;
    margin: 25px auto;
}

.head .cats {
    display: flex;
    justify-content: center;
    padding: 10px 0 35px 0;
    flex-wrap: wrap;
}

.head .cats li {
    width: 130px;
    height: 40px;
    box-sizing: border-box;
    text-align: center;
    line-height: 40px;
    border: 1px solid #b5b5b5;
    margin: 5px;
}

.head .cats li a {
    display: block;
    font-size: 14px;
    color: #b5b5b5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.head .cats li.active {
    background: #EA362E;
    border-color: #EA362E;
}

.head .cats li:hover a {
    color: #EA362E;
}

.head .cats li.active a {
    color: #fff;
}

.head .cats li.active:hover a {
    color: #fff;
}

@media screen and (max-width: 768px) {
    .head {
        padding: 20px 0;
    }
}

#sectOne .list li {
    width: 20%;
    float: left;
    height: auto;
    overflow: hidden;
    position: relative;
  	margin-top:20px;
}

#sectOne .list li img {
    width:230px;
  	height:177px;
    transition: all .3s ease;
}

#sectOne .list li:hover .rowListblue {
    top: 0;
}

@media screen and (max-width: 768px) {
    #sectOne .list li {
        width: 25%;
    }
}

@media screen and (max-width: 650px) {
    #sectOne .list li {
        width: 33.33%;
    }
}

@media screen and (max-width: 400px) {
    #sectOne .list li {
        width: 50%;
    }
}


/* sectTwo video/about */

#sectTwo {
    width: 100%;
    padding-bottom: 48px;
}

#sectTwo .row {
    text-align: center;
}

#sectTwo .row li p {
    font-size: 48px;
    color: #333;
    font-weight: bold;
}

#sectTwo .row li i {
    font-style: normal;
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

@media screen and (max-width: 768px) {
    #sectTwo .row li p {
        font-size: 36px;
    }
}

@media screen and (max-width: 574px) {
    #sectTwo .row li p {
        font-size: 24px;
    }
}


/* sectThree case */

#sectThree {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 60px;
}

#sectThree>img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -99;
    opacity: .5;
}

#sectThree .sectThree {
    width: 100%;
    height: auto;
    /* position:absolute; */
    /* left:0; */
    /* top:0; */
}

#sectThree li {
    margin-bottom: 14px;
}

#sectThree li .img {
    position: relative;
    overflow: hidden;
    display: block;
}

#sectThree li .img img {
    width: 100%;
}

#sectThree li .img:hover .rowListblue {
    top: 0;
}

#sectThree li .cont {
    padding: 15px 0px;
    background-color: #f5f5f5;
    text-align: center;
}

#sectThree li .cont a {
    height: 40px;
    line-height: 40px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 20px;
    color: #1A1A1A;
}

#sectThree li .cont .intro {
    font-size: 14px;
    color: #888888;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}


/* sectFour  product */

#sectFour {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 70px;
}

#sectFour .row {
    margin: 0;
}

#sectFour .row>div {
    margin: 0;
    padding: 0;
}

#sectFour .row .newsCont {
    padding-left: 20px;
}

#sectFour .row .newsCont div {
    font-size: 12px;
    color: #666666;
}

#sectFour .row .newsList {
    padding: 0px 10px 10px 10px;
    margin-bottom: 10px;
}

#sectFour .row .newsCont a {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    font-size: 20px;
    color: #1A1A1A;
    margin: 5px 0px;
}

#sectFour .row .newsCont p {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 14px;
    color: #666666;
}


/* sectFive  product */

#sectFive {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    padding-bottom: 70px;
}

#sectFive .list {
    width: 1360px;
    margin: 0 auto;
    margin: 0px auto;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}

#sectFive .list li {
    /*width: 320px;*/
    height: 90px;
    box-sizing: border-box;
    /*border: 1px solid #eee;*/
    overflow: hidden;
    position: relative;
}

#sectFive .list li img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1400px) {
    #sectFive .list {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    #sectFive .list li {
        /* width: 31%; */
        height: 45px;
        margin: 10px 0;
    }
    #sectFive .list li img {
        max-width: 100%;
        max-height: 100%;
    }
}


/* footer */


/* footer */

footer {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-top: 1px solid #EEEEEE;
}

footer .footer {
    width: 1360px;
    margin: 0 auto;
    /* display: flex; */
}

.footer #link {
    color: #fff;
    font-size: 14px;
    line-height: 2;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1%;
}

.footer #link a {
    color: #666;
    font-size: 14px;
    line-height: 2;
    padding: 0 5px;
}

.footer #link a:hover {
    color: #333;
}

.footer #link span {
    color: #666;
    font-size: 20px;
    font-weight: bold;
}

#link {
    padding: 20px 0;
}

#link a {
    margin: 0 8px;
    display: inline-block;
}

.footer .row .boListMax {
    width: 50%;
    float: left;
}

.footer .row .clear {
    border-right: 1px solid #ddd;
}

.footer .row .clear::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
}

.footer .row .boListMax span {
    font-size: 20px;
    color: #1a1a1a;
    font-weight: bold;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.footer .row .boListMax ul li a {
    color: #666;
}

.footer .row .boRight {
    display: flex;
    justify-content: space-around;
}

.footer .row .boRight .rexianIcon {
    padding: 0 10px;
}

.footer .row .boRight .rexianIcon>div {
    color: #666;
}

.footer .row .boRight .erweif p {
    color: #666;
    text-align: center;
}

.footer .row .boleft {
    padding: 20px 10px;
    text-align: center;
}

.fontbottm {
    padding: 15px 0px;
    text-align: center;
    background-color: #f5f5f5;
}

.fontbottm p {
    font-size: 14px;
    color: #666666;
    margin-bottom: 0;
}

.fontbottm p a {
    font-size: 14px;
    color: #666666;
}

@media screen and (max-width:1400px) {
    footer {
        padding-bottom: 20px;
    }
    footer .footer {
        width: 100%;
        box-sizing: border-box;
        padding: 0 20px;
    }
}

@media screen and (max-width:960px) {
    footer .footer {
        text-align: center;
        flex-wrap: wrap;
    }
    #link {
        display: block;
    }
}

@media screen and (max-width:768px) {
    footer {
        padding: 0;
    }
    footer .footer {
        width: 100%;
        padding: 0 10px;
    }
    #link {
        padding: 10px 0;
        text-align: left;
    }
    #link a {
        padding: 0 5px;
        margin: 0;
    }
    #link span {
        padding: 0;
    }
    .footer .row .clear {
        border: none;
    }
    .fontbottm {
        padding-bottom: 120px;
    }
}

#location {
    width: 100%;
    border-bottom: 1px solid #ddd;
}

#location .location {
    width: 1360px;
    margin: 0 auto;
    height: auto;
    line-height: 58px;
    padding: 10px 0;
}

#location a {
    font-size: 14px;
    color: #666666;
}

#location i {
    font-size: 12px;
    margin: 0 5px;
}

#location a:hover {
    color: #EA362E;
}

@media screen and (max-width:1400px) {
    #location .location {
        width: 90%;
    }
}

@media screen and (max-width:960px) {}

@media screen and (max-width:768px) {
    #location .location {
        width: 96%;
    }
}

.pages {
    width: 100%;
    height: 40px;
    line-height: 40px;
    display: flex;
    justify-content: center;
    margin: 20px 0;
}


/* .pages a , .pages strong , .pages em{width:40px;height:40px;line-height: 40px;text-align: center;font-size: 16px;display:block;cursor:pointer;margin: 0;color: #666;box-sizing:border-box;border: 1px solid #bfbfbf;border-right: none;} */

.pages em {
    display: none;
}


/* .pages a:last-child {border-right:1px solid #bfbfbf;} */


/* .pages a:hover , .pages strong {box-sizing:border-box; border:1px solid #EA362E; border-right:none; background:#EA362E !important; color:#fff !important; border-color:#EA362E;} */


/* .pages a.prev , .pages a.next {width:80px;box-sizing:border-box;background: #fff;color: #666; border-color:#bfbfbf;} */

@media screen and (max-width:768px) {
    /* #page {height:30px; line-height:30px;}
    .pages{justify-content:center; float: initial;}
    .pages a ,  .pages strong {width:30px; height:30px; font-size:12px; line-height:30px;}
    .pages a.prev , .pages a.next {width:60px;} */
}

#product {
    width: 100%;
    /*padding-bottom: 90px;*/
}

#product .product {
    width: 1360px;
    margin: 30px auto 0;
}

.product .cats {
    width: 100%;
    height: 40px;
    line-height: 40px;
    margin-top: -1px;
}

.product .cats a {
    display: block;
    float: left;
    min-width: 130px;
    padding: 0 8px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 5px;
    box-sizing: border-box;
    border: 1px solid #b5b5b5;
    color: #666666;
    font-size: 14px;
    text-align: center;
}

.product .cats a.active,
.product .cats a:hover {
    color: #fff;
    background: #EA362E;
    border-color: #EA362E;
}

.product .list {
    margin-top: 40px;
    overflow: hidden;
}

.product .list li {
    width: 325px;
    height: 204px;
    position: relative;
    margin-right: 20px;
    float: left;
    margin-bottom: 20px;
}

.product .list li:nth-child(4n) {
    margin-right: 0;
}

.product .list img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.product .list li .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    box-sizing: border-box;
    padding: 20px;
    display: none;
    padding-top: 40px;
}

.product .list li .content a {
    display: block;
    margin: 0 auto;
    width: 36px;
    height: 36px;
    margin-top: 12%;
    position: relative;
}

.product .list li .content i {
    font-size: 30px;
    color: #EA362E;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all .2s ease;
}

.product .list li .content h4 {
    text-align: center;
    font-size: 1.1rem;
    font-weight: normal;
    color: #fff;
    line-height: 2;
    height: 32px;
    overflow: hidden;
}

.product .list li .content .intro {
    font-size: 12px;
    color: #fff;
    line-height: 2;
    text-transform: uppercase;
    text-align: center;
    height: 24px;
    overflow: hidden;
}

.product .list li .content a:hover i {
    font-size: 36px;
    transition: all .2s ease;
}

@media screen and (max-width:1400px) {
    #product .product {
        width: 90%;
    }
    .product .list {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        margin-top: 20px;
    }
    .product .list li {
        width: 25%;
        height: auto;
        margin-right: 0;
        box-sizing: border-box;
        padding: 0 10px;
    }
}

@media screen and (max-width:960px) {
    .product .list li {
        width: 33.3%;
    }
}

@media screen and (max-width:768px) {
    #product .product {
        width: 94%;
    }
    .product .list {
        justify-content: space-between;
        width: 100%;
    }
    .product .list li {
        width: 48%;
        padding: 0;
        margin-bottom: 15px;
    }
    .product .list li .content a {
        margin-top: 20px;
    }
    .product .list li .content {
        padding: 5px;
        padding-top: 40px;
    }
    .product .list li .content h4 {
        font-size: 14px;
        height: 28px;
    }
    .product .list li .content .intro {
        display: none;
    }
    .product .cats a {
        width: 100px;
        height: 30px;
        line-height: 30px;
        font-size: 12px;
        overflow: hidden;
    }
}

#news {
    width: 100%;
    padding-bottom: 90px;
}

#news .news {
    width: 1360px;
    margin: 0 auto;
}

#news #location {
    border: none;
}

#news #location .location {
    line-height: 24px;
}

#news .news .cats {
    padding: 24px 0;
    margin-top: 25px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#news .news .cats a {
    display: inline-block;
    min-width: 90px;
    padding: 0 8px;
    white-space: nowrap;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 14px;
    border: 1px solid #EA362E;
    color: #666;
    border-right: none;
}

#news .news .cats a:last-child {
    border-right: 1px solid #EA362E;
}

#news .news .cats a:hover,
#news .news .cats a.active {
    background: #EA362E;
    color: #fff;
}

.news .list {
    box-sizing: border-box;
    padding: 0 30px;
}

.news .list li {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    margin: 30px 0;
    box-shadow: 0 5px 15px #e9e9e9;
    display: flex;
    height: 180px;
    transition: all .4s ease;
}

.news .list li:hover {
    box-shadow: 0 5px 15px #b5d6d2;
    transition: all .4s ease;
    transform: translateY(-10px);
}

.news .list li a.img {
    display: block;
    transition: all .4s ease;
}

.news .list li a.img:hover {
    background: #333;
    transition: all .4s ease;
}

.news .list li a.img:hover img {
    opacity: .5;
    transition: all .4s ease;
}

.news .list li .time {
    width: 180px;
    text-align: center;
}

.news .list li .time span {
    display: block;
}

.news .list li .time span:first-child {
    color: #999999;
    line-height: 20px;
    margin-top: 65px;
}

.news .list li .time span:last-child {
    font-size: 24px;
    font-weight: bold;
}

.news .list li img {
    height: 180px;
    position: relative;
    z-index: 99;
    top: -1px;
    transition: all .4s ease;
}

.news .list li .content {
    width: 100%;
    box-sizing: border-box;
    padding: 20px;
    position: relative;
    flex: 1;
}

.news .list li .content h4 {
    height: auto;
    overflow: hidden;
    font-size: 1.1rem;
    line-height: 2;
}

.news .list li .content .intro {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 28px;
    color: #666;
    margin-top: 10px;
}

.news .list li .content #more {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-size: 14px;
    color: #999999;
}

.news .list li .content #more:hover {
    color: #EA362E;
}

@media screen and (max-width:1400px) {
    #news .news {
        width: 90%;
    }
}

@media screen and (max-width:1080px) {
    .news .list li .content .intro {
        -webkit-line-clamp: 2;
    }
}

@media screen and (max-width:960px) {
    .news .list li {
        height: 120px;
    }
    .news .list li img {
        height: 120px;
    }
    .news .list li .time {
        width: 120px;
    }
    .news .list li .time span:first-child {
        margin-top: 30px;
    }
    .news .list li .content {
        padding: 10px;
    }
    .news .list li .content a {
        bottom: 10px;
        right: 10px;
    }
    .news .list li .content .intro {
        -webkit-line-clamp: 1;
    }
}

@media screen and (max-width:768px) {
    #news .news {
        width: 96%;
    }
    #news .news .cats {
        margin: 0;
        padding: 10px 0;
    }
    .news .list {
        padding: 0;
    }
    .news .list li {
        margin: 15px 0;
        height: 90px;
    }
    .news .list li .time {
        display: none;
    }
    .news .list li img {
        height: 90px;
    }
    .news .list li .content {
        padding: 5px;
        padding-left: 10px;
    }
    .news .list li .content h4 {
        font-weight: normal;
        font-size: 15px;
        line-height: 20px;
        height: 20px;
        margin-top: 5px;
    }
    .news .list li .content .intro {
        font-size: 12px;
        height: 18px;
        line-height: 18px;
        margin-top: 5px;
    }
    .news .list li .content a {
        font-size: 12px;
    }
}

#proShow {
    padding-top: 81px;
}

#proShow #location .location {
    line-height: 20px;
}

.proShow {
    width: 1360px;
    margin: 0 auto;
}

.proShow .content {
    display: flex;
    justify-content: center;
    padding: 25px 0;
}

.proShow .content .left {
    width: 50%;
    box-sizing: border-box;
    padding-right: 80px;
}

.proShow .content .right {
    width: 50%;
    box-sizing: border-box;
    padding-left: 24px;
}

.proShow .content .left .big {
    width: 100%;
    height: 500px;
    box-sizing: border-box;
    border: 1px solid #bfbfbf;
    position: relative;
    float: right;
}

.proShow .content .left .big img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
}

.proShow .content .left .small {
    width: 100%;
    height: 110px;
    margin-top: 20px;
    float: right;
}

.proShow .content .left .small .swiper-slide {
    width: 110px;
    height: 110px;
    box-sizing: border-box;
    border: 1px solid #bfbfbf;
    overflow: hidden;
    position: relative;
}

.proShow .content .left .small .swiper-slide-active {
    background: #333;
}

.proShow .left .small .swiper-slide-active img {
    opacity: .5;
}

.proShow .content .left .small img {
    max-width: 100%;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.proShow .content .right h3 {
    font-size: 20px;
    color: #000;
    font-weight: normal;
    line-height: 2;
}

.proShow .content .right h4 {
    font-size: 18px;
    font-weight: normal;
    line-height: 2;
}

.proShow .content .right article {
    font-size: 14px;
    line-height: 26px;
    color: #999999;
    padding-top: 10px;
}

.proShow .other {
    display: flex;
}

.proShow .other .left {
    width: 320px;
    margin-right: 20px;
}

.proShow .other .right {
    width: 100%;
    flex: 1;
}

.proShow .other h4 {
    color: #343434;
    line-height: 2;
}

.proShow .other .left ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #999;
    padding: 20px 12px;
    box-sizing: border-box;
}

.proShow .other .left ul a {
    width: 100%;
    display: block;
    margin-bottom: 20px;
    position: relative;
}

.proShow .other .left ul a img {
    width: 100%;
    height: auto
}

.proShow .other .left ul a p {
    text-align: center;
    line-height: 2;
}

.proShow .other .right article {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #999;
    padding: 20px;
    box-sizing: border-box;
}

.proShow .other .right article p {
    font-size: 14px;
    line-height: 2;
    color: #999999;
}

.proShow .other .right article img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

@media screen and (max-width:1400px) {
    #proShow .proShow {
        width: 90%;
        box-sizing: border-box;
        font-weight: normal;
    }
}

@media screen and (max-width:1200px) {
    .proShow .left .big {
        width: 80%;
    }
    .proShow .left .small {
        width: 80%;
    }
}

@media screen and (max-width:1080px) {
    .proShow .other {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .proShow .other .right {
        width: 100%;
    }
    .proShow .other .left {
        margin: 0;
        margin-top: 20px;
        width: 100%;
        margin-bottom: 30px;
    }
    .proShow .other .left ul a {
        width: 24%;
        float: left;
        margin-right: 1%;
        margin-bottom: 0;
    }
    .proShow .content .left {
        padding-right: 40px;
    }
    #proShow {
        padding-top: 61px;
    }
}

@media screen and (max-width:768px) {
    #proShow {
        padding-top: 50px;
    }
    #proShow .proShow {
        flex-wrap: wrap;
    }
    #proShow .proShow .left,
    #proShow .proShow .right {
        width: 100%;
        padding: 0;
    }
    #proShow .proShow .content .left {
        box-sizing: border-box;
        padding: 0 20px
    }
    .proShow .left .big {
        float: inherit;
        width: 100%;
        border: none;
    }
    .proShow .left .small {
        float: inherit;
        margin-bottom: 20px;
        height: 60px;
    }
    .proShow .right article {
        padding: 0;
        margin: 0 auto;
        width: 100%;
        font-size: 14px;
        line-height: 2;
    }
    .proShow .left .small .swiper-slide {
        width: 60px;
        height: 60px;
    }
    .proShow .left .big img {
        transform: translateX(-50%);
        top: auto;
        bottom: 0;
    }
    #proShow .proShow {
        width: 96%;
    }
    .proShow .content {
        flex-wrap: wrap;
    }
    .proShow .other .left ul a {
        width: 50%;
        margin: 0;
        box-sizing: border-box;
    }
    .proShow .other .left ul a:nth-child(2n+1) {
        padding-right: 5px;
    }
    .proShow .other .left ul a:nth-child(2n) {
        padding-left: 5px;
    }
    .proShow .content .left .small .swiper-slide {
        width: 60px;
        height: 60px;
    }
    .proShow .other .left ul {
        border: none;
        padding: 0;
    }
}

#newShow,
#caseShow {
    width: 100%;
    padding-bottom: 90px;
}

#newShow #location,
#caseShow #location {
    border: none;
}

#newShow #location .location,
#caseShow #location .location {
    line-height: 24px;
}

#newShow .newShow,
#caseShow .caseShow {
    width: 1360px;
    margin: 0 auto;
}

.newShow h3,
.caseShow h3 {
    font-size: 24px;
    font-weight: normal;
    line-height: 2;
    text-align: center;
    padding: 25px 0;
}

.caseShow h3 {
    padding: 25px 0 0 0 !important;
}

.caseShow .time,
.newsShow .time {
    text-align: center;
    line-height: 24px;
    padding-bottom: 35px;
}

.caseShow .time span,
.newsShow .time span {
    font-size: 12px;
    color: #999999;
}

.caseShow .time span:first-child,
.newsShow .time span:first-child {
    margin-right: 30px;
}

.newShow article p,
.caseShow article p {
    font-size: 14px;
    line-height: 30px;
    color: #666464;
}

.caseShow img {
    max-width: 100%;
    margin: 0 auto;
    margin: 30px auto;
}

@media screen and (max-width:1400px) {
    #newShow .newShow,
    #caseShow .caseShow {
        width: 90%;
    }
}

@media screen and (max-width:768px) {
    .newShow h3,
    .caseShow h3 {
        font-size: 22px;
        padding: 10px;
        padding-bottom: 20px;
    }
    .caseShow .time {
        padding-bottom: 20px;
    }
}

#newsShow {
    width: 1360px;
    margin: 0 auto;
}

#newsShow .newsShow {
    width: 100%;
    margin: 20px 0;
}

.newsShow h3 {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}

.newsShow article {
    font-size: 14px;
    line-height: 30px;
    color: #666464;
}

.newsShow article p {
    margin: 15px 0;
}

.newsShow article img {
    max-width: 100%;
    height: auto;
}

#change {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

#change a {
    color: #000000;
    margin: 10px 0;
}

#change a:hover {
    color: #EA362E;
    ;
}

@media screen and (max-width:1400px) {
    #newsShow {
        width: 90%;
    }
}

@media screen and (max-width:768px) {
    #newsShow {
        width: 94%;
    }
    .newsShow h3 {
        font-size: 18px;
        line-height: 2;
    }
    #change a {
        font-size: 14px;
    }
}

#case {
    width: 100%;
    padding-bottom: 90px;
}

#case #location {
    border: none;
}

#case #location .location {
    line-height: 24px;
}

#case .case {
    width: 1360px;
    margin: 0 auto;
}

.case .list li {
    display: block;
    display: flex;
    align-content: flex-start;
    margin-bottom: 40px;
    justify-content: center;
}

.case .list li .time {
    width: 200px;
    height: 120px;
    text-align: center;
    background: #EA362E;
    z-index: 999;
}

.case .list .time span {
    display: block;
    color: #fff;
    line-height: 120px;
    font-size: 30px;
}

.case .list .box {
    width: 800px;
    box-shadow: 0px 13px 25px #e8e8e8;
}

.case .list .box img {
    width: 100%;
}

.case .list .box .content {
    box-sizing: border-box;
    padding: 0 20px;
}

.case .list .box .content h4 {
    line-height: 42px;
    padding-top: 8px;
    font-size: 18px;
    font-weight: normal;
    position: relative;
}

.case .list .box .content h4::after {
    content: '';
    position: absolute;
    width: 90px;
    height: 2px;
    background: #4dd1c3;
    bottom: 0;
    left: 0;
}

.case .list .box .content .intro {
    font-size: 14px;
    line-height: 24px;
    padding-top: 5px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.case .list .box .content a {
    display: block;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #666666;
    font-size: 14px;
    color: #666;
    float: right;
    margin: 15px 0 30px 0;
}

.case .list .box .content a:hover {
    background: #4dd1c3;
    color: #fff;
    border-color: #4dd1c3;
}

@media screen and (max-width:1400px) {
    #case .case {
        width: 90%;
    }
}

@media screen and (max-width:1200px) {
    #case .case {
        box-sizing: border-box;
        padding: 0 30px;
    }
    .case .list .box {
        flex: 1;
        width: 100%;
    }
}

@media screen and (max-width:960px) {
    #case .case {
        padding: 0;
    }
    .case .list li .time {
        width: 150px;
        height: 90px;
        line-height: 90px;
    }
    .case .list .time span {
        font-size: 20px;
        line-height: 90px;
    }
}

@media screen and (max-width:768px) {
    .case .list li .time {
        display: none;
    }
    .case .list li {
        margin-bottom: 20px;
    }
    .case .list .box .content a {
        float: none;
        margin: 10px auto 30px;
    }
}

.downDetail {
    display: block;
    width: 100px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #666666;
    font-size: 14px;
    color: #666;
    /* float: right; */
    margin: 15px 0 30px 0;
}

.downDetail:hover {
    background: #4dd1c3;
    color: #fff;
    border-color: #4dd1c3;
}


/* 留言反馈 */


/* #form label {width:100%;display:  flex;align-items:  center;position: relative; justify-content:space-between;}
form {width: 100%;margin:0 auto;height: auto;display: flex;margin-top:40px;text-align:  center;flex-wrap:wrap;overflow: hidden;justify-content: space-between;}
form label {padding-bottom: 25px; width:100%;}
form label span {padding-right: 20px;}
form label input {width: 100%;border: 1px solid #dcdcdc;font-size:14px;line-height: 3;padding:0 10px;flex: 1;background: #313131;color: #fff; outline:none;}
form label input:focus , form label textarea:focus{background:#666; border-color:#333; box-shadow:0 0 10px #eee; transition:all .3s ease;}
form label textarea {width:100%;vertical-align: top;border: 1px solid #dcdcdc;font-size:14px;color: #fff;line-height:1.5;font-family: 'Courier New';box-sizing: border-box;padding:10px;background: #313131; outline:none;}
#form .nickname , #form .phone {width:48%; }
form label p {position: absolute;left: 0px;bottom: 0px;color: #EA362E;font-size: 14px;}
#submit {width: 150px;height: 40px;line-height:40px;display:block;background: #cbcbcb;color: #333;outline: none;margin: 0 auto;margin-top: 30px;}
 @media screen and (max-width:1400px){
    .message{ width: 100%;}
    .message h3{ font-size: 16px; padding: 12px 10px;}
    form{ width: 100%;}
    form label input{ width:64%; line-height: 2.5em;}
    form label textarea{width: 100%;}
  }
  #feedback {width: 780px;height:auto;text-align:center;padding:50px 0;margin: 0 auto;}
  #feedback h3 {font-size:24px; font-weight:normal; line-height:2;}
  #feedback .intro {color:#666666;}
  
  @media screen and (max-width:800px){
     #feedback {width:90%;}
  }
  @media screen and (max-width:768px){
      #form .nickname , #form .phone {width:100%; }
      #form label {padding-bottom:20px;}
      #feedback h3 {font-size:20px;}
      #feedback .intro {font-size:14px;}
      #feedback form {margin-top:15px;}
  } */

.indexFeed {
    background-color: #fff;
}

.indexFeed .container {
    width: 1200px;
    margin: 0 auto;
}

.feedbackBox {
    margin: 50px auto;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
}

.feedbackBox dt {
    position: relative;
}

.feedbackBox dt>img {
    display: block;
}

.feedbackBox dt>div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: rgba(33, 193, 177, 0.7);
    text-align: center;
}

.feedbackBox dt>div span {
    font-size: 18px;
    color: #fff;
}

.feedbackBox .feedForm {
    margin-left: 30px;
    width: 70%;
}

#formIndex {
    width: 100%;
    margin-top: 10px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

#formIndex label:nth-of-type(1),
#formIndex label:nth-of-type(2),
#formIndex label:nth-of-type(3),
#formIndex label:nth-of-type(4) {
    display: block;
    width: 47%;
}

#formIndex input[type="text"] {
    display: block;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    line-height: 34px;
    color: #444;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    outline-color: #238ad4;
    outline: none;
}

#formIndex input[type="text"]:focus,
#formIndex label[for='content'] textarea:focus {
    border-color: #67ac4857;
    box-shadow: 0 0 5px #67ac4857;
}

#formIndex label p {
    color: red;
    font-size: 12px;
    box-sizing: border-box;
    padding: 0 10px;
    line-height: 1.7;
    height: 20px;
}

#formIndex label[for='content'] {
    width: 100%;
}

#formIndex label[for='content'] textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    box-sizing: border-box;
    outline-color: #238ad4;
    border: 1px solid #e5e5e5;
    outline: none;
}

#formIndex label[for='submit'] a {
    line-height: 34px;
    background-color: #EA362E;
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    display: inherit;
}

#formIndex label[for='submit'] a:hover {
    background-color: #5fd2c7;
}

#formIndex label[for='submit'] {
    margin-left: 0;
    width: 100%;
}

#formIndex button[type='reset'] {
    width: 90px;
    line-height: 34px;
    margin-right: 50%;
    border: 1px solid #eee;
    color: #333;
    font-size: 14px;
}

@media screen and (max-width: 1300px) {
    .feedbackBox {
        width: 95%;
    }
}

@media screen and (max-width: 1200px) {
    .indexFeed .container {
        width: 90%;
        margin: 0 auto;
    }
}

@media screen and (max-width:980px) {
    .feedbackBox dt {
        width: 40%;
    }
    .feedbackBox dt>img {
        width: 96%;
    }
    .feedbackBox .feedForm {
        margin-left: 1%;
        width: 58%;
    }
}

@media screen and (max-width:768px) {
    .feedbackBox {
        flex-wrap: wrap;
        margin: 30px 10px;
    }
    .feedbackBox dt {
        width: 96%;
    }
    .feedbackBox dt>img {
        width: 100%;
    }
    .feedbackBox .feedForm {
        width: 96%;
        margin-top: 20px;
    }
    #formIndex button[type='reset'] {
        margin-right: 0px;
    }
}


/* single 关于我们 */

#about {
    width: 100%;
}

#about .about {
    margin: 0 auto;
    line-height: 32px;
    margin-bottom: 40px;
}

#location {
    width: 1360px;
    margin: 0 auto;
    padding: 22px 0;
}

#location i {
    font-size: 14px;
}

#location span a {
    margin-right: 5px;
}

#location span a:hover {
    color: #EA362E;
}

@media screen and (max-width:1400px) {
    #location {
        width: 100%;
    }
}

#about .about span i {
    font-size: 12px;
}

.about ul li {
    display: flex;
    justify-content: center;
}

.about ul li:nth-child(2n) {
    flex-direction: row-reverse;
}

.about ul li .img,
.about ul li .content {
    width: 100%;
    overflow: hidden;
}

.about ul li .img img {
    width: 100%;
}

.about ul li .content .box {
    width: 1300px;
    height: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about ul li:nth-child(2n) .content .box {
    padding-right: 40px;
}

.content .box h3 {
    font-size: 24px;
    line-height: 2;
    font-weight: normal;
    padding-top: 70px;
}

.content .box .intro {
    font-size: 16px;
    line-height: 2;
}

.content .box article {
    font-size: 14px;
    line-height: 2;
    color: #666666;
    padding: 20px 0;
}

.content .box article img {
    max-width: 100%;
    display: inline;
    margin: 10px 5px;
}

@media screen and (max-width:1400px) {
    .about ul li .content .box {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .content .box h3 {
        padding-top: 10px;
    }
}

@media screen and (max-width:1360px) {
    #location {
        width: 100%;
        box-sizing: border-box;
        padding: 20px;
    }
}

@media screen and (max-width:960px) {
    .about ul li {
        flex-wrap: wrap;
    }
    .about ul li:nth-child(2n) {
        flex-direction: column;
    }
    #location span {
        font-size: 14px;
    }
    .about ul li {
        flex-direction: column;
    }
    .about ul li .img,
    .about ul li .content {
        width: 100%;
        flex-wrap: wrap;
    }
    .about ul li .img img {
        width: 100%;
    }
    .about ul li .content .box {
        width: 96%;
    }
    .about ul li:nth-child(2n) .content .box {
        padding: 0;
        width: 100%;
    }
}

@media screen and (max-width:768px) {
    #about .about {
        width: 96%;
        margin: 0 auto;
        padding: 0;
    }
    .content .box h3 {
        font-size: 20px;
        text-align: center;
    }
    .content .box .intro {
        text-align: center;
        font-size: 14px;
    }
    .content .box article {
        text-align: justify;
        margin: auto;
    }
    #location span i {
        font-size: 12px;
    }
    #location {
        padding: 5px 10px;
    }
}

#contact * {
    width: 100%;
    overflow: hidden;
    color: #fff;
}

#contact .contact {
    width: 600px;
    ;
    margin: 20px auto;
}

.contact {
    background: #88bbb6;
    ;
    width: 640px;
    height: 380px;
    text-indent: 90px;
    padding: 40px;
    box-sizing: border-box;
    color: #fff
}

.contact h3 {
    font-size: 24px;
    line-height: 1.5;
    font-weight: normal;
    padding-top: 20px;
}

.contact .intro {
    font-size: 16px;
    line-height: 2;
    color: #fff;
}

.contact div {
    line-height: 2;
    padding-top: 10px;
}

@media screen and (max-width:768px) {
    #contact .contact {
        width: 94%;
        padding: 20px 6px;
        text-indent: 6px;
    }
    .contact h3 {
        font-size: 20px;
    }
}


/* 没有信息列表 */

#Nofound {
    width: 90%;
    margin: 20px 0;
    text-align: center;
    height: 300px;
    line-height: 300px;
    border: 1px solid #333;
    margin: 0 auto;
}


/* 视频 */

#video {
    width: 100%;
    height: auto;
}

#video .video {
    width: 1400px;
    margin: 0 auto;
}

.video ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 30px;
    width: 1400px;
    margin: 0 auto;
}

.video li {
    width: 540px;
    height: auto;
    padding-bottom: 12px;
}

.video li .img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.video li .img img {
    opacity: 0.8;
    width: 100%;
    transition: all .4s ease;
}

.video li .img a i {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    text-align: center;
    line-height: 58px;
    margin-left: -29px;
    margin-top: -29px;
}

.video li .img:hover img {
    opacity: 1;
    transition: all .4s ease;
}

.video li .img:hover a i {
    transform: scale(1.4);
    background: #000;
    transition: all .4s ease;
}

.video li .img:hover a i:hover {
    background: #EA362E;
}

.video li .title {
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    padding-top: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.video li .setting {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    line-height: 26px;
    color: #989898;
    padding-top: 5px;
}

.views i.iconfont {
    font-size: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

@media screen and (max-width:1440px) {
    #video .video {
        width: 90%;
    }
    .video ul {
        justify-content: center;
        width: 90%;
    }
    .video li {
        width: 42%;
        margin: 0 10px;
    }
    .video li .img {
        height: auto;
    }
    .video li .title {
        font-size: 16px;
    }
}

@media screen and (max-width:768px) {
    #video .video {
        width: 96%;
    }
    .video ul {
        justify-content: space-around;
    }
    .video li {
        width: 46%;
        margin: 0;
    }
    .video li .title {
        font-size: 14px;
        line-height: 20px;
    }
    .video li .setting {
        display: none;
    }
}

.videoShow {
    width: 950px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
}

.videoShow h4 {
    text-align: center;
    font-size: 30px;
    color: #333333;
    padding-top: 25px;
}

.videoShow .setting {
    font-size: 14px;
    line-height: 20px;
    color: #999999;
    text-align: center;
    padding-top: 12px;
}

.videoShow .setting span {
    padding: 0 10px;
}

.videoShow .setting a {
    color: #999999;
}

.videoShow .setting a:hover {
    color: #EA362E;
}

.videoShow video {
    width: 100%;
    height: auto;
    background: #000;
    margin: 0 auto;
    margin-top: 38px;
}

.videoShow article {
    color: #666666;
    margin: 0 auto;
    text-align: justify;
    width: 100%;
    padding: 10px 0 85px 0;
}

.videoShow article p {
    font-size: 16px;
    line-height: 26px;
}

#change {
    display: flex;
    justify-content: space-between;
    line-height: 26px;
    color: #000;
    font-size: 16px;
    flex-wrap: wrap;
}

#change a {
    font-size: 14px;
    color: #666666;
}

#change a:hover {
    color: #EA362E;
}

@media screen and (max-width:1000px) {
    .videoShow {
        width: 90%;
    }
}

@media screen and (max-width:768px) {
    .videoShow {
        width: 96%;
    }
    .videoShow h4 {
        font-size: 20px;
    }
    .videoShow video {
        margin-top: 20px;
        padding-bottom: 40px;
    }
    .videoShow article p {
        font-size: 14px;
    }
}

#jobscats {
    width: 100%;
    height: 60px;
    line-height: 60px
}

#jobscats ul {
    width: 1310px;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center
}

#jobscats ul li {
    height: 60px;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #eee;
    margin: 0 15px;
}

#jobscats ul li a {
    color: #333;
    display: block;
    padding: 0 15px;
    position: relative;
}

#jobscats ul li:hover a,
#jobscats ul li a.actor {
    color: #EA362E
}

#jobscats ul li:hover {
    border-bottom: 3px solid #EA362E;
    box-sizing: border-box;
}

#jobscats ul li a.actor::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #EA362E;
    content: '';
    width: 100%;
}

@media screen and (max-width:1350px) {
    .job {
        width: 96%
    }
    .jobContent dl {
        width: 96%
    }
}

#job {
    width: 100%;
    height: auto;
    background: #efefef;
    padding: 35px 0
}

.job {
    width: 1310px;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.job .container {
    width: 100%;
    float: left;
    box-sizing: border-box;
    padding: 0 20px 20px 20px;
    background: #fff;
    margin-right: 25px;
    flex: 1;
}

.job .container h3 {
    line-height: 60px;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
    text-indent: 15px;
    margin-bottom: 15px;
    font-weight: 400
}

.job .container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 124px;
    height: 3px;
    background: #EA362E
}

.jobSearch {
    padding-bottom: 25px;
}

.jobSearch .jobContent {
    width: 1360px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.jobContent {
    width: 100%;
    height: auto;
    background: #fff
}

.jobContent .title {
    padding-top: 12px;
    border-bottom: 1px solid #eee;
    overflow: hidden
}

.jobContent .desc {
    padding: 20px 20px 40px 20px
}

.jobContent .title a {
    font-size: 18px;
    line-height: 32px;
    color: #333;
    font-weight: 400;
    height: 32px;
    overflow: hidden;
}

.jobContent .title a:hover {
    color: #EA362E
}

.jobContent .title .setting {
    height: 54px;
    color: #999;
    font-size: 12px;
    line-height: 54px;
    padding: 0;
}

.jobContent .title .setting li {
    /*float:left; */
    display: inline-block;
}

.jobContent .title .setting li i {
    padding-right: 8px
}

.jobContent dl {
    width: 78%;
    margin: 0 auto;
    padding: 45px 0 35px 0
}

.jobContent dl dt {
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    position: relative;
    text-indent: 20px;
    margin-bottom: 16px
}

.jobContent dl dt::after {
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 20px;
    background: #EA362E;
    content: ''
}

.jobContent dl dd {
    font-size: 16px;
    color: #666;
    line-height: 30px;
    position: relative;
    padding-left: 18px
}

.jobContent dl dd::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 0;
    width: 6px;
    height: 6px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: #666
}

#jobscats {
    width: 100%;
    height: 60px;
    line-height: 60px
}

#jobscats ul {
    width: 1310px;
    height: 60px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center
}

#jobscats ul li {
    height: 60px;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #eee;
    margin: 0 15px;
}

#jobscats ul li a {
    color: #333;
    display: block;
    padding: 0 15px;
    position: relative;
}

#jobscats ul li:hover a,
#jobscats ul li a.actor {
    color: #EA362E
}

#jobscats ul li:hover {
    border-bottom: 3px solid #EA362E;
    box-sizing: border-box;
}

#jobscats ul li a.actor::after {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    background: #EA362E;
    content: '';
    width: 100%;
}

@media screen and (max-width:1360px) {
    .job {
        width: 96%
    }
    .jobContent dl {
        width: 96%
    }
    .jobSearch .jobContent {
        width: 90%;
    }
}

@media screen and (max-width:768px) {
    .job {
        width: 100%;
        flex-wrap: wrap;
    }
    .job .container {
        margin: 0;
        margin-bottom: 25px;
    }
    .jobSearch .jobContent {
        width: 96%;
    }
}

#download {
    width: 100%;
    height: auto;
    background: #efefef;
    padding: 35px 0;
}

.download {
    width: 1310px;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.download .container {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 20px;
    background: #fff;
    position: relative;
    flex: 1;
    margin-right: 25px;
    padding-bottom: 20px;
}

.download .slidebar {
    width: 340px;
    height: auto;
    box-sizing: border-box;
    padding: 0 20px;
    background: #fff;
}

.download h4 {
    font-size: 18px;
    line-height: 32px;
    color: #333;
    padding: 14px 0 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    text-indent: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.download h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 2px;
    background: #EA362E
}

.download dl,
.help dl,
.video dl {
    width: auto;
    position: absolute;
    top: 30px;
    right: 20px
}

.download dl a,
.help dl a,
.video dl a {
    float: left;
    padding: 0 10px;
    font-size: 14px;
    color: #555;
    border-right: 1px solid #ccc;
    line-height: 1
}

.download dl a:last-child,
.help dl a:last-child,
.video dl a:last-child {
    border: none
}

.download dl a:hover,
.help dl a:hover,
.video dl a:hover,
.download dl a.actor,
.help dl a.actor,
.video dl a.actor {
    color: #EA362E
}

.download .container ul {
    width: 100%;
    height: auto;
    padding-top: 25px;
    padding-bottom: 50px;
    overflow: hidden
}

.download .container ul li {
    width: 23%;
    height: auto;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    margin-bottom: 35px
}

.download .container ul li:nth-child(4n) {
    margin-right: 0
}

.download .container li .img {
    width: 100%;
    height: auto;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    box-sizing: border-box;
    padding: 9px
}

.download .container li img {
    width: 100%;
    height: auto;
    box-sizing: border-box
}

.download .container li h5 {
    font-size: 16px;
    line-height: 32px;
    color: #333;
    padding-top: 5px;
    font-weight: 400;
    height: 32px;
    overflow: hidden
}

.download .container li .desc {
    font-size: 14px;
    line-height: 24px;
    color: #999
}

.download .container li .setting {
    font-size: 14px;
    color: #c9c9c9;
    font-size: 14px;
    line-height: 24px
}

.download .container li .setting span {
    padding-left: 8px
}

.download .container li h5 a {
    box-sizing: border-box;
    padding: 0 5px;
    color: #333;
    font-size: 16px
}

.download .container li h5 a:hover {
    color: #EA362E
}

.download .container li #down {
    display: block;
    width: 98px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    color: #fff;
    font-size: 14px;
    background: #EA362E;
    margin: 0 auto;
    margin-top: 14px
}

@media screen and (max-width:1350px) {
    .download {
        width: 96%;
        margin: 0 auto;
    }
}

@media screen and (max-width:960px) {
    .download .slidebar {
        width: 280px;
    }
}

@media screen and (max-width:768px) {
    .download {
        width: 100%;
        flex-wrap: wrap;
    }
    .download .container {
        margin: 0;
        margin-bottom: 25px;
    }
    .download .slidebar {
        width: 100%;
    }
}

.slidebar {
    width: 340px;
    background: #fff;
    padding: 0 16px;
    box-sizing: border-box;
}

.slidebar .search {
    width: 100%;
    height: auto;
    position: relative;
    padding-top: 20px
}

.slidebar input {
    width: 100%;
    height: 34px;
    line-height: 34px;
    border: 1px solid #eee;
    border-radius: 17px;
    box-sizing: border-box;
    outline: 0;
    padding: 0 20px
}

.slidebar input:focus {
    border-color: #333;
    color: #EA362E
}

.slidebar .search i {
    position: absolute;
    right: 30px;
    top: 24px
}

.slidebar h3 {
    font-size: 18px;
    line-height: 48px;
    font-weight: 400;
    padding-top: 20px;
    position: relative;
    padding-left: 12px
}

.slidebar h3::after {
    content: '';
    left: 0;
    top: 35px;
    width: 4px;
    height: 20px;
    background: #EA362E;
    position: absolute;
}

.slidebar li a {
    display: block;
    width: 100%;
    font-size: 14px;
    color: #666;
}

.slidebar li a img {
    width: 100%;
    height: auto
}

.slidebar li a p {
    line-height: 3
}

.slidebar a {
    width: 100%;
    border: none;
    box-shadow: 0 0 0;
    text-align: left;
    line-height: 1.5;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin: 0;
    display: block;
    color: #333
}

.slidebar a:hover {
    box-shadow: 0 0 0
}

.slidebar a:hover {
    color: #EA362E;
    transition: none;
    transform: none
}

.slidebar .img {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 22px 0;
    margin-bottom: 6px
}

.slidebar .img img {
    width: 100%;
    height: auto
}

@media screen and (max-width:960px) {
    .slidebar {
        width: 280px;
    }
}

@media screen and (max-width:768px) {
    .slidebar {
        width: 100%;
    }
}

#Notice {
    width: 100%;
    height: auto;
    background: #efefef;
    padding-bottom: 35px
}

.Notice {
    width: 1310px;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    padding-top: 35px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between
}

.Notice .container {
    width: 100%;
    height: auto;
    box-sizing: border-box;
    padding: 0 20px 20px 20px;
    background: #fff
}

.container .title {
    font-size: 20px;
    line-height: 3;
    text-indent: 15px;
    position: relative;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

#Notice .container .title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 110px;
    height: 2px;
    background: #EA362E;
    content: ''
}

.Notice nav.nav_pc {
    width: 100%;
    height: 50px;
    line-height: 50px;
    padding-top: 6px;
    border-bottom: 1px solid #eee
}

.Notice nav.nav_pc a {
    font-size: 16px;
    color: #333;
    line-height: 50px;
    display: block;
    width: 100px;
    text-align: center;
    float: left;
    position: relative
}

.Notice nav.nav_pc a:hover {
    color: #EA362E;
    transition: all .3s
}

.Notice nav.nav_pc a.actor {
    color: #EA362E
}

.Notice nav.nav_pc a.actor::after {
    position: absolute;
    width: 100px;
    height: 2px;
    background: #EA362E;
    bottom: 0;
    left: 0;
    content: ''
}

.noticeLists>li {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15px 0;
    display: flex;
    text-indent: 15px;
    border-bottom: 1px solid #eee;
    position: relative
}

.noticeLists .newContent {
    padding-left: 25px
}

.newContent h3 {
    font-size: 22px;
    line-height: 42px;
    font-weight: 400
}

.noticeLists a {
    display: block;
    overflow: hidden;
    color: #333
}

.noticeLists a:hover {
    color: #EA362E
}

.noticeLists>li a span {
    color: #ccc;
    position: absolute;
    right: 0;
    padding-right: 15px
}

.noticeLists {
    padding-bottom: 20px;
}

@media screen and (min-width:960px) and (max-width:1350px) {
    .Notice {
        width: 90%
    }
}

@media screen and (max-width:960px) {
    .Notice {
        width: 96%;
        flex-wrap: wrap
    }
    .Notice .container {
        width: 100%;
        margin-bottom: 20px
    }
    .Notice .slidebar {
        width: 100%;
        margin: 0;
        margin-bottom: 30px
    }
}


/*网站地图*/

.fw700 {
    font-weight: 700!important;
}

.bstcoop {
    width: 100%;
    margin: 0px auto;
    padding: 0;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}


/* 
.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
} */

@media (min-width: 768px) {
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

#sitemapPage {
    width: 100%;
}

#sitemapPage .container {
    width: 1360px;
    margin: 0 auto;
}

.sitemap .sitemap1 {
    padding: 15px 15px;
}

@media (max-width: 1360px) {
    #sitemapPage .container {
        width: 90%;
        margin: 0 auto;
    }
}

.videoUrl {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
    z-index: 20;
}

.videoOfficail {
    max-width: 1400px;
    width: 90%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#video {
    width: 100%;
    max-width: 1400px;
    height: auto;
}

.videoUrl img {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    padding: 10px;
}