@charset "utf-8";
* {
    outline: 0;
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@font-face {
    font-family: "robotoBold";
    src: url(../fonts/Roboto-Bold-3.ttf);
}
@font-face {
    font-family: "robotoMedium";
    src: url(../fonts/Roboto-Medium-12.ttf);
}
@font-face {
    font-family: "robotoLight";
    src: url(../fonts/Roboto-Light-10.ttf);
}
@font-face {
    font-family: "robotoRegular";
    src: url(../fonts/Roboto-Regular-14.ttf);
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url("../fonts/RedHatDisplay-Bold.ttf");
    font-weight: bold;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url("../fonts/RedHatDisplay-Medium.ttf");
    font-weight: 500;
}
@font-face {
    font-family: 'RedHatDisplay';
    src: url("../fonts/RedHatDisplay-Regular.ttf");
    font-weight: normal;
}
@font-face {
    font-family: 'RedHatDisplayMediumItalic';
    src: url("../fonts/RedHatDisplay-MediumItalic.ttf");
}
@font-face {
    font-family: 'RedHatText-Regular';
    src: url("../fonts/RedHatText-Regular.ttf");
}
.overscroll::-webkit-scrollbar, .selects::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}
.overscroll::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background: #E6E6E6;
}
.overscroll::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #fff;
}
.ovf {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.clearfix {
    zoom: 0;
}
.pr {
    position: relative;
}
.relative {
    position: relative;
}
.clearfix:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}
a, a:link, a:visited {
    color: inherit;
    text-decoration: none;
}
a:hover {
    color: #000;
}
ul, li, ol {
    list-style-type: none;
}
img {
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    outline: none;
    border: none;
}
.nobg {
    background: none !important;
}
.dis_mb {
    display: none;
}
@media(max-width:768px) {
    .dis_pc {
        display: none;
    }
    .dis_mb {
        display: block;
    }
}
body {
    width: 100%;
    overflow-x: hidden;
    font-size: 14px;
    /* font-family:'Microsoft Yahei',Arial, sans-serif,'robotoRegular'; */
    /* font-family: RedHatText-Regular; */
    font-family: 'RedHatDisplay';
    font-weight: normal;
    color: #666;
    line-height: 1.8;
    background: #F5F5F5;
}
/* flex 布局 */
.d-flex {
    display: -webkit-flex;
    display: flex;
}
.j-end {
    justify-content: flex-end;
}
.j-center {
    justify-content: center;
}
.j-sb {
    justify-content: space-between;
}
.j-start {
    justify-content: flex-start;
}
.f-wrap {
    flex-wrap: wrap;
}
.f-colu {
    flex-direction: column;
}
.a-center {
    align-items: center;
}
.a-self {
    align-items: self-start;
}
.a-start {
    align-items: flex-start;
}
.a-baseline {
    align-items: baseline;
}
.a-end {
    align-items: flex-end;
}
.al-start {
    align-content: flex-start;
}
.al-end {
    align-content: flex-end;
}
.al-center {
    align-content: center;
}
.al-sb {
    align-content: space-between;
}
.al-sa {
    align-content: space-around;
}
.al-stretch {
    align-content: stretch;
}
.dot {
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.dot2, .dot3, .dot4 {
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    -webkit-box-orient: vertical;
}
/*2行文本省略号*/
.dot2 {
    -webkit-line-clamp: 2;
}
/*3行文本省略号*/
.dot3 {
    -webkit-line-clamp: 3;
}
/*4行文本省略号*/
.dot4 {
    -webkit-line-clamp: 4;
}
.dot5 {
    -webkit-line-clamp: 5;
}
.flex {
    display: -webkit-box;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}
.flexTop {
    align-items: flex-start;
}
.flexWrap {
    flex-wrap: wrap;
}
.flex1 {
    flex: 1 1 auto;
}
.auto {
    max-width: 1200px;
    margin: auto;
}
.iconfont {
    margin: 0;
}
@media(max-width:1200px) {
    .auto {
        padding: 0 2%;
    }
}
.imgbox {
    overflow: hidden;
    position: relative;
}
.imgbox img {
    width: 100%;
    -webkit-transition: 1s;
    transition: 1s;
}
.item:hover .imgbox img, .imgbox:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* 头部 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 30;
    /* transition: .3s all; */
}
.header .white-logo {
    padding: 0;
    opacity: 1;
    position: absolute;
    left: 0;
}
.header .black-logo {
    opacity: 0;
    min-height:24px;
}
.header .line-ol {
    position: relative;
    padding-left: 20px;
    margin-left: 20px;
}
.header .line-ol::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 55%;
    height: 20px;
    width: 1px;
    background: #fff;
    transform: translateY(-50%);
}

.header.relat{ position:relative;}


.nav {
    padding-left: 50px;
}
.nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px;
    position: relative;
}
.nav li>a {
    display: block;
    /* border-bottom:2px solid transparent; */
    line-height: 60px;
    /*p/*adding-top: 7px;*/
    /* margin-bottom:-1px; */
    position: relative;
    z-index: 30;
    color: #fff;
    /*margin-bottom: 3px;*/
}
.nav li em {
    display: none;
}
.nav li .sub {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    width: 100vw;
    background: #fff;
    z-index: 50;
    border-top: 1px solid #E6E6E6;
    padding: 40px 0;
    display: none;
}
.nav li .sub2 {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    min-width: 100%;
    z-index: 50;
    background: #fff;
    border-top: 1px solid #E6E6E6;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    display: none;
}
.nav li .sub2 li {
    display: block;
    margin: 0;
}
.nav li .sub2 a {
    display: block;
    white-space: nowrap;
    padding: 0 20px;
    border: none;
    line-height: 3;
    text-align: center;
    color: #666;
}
.nav li .sub2 a:hover {
    background: #E6E6E6;
    color: #666;
}
.nav li .sub .auto {
    flex-wrap: wrap;
    align-items: stretch;
}
.nav li .sub dl {
    width: 20%;
    padding: 0 40px;
    margin-bottom: 20px;
}
.nav li .sub dl dt {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'RedHatDisplay';
    font-weight: bold;
}
.nav li .sub dd {
    line-height: 30px;
}
.nav li .sub a {
    display: block;
    white-space: nowrap;
}
.nav li .sub .seeMore a {
    color: #44B0FF;
}
.nav li.cur>a {
    color: #ff6600;
    border-color: #ff6600;
}
.searchBox {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
    z-index: 30;
    width: 640px;
    max-width: 100%;
    -webkit-transition: .6s;
    transition: .6s;
    top: -60px;
    opacity: 0;
}
.searchBox input {
    width: 100%;
    height: 40px;
    padding: 0 40px 0 20px;
    border: 1px solid #666;
    background: #fff;
    border-radius: 3px;
}
.searchBox .searchBtn {
    position: absolute;
    right: 10px;
    width: 20px;
    text-align: center;
    line-height: 20px;
    top: 50%;
    margin-top: -10px;
    z-index: 20;
}
.hide.header .searchBox {
    opacity: 1;
    top: 10px;
}
.topInner {
    -webkit-transition: .6s;
    transition: .6s;
}
.hide.header .topInner {
    opacity: 0;
    -webkit-transform: translate(0, -60px);
    transform: translate(0, -60px);
}
.openSearch {
    cursor: pointer;
    width: 50px;
    text-align: center;
    color: #fff;
}
.lange {
    white-space: nowrap;
}
.lange a {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #fff;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    color: #fff;
}
.lange a:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: rgba(0, 0, 0, .8);
    display: none;
}
.searchKeys {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    background: #fff;
    padding: 20px 0;
    color: #999;
    font-size: 14px;
    line-height: 32px;
    display: none;
}
.searchKeys .tit {
    padding: 0 20px;
    margin-bottom: 10px;
}
.searchKeys .op a {
    display: block;
    cursor: pointer;
    padding: 0 20px;
    font-size: 16px;
    color: #333;
}
.searchKeys .op a:hover {
    background: #F5F5F5;
}
.openMenu {
    display: none;
}
.web-other {
    display: none;
}
.header.Inside_color, .header.header_color {
    background: #fff;
    box-shadow: 0 0 5px rgb(0, 0, 0, .1);
}
.header.Inside_color .black-logo, .header.header_color .black-logo {
    opacity: 1;
}
.header.Inside_color .white-logo, .header.header_color .white-logo {
    opacity: 0;
}
.header.Inside_color .line-ol::after, .header.header_color .line-ol::after {
    background: #333;
}
.header.Inside_color .nav li>a, .header.header_color .nav li>a {
    color: #333;
}
.header.header_color .nav li.curs>a, .header.Inside_color .nav li.curs>a,
.header.header_color .nav li.cur>a, .header.Inside_color .nav li.cur>a {
    color: #ff6600;
}
.header.Inside_color .lange a, .header.header_color .lange a {
    border-color: #333;
    color: #333;
}
.header.Inside_color .openSearch, .header.header_color .openSearch {
    color: #333;
}
@media(min-width:1025px) {
    .header.header_color .nav>li>a:hover, .header.Inside_color .nav>li>a:hover, .header.header_color .nav li.cur>a, .header.Inside_color .nav li.cur>a {
        color: #ff6600;
    }
}
@media(max-width:1024px) {
    .nav li {
        margin: 0 10px;
    }
}
@media(max-width:960px) {
    .nav {
        padding-left: 30px;
    }
    .nav li {
        margin: 0 5px;
    }
}
@media(max-width:768px) {
    .header {
        padding: 15px 0;
    }
    .header .line-ol {
        margin-left: 20px;
        padding-left: 20px;
    }
    .header .line-ol::after {
        height: 20px;
    }
    .header .white-olw img {
        max-height: 24px;
    }
    .header .logo, .header .flexLeft, .header .flexRight {
        position: relative;
        z-index: 21;
    }
    .header .nav-box {
        position: fixed;
        left: 0;
        top: 52px;
        padding: 0;
        width: 100%;
        bottom: 0;
        z-index: 20;
        padding-top: 0;
        overflow: auto;
        background: rgba(0, 0, 0, .9);
        display: none;
    }
    .nav-box .nav {
        padding: 0 20px;
        position: relative;
        width: 100%;
    }
    .nav-box .nav li {
        margin: 0;
        display: block;
        position: relative !important;
    }
    .nav-box .nav li>a {
        border-color: #3D3F40;
        border-width: 1px;
        font-size: 16px;
        line-height: 2;
        padding: 10px 15px;
        padding-right: 40px;
        color: #fff;
    }
    .nav-box .nav li .sub, .nav-box .nav li .sub2 {
        position: static;
        width: auto;
        -webkit-transform: none;
        transform: none;
        border: none;
        padding: 10px 0;
    }
    .nav-box .nav li .sub .flex {
        flex-wrap: wrap;
    }
    .nav-box .nav li .sub dl {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .nav-box .nav li .sub dl dt {
        font-size: 16px;
        margin-bottom: 0;
    }
    .nav-box .nav li.hasChild em {
        display: block;
        font-style: normal;
        position: absolute;
        right: 0;
        top: 16px;
        font-size: 20px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        color: #fff;
        font-family: '宋体';
        font-weight: bold;
        font-size: 0;
    }
    
    .nav-box .nav li.hasChild em::before{ content: ''; display: inline-block; width: 8px; height: 8px; border: solid #fff; border-width: 1px 1px 0 0; transform: rotate(45deg); vertical-align: middle; }
    .nav-box .nav li.curs em::before{ transform: rotate(135deg);}
    .nav-box .nav li .sub .seeMore a {
        font-size: 12px;
    }
    .nav-box .nav li .sub2 a {
        color: #333;
        text-align: left;
        font-size: 14px;
        line-height: 1.5;
        padding: 7px 2%;
    }
    .searchBox {
        width: calc(100% - 40px);
        margin: 0 auto;
    }
    .searchBox input {
        height: 33px;
        line-height: 33px;
    }
    .openMenu {
        width: 24px;
        height: 24px;
        position: relative;
        cursor: pointer;
        display: block;
        z-index: 22;
    }
    .openMenu i {
        position: absolute;
        top: 50%;
        left: 0;
        margin-top: -1px;
        width: 70%;
        height: 2px;
        background: #fff;
        right: 0;
    }
    .openMenu i:after, .openMenu i:before {
        content: "";
        position: absolute;
        left: 0;
        width: 140%;
        height: 100%;
        background: #fff;
        -webkit-transition: .4s;
        transition: .4s;
    }
    .openMenu i:before {
        width: 120%;
        top: -8px;
    }
    .openMenu i:after {
        top: 8px;
    }
    .openMenu.cur i:before {
        width: 140%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0;
    }
    .openMenu.cur i:after {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 0;
    }
    .openMenu.cur i {
        background: none;
    }
    .header.Inside_color .openMenu i, .header.header_color .openMenu i {
        background: #333;
    }
    .header.Inside_color .openMenu.cur i, .header.header_color .openMenu.cur i {
        background: transparent;
    }
    .header.Inside_color .openMenu.cur i:after, .header.Inside_color .openMenu.cur i:before, .header.header_color .openMenu.cur i:after, .header.header_color .openMenu.cur i:before {
        background: #333;
    }
    .header.Inside_color .openMenu i:after, .header.Inside_color .openMenu i:before, .header.header_color .openMenu i:after, .header.header_color .openMenu i:before {
        background: #333;
    }
    .header.Inside_color .nav li>a, .header.header_color .nav li>a {
        color: #fff;
    }
    .header.Inside_color .nav li .sub2 li>a, .header.header_color .nav li .sub2 li>a {
        color: #333;
    }
    .openSearch {
        width: 25px;
    }
    .openSearch .iconfont {
        font-size: 18px;
    }
    .lange {
        display: none;
    }
    .web-other {
        display: block;
        padding: 30px 20px 10px;
    }
    .web-other dl {
        background: #292929;
    }
    .web-other dd {
        border-bottom: solid 1px #3D3F40;
        padding: 0 15px;
    }
    .web-other dd a {
        font-size: 16px;
        display: block;
        padding: 15px 0;
        color: #fff;
    }
    .web-other .language a {
        display: -webkit-flex;
        display: flex;
        align-items: center;
    }
    .web-other .language i {
        margin-right: 10px;
        display: block;
        width: 21px;
        height: 21px;
        background: url(../images/language.svg) no-repeat center;
    }
}
@media(max-width:640px) {
    .header {
        padding: 10px 0;
    }
    .header .white-olw img {
        max-height: 20px;
    }
}
/* banner */
.banner {
    position: relative;
}
.banner .pic img {
    width: 100%;
}
.banner .wap {
    display: none;
}
@media(max-width:1024px){
    .banner .pic {
        display: none;
    }
    .banner .wap {
        display: block;
    }
    .banner .wap img{ width:100%;}
}
/* 底部 */
.footer{ background-color: #fff;}
.footer .footTop {
    align-items: flex-start;
    padding: 50px 0 85px;
}
.footer .footTop .item {
    font-size: 14px;
}
.footer .footTop .item .t {
    font-size: 16px;
    color: rgba(56, 56, 56, 1);
    margin-bottom: 10px;
    font-weight: 500;
}
.footer .footTop .item li {
    line-height: 30px;
    white-space: nowrap;
    color: rgba(56, 56, 56, 0.6)
}
.footer .footTop .item li a {
    color: rgba(56, 56, 56, 0.6)
}
.footer .footTop .item li a:hover {
    color: rgba(56, 56, 56, 1)
}
.footer .footer-logo {
    margin-right: 30px;
}
.footer .footer-logo a {
    align-items: flex-end;
}
.footer .footer-logo a img{ min-height:24px;}
.footer .footer-logo .pic {
    margin-right: 25px;
    display: flex;
    align-items: center;
}
.footer .footer-two {
    padding: 20px 0;
    border-bottom: solid 1px #A6A6A6;
    direction: rtl;
}
.footer .footer-two .footer-iwto{ display:none;}
.footer .footer-two .wtd50 {
    width: 65%;
    direction: ltr;
    align-items: center;
}
.footer .footer-two li {
    margin-right: 30px;
    display: inline-flex;
    align-items: center;
    padding-top: 2px;
    line-height: normal;
}
.footer .footer-two li a {
    color: rgba(56, 56, 56, 0.6);
    line-height: normal;
    display: inline-flex;
}
.footer .footer-two li a:hover {
    color: rgba(56, 56, 56, 1);
}
.footer .footer-share {
    direction: ltr;
}
.footer .footer-share .item {
    margin: 0 10px;
}
.footer .footer-share .item a {
    display: block;
    background: #383838;
    border-radius: 50%;
    overflow: hidden;
}
.footer .footer-share .item span {
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 25px;
    height: 25px;
}
.footer .footer-share .icon1 span {
    background-image: url(../images/footer-icon1.png);
}
.footer .footer-share .icon2 span {
    background-image: url(../images/footer-icon2.png);
}
.footer .footer-share .icon3 span {
    background-image: url(../images/footer-icon3.png);
}
.footer .footer-share .icon4 span {
    background-image: url(../images/footer-icon4.png);
}
.footer .footer-share .icon5 span {
    background-image: url(../images/footer-icon5.png);
}
.footer-three {
    padding: 30px 0;
}
.footer-three .Copyright {
    margin-top: 10px;
    color: rgba(128, 128, 128, 0.5);
}
.footer-three .lange {
    white-space: nowrap;
}
.footer-three .lange a {
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #999;
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    color: rgba(0, 0, 0, 0.6);
}
.footer-three dl dd {
    margin-right: 25px;
}
.footer-three dl dd a {
    color: rgba(128, 128, 128, 0.5);
}
.footer-three dl dd:nth-child(5) a {
    font-size: 13px;
}
.footer-three dl dd a:hover {
    color: #000;
}
.footer-three dl dd:last-child {
    margin-right: 0;
}
.footer-three .lange a:last-child {
    padding: 0;
    margin: 0;
    border: none;
}
.footer-three .lange a.on, .footer-three .lange a:hover {
    color: #000;
}
.footer .submitBox {
    position: relative;
    border: 1px solid #808080;
    overflow: hidden;
    max-width: 210px;
    margin: 10px 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border-radius: 4px;
}
.footer .submitBox input {
    border: none;
    width: 100%;
    background: none;
    padding: 0 40px 0 10px;
    color: rgba(56, 56, 56, 1);
    line-height: 36px;
    vertical-align: middle;
}
.footer .submitBox {
    overflow: visible;
    line-height: 1;
}
.footer .submitBox .err {
    font-size: 12px;
    display: none;
    position: absolute;
    left: 10px;
    top: 100%;
    margin-top: 60px;
}
.footer .submitBox input::placeholder {
    color: rgba(56, 56, 56, 0.6);
}
.footer .submitBox .btn {
    position: absolute;
    background: #808080;
    right: 0;
    top: -1px;
    bottom: -2px;
    width: 40px;
    color: #fff;
    text-align: center;
    z-index: 10;
    cursor: pointer;
    line-height: 40px;
}
.footer .submitBox .btn button {
    background: none;
    outline: none;
    border: none;
    color: #fff;
}
.footer .submitBox #codeimg {
    height: 36px;
    width: 80px;
}
.footer .web-logo {
    display: none;
}
.footer-share .name {
    display: none;
}
.footer .footer-two {
    padding-top: 0;
}
.footer-three {
    padding-top: 25px;
    padding-bottom: 55px;
}
@media(max-width:1200px) {
    .footer .footer-two li {
        margin-right: 15px;
    }
    .footer .footer-logo {
        margin-right: 5px;
    }
}
@media(max-width:768px) {
    .footer .footTop {
        flex-wrap: wrap;
        padding: 0;
    }
    .footer .footTop .item {
        width: 100%;
        border-bottom: solid 1px #EBEBEB;
    }
    .footer .footTop .item ul {
        display: none;
        padding: 0 20px 20px;
    }
    .footer .footTop .item li {
        font-size: 16px;
        margin: 5px 0;
    }
    .footer .footTop .item .t {
        font-weight: bold;
        color: #333;
        position: relative;
        padding: 15px 20px;
        margin-bottom: 0;
    }
    .footer .footer-two .footer-iwto{width:100%;display:block; border-bottom: solid 1px #EBEBEB; padding: 0 15px; direction:ltr;}
    .footer .footer-two .footer-iwto .language{ font-size:16px; display:block; padding:15px 0; color:#333;}
    .footer .footer-two .footer-iwto .language a{ display:-webkit-flex; display:flex; align-items:center;}
    .footer .footer-two .footer-iwto .language i{ margin-right:10px; display: block; width:21px; height:21px; background: url(../images/language.svg) no-repeat center;}
    .footer .footTop .item .t::after {
        display: block;
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        width: 22px;
        height: 22px;
        font-weight: 500;
        font-size: 22px;
        transform: translateY(-50%);
        background-image: url(../images/icon1.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 10px auto;
    }
    .footer .footTop .item .t.on::after {
        background-image: url(../images/icon2.png);
    }
    .footer .footTop #subscription {
        border-bottom: none;
    }
    .footer .footTop #subscription .t::after {
        background-image: url(../images/icon2.png);
    }
    .footer .footTop #subscription .t {
        border-bottom: none;
    }
    .footer .footTop #subscription ul {
        display: block;
        padding: 0 20px;
    }
    .footer .web-logo {
        display: block;
    }
    .footer .web-logo .footer-logo {
        padding: 20px;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        border-bottom: solid 1px #ccc;
    }
    .footer .footer-logo {
        display: none;
    }
    .footer .footer-two {
        flex-wrap: wrap;
        padding: 20px 0;
        border-bottom: none;
    }
    .footer .footer-two .wtd50 {
        display: none;
    }
    .footer .footer-share {
        padding: 20px;
        width: 100%;
        border-top: solid 1px #ccc;
        border-bottom: solid 1px #ccc;
    }
    .footer .footer-share .name {
        color: #333;
        display: block;
        font-weight: bold;
    }
    .footer .footer-share .item a {
        background: #97989B;
    }
    .footer-three dl {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .footer-three dl dd {
        min-width: 40%;
        margin: 5px 0;
        margin-right: 0;
    }
    .footer .submitBox {
        max-width: 100%;
        width: 100%;
    }
}
@media(max-width:640px) {
    .footer .footTop .item li {
        font-size: 14px;
    }
}
/* 首页 */
.index-one .item{overflow: hidden}
.index-one .item .text {
    width: 100%;
    padding: 50px;
    color: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
}
.index-one .item .text .tit-one {
    font-size: 36px;
    font-weight: bold;
}
.index-one .item .text .more i {
    font-family: '宋体';
    font-style: normal;
    font-weight: bold;
    margin-left: 10px;
}
.index-one .item .text .more i{display: inline-block; width: 8px; height: 8px; border: solid #fff; border-width: 1px 1px 0 0; transform: rotate(45deg); vertical-align: middle; font-size: 0;} 
.index-one .item img {
    transition: all .5s;
}
.index-one .item:hover img {
    transform: scale(1.1);
}
.banner .swiper-pagination {
    bottom: auto;
    display: -webkit-flex;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    width: auto;
    margin-right: 40px;
}
.banner .swiper-pagination-bullet {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    overflow: hidden;
}
.banner .swiper-but::after {
    color: #fff;
    font-size: 14px;
}
.banner .swiper-but {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    border: 1px solid #fff;
    transition: all 0.5s;
    position: static;
    left: auto;
    top: auto;
    margin: 0;
}
.banner .swiper-button-prev{ margin-right:20px;}
.banner .swiper-but:hover {
    background: rgba(255, 255, 255, 0.5);
    border-color: transparent;
}
.banner .page_btn {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 45px;
    width: 96%;
    z-index: 3;
    justify-content: flex-start;
    gap: 10px;
    max-width: 900px;
}


.index-two {
    padding: 90px 0 5%;
}
.index-two .swiper-pagination {
    bottom: 45px;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-two .swiper-pagination-bullet {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    overflow: hidden;
}
.index-two .swiper-but::after {
    color: #fff;
    font-size: 14px;
}
.index-two .swiper-but {
    width: 36px;
    height: 36px;
    border-radius: 100%;
    transition: all 0.5s;
}
.index-two .swiper-but:hover {
    background: rgba(0, 0, 0, 0.5);
}
.index-two .swiper-button-prev {
    left: 27%;
}
.index-two .swiper-button-next {
    right: 27%;
}
.index-two .item {
    overflow: hidden;
    position: relative
}
.index-two .item video {
    width: 100%;
    height: 100%;
    background: #000;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10
}
.index-two .item .slide-video-poster{
    padding-bottom: 56.3%;
}
.index-two .item .text {
    opacity: 0;
    line-height: 1.4;
    font-size: 36px;
    position: absolute;
    top: 7%;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    transition: all .5s;
    z-index: 11
}
.index-two .item .text .more {
    font-size: 16px;
    margin-top: 10px;
}
.index-two .item .text .more a {
    color: #fff;
}
.index-two .item .text .more i {
    font-family: '宋体';
    font-style: normal;
    font-weight: bold;
    margin-left: 10px;
}
.index-two .item .text .more i{display: inline-block; width: 8px; height: 8px; border: solid #fff; border-width: 1px 1px 0 0; transform: rotate(45deg); vertical-align: middle;}
.index-two .swiper-slide-active .item .text {
    opacity: 1;
}
@media(min-width:640px) {
    .index-one {
        --content-width: calc(minmax(100vw, 1920px) - min(.8rem, 4.17vw) * 2);
        --gutter: 22px;
        --columns: 10;
        --row-size: calc((var(--content-width) -(var(--gutter) *(var(--columns) - 1))) / var(--columns));
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-gap: 22px;
        grid-auto-rows: minmax(var(--row-size), auto);
        padding: 22px 0 0;
    }
    .index-one .item {
        display: block !important;
        overflow: hidden;
        position: relative;
    }
    .index-one .item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .index-one .item:nth-child(1) {
        grid-column: 1/5;
        grid-row: 1/6
    }
    .index-one .item:nth-child(2) {
        grid-column: 5/11;
        grid-row: 1/1;
    }
    .index-one .item:nth-child(3) {
        grid-column: 8/5;
        grid-row: 2/6;
    }
    .index-one .item:nth-child(4) {
        grid-column: 8/11;
        grid-row: 2/6;
    }
}
@media(max-width:1200px) {
    .index-one .item .text {
        padding: 20px;
    }
    .index-one .item .text .tit-one {
        font-size: 22px;
    }
}
@media(max-width:768px) {
    .index-one {
        justify-content: space-between;
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
    }
    .index-one .item {
        width: 100%;
        margin-bottom: 4%;
        position: relative;
    }
    .index-one .item img {
        width: 100%;
        object-fit: cover;
        max-height: 350px;
    }
    .index-one .item .text .tit-one {
        font-size: 16px;
    }
    .index-one .item:nth-child(3) {
        width: 48%;
    }
    .index-one .item:nth-child(4) {
        width: 48%;
    }
    .index-one .item:nth-child(3) img,
    .index-one .item:nth-child(4) img{
        height: 180px;
    }
    .index-two {
        padding: 20px 0;
    }
    .index-two .swiper-button-prev {
        left: 5%;
    }
    .index-two .swiper-button-next {
        right: 5%;
    }
    .index-two .item .text {
        font-size: 20px;
    }
}
@media(max-width:640px) {
    .index-one {
        margin-top: 4%;
    }
    .banner .swiper-pagination{ margin-right:0}
    .banner .swiper-button-prev{ margin-right:10px}
    .banner .page_btn {
        justify-content:space-between;
        bottom: 20px;
    }
}



/*  */
.Inside-box {
    padding: 130px 0 60px;
    background: #F5F5F5;
}
.Inside-box_pro {
    padding-bottom: 5%;
}
@media(max-width:768px) {
    .Inside-box .auto {
        flex-wrap: wrap;
    }
    .Inside-box .right_con {
        width: 100%;
    }
    .Inside-box {
        padding-top: 82px;
    }
}
@media(max-width:768px) {
    .Inside-box {
        padding-top: 62px;
    }
}
/*  */
.ban-Inside {
	position: relative;
	padding-top:90px;
	transition: 0.5s;
}
.ban-Inside .piro{position: relative;}
.ban-Inside.back-white{background:#fff;}
.ban-Inside.back-black{background:#000;}
.ban-Inside img{width:100%;}
.ban-Inside .text{
    line-height: 1.5;
    color:#fff;
    position:absolute;
    width:100%;
    top:6%;
    left:0;
    text-align:center;
}
.ban-Inside .tit-big {
    font-weight: bold;
    font-size: 53px;
}
.ban-Inside .tit-small {
    font-size: 33px;
    /*font-weight: lighter;*/
}
.ban-Inside .more {
    margin-top: 15px;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ban-Inside .more a {
    width: auto;
    margin: 0;
    cursor: pointer;
    padding: 5px 25px;
    font-weight: lighter;
    color: #fff;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    border: solid 2px #fff;
    border-radius: 100px;
    transition: all 0.3s;
}
.ban-Inside .more .white {
    margin-left: 15px;
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 2px;
}
.ban-Inside .more .bluck {
    margin-left: 15px;
    display: block;
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow4.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 2px;
}
 .ban-Inside .more a:hover{ color:#000;background-color:rgba(255, 255, 255, 0.35) !important;border: solid 2px #fff;} 
/* .ban-Inside .more a:hover i{ background-image: url(../images/arrow3.png); } */
.ban-Inside .more a:hover .bluck{ background-image: url(../images/arrow4.png); } 
@media(max-width:1024px) {
.ban-Inside .text{ top:17%;}
}
@media(max-width:768px) {
    .ban-Inside .text {
        top:7%;
    }
    .ban-Inside .tit-big {
        font-size: 30px;
    }
    .ban-Inside .tit-small {
        font-size: 18px;
    }
    .ban-Inside .more {
        margin-top: 15px;
    }
}
@media(max-width:640px) {
    .ban-Inside {
        padding-top:78px;
    }
    .ban-Inside img {
        height: 70vh;
        object-fit: cover;
    }
	.ban-Inside .wap_pic img {
	    height: auto;
	    object-fit: contain;
	}
    .ban-Inside .tit-big {
        font-size: 27px;
    }
    .ban-Inside .tit-small {
        font-size: 17px;
    }
    .ban-Inside .more a {
        padding: 6px 20px;
		line-height: 20px;
		font-size: 12px;
		border: solid 1px #fff;
    }
	.ban-Inside .more i{
		background-size: 10px auto;
	}
}
/* 内页菜单 */
.back_f5f5f5 {
    background: #F5F5F5;
}
.categray_box {
    width: 240px;
}
.categray_box .web-cate {
    display: none;
}
.categray_box li {
    margin-bottom: 5px;
}
.categray_box li a {
    color: #000;
    display: block;
    padding: 7px 25px;
    border-radius: 100px;
}
.categray_box li a:hover, .categray_box li.active a {
    background: #fff;
}
.categray .item {
    position: relative;
    padding-right: 30px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
}
.categray .item a {
    display: block;
}
.categray .item>a {
    font-weight: bold;
}
.categray .item i {
    position: absolute;
    right: 0;
    top: 0;
    color: #ccc;
    font-size: 12px;
    cursor: pointer;
    width: 30px;
    text-align: center;
    -webkit-transition: .4s;
    transition: .4s;
}
.categray .item.cur i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    color: #333;
}
.categray .item li {
    font-size: 14px;
    color: #666;
}
.categray li.cur a {
    color: #ff6600;
}
.categray .item ul {
    display: none;
}
.twoSides {
    align-items: flex-start;
    width: 100%
}
.sideMenu {
    position: static;
    width: 285px;
    background: #fff;
    padding: 20px;
    flex: 0 0 auto;
    max-width: 25%;
}
.sideMenu_pro {
    background-color: transparent;
}
.sear {
    position: relative;
    margin-bottom: 20px;
    border: 1px solid #666;
    height: 32px;
    border-radius: 16px;
}
.sear input {
    background: none;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    padding: 0 20px 0 40px;
    color: #333;
    font-family: 'RedHatDisplay';
}
.sear i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    text-align: center;
    line-height: 32px;
}
@media(min-width:768px) {
    .sideMenu {
        position: sticky;
        top: 5%;
    }
    .sideMenu.sideMenu2 {
        position: sticky;
        top: 20%;
    }
}
@media(max-width:768px) {
    .sideMenu {
        width: 100%;
        max-width: none;
        margin-bottom: 20px;
    }
    .categray_box {
        width: 100%;
        position: relative;
        z-index: 5;
    }
    .categray_box .web-cate {
        padding: 10px 20px;
        color: #fff;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        width: 100%;
        background: #303233;
    }
    .categray_box .web-cate::after {
        margin-left: 10px;
        line-height: 1;
        content: '';
        display: block;
        font-style: normal;
        width: 6px; height: 6px; border: solid #fff; border-width: 0 1px 1px 0;
        transform: rotate(45deg);
        margin-top: -2px;
    }
    .categray_box ul {
        display: none;
        background: #3D3F40;
        position: absolute;
        width: 100%;
    }
    .categray_box li a {
        color: #fff;
        padding: 10px 20px;
        border-bottom: solid 1px #666;
        border-radius: 0;
    }
    .categray_box li.active {
        display: none;
    }
    .categray_box li:last-child {
        margin-bottom: 0;
    }
    .twoSides {
        flex-wrap: wrap;
    }
}
/*  */
.right_con {
    width: calc(100% - 300px);
}
.sideRight {
    margin-left: 20px;
}
.sideRight>.tit {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    font-weight: 500;
}
@media(max-width:768px) {
    .sideRight {
        margin-left: 0;
        width: 100%;
    }
    .sideRight>.tit {
        font-size: 22px;
        margin-bottom: 20px;
    }
}
/* 产品列表 */
.pro-list li {
    padding: 20px;
    background: #fff;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    border-radius: 10px;
}
.pro-list li:nth-child(3n) {
    margin-right: 0;
}
.pro-list li a {
    color: #333;
}
.pro-list li .pic {
    overflow: hidden;
}
.pro-list li .pic figure {
    padding-bottom: 85%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
    background-size: contain;
}
.pro-list li .tit {
    font-size: 24px;
    font-weight: bold;
}
.pro-list li .more {
    font-weight: bold;
    align-items: center;
}
.pro-list li .more i {
    margin-left: 10px;
    line-height: 1;
    font-family: '宋体';
    font-weight: bold;
    font-style: normal;
}
.pro-list li .more i{display: inline-block; width: 6px; height: 6px; border: solid #333; border-width: 1px 1px 0 0; transform: rotate(45deg); font-size: 0; vertical-align: middle;}

.pro-list li a:hover .pic figure {
    transform: scale(1.1);
}
@media(max-width:1024px) {
    .pro-list li {
        font-size: 12px;
    }
    .pro-list li .tit {
        font-size: 18px;
    }
    .pro-list li .pic figure {
        background-size: contain;
    }
}
@media(max-width:640px) {
    .pro-list li:nth-child(3n), .pro-list li {
        width: 49%;
        margin-right: 2%;
        margin-bottom: 2%;
    }
    .pro-list li:nth-child(2n) {
        margin-right: 0;
    }
    .pro-list li .tit {
        font-size: 16px;
    }
}
.header {
    z-index: 60;
}

.pbanner.pro {
    line-height: 1;
}
.pbanner.pro .videoBtn {
    margin-top: 30px;
}
.pbanner.pro .positionCenter {
    top: 35%;
}
.pbanner.pro {
    height: auto;
}
.pbanner.pro video {
    display: block;
    width: 100%;
}



/* 产品详情 */
.details-black {
    background: #000;
}
.details-white {
    background: #fff;
}
.proDots {
    position: fixed;
    left: 0;
    top:66px;
    width: 100%;
    z-index: 30;
    background: #fff;
}

.proDots .flex {
    justify-content: space-between;
    align-items: center;
    height: 56px;
    font-size: 14px;
    color: #666;
}
.proDots .tit {
    font-size: 16px;
    color: #333;
    font-weight: bold;
}
.proDots .btns a {
    padding-left: 60px;
}
.proDots .tit-name {
    padding: 10px 0;
    border-bottom: solid 1px #3D3F40;
}
.proDots.details-white .tit-name{ border-bottom:solid 1px #f2f2f2;}
.proDots.details-black .tit-name{ border-bottom:solid 1px #3D3F40;}

.proDots .point {
    padding: 10px 0;
}
.proDots .point .tit {
    margin-right: 20px;
    color: #737373;
}
.proDots .point a {
    display: inline-block;
    margin-right: 20px;
    color: #fff;
}
.proDots .point a:hover, .proDots .point a.is-current {
    opacity: .5;
}
.proDots .point a:last-child {
    margin-right: 0;
}


.proDots-black .auto {
    padding: 0 20px;
    padding-left: 305px;
}
.proDots-black .point a:hover, 
.proDots-black .point a.is-current {
    opacity: .5;
}
.proDots-black .point a{
	padding-left: 0;
}

.proDots.details-white{color:#000000;background:#fff;}
.proDots.details-white .point a{ color:#000;}
.proDots.details-black{ color:#fff; background:#000000;}
.proDots.details-black .point a{ color:#fff;}

.details-box .pro-one {
    padding-top:100px;
}
.details-box .pro-one .item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}
.details-box .pro-one .item img {
    width: 100%;
    transition: all .5s;
}
.details-box .pro-one .item:hover img {
    transform: scale(1.05);
}
.details-box .pro-one .item .arrow {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    background-image: url(../images/arrow2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    cursor: pointer;
}
.details-box .pro-one.leng4 .auto {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.details-box .pro-one.leng4 .item {
    margin: 13px 0;
}
.details-box .pro-one.leng4 .item:nth-child(1), .details-box .pro-one.leng4 .item:nth-child(4) {
    width: 40.334%;
}
.details-box .pro-one.leng4 .item:nth-child(2), .details-box .pro-one.leng4 .item:nth-child(3) {
    width: 57.5%;
}
@media(min-width:640px) {
    .details-box .pro-one.leng6 .auto {
        column-count: 3;
        column-gap: 21px;
    }
    .details-box .pro-one.leng6 .item {
        margin-bottom: 21px;
    }
}
.details-box .Protit {
    line-height: 1.2;
    font-size: 69px;
    font-weight: bold;
    color: #000;
    text-align: center;
}
.details-box .Prodes {
    margin: 40px 0;
    text-align: center;
    font-size: 30px;
    color: #868686;
    padding: 0 20px;
    font-weight: bold;
}
.details-box .corner {
    border-radius: 15px;
    overflow: hidden;
    padding: 0 10px;
}
.details-box .corner img {
    transition: all .5s;
    border-radius: 15px;
}
.details-box .corner .web-img {
    display: none;
}
/* .details-box .corner:hover img{ transform:scale(1.05);} */
/*.details-box .pro-two{ padding-top:100px;}*/
.details-box .pro-two .item {
    margin-bottom: 100px;
}
.details-box .pro-padd{padding-top:100px;}
.details-box .pro-three {
    margin-bottom: 100px;
    overflow:hidden;
}
.details-box .pro-three .switc-box .swiper-wrapper {
    /* margin: 0 -2vw; */
}

.details-box .pro-three .switc-box .swiper-slide {
    padding: 0 20px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
}
.details-box.pc_pic .pro-three .switc-box .swiper-slide{
    margin-right: 0 !important;
}
.details-box .pro-three .switc-box .swiper-wrapper {
    align-items: stretch;
}
.details-box .pro-three .switc-box .swiper {
    margin: 0 -20px;
    overflow: visible;
}
.details-box .pro-three .switc-box .swiper-slide img {
    opacity: .4;
    transition: all .5s;
    width: 100%;
    border-radius: 15px;
}
.details-box .pro-three .switc-box2 .swiper-slide img {
    opacity: 1;
}
.details-box .pro-three .switc-box .swiper-slide-active img {
    opacity: 1;
}
.details-box .pro-three .switc-box .centre {
    margin: 20px 0 0;
}
.details-box .pro-three .switc-box .swiper-but {
    margin: 0 5px;
    left: auto;
    right: auto;
    top: 0;
    width: 36px;
    height: 36px;
    position: relative;
    border: solid 1px #A6A6A6;
    border-radius: 100%;
    overflow: hidden;
}
.details-box .pro-three .switc-box .swiper-but::after {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: bold;
}
.details-box .pro-three .switc-box .swiper-but:hover {
    border-color: #44B0FF;
}
.details-box .pro-three .switc-box .swiper-but:hover::after {
    color: #44B0FF;
}
.details-box .pro-three .switc-box .swiper-pagination {
    font-size: 0;
    min-width: 135px;
    line-height: 36px;
    width: calc(100% - 90px);
    bottom: 0;
    position: relative;
}
.details-box .pro-three .switc-box .swiper-pagination .swiper-pagination-bullet {
    background-color: #A6A6A6;
    width: 20px;
    height: 2px;
    border-radius: 20px;
    opacity: 1;
}
.details-box .pro-three .switc-box .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #383838;
}
.details-box .pro-four img {
    transition: all .5s;
    width: 100%;
}
.details-box .pro-four .web-img {
    display: none;
}
.details-box .pro-five {
    background: #F0F0F0;
    padding: 65px 0;
}
.details-box .pro-five .tit-small {
    line-height: 0.8;
    margin-bottom: 30px;
    font-weight: bold;
    color: #000;
    font-size: 36px;
    text-align: center;
}
.details-box .pro-five .switc-box {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 65px;
}
.details-box .pro-five .switc-box .swiper-slide a {
    padding: 25px;
    display: block;
    background: #fff;
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
}
.details-box .pro-five .switc-box .swiper-slide .pic {
    overflow: hidden;
}
.details-box .pro-five .switc-box .swiper-slide .pic figure {
    padding-bottom: 90%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.5s;
    background-size: contain;
}
.details-box .pro-five .switc-box .swiper-slide a:hover .pic figure {
    transform: scale(1.1);
}
.details-box .pro-five .switc-box .swiper-slide .text {
    margin-top: 15px;
}
.details-box .pro-five .switc-box .swiper-slide .tit-one {
    font-size: 16px;
    color: #333;
    height: 3.4em;
}
.details-box .pro-five .switc-box .swiper-slide .more {
    font-size: 12px;
    color: #44B0FF;
}
.details-box .pro-five .switc-box .swiper-but {
    width: 36px;
    height: 36px;
    border: solid 1px #A6A6A6;
    border-radius: 100%;
    overflow: hidden;
}
.details-box .pro-five .switc-box .swiper-but::after {
    color: #A6A6A6;
    font-size: 14px;
    font-weight: bold;
}
.details-box .pro-five .switc-box .swiper-button-prev::after {
    margin-left: -1px;
}
.details-box .pro-five .switc-box .swiper-button-next::after {
    margin-left: 3px;
}
.details-box .pro-five .switc-box .swiper-but:hover {
    border-color: #44B0FF;
}
.details-box .pro-five .switc-box .swiper-but:hover::after {
    color: #44B0FF;
}
.details-box .pro-six {
    background: #fff;
    padding: 70px 0 0;
}
.details-box .pro-six .tit {
    margin-bottom: 30px;
    font-size: 48px;
    color: #000;
    font-weight: 500;
}
.details-box .pro-six .table{ margin-bottom:0;}
.details-box .pro-six .table table {
    font-weight: normal;
    width: 100%;
    text-align: left;
}
.details-box .pro-six .table table th {
    padding: 5px;
    width: 50%;
    border-bottom: solid 1px #eee;
    font-weight: bold;
}
.details-box .pro-six .table table td {
    padding: 5px;
    border-bottom: solid 1px #eee;
}
.details-box .pro-seven {
    background: #fff;
    padding:70px 0 150px;
}
.details-box .pro-seven .tit {
    margin-bottom: 30px;
    font-size: 36px;
    color: #000;
    font-weight: 500;
}
.details-box .pro-seven .ul{
	align-items: flex-start;
}
.details-box .pro-seven .ul li {
    width: 45%;
}
.details-box .pro-seven .ul li .name {
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 24px;
    color: #808080;
}
.details-box .pro-seven .ul li .txt{
	margin-bottom: 15px;
}
.details-box .pro-seven .ul li .txt a {
    font-weight: lighter;
    position: relative;
    background: #F0F0F0;
    padding: 10px 15px;
    display: block;
}
.details-box .pro-seven .ul li .txt a i {
    position: absolute;
    right: 10px;
    top: 50%;
    display: block;
    width: 18px;
    height: 18px;
    background-image: url(../images/dow.png);
    transform: translateY(-50%);
}
.details-box.details-black .Protit {
    color: #fff;
}
.details-box.details-black .pro-three .switc-box .swiper-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: .4;
}
.details-box.details-black .pro-three .switc-box .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}
@media(max-width:1024px) {
    .proDots-black .auto{
        padding-left:316px;
    }
}
@media(max-width:768px) {
    .proDots {
        top: 62px;
    }
	.proDots {
        margin-top: -5px;
    }
    .proDots .auto {
        padding: 0 2%;
    }
	.proDots .flex {
        flex-wrap: wrap;
        height: auto;
        line-height: 24px;
        padding: 10px 2%;
    }
	.proDots .btns {
	font-size: 0;
	width: 100%;
    }
	.proDots .btns a {
	padding-left: 15px;
	display: inline-block;
	vertical-align: middle;
	font-size: 12px;
    }
	.proDots .btns a:first-child {
        padding-left: 0;
    }
    .details-box .pro-one {
        padding: 60px 0;
    }
    .details-box .Protit {
        font-size: 36px;
    }
    .details-box .Prodes {
        font-size: 22px;
        margin: 30px 0;
    }
    .details-box .pro-two .item {
        margin-bottom: 40px;
    }
    .details-box .pro-three {
        margin-bottom: 40px;
    }
    .details-box .pro-five .switc-box .swiper-slide .pic figure {
        background-size: contain;
    }
    .details-box .pro-six .tit {
        margin-bottom: 20px;
        line-height: 1.5;
        font-size: 36px;
    }
	.details-box .pro-seven{
		padding:50px 0;
	}
    .details-box .pro-seven .tit {
        margin-bottom: 20px;
        line-height: 1.5;
        font-size: 36px;
    }
    .details-box .pro-seven .ul li .name {
        font-size: 18px;
    }
    .details-box .pro-five .tit-small {
        font-size: 28px;
    }
	.details-box .pro-five .switc-box .swiper-slide a{
		padding: 12px;
	}
	.details-box .pro-three .switc-box .swiper{
		overflow: hidden;
	}
	.details-box .pro-six{
		padding: 50px 0;
	}
}
@media(max-width:640px) {
    .details-box .pro-five .switc-box .swiper-slide {
        opacity: .5;
    }
    .details-box .pro-five .switc-box .swiper-slide-active {
        opacity: 1;
    }
    .details-box .pro-five .switc-box .swiper-but {
        top: auto;
        bottom: -45px;
        margin-top: 0;
    }
    .details-box .pro-five .switc-box .swiper-button-prev {
        left: 39%;
    }
    .details-box .pro-five .switc-box .swiper-button-next {
        right: 39%;
    }
	
	.details-box .pro-three .switc-box .swiper {
        margin:0;
	}
    .details-box .pro-three .switc-box .swiper-slide{
        padding:0;
        border-radius:10px;
        transition:all .5s;
    }
    .details-box .pro-three .switc-box .swiper-slide-prev {
        opacity: 0
    }
    /*.details-box .pro-three .switc-box .swiper::before {
	    content: '';
        position: absolute;
        background: #fff;
        width: 16px;
        height: 100%;
        left: -25px;
        top: 0;
	}*/
    .details-box .pro-three .switc-box .centre {
        justify-content: space-between;
    }
	.details-box .pro-three .switc-box .Juz{
		width: 99%;
		padding: 0 2%;
	}
	.details-box .pro-three .switc-box .swiper-pagination{
		text-align: left;
	}
	.details-box .pro-three .switc-box .swiper-button{
		width: 92px;
	}
	
	
}
@media(max-width:640px) {
    .proDots {
        top:0;
        font-size: 12px;
    }
    .proDots .point a {
        margin-right: 5px;
    }
    .proDots .point .tit {
        margin-right: 5px;
    }
    .details-box .Protit {
        font-size: 32px;
        padding: 0 10px;
        text-align: left;
    }
    .details-box .Prodes {
        margin: 10px 0 30px;
        font-size: 16px;
        padding: 0 10px;
        text-align: left;
    }
    .details-box .corner img {
        /* display: none; */
        transition: all .5s;
    }
    .details-box .corner .web-img {
        width: 100%;
        display: block;
    }
    .details-box .pro-one {
        display: none;
    }
    .details-box .pro-padd {
        padding:30px 0 0;
    }
    .details-box .pro-three {
        margin-bottom: 20px;
		overflow: hidden;
    }
    .details-box .pro-four img {
        display: none;
        transition: all .5s;
    }
    .details-box .pro-four .web-img {
        width: 100%;
        display: block;
    }
    .details-box .pro-five .switc-box {
        padding: 0;
    }
    .details-box .pro-seven .ul li {
        width: 100%;
        margin-bottom: 20px;
    }
	
	
}
.ban-Inside .wap_pic,
.details-box .wap_pic{ display: none;}
@media(max-width:640px) {
.ban-Inside .pc_pic,
.details-box .pc_pic{ display: none;}
.ban-Inside .wap_pic,
.details-box .wap_pic{ display: block; padding-right:0;}
.details-box .switc-box.wap_pic{ padding-left:calc(2% + 10px);}
.details-box .wap_pic img {display: block;}
}
/*  */
.pbanner {
    width: 100%;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    margin-top: 66px;
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.pbanner .img {
    width: 100%;
}
.pbanner .wapban {
    display: none;
}
.pbanner .wapban2 {
    display: none;
}
.pbanner video {
    object-fit: cover;
    width: 100%;
}
.pbanner h3 {
    font-size: 40px;
    font-weight: normal;
    color: #fff;
}
.bread a {
    color: #fff;
}
.positionCenter {
    position: absolute;
    z-index: 20;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 90%;
	width: 100%;
}
.pbanner.autoHeight {
    height: auto;
    padding: 80px 0;
}
.pbanner.autoHeight .positionCenter {
    position: static;
    transform: none;
    max-width:100%;
}
@media(max-width:768px) {
    .pbanner .pcban {
        display: none
    }
    .pbanner .wapban {
        display: block;
    }
    .pbanner .wapban2 {
        display: block;
        padding-bottom: 50%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    .pbanner h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .pbanner .positionCenter {
        padding: 0 20px;
        line-height: 1.2;
        width: 100%;
        max-width: 100%;
    }
}

@media(max-width:640px) {
.pbanner{ margin-top:52px;}
}

/*  */
.pageMain {
    padding: 5% 0;
}
.pageMain .page-title{
    font-size: 40px;
    font-weight: 500;
    color: #333;
    padding-bottom: 3.5%;
    text-align: center
}
.page_color{background: #F5F5F5;}
@media(max-width:1024px){
    .pageMain:not(.xin) {
        padding: 80px 0 5%;
    }
    .pageMain.pagefour {
        padding: 5% 0;
    }
    .page_color{padding: 5% 0;}
}
.productInfo {
    flex: 1 1 auto;
}
.twoSides .productInfo {
    padding-left: 20px;
}

.no_bottom {
    padding-bottom: 0;
}
.productDesc {
    margin-bottom: 60px;
    font-size: 28px;
    color: #333;
}

.productInfo .productDesc {
    color: #fff;
    background: #000;
    margin-bottom: 0;
    padding: 30px 30px 30px 8%;
}
@media(max-width:1024px){
    .twoSides .productInfo {
        padding-left: 0px;
    }
}


/* 解决方案 */
.solutions {
    flex-wrap: wrap;
}
.solutions .item {
    position: relative;
    width: 31.83%;
    margin-bottom: 1.66%;
    margin-right: 1.66%;
    overflow: hidden;
}
.solutions .item img {
    transition: 1s;
}
.solutions .item:nth-child(3n) {
    margin-right: 0;
}
.solutions .item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    color: #fff;
    padding: 30px;
}
.solutions .item .text h3 {
    font-weight: normal;
    margin-bottom: 10px;
}
.solutions .item .text .view {
    display: inline-block;
    border: 1px solid #fff;
    line-height: 34px;
    border-radius: 4px;
    padding: 0 20px;
    -webkit-transition: .4s;
    transition: .4s;
}
.solutions .item .text .view:hover {
    background: #fff;
}
.solutions .item:hover img {
    transform: scale(1.1);
}

@media(max-width:768px){
    .solutions .item {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* 解决方案详情 */
.infoTop {
    margin: 120px 0 5%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.infoTop .positionCenter {
    width: 100%;
}
.infoTop .positionCenter .videoBtn{ display: block;}
.infoTop h3 {
    font-size: 40px;
    color: #fff;
    text-align: center;
    font-weight: normal;
    line-height: 54px;
}
.videoBtn {
    width: 180px;
    margin: 20px auto 0;
    text-align: center;
    border: 1px solid #fff;
    line-height: 44px;
    border-radius: 44px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    -webkit-transition: .6s;
    transition: .6s;
    display: none
}
.videoBtn i {
    font-size: 14px;
    margin-left: 10px;
}
.videoBtn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}
.minContent {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
    font-size: 16px;
}
.minContent h3 {
    font-size: 28px;
    color: #333;
    font-weight: normal;
    margin: 1em 0;
}


.relations {
    padding: 95px 0;
    background: #F5F5F5;
}
.relations .title h3{line-height: 1;}
.relaSlider {
    padding: 0 100px;
    position: relative;
}
.relaSlider .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.relaSlider .prev, .relaSlider .next {
    width: 50px;
    line-height: 50px;
    position: absolute;
    text-align: center;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    color: #ccc;
}
.relaSlider .prev i, .relaSlider .next i {
    font-size: 20px;
}
.relaSlider .prev {
    left: 0;
}
.relaSlider .next {
    right: 0;
}
.relaSlider .swiper-slide {
    background: #fff;
}
.relaSlider .swiper-slide a {
    display: block;
    background: #fff;
    padding: 20px;
    -webkit-transition: .4s;
    transition: .4s;
    text-align: center;
}
.relaSlider .swiper-slide .imgbox {
    line-height: 240px;
    font-size: 0;
    text-align: center;
}
.relaSlider .swiper-slide .imgbox img {
    width: auto;
    max-height: 80%;
    max-width: 80%;
}
.relaSlider .swiper-slide .t {
    font-size: 20px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
}
.relaSlider .swiper-slide span {
    color: #44B0FF;
}
.relaSlider .swiper-slide span i {
    font-size: 14px;
    padding-left: 5px;
}
.relaSlider .swiper-slide a:hover {
    box-shadow: 0 0 20px #ccc;
}

@media (max-width: 768px) {
    .relations {
		padding:50px 0;
	}
    .relaSlider {
        padding: 0 60px;
    }
	 .relaSlider .prev, .relaSlider .next {
        width: 40px;
        line-height: 40px;
    }
    .relaSlider .prev i, .relaSlider .next i {
        font-size: 24px;
    }
    .relaSlider .swiper-slide .t {
        font-size: 16px;
    }
    .relaSlider .swiper-slide .imgbox {
        line-height: 158px;
    }
}








/* 分页 */
.Pages {
    margin-top: 60px;
    text-align: center;
    color: #999;
}
.Pages a {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
    width: 30px;
    text-align: center;
    border: 1px solid #999;
    border-radius: 4px;
    height: 30px;
    line-height: 29px;
    -webkit-transition: .4s;
    transition: .4s;
}
.Pages a i {
    font-size: inherit;
}
.Pages a.a_cur, .Pages a:hover {
    color: #fff;
    background: #FF6600;
    border-color: #FF6600;
}
/* 佳作欣赏 */
.Gallery .item {
    width: 32.33%;
    margin-right: 1%;
    margin-bottom: 1%;
    cursor: pointer;
    overflow: hidden;
}
.Gallery .item .text {
    display: none;
}
.photoMask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 99;
    display: none;
}
.photoMask .container {
    position: absolute;
    max-width: 80%;
    max-height: 80%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}
.photoMask .container .close {
    width: 50px;
    height: 50px;
    z-index: 20;
    position: absolute;
    right: 50px;
    top: 0;
    cursor: pointer;
    text-align: center;
    line-height: 50px;
}
.photoMask .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.photoSlider {
    position: relative;
    padding: 0 50px;
}
.photoSlider .prev, .photoSlider .next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    line-height: 50px;
}
.photoSlider .prev {
    left: 0;
}
.photoSlider .next {
    right: 0;
}
.photoSlider .swiper-container {
    background: #fff;
}
.photoSlider .swiper-wrapper {
    align-items: center;
}
.photoSlider .imgbox {
    max-height: 60vh;
    margin-bottom: 20px;
}
.photoSlider .swiper-slide {
    background: #fff;
    padding: 50px;
    text-align: center;
}
.photoSlider .swiper-slide .inner {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    color: #999;
}
.photoSlider .swiper-slide .inner .t {
    color: #333;
    font-size: 16px;
}
.photoSlider .swiper-slide .inner .c a {
    padding-right: 10px;
}
.photoSlider .prev, .photoSlider .next {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    cursor: pointer;
    color: #fff;
    text-align: center;
    line-height: 50px;
}
.photoSlider .prev {
    left: 0;
}
.photoSlider .next {
    right: 0;
}
.photoSlider .imgbox {
    max-height: 60vh;
    margin-bottom: 20px;
}
.photoSlider .imgbox img {
    max-height: 60vh;
}

.photoSlider .imgbox img {
    -webkit-transform: none !important;
    transform: none !important;
}
.photoSlider .imgbox img {
    max-height: 100%;
    width: auto;
}


/* 案例视频 */
.pageMenu {
    margin-bottom: 60px;
    border-bottom: 1px solid #E6E6E6;
    text-align: center;
    font-size: 20px;
    color: #666;
}
.pageMenu li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 30px;
    position: relative;
}
.pageMenu li a {
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
}
.pageMenu li.cur a {
    border-color: #ff6600;
    color: #ff6600;
    font-weight: 500;
}
.pageMenu li:after {
    content: "";
    width: 1px;
    height: 14px;
    background: #707070;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -12px;
}
.pageMenu li:last-child:after {
    display: none;
}
.lighting {
    flex-wrap: wrap;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.lighting .item {
    width: 31.99%;
    margin-right: 2%;
    margin-bottom: 2%;
    transition: .4s;
}
.lighting .item:nth-child(3n) {
    margin-right: 0;
}
.lighting .item:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.lighting .item .text {
    padding: 20px;
    color: #999;
    font-size: 14px;
}
.lighting .item .text .t {
    font-size: 20px;
    color: #333;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 7px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    line-height: 1.5;
    font-weight: 500;
}
.lighting .item .tag {
    position: absolute;
    padding: 0 20px;
    line-height: 32px;
    font-size: 12px;
    color: #fff;
    background: rgba(255, 102, 0, 0.8);
    border-radius: 0 0 10px 0;
    z-index: 20;
}
.lighting .item .tag2 {
    background: rgba(102, 102, 102, 0.8);
}
.lighting .item .tag3 {
    background: rgb(59, 186, 75, 0.8);
}
.lighting .item .text .t2 {
    color: #FF6600;
}
.lighting .item .text span {
    margin-right: 20px;
}
.lighting .item .text span i {
    margin-right: 5px;
    font-size: 12px;
}
@media(max-width:768px) {
    .lighting .item {
        width: 49%;
        box-shadow: 0 3px 25px rgb(0, 0, 0, .1);
    }
    .lighting .item:nth-child(3n) {
        margin-right: 2%;
    }
    .lighting .item:nth-child(2n) {
        margin-right: 0;
    }
    .lighting .item .text .t {
        font-size: 18px;
        min-height: auto;
    }
    .pageMenu li {
        padding: 0 20px;
    }
    .pageMenu {
        margin-bottom: 30px;
        font-size: 16px;
    }
}
@media(max-width:480px) {
    .lighting .item {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 20px;
    }
    .lighting .item .text .t {
        font-size: 16px;
    }
}

.topInfo {
    max-width: 800px;
    margin: 0 auto 100px;
    text-align: center;
    font-size: 16px;
}
.topInfo h3 {
    font-weight: bold;
    color: #333;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 40px;
}
.listTop {
    margin-bottom: 60px;
    line-height: 32px;
}
.listTop h3 {
    color: #333;
    font-weight: normal;
    font-size: 28px;
}
.selectBox {
    position: relative;
    border: 1px solid #666;
    border-radius: 4px;
    line-height: 32px;
    padding: 0 40px 0 10px;
    cursor: pointer;
    width: 200px;
    white-space: nowrap;
    display: inline-block;
}
.selectBox .selectDown {
    position: absolute;
    z-index: 20;
    background: #fff;
    left: 0;
    top: 100%;
    width: 100%;
    margin-top: 1px;
    border-radius: 4px;
    overflow: hidden;
    line-height: 34px;
    display: none;
}
.selectBox .selectBoxCur {
    white-space: nowrap;
    overflow: hidden;
}
.selectBox .selectDown>div:hover {
    background: #F5F5F5;
    cursor: pointer;
}
.selectBox .selectDown>div {
    padding: 0 10px;
    overflow: hidden;
}
.selectBox .sn-down {
    position: absolute;
    right: 0;
    width: 40px;
    text-align: center;
    font-size: 12px;
    top: 0;
}

.Educator {
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
}
.Educator .item {
    position: relative;
    width: 31.99%;
    margin-right: 2%;
    margin-bottom: 2%;
}
.Educator .item:nth-child(3n) {
    margin-right: 0;
}
.Educator .item .text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 70px 20px 20px;
    font-size: 20px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: -webkit-linear-gradient(to bottom, transparent, #000);
    background: -ms-linear-gradient(to bottom, transparent, #000);
    background: linear-gradient(to bottom, transparent, #000);
}
.EducatorInfo {
    width: 66.66%;
    font-size: 16px;
}
.EducatorInfo .imgbox {
    margin-right: 40px;
}
.EducatorInfo h3 {
    font-size: 28px;
    color: #333;
    font-weight: normal;
}
.EducatorInfo .tit2 {
    color: #999;
    margin-bottom: 2em;
}
.EducatorRelations {
    margin-top: 100px;
}
.EducatorRelations .swiperControl {
    color: #666;
    position: static;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 40px;
}
.EducatorRelations .swiperControl .btns span {
    color: #666;
    border-color: #666;
    line-height: 34px;
    width: 40px;
    height: 40px;
}
.EducatorRelations .swiperControl .btns span i {
    font-size: 18px;
}
.EducatorSide {
    width: 16.66%;
}
.EducatorSide .tit {
    font-size: 20px;
    margin-bottom: 20px;
}
.EducatorSide .Educator .item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
}
.EducatorSide .Educator .item .text {
    padding: 27px 20px 14px;
    font-size: 14px;
}
.EducatorRelations .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiperControl .btns span {
    display: inline-block;
    vertical-align: middle;
    border: 1px solid #fff;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    line-height: 22px;
    text-align: center;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
}
.EducatorRelations .swiperControl .btns span {
    color: #666;
    border-color: #666;
    line-height: 34px;
    width: 40px;
    height: 40px;
}
.EducatorRelations .swiperControl .btns span i {
    font-size: 18px;
}
.swiperControl .btns span i {
    margin-bottom: 2px;
}
.swiperControl .swiper-pagination-lock{ display: block;}
.swiperControl .swiperPages {
    width: auto;
}




.share {
    padding-top: 20px;
}
.share .item {
    margin-bottom: 20px;
}
.share .item i {
    display: inline-block;
    width: 26px;
    text-align: center;
    line-height: 26px;
    background: #666;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
.share .item a {
    display: block;
}
.share .item:hover i {
    background: #3B5796;
}
.share .item a:hover {
    color: #44B0FF;
}
@media(max-width:768px) {
    .topInfo {
        margin: 20px auto 40px;
    }
    .Educator .item {
        width: 49%;
    }
    .Educator .item:nth-child(3n) {
        margin-right: 2%;
    }
    .Educator .item:nth-child(2n) {
        margin-right: 0;
    }
    .Educator .item .text {
        font-size: 16px;
    }
    .listTop {
        display: block;
        text-align: right;
        margin-bottom: 30px;
    }
    .listTop h3 {
        font-size: 24px;
        margin-bottom: 15px;
        text-align: left;
    }
    .topInfo h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .EducatorInfo .imgbox {
        float: none;
        width: 100%;
        margin: 0 0 30px;
    }
    .EducatorInfo {
        width: 100%;
    }
    .EducatorRelations {
        margin-top: 40px;
    }
    .EducatorRelations .swiperControl {
        font-size: 16px;
    }
    .EducatorRelations .swiperControl .btns span {
        width: 34px;
        height: 34px;
        line-height: 28px;
    }
    .EducatorSide {
        width: 100%;
        margin-top: 30px;
    }
    .EducatorInfo h3 {
        font-size: 24px;
    }
    .EducatorSide .Educator .item {
        width: 49%;
        margin-right: 2%;
    }
    .EducatorSide .Educator .item:nth-child(2n) {
        margin-right: 0;
    }
}

/*  */
.videoMask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 99;
    display: none;
}
.videoContainer {
    background: #000;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 960px;
    height: 540px;
    max-width: 90%;
}
.videoContainer .close {
    position: absolute;
    right: 0;
    top: -20px;
    line-height: 20px;
    cursor: pointer;
    color: #fff;
    z-index: 10;
}
.videoContainer .close i {
    font-size: 14px;
}
.videoContainer video {
    width: 100%;
    display: block;
    position: relative;
    z-index: 9999;
}
@media(max-width:560px) {
    .videoContainer {
        width: 90%;
        height: auto;
    }
}
/*  */
.Firmware {
    margin-bottom: -20px;
}
.Firmware .item {
    background: #fff;
    margin-bottom: 20px;
    padding: 40px;
    line-height: 2;
}
.Firmware .item .tit {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
    line-height: 1;
    padding-bottom: 20px;
    padding-right: 80px;
    position: relative;
    font-weight: bold;
}
.Firmware .item .tit span {
    font-size: 14px;
    color: #666;
    padding-left: 20px;
}
.Firmware .item .tit .download {
    position: absolute;
    right: 0;
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: #44B0FF;
    top: 50%;
    margin-top: -25px;
}
.Firmware .item .tit .download i {
    font-size: 18px;
}
.Firmware .item .text .t {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}
.Firmware .item .text .c {
    margin-bottom: 10px;
    word-break:break-word;
}
@media(min-width:1025px){
    .Firmware {
        width: 50%
    }
}

/*  */
.Guides {
    padding: 40px;
    background: #fff;
}
.Guides .item {
    position: relative;
    line-height: 64px;
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 50px;
    padding-left: 20px;
    color: #333;
}
.Guides .item:nth-child(2n+1) {
    background: #F5F5F5;
}
.Guides .item .download {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    text-align: center;
    color: #44B0FF;
}
@media(max-width:768px) {
    .Guides {
        padding: 20px 10px;
    }
    .Guides .item {
        line-height: 45px;
        font-size: 14px;
        padding-left: 10px;
    }
}
/* 常见问题 */
.faq {
    width: 71%;
}
.faqcon {
    background: #fff;
    padding: 40px;
}
.faqItems .item {
    padding: 0 20px;
}
.faqItems .item .qustion {
    position: relative;
    padding: 10px 70px 10px 0px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}
.faqItems .item .qustion .t {
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}
.faqItems .item .qustion i {
    position: absolute;
    right: 0;
    top: 50%;
    color: #ccc;
    font-size: 14px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-top: -20px;
    -webkit-transition: .4s;
    -ms-transition: .4s;
    transition: .4s;
}
.faqItems .item .ans {
    border-top: 1px solid #E6E6E6;
    padding: 20px 0;
    display: none;
}
.faqItems .item .ans .serverBtn {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}
.faqItems .item .ans .serverBtn i {
    margin-right: 10px;
}
.faqItems .item:nth-child(2n+1) {
    background: #F5F5F5;
}
.faqItems .item.cur .qustion i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.feedback {
    width: 27.5%;
}
.feedbackCon {
    background: #fff;
    padding: 30px 40px
}
.feedback .tit {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}
.form .line {
    margin-bottom: 10px;
    font-size: 12px;
}
.form .line input {
    width: 100%;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    color: #666;
}
.form .line textarea {
    height: 90px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    font-family: inherit;
    resize: vertical;
}
.form .line .yzm {
    flex: 0 0 auto;
    margin-left: 10px;
}
.formBtns {
    text-align: center;
    margin-top: 30px;
}
.formBtns .btn {
    display: inline-block;
    vertical-align: middle;
    width: 118px;
    text-align: center;
    line-height: 32px;
    border-radius: 16px;
    background: #FF6600;
    color: #fff;
    cursor: pointer;
    border: none;
}
.catgray {
    line-height: 32px;
    font-size: 16px;
    margin-bottom: 25px;
}
.catgray>div {
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #707070;
    line-height: 1;
}
.catgray>div:last-child {
    margin: 0;
    padding: 0;
    border: none;
}
.catgray .cur>a {
    color: #FF6600;
}
.topTools {
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.topTools .sear {
    margin-bottom: 25px;
}
@media(max-width:768px) {
    .faq {
        width: 100%;
    }
    .feedback {
        width: 100%;
        margin-top: 30px;
    }
    .faqcon {
        padding: 30px 10px;
    }
    .catgray>div {
        margin-right: 10px;
        padding-right: 10px;
    }
    .topTools .sear {
        width: 100%;
    }
    .feedbackCon {
        padding: 30px 10px;
    }
}
/* 按钮 */
.appBtn {
    background: #000;
    color: #fff;
    border-radius: 6px;
    padding: 0 15px;
}
.appBtn .icon i {
    font-size: 32px;
}
.appBtn .linkFor {
    font-size: 12px;
    line-height: 1;
    padding-left: 10px;
    white-space: nowrap;
}
.appBtn .linkFor .p1 {
    font-size: 16px;
    margin-top: 5px;
}



@media (max-width: 1024px) {
    .appBtn .icon i {
        font-size: 24px;
    }
    .appBtn .linkFor .p1 {
        font-size: 14px;
    }
    .appBtn {
        padding: 5px 10px;
    }
}

/* app */
.appList {
    padding: 0px;
    background: none;
    padding-left: 20px;
}
.appList .items {
    padding: 0 40px;
    background: #fff;
}
.appList .item {
    padding: 40px 0 60px;
    border-bottom: 1px solid #E6E6E6;
    align-items: flex-start;
    justify-content: unset;
}
.appList .item:last-child {
    border: none;
}
.appList .item .appIcon {
    width: 80px;
    height: 80px;
    flex: 0 0 auto;
    border-radius: 18px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.appList .item .content {
    font-size: 16px;
    padding-left: 20px;
}
.appList .item .content h3 {
    font-size: 28px;
    color: #333;
    font-weight: normal;
    margin-bottom: 20px;
    line-height: 1.2;
}
.appList .item .appLinks {
    margin-top: 40px;
    padding-right: 110px;
}
.appLinks .appitem {
    padding-right: 20px;
    flex: 0 0 auto;
}
@media (max-width:768px) {
    .appList {
        padding-left: 0px;
    }
    .appList .items {
        padding: 0 20px;
    }
	.appList .item {
	    padding: 30px 0 0;
	    display: block;
	}
	.appList .item .content {
	    font-size: 14px;
	    padding: 20px 0;
	}
	.appLinks .appitem {
	    padding-right: 10px;
	}
}
/* 服务支持 */
.contentBlock h3 {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
}
.contentBlock .subtit {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold;
}
.contentBlock .table {
    margin-top: 60px;
}
.contentBlock .table td {
    height: 50px;
    padding-right: 60px;
    border: none;
}
.contentBlock .table td:nth-child(2) {
    color: #44B0FF;
}
.followUs {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #E6E6E6;
}
.followUs .tit {
    font-size: 30px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
}
.followUs .item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5%;
    width: 48px;
    text-align: center;
    line-height: 48px;
    border-radius: 50%;
    background: #29c445;
    color: #fff;
    cursor: pointer;
}
.followUs .item i {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
}
.followUs .item:nth-child(2) {
    background: #fb7299;
}
.followUs .item:nth-child(3) {
    background: #ef1931;
}
.followUs .item:nth-child(4) {
    background: #ff0c34;
}
.followUs .item:nth-child(5) {
    background: #170b1a;
}
.followUs .item:nth-child(6) {
    background: #fe5103;
}
@media(max-width:768px) {
    .contentBlock h3 {
        font-size: 20px;
    }
    .contentBlock .table {
        margin-top: 40px;
    }
    .contentBlock .table table, .contentBlock .table tabody, .contentBlock .table tr, .contentBlock .table td {
        display: block;
    }
    .contentBlock .table td {
        height: auto;
        padding-right: 0;
        line-height: 34px;
    }
    .followUs {
        padding-top: 30px;
        margin-top: 30px;
        padding-bottom: 30px;
    }
    .followUs .tit {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .followUs .item {
        width: 34px;
        line-height: 34px;
    }
    .followUs .item i {
        font-size: 18px;
    }
}
/* 关于我们 */
.title {
    margin-bottom: 60px;
    text-align: center;
}
.title h3 {
    font-size: 40px;
    font-weight: 500;
    color: #333;
}
.aboutBlock {
    padding: 5% 0;
}
.aboutBlock .text {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}
.aboutBlock2 {
    padding: 6% 0;
    background: #F5F5F5;
    text-align: center;
    font-size: 16px;
}
.aboutBlock2 .title {
    margin-bottom: 20px;
}
.aboutBlock2 .text {
    max-width: 800px;
    margin: auto;
}
.mails {
    padding: 5% 0;
}
.mails .items {
    position: relative;
}
.mails .items .item {
    margin-right: 50%;
    text-align: right;
    font-size: 20px;
    position: relative;
    padding-right: 5%;
}
.mails .items .item .tit {
    font-size: 28px;
    color: #333;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 500;
}
.mails .items .item .imgbox {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}
.mails .items .item:nth-child(2n) {
    margin-right: 0;
    margin-left: 50%;
    text-align: left;
    padding-right: 0;
    padding-left: 5%;
}
.mails .items .item:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ccc;
    top: 0;
    right: 0;
    margin-right: -11px;
    background: #fff;
    z-index: 5;
}
.mails .items .item:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    right: -6px;
    z-index: 10;
}
.mails .items .item:nth-child(2n):after {
    left: -11px;
    right: auto;
}
.mails .items .item:nth-child(2n):before {
    left: -6px;
    right: auto;
}
.mails .items:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    border-right: 1px solid #ccc;
    height: 100%;
}
.mails .items .item+.item {
    margin-top: -9%;
}
.mails .items .item:last-child {
    margin: 0;
    text-align: center;
    width: 100%;
    padding: 0;
    padding-top: 30px;
    background: #fff;
    z-index: 10;
}
.mails .items .item:last-child:before {
    left: 50%;
    margin-left: -6px;
}
.mails .items .item:last-child:after {
    left: 50%;
    margin-left: -11px;
}
.mails .items .item:last-child .imgbox {
    display: none;
}
.advantage {
    padding: 100px 0;
    font-size: 16px;
    color: #fff;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.advantage .text {
    max-width: 800px;
    margin: 0 auto 90px;
}
.advantage .text h3 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}
.advantage .data {
    justify-content: space-around;
    padding-bottom: 10%;
    align-items: flex-start;
}
.advantage .data .item {
    padding: 0 20px;
    font-size: 20px;
    font-weight: 500;
}
.advantage .data .item .count {
    font-size: 100px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}
.advantageText {
    position: relative;
    margin-top: -100px;
    padding-bottom: 5%;
}
.advantageText .auto {
    background: #fff;
    padding: 100px 2%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.advantageText .content {
    text-align: left;
    max-width: 800px;
    margin: auto;
    font-size: 16px;
    line-height: 26px;
}
.advantageText .content h3 {
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    color: #333;
    margin-bottom: 40px;
}
@media(max-width:1024px) {
    .mails .items .item {
        font-size: 16px;
    }
    .mails .items .item .tit {
        font-size: 20px;
    }
	.advantage .data{justify-content: center;}
    .advantage .text h3 {
        font-size: 24px;
    }
    .advantage .data .item .count {
        font-size: 40px;
    }
    .advantage .data .item {
        font-size: 18px;
    }
    .advantageText .auto {
        margin: 0 20px;
        padding: 40px 2%;
    }
    .advantageText {
        margin-top: -50px;
    }
    .advantage {
        padding: 50px 0;
    }
    .advantageText .content h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .advantageText .content {
        font-size: 14px;
    }
	.title h3 {
	        font-size: 28px;
	    }
}
@media(max-width:560px) {
    .aboutBlock2 {
        padding: 30px 0;
    }
    .aboutBlock .text {
        margin: 0 auto 30px;
        font-size: 14px;
    }
    .mails .items .item {
        font-size: 12px;
        overflow: hidden;
        margin-right: 0 !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-bottom: 40px;
    }
    .mails .items .item .content {
        width: 46%;
        float: left;
    }
    .mails .items .item .imgbox {
        float: right;
        width: 46%;
        margin-top: 0;
    }
    .mails .items .item:before {
        left: 50% !important;
        margin-left: -5px !important;
        right: auto !important;
        width: 10px;
        height: 10px;
    }
    .mails .items .item:after {
        left: 50% !important;
        margin-left: -10px !important;
        right: auto !important;
        width: 18px;
        height: 18px;
    }
    .mails .items .item+.item {
        margin-top: 0;
    }
    .mails .items .item:nth-child(2n) .content {
        float: right;
    }
    .mails .items .item:nth-child(2n) .imgbox {
        float: left;
    }
    .mails .items .item .tit {
        font-size: 18px;
    }
    .mails .items .item:last-child {
        padding-top: 40px !important;
    }
    .mails .items .item:last-child .content {
        width: auto;
        float: none;
    }
    .advantage .text {
        margin-bottom: 30px;
    }
    .advantage .data .item {
        font-size: 14px;
		padding: 0 12px;
    }
    .advantage .data .item .count {
        font-size: 20px;
    }
}


.imgbox img {
    width: 100%;
}
.lighting.newsCenter .item .text .t {
    margin-bottom: 6px;
}


@media(min-width:768px) {
    .lighting.newsCenter .item {
        width: 49%;
    }
    .lighting.newsCenter .item:nth-child(3n) {
        margin-right: 2%;
    }
    .lighting.newsCenter .item:nth-child(2n) {
        margin-right: 0;
    }
	
}
/* 新闻详情 */
.newsInfo {
    width: 67%;
    max-width: 800px;
    font-size: 16px;
}
.newsInfo img {
    width: 100%;
    height: auto;
}
.newsInfo h4 {
    font-size: 20px;
    color: #333;
    font-weight: normal;
}
.contentHead {
    margin-bottom: 60px;
    font-size: 14px;
    color: #999;
}
.contentHead h3 {
    font-size: 28px;
    color: #333;
    font-weight: bold;
    padding-bottom: 10px;
}
.infoSide {
    width: 25%;
}
.infoSide .tit {
    font-size: 20px;
    color: #333;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 500;
}
.newsLabel {
    margin-bottom: 40px;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
}
.newsLabel a {
    padding-right: 20px;
    color: #44B0FF;
    display: inline-block;
    vertical-align: middle;
}

@media(max-width:768px) {
    .newsInfo {
        width: 100%;
    }
    .infoSide {
        width: 100%;
        margin-top: 30px;
    }
    .contentHead h3 {
        font-size: 20px;
    }
}

.sideNews .item {
    margin-bottom: 20px;
}
.sideNews .item .t {
    color: #333;
    margin: 10px 0 6px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}
.sideNews .item .c {
    color: #999;
    font-size: 12px;
}
.share {
    padding-top: 20px;
}
.share .item {
    margin-bottom: 20px;
}
.share .item i {
    display: inline-block;
    width: 26px;
    text-align: center;
    line-height: 26px;
    background: #666;
    font-size: 16px;
    color: #fff;
    border-radius: 50%;
    margin-right: 10px;
}
.share .item a {
    display: block;
}
.share .item:hover i {
    background: #3B5796;
}
.share .item a:hover {
    color: #44B0FF;
}
.share .item a:hover {
    color: #666;
}
.share .item:hover i {
    background: #666;
}
.share .item i {
    background: #999;
}
/* 置顶 */
.sideNav {
    position: fixed;
    right: 60px;
    bottom: 10%;
    width: 42px;
    display: none;
    z-index: 99;
}
.sideNav .item {
    cursor: pointer;
    line-height: 38px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #ccc;
    margin-top: 10px;
}
.sideNav .item i {
    font-size: 20px;
    color: #ccc;
}
@media(max-width:640px) {
    .sideNav {
        right:10px;
        bottom:10px;
    }
}



.bgWhite {
    background-color: #fff !important;
}

.page {
    position: relative;
    z-index: 1;
}

.black {
    background: #000;
    color: #fff;
}
.nav {
    z-index: 9999;
}

.gonew {
    padding: 70px 0 10.52%;
    background: #F5F5F5;
}
.gonew .ctitle {
    font-size: 53px;
    color: #333333;
    text-align: center;
    font-weight: bold;
    margin-bottom: 52px;
    text-align: center;
    line-height: 1;
}
.gonew .gonew_list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.gonew .gonew_list .gonew_item:not(:nth-child(3n+1)) {
    margin-left: 20px;
}
.gonew .gonew_list .gonew_item {
    width: calc(33.33% - 13.333px);
    background-color: #fff;
    position: relative;
    padding: 30px 20px 0.92%;
    margin-bottom: 20px;
}
.gonew .gonew_list .gonew_item .imgbox {
    padding: 5%;
    height: 278px;
    display: flex;
    align-items: center;
}
.gonew .gonew_list .gonew_item img {
    /*max-height: 160px;*/
    width: auto;
    margin: 0 auto;
    display: block;
}
.gonew .gonew_item .cnew {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    background: #FF6600;
    opacity: 1;
    border-radius: 0px 0px 13px 0px;
    color: #fff;
    font-style: oblique;
    display: none;
    text-align: center;
    line-height: 30px;
    font-family: 'RedHatDisplay-MediumItalic';
    font-size: 14px;
}
.gonew .gonew_list .gonew_item.curnew .cnew {
    display: block;
}
.gonew .gonew_item .ctit {
    font-size: 16px;
    font-family: "RedHatDisplay-Medium";
    line-height: 21px;
    color: #333333;
    opacity: 1;
    position: absolute;
    right: 30px;
    top: 15px;
    text-transform: uppercase;
    display: flex;
    align-items: flex-start;
}
.gonew .gonew_item .ctit span {
    font-size: 12px;
    margin-left: 5px;
}
.gonew .gonew_item .t01 {
    font-size: 16px;
    line-height: 1.26;
    color: #333333;
}
.gonew .gonew_item .t02 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.26;
    color: #333333;
    padding-bottom: 8px;
}
.gonew .gonew_item .t03 {
    font-size: 14px;
    line-height: 1.3125;
    color: #333333;
}
.gonew .gonew_item .t04 {
    font-size: 16px;
    line-height: 1.3125;
    color: #333333;
    margin-top: 7px;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    display: none;
}
.gonew .cmain {
    position: relative;
}
.gonew .gosearch {
    position: absolute;
    right: 0;
    top: -52px;
    height: 32px;
    z-index: 2;
    width: 165px;
}
.gonew .gosearch .gose_item {
    height: 100%;
    font-size: 14px;
    font-family: "RedHatText-Regular";
    color: #666666;
    cursor: pointer;
    line-height: 32px;
    overflow: hidden;
    background-color: #fff;
}
.gonew .gosearch .gose_item:first-child {
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    overflow: hidden;
    padding: 0 25px;
}
.gonew .gosearch .gose_item:last-child {
    border-radius: 0 0 21px 21px;
    -webkit-border-radius: 0 0 21px 21px;
    -moz-border-radius: 0 0 21px 21px;
    -ms-border-radius: 0 0 21px 21px;
    -o-border-radius: 0 0 21px 21px;
}
.gonew .gosearch .gose_item:not(:first-child):hover {
    background-color: rgba(245, 245, 245, 1);
}
.gonew .gosearch .gose_item:not(:first-child) {
    display: none;
}
.gonew .gosearch .gose_item:not(:first-child) a {
    width: 100%;
    padding: 0 25px;
    display: block;
}
.gonew .gosearch .gose_item:hover a {
    color: #666;
}
.gonew .gosearch.cur .gose_item:not(:first-child) {
    display: block;
}
.gonew .gosearch .gose_item:first-child::before {
    content: '';
    display: block;
    position: absolute;
    border-bottom: 1px solid #999;
    border-left: 1px solid #999;
    right: 20px;
    width: 6px;
    height: 6px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    top: calc(50% - 4.99px);
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.gonew .gosearch.cur .gose_item:first-child::before {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    top: 16px;
}
.gonew .gosearch.cur {
    background-color: unset;
}
.gonew .gosearch.cur .ctmain {
    box-shadow: 0px 4px 13px rgba(0, 0, 0, 0.1);
    border-radius: 21px;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    -ms-border-radius: 21px;
    -o-border-radius: 21px;
    overflow: hidden;
    background-color: #fff;
}
@media (max-width:1024px) {
    .gonew .gonew_list .gonew_item {
        width: 49%;
        margin-bottom: 2%;
    }
    .gonew .gonew_list .gonew_item:not(:nth-child(3n+1)) {
        margin-left: 0%;
    }
    .gonew .gonew_list .gonew_item:not(:nth-child(2n+1)) {
        margin-left: 2%;
    }
    .gonew .ctitle {
        font-size: 36px;
    }
}
@media (max-width:640px) {
    .gonew .gonew_item .cnew {
        width: 36px;
        font-size: 12px;
        line-height: 18px;
        border-radius: 0 0 6px 0;
        -webkit-border-radius: 0 0 6px 0;
        -moz-border-radius: 0 0 6px 0;
        -ms-border-radius: 0 0 6px 0;
        -o-border-radius: 0 0 6px 0;
    }
    .gonew .gonew_list .gonew_item .imgbox {
        max-width: 80%;
        margin: 0 auto;
        height: auto;
    }
    .gonew .gonew_item .ctit {
        right: 5px;
        top: 6px;
        font-size: 12px;
    }
    .gonew .gonew_list .gonew_item {
        padding-top: 10%;
    }
    .gonew .gonew_item .t01, .gonew .gonew_item .t03 {
        font-size: 12px;
    }
    .gonew .gonew_item .t02, .gonew .gonew_item .t04 {
        font-size: 14px;
    }
    .gonew .gonew_item .t02 {
        line-height: 1.8;
    }
    .gonew {
        position: relative;
        padding-top: 70px;
    }
    .gonew .cmain {
        position: static;
        padding: 0 10px;
    }
    .gonew .gosearch {
        width: 100%;
        top: 0;
        background-color: #fff;
    }
    .gonew .gosearch .gose_item:first-child {
        border-radius: unset;
        -webkit-border-radius: unset;
        -moz-border-radius: unset;
        -ms-border-radius: unset;
        -o-border-radius: unset;
    }
    .gonew .gosearch.cur .ctmain {
        border-radius: unset;
        -webkit-border-radius: unset;
        -moz-border-radius: unset;
        -ms-border-radius: unset;
        -o-border-radius: unset;
    }
    .gonew .ctitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .gonew .gosearch .gose_item {
        font-size: 14px;
        max-width: 140px;
        margin: 0 auto;
        position: relative;
        text-align: center;
    }
}
.erList {
    display: flex;
    flex-flow: row wrap;
    font-family: RedHatText-Regular;
}
.erList dl {
    width: 32%;
    margin-right: 2%;
    background-color: #fff;
    padding: 2%;
    margin-bottom: 2%;
}
.erList dl:nth-child(3n) {
    margin-right: 0;
}
.erList dt {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1;
}
.erList .list {
    padding-bottom: 10px;
}
.erList .list a {
    display: block;
    padding-left: 18px;
    position: relative;
    color: #44B0FF;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
}
.erList .list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 20px;
    background: url(../images/icon_pdf.png) no-repeat center;
    background-size: contain;
}
.erList .more {
    text-align: center;
    line-height: 1;
}
.erList .more a {
    display: inline-block;
    color: #666666;
    font-size: 12px;
}
.erList .more a:hover {
    color: #44B0FF;
}
.erList .more i {
    font-style: normal;
    font-family: serif;
    font-weight: bold;
}
.erList .more i{display: inline-block; width: 8px; height: 8px; border: solid #fff; border-width: 1px 1px 0 0; transform: rotate(45deg); vertical-align: middle;}
.er_history {
    text-align: center;
    margin-top: 3%;
    font-family: RedHatText-Regular;
}
.er_history a {
    display: inline-block;
    color: #44B0FF;
    font-size: 20px;
}
.er_history i {
    font-style: normal;
    font-family: serif;
    font-weight: bold;
    display: inline-block;
    margin-left: 5px;
}
.erList .list a:hover, .erList .more a:hover, .er_history a:hover {
    text-decoration: underline;
}
@media (max-width:640px) {
    .erList dl {
        width: 100%;
        margin-right: 0;
        padding: 8%;
    }
}
.er_historyList {
    background-color: #fff;
    padding: 2%;
    padding-bottom: calc(4% - 10px);
    font-family: RedHatText-Regular;
}
.er_historyList .title, .er_historyList dt {
    font-size: 16px;
    color: #666666;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: left;
    line-height: 1;
    font-weight: bold;
}
.er_historyList .title {
    font-weight: bold;
    margin-bottom: 30px;
}
.er_historyList dl:not(:last-child) {
    margin-bottom: 25px;
}
.er_historyList .list {
    display: flex;
    flex-flow: row wrap;
}
.er_historyList .list a {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    display: block;
    padding-left: 18px;
    position: relative;
    color: #44B0FF;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 10px;
}
.er_historyList .list a:hover {
    text-decoration: underline;
}
.er_historyList .list a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 12px;
    height: 20px;
    background: url(../images/icon_pdf.png) no-repeat center;
    background-size: contain;
}
.er_historyList .list a:nth-child(3n) {
    margin-right: 0;
}
@media (max-width:640px) {
    .er_historyList {
        padding: 8%;
        padding-bottom: calc(8% - 10px);
    }
    .er_historyList .list a {
        width: 100%;
        margin-right: 0;
    }
}
.text-desc {
    font-size: 16px;
    line-height: 26px;
    color: #333333;
}



/* 20211207 */
.text-desc ul, .text-desc ol, .text-desc li {
    /* list-style-type:disc; */
    list-style-type: unset;
}
.productInfo .download {
    padding-left: 20px;
    padding-right: 20px;
}
.productInfo .download .titleLeft {
    font-size: 24px;
    margin: 20px 0;
	font-weight: 500;
}
.productInfo .dlist .tit {
    font-size: 18px;
}
.photoSlider .imgbox img {
    max-height: 60vh;
}





/* 20211223 */
.productCenter .flex {
    justify-content: flex-start;
}
.lighting .item .text .t {
    line-height: 1.5;
}
.text-desc ul, .text-desc ol, .text-desc li, .newsInfo ul, .newsInfo ol, .newsInfo li {
    /* list-style-type:auto; */
    list-style-type: unset;
}
.photoSlider .swiper-slide .inner {
    max-width: 500px;
}
.categray.style2 .item a i {
    display: none;
}
.productCenter .item .imgbox {
    margin: -20px -20px 0;
}
.listTop .selectBox {
    width: 230px;
}
@media(max-width:768px) {
    .footCenter, .footBottom {
        margin-left: 10px;
        margin-right: 10px;
    }
    .categray .item.cur>a {
        color: #f60;
    }
    .productCenter .item {
        margin-right: 2%;
    }
    .productCenter .item:nth-child(2n) {
        margin-right: 0;
    }
    .categray.style2 .item ul {
        display: none;
    }
    .categray.style2 .item a i {
        display: block;
    }
    .Gallery .item {
        width: 49%;
    }
    .lighting {
        padding: 5px;
    }
    .lighting .item {
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    .Firmware .item {
        padding: 20px;
    }
    .appList .item .appIcon {
        float: left;
    }
    .appList .item .content h3 {
        margin-left: 100px;
        height: 80px;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }
    .appList .item .content {
        padding-top: 0;
    }
    .appLinks .appitem:last-child {
        display: none;
    }
	 .title {
        margin-bottom: 30px;
    }
    .title h3 {
        font-size: 24px;
    }
}
@media(min-width:768px) {
    .nav li:hover>a {
        color: #ff6600;
        border-color: #ff6600;
    }
}
@media(max-width:640px) {
    .advantage>.auto {
        margin: 0 20px;
    }
    .advantage .data .item .count {
        font-size: 26px;
		margin-bottom: 10px;
    }
    .aboutBlock .text {
        margin: 0 20px 30px;
    }
    .aboutBlock2>.auto {
        margin: 0 20px;
    }
    .pbanner .positionCenter {
        padding: 0 20px;
        line-height: 1.2;
    }
    .pbanner h3 {
        margin-bottom: 10px;
    }
}


.photoSlider .swiper-slide .inner {
    max-width: 1080px;
}


.categray.style2 .item a {
    font-weight: bold;
}
.categray.style2 .item ul {
    display: block;
}
.categray.style2 .item ul li a {
}

.pbanner.pro {
    height: 100vh;
    font-size: 40px;
}
.pbanner.pro .positionCenter {
    text-align: center;
    top: 10%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.pbanner.pro h3 {
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 24px;
}
.pbanner img {
    width: 100%;
}


.pbanner.pro.style2 {
    height: 106vh;
}
@media (max-width: 560px) {
    .pbanner.pro.style2 {
        height: 25vh;
        /*background-size: contain;*/
    }
	.pbanner.pro .positionCenter{
		top: 15%;
	}
}

.pbanner.pro {
    height: 106vh;
}
@media (max-width: 1024px) {
    .pbanner.pro {
        height: 92vh;
    }
	.pbanner.pro h3 {
	    font-size: 44px;
	}
	.pbanner.pro {
	    font-size: 18px;
	    height: 92vh;
	}
}
@media (max-width: 768px) {
    .pbanner.pro {
        height: 53.333vw;
    }
	.pbanner.pro.relative,
    .pbanner.pro.style2 {
        margin-top: 140px;
    }
	.pbanner.pro h3 {
        font-size: 24px;
    }
	.pbanner.pro .videoBtn {
        margin-top: 20px;
        width: 140px;
        line-height: 30px;
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .pbanner.pro .positionCenter {
        top: 10.6%;
    }
    .pbanner.pro.relative, .pbanner.pro.style2 {
        margin-top: 65px;
    }
    .pbanner.pro {
        margin-top: 111px !important;
    }
}
.pbanner.pro .videoBtn {
    border: 1px solid #fff;
}
.pbanner.pro .videoBtn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}
.imageBlock {
    margin-top: 10px;
}


.section {
    padding: 7% 0;
    width: 100%;
    text-align: center;
}
.section .text {
    max-width: 720px;
    margin: auto;
    font-size: 20px;
}
.section .text .tit {
    font-size: 40px;
    margin-bottom: 30px;
	font-weight: bold;
}
.imagesScroll {
    height: 300vh;
}
.scrollContainer {
    position: sticky;
    top: 0;
    text-align: center;
}
.imgsSection {
    margin-top: 7%;
}
.imgsContainer img {
    margin: auto;
    height: 483px;
    display: none;
}
.imgsContainer img:first-child {
    display: block;
}
.fullContainer .content {
    margin-bottom: 60px;
    font-size: 20px;
}
.fullContainer .tit {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
	font-weight: bold;
}
.fullContainer .imgbox {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    border-radius: 20px;
    overflow-x: hidden
}
.fullContainer .imgbox .text {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    font-size: 20px;
    z-index: 30;
}
.fullContainer .imgbox .text .con {
    max-width: 420px;
    position: relative;
    /*opacity: 0;
    top: 60px;*/
    -webkit-transition: 2s;
    transition: 2s;
}
.fullContainer .imgbox .text.show .con {
    /*opacity: 1;
    top: 0;*/
}
.sectionImg {
    margin-top: 100px;
    text-align: center;
}
.photos {
    padding: 7% 0;
    font-size: 0;
}
.photos .item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 40%;
    margin-right: 10%;
    margin-bottom: 10%;
    font-size: 20px;
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
    transition: opacity .6s linear, -webkit-transform .6s ease-out;
    -webkit-transition: opacity .6s linear, -webkit-transform .6s ease-out;
    transition: opacity .6s linear, transform .6s ease-out;
    transition: opacity .6s linear, transform .6s ease-out, -webkit-transform .6s ease-out;
}
.photos .item:nth-child(2n) {
    margin-right: 0;
    margin-left: 10%;
    top: 150px;
}
.photos .item .tit {
    margin-top: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.photos .item.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: opacity .6s linear, -webkit-transform .6s ease;
    -webkit-transition: opacity .6s linear, -webkit-transform .6s ease;
    transition: opacity .6s linear, transform .6s ease;
    transition: opacity .6s linear, transform .6s ease, -webkit-transform .6s ease;
}
.techSpecs {
    padding: 6% 0 0;
}
.titleLeft {
    font-size: 40px;
    color: #333;
    margin-bottom: 60px;
	font-weight: bold;
}
.table table {
    width: 100%;
    border-spacing: 0;
}
.table th {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    text-align: left;
    height: 40px;
    border: none;
    border-bottom: 1px solid #E6E6E6;
}
.table td {
    text-align: left;
    height: 40px;
    border: none;
    border-bottom: 1px solid #E6E6E6;
}
.table {
    margin-bottom: 60px;
}
.download {
    padding-bottom: 6%;
}
.dlist {
    width: 48%;
}
.dlist .tit {
    font-size: 28px;
    margin-bottom: 10px;
}
.dlist .item {
    margin-bottom: 20px;
    position: relative;
}
.dlist .item .a {
    display: block;
    font-size: 20px;
    line-height: 64px;
    background: #F5F5F5;
    padding: 0 60px 0 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dlist .item i.iconfont {
    position: absolute;
    width: 20px;
    text-align: center;
    line-height: 20px;
    right: 20px;
    top: 50%;
    margin-top: -10px;
}
.dlist .item i.iconfont {
    color: #44B0FF;
}
.dlist .item .a span {
    font-size: 14px;
    color: #999;
    padding-left: 10px;
}
.section .text.left {
    max-width: 960px;
    text-align: left;
    margin: 0;
}
.sectionImages {
    margin-top: 100px;
    font-size: 0;
}
.sectionImages .imgbox {
    display: inline-block;
    vertical-align: middle;
    width: 48%;
    margin-right: 2%;
}
.sectionImages .imgbox:nth-child(2n) {
    margin-left: 2%;
    margin-right: 0;
}
.pbanner.pro.style2 .positionCenter {
    text-align: left;
    top: 45%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.pbanner.pro.style2 .positionCenter .videoBtn {
    margin: 30px 0 0;
}
.layerLines {
    padding: 7% 0;
}
.imgLine {
    overflow: hidden;
    margin-bottom: 150px;
}
.imgLine .text {
    width: 45%;
    max-width: 490px;
    float: left;
    font-size: 20px;
    margin-right: 5%;
}
.imgLine .text .tit {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 30px;
	font-weight: bold;
}
.imgLine .img {
    float: right;
    width: 50%;
    text-align: right;
}
.imgLine:nth-child(2n) .text {
    float: right;
    margin-right: 0;
    margin-left: 5%;
}
.imgLine:nth-child(2n) .img {
    float: left;
    text-align: left;
}
.imgLine:last-child {
    margin-bottom: 0;
}
.autoSlider {
    margin-top: 60px;
    position: relative;
}
.autoSlider .swiper-container {
    overflow: visible;
}
.autoSlider:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    right: 100%;
    top: 0;
    z-index: 10;
    position: absolute;
}
.autoSliderControl {
    margin-top: 30px;
    text-align: left;
}
.autoSliderControl span {
    display: inline-block;
    vertical-align: middle;
    width: 46px;
    text-align: center;
    line-height: 44px;
    height: 46px;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 20px;
    cursor: pointer;
}
.fullContainer .content.center {
    text-align: center;
}
.fullContainer .content.center .auto {
    max-width: 720px;
}
.fullContainer .ul {
    width: 56%;
    padding-top: 5%;
}
.fullContainer .ul li {
    margin-bottom: 10%;
    padding-right: 30%;
    position: relative;
    font-size: 20px;
    line-height: 50px;
    max-height: 90px;
    overflow: hidden;
    -webkit-transition: .6s;
    transition: .6s;
    top: 150px;
    opacity: 0;
}
.fullContainer .ul li:after {
    width: 26%;
    content: "";
    border-bottom: 1px solid #fff;
    position: absolute;
    right: 0;
    top: 50%;
}
.fullContainer .show .ul li {
    top: 0;
    opacity: 1;
}
.fullContainer .show .ul li:nth-child(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.fullContainer .show .ul li:nth-child(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.fullContainer .show .ul li:nth-child(4) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.fullContainer .show .ul li:nth-child(5) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.fullImage .imgbox img {
    -webkit-transform: none;
    transform: none;
}
.threeImgs {
    overflow: hidden;
    margin-top: 60px;
}
.threeImgs .item {
    float: left;
    width: 48%;
    padding-bottom: 30%;
    margin-left: 2%;
    margin-bottom: 2%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    -webkit-transform: scale(.8);
    transform: scale(.8);
    -webkit-transition: .6s;
    transition: .6s;
}
.threeImgs .item:first-child {
    width: 50%;
    margin-left: 0;
    padding-bottom: 62%;
}
.threeImgs .item.show {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
@media(max-width:1024px) {
    
    .section .text .tit {
        font-size: 28px;
    }
    .section .text {
        font-size: 18px;
    }
    .imgsSection {
        margin-top: 40px;
    }
    .scrollContainer {
        padding-top: 40px;
    }
    .fullContainer .content {
        margin-bottom: 30px;
        font-size: 16px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .fullContainer .tit {
        font-size: 30px;
    }
    .fullContainer .imgbox .text {
        font-size: 18px;
    }
    .photos .item {
        width: 47%;
        margin-right: 3%;
    }
    .photos .item:nth-child(2n) {
        margin-left: 3%;
    }
    .titleLeft {
        font-size: 30px;
        margin-bottom: 30px;
    }
    .table {
        margin-bottom: 40px;
    }
    .dlist .tit {
        font-size: 20px;
    }
    .dlist .item .a {
        font-size: 16px;
    }
    .dlist .item .a span {
        font-size: 12px;
    }
    .imgLine .text .tit {
        font-size: 36px;
    }
    .imgLine .text {
        font-size: 16px;
    }
    .imgLine .img {
        width: 40%;
    }
    .imgLine {
        margin-bottom: 50px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .autoSliderControl span {
        width: 32px;
        height: 32px;
        line-height: 30px;
    }
    .autoSliderControl span i {
        font-size: 12px;
    }
    .fullContainer .ul li {
        font-size: 16px;
        line-height: 24px;
        max-height: 48px;
    }
	.appList .item .content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
	.appList .item .appLinks {
		flex-wrap: wrap;
        padding-right: 0;
    }
	.appLinks .appitem {
        margin-bottom: 20px;
    }
}
@media(max-width:768px) {
    .scrollContainer {
        padding-top: 60px;
    }
    .section .text .tit {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .section .text {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .imgsContainer img {
        height: auto;
        width: 100%;
    }
    .fullContainer .tit {
        font-size: 24px;
    }
    .fullContainer .imgbox .text,
    .fullContainer .imgbox .text *{
        font-size: 14px;
        line-height: 1.4;
        
    }
    .fullContainer .imgbox .text{padding-left: 10px;}
    .sectionImg {
        margin: 50px auto 0; text-align: center!important;
    }
    .sectionImg img {
        max-width: 60%;
    }
    .photos .item:nth-child(2n) {
        top: 50px;
    }
    .photos .item .tit {
        font-size: 14px;
        margin-top: 10px;
    }
    .photos .item {
        margin-bottom: 10px;
    }
    .photos {
        padding: 7% 0 70px;
    }
    .titleLeft {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .table th {
        font-size: 16px;
    }
    .table td {
        font-size: 12px;
        padding: 7px 0;
    }
    .dlist .tit {
        font-size: 18px;
    }
    .dlist {
        width: 100%;
        float: none;
    }
    .dlist .item .a {
        font-size: 14px;
        padding: 0 40px 0 10px;
        line-height: 40px;
    }
    .dlist .item i.iconfont {
        right: 10px;
        font-size: 13px;
    }
    .imgLine .text, .imgLine:nth-child(2n) .text {
        float: none;
        width: auto;
        margin: 0 0 30px;
        font-size: 14px;
    }
    .imgLine .text .tit {
        font-size: 24px;
        margin-bottom: 20px;
    }
    .imgLine .img, .imgLine:nth-child(2n) .img {
        width: auto;
        float: none;
        text-align: center;
        max-width: 60%;
        margin: auto;
    }
    .sectionImg.autoWidth img {
        max-width: 100%;
    }
    .autoSlider {
        margin-top: 30px;
    }
    .autoSlider .swiper-container {
        overflow: hidden;
    }
    .autoSliderControl {
        text-align: center;
    }
    .fullContainer .ul li {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 20px;
        max-height: 40px;
    }
	 .Firmware .item .text .c {
        word-break: break-all;
    }
	.appList .item .content {
        padding-top: 0;
    }
	
}
.videoMask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    z-index: 99;
    display: none;
}
.videoContainer {
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 90%;
}
.videoContainer .close {
    position: absolute;
    right: 0;
    top: -20px;
    line-height: 20px;
    cursor: pointer;
    color: #fff;
    z-index: 10;
}
.videoContainer .close i {
    font-size: 14px;
}
.videoContainer video {
    width: 100%;
    display: block;
    position: relative;
    z-index: 9999;
}
@media(max-width:560px) {
    .videoContainer {
        width: 90%;
    }
}
.page.bgWhite .inBox img {
    width: 100%;
}
.lighting.video a {
    cursor: pointer;
}
.sideMenu {
    position: static;
}
@media(max-width:640px) {
    .sideMenu.fixed .categray{ position: fixed; width: 100%; background: #fff; left: 0; padding: 20px; }
    .sideMenu .categray.style2 .item .sub{ display: none;}
}

.pbanner.pro 
.videoBtn.black{background-color: #000;border: #fff;color: #fff;display: none;}
.flinks a { font-weight: 500;}
.nav li#nav6{/*font-style: oblique;*/}

.productInfo .productDesc {
    color: #333;
    background: none;
    padding: 0;
    margin-bottom: 10px;
}
.videoContainer {
    background: #000;
    width: 960px;
    height: 540px;
    max-height: 90%;
}
.dlist .item .a {
    position: relative;
    z-index: 20;
    background: none;
}
.dlist .item {
    background: #F5F5F5;
}
.productInfo2 .dlist .item {
    background: #fff;
}
.productInfo .download .dlist .item i.iconfont {
    color: #44B0FF;
}

.selectBox {
    border-radius: 17px;
    padding: 0;
}
.selectBox .selectDown {
    left: -1px;
    right: -1px;
    z-index: 19;
}
.selectBox .selectDown>div {
    padding: 0 20px;
}
.selectBox.hover {
    border-radius: 17px 17px 0 0;
    border-color: transparent;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.selectBox.hover .selectDown {
    border-radius: 0 0 17px 17px;
    margin-top: -1px;
    display: block;
}
.selectBox .selectBoxCur {
    padding-left: 20px;
    padding-right: 40px;
    position: relative;
    z-index: 20;
    border-radius: 17px;
}
.selectBox.hover .selectBoxCur {
    border-radius: 17px 17px 0 0;
}
.selectBox.hover .selectDown {
    border-radius: 0 0 17px 17px;
    margin-top: -1px;
    display: block;
}
.selectBox .selectDown {
    box-shadow: 0px 20px 30px rgb(0 0 0 / 10%);
}
.selectBox.hover {
    border: none;
}

.selectBox .selectDown .div {
    max-height: 204px;
    overflow: auto;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}

.selectBox .selectDown>div:hover {
    background: none;
}
.selectBox .selectDown .div::-webkit-scrollbar, .selects::-webkit-scrollbar {
    width: 4px;
    height: 1px;
}
.selectBox .selectDown .div::-webkit-scrollbar-thumb {
    border-radius: 4px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
    background: #666;
}
.selectBox .selectDown .div::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #f2f2f2;
}


.pageMenu li.cur a,
.lighting .item .text .t,.listTop h3,.EducatorInfo h3,.EducatorSide .tit,.Firmware .item .text .t,
.sideRight>.tit,.pageMenu li.cur a,.appList .item .content h3,
.catgray>div,.faqItems .item .qustion .t,.feedback .tit,.sear input,.form .line input,
.form .line textarea,.formBtns .btn,.faqItems .item .ans,.advantage .text h3,.advantage .content,
.advantage .data .item p,.lighting.newsCenter .item .text .t,.infoSide .tit,
.newsLabel a,.contentBlock h3,.contentBlock .subtit,.followUs .tit,
.pageForm .lineGroup .tit,.radios .item label,.pageForm .lineGroup .line,
.privacy,.pageForm .line .code input[type="text"],.pageForm .btns .btn,.reviseh01 .title h3,
.aboutBlock2 .title h3,.mails .title h3,.aboutBlock .text,.aboutBlock2 .text,
.mails .items .item .text,.mails .items .item .tit,.advantageText{
    font-weight: 500;
}
.advantage .data .item .count span, 
.pbanner.pro h3, 
.section .text .tit, 
.relations .title h3, 
.techSpecs .titleLeft, 
.fullContainer .tit, 
.imgLine .text .tit{ font-weight: bold;}

/*20240325*/
.cookies {position: fixed; left:0; bottom:0; width: 100%; z-index: 100000; background-color:rgba(0,0,0,.4); padding:0.8em 1em; color:#fff; display: none; justify-content: space-between; align-items: center; flex-wrap: wrap;}
.cookies .btn {display:flex; justify-content:space-between; width:11em;}
.cookies .btn span {display:block;border:2px solid #fff; border-radius: 3px; width: 5.1875em; line-height: 2.5625em; text-align: center; cursor: pointer;font-weight:bold;}
.cookies .btn span:hover {background-color:#fff;color:#000;}
.cookies .text {width: calc(100% - 12em);}
.fullImage{ position: relative;}
.fullImage .videoBtn{ display: block;}
.fullImage h3{color: #fff;font-size: 40px;font-weight: normal;}
@media(max-width:768px){
    .fullImage h3 {font-size: 20px;white-space: nowrap;}
}

.pageForm {
    background: #fff;
    padding: 40px 0 50px;
    font-size: 16px;
}
.pageForm .tit {
    font-size: 28px;
    padding: 0 40px 40px;
    border-bottom: 1px solid #E6E6E6;
    margin-bottom: 40px;
    color: #333;
}
.pageForm .line {
    padding: 0 40px;
    margin-bottom: 20px;
    line-height: 2;
}
.pageForm .line .input {
    width: 540px;
    max-width: 100%;
    position: relative;
    padding-right: 20px;
}
.pageForm .line input[type="text"] {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0 10px;
    outline: none;
    color: #666;
}
.pageForm .line textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    outline: none;
    resize: none;
    color: #666;
}
.pageForm .line input:focus {
    border-color: #666;
}
.pageForm .line .flieBtn {
    display: inline-block;
    vertical-align: middle;
    line-height: 30px;
    background: #F5F5F5;
    border: 1px solid #ccc;
    padding: 0 10px;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px;
    color: #999;
    font-size: 14px;
}
.pageForm .line .tip {
    font-size: 12px;
    color: #999;
}
.pageForm .line .code input[type="text"] {
    width: 120px;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    margin-right: 10px;
    text-align: center;
}
.pageForm .line .code .img {
    display: inline-block;
    vertical-align: middle;
}
.pageForm .line .file {
    margin-bottom: 60px;
}
.pageForm .btns {
    padding: 0 40px;
    width: 520px;
    max-width: 100%;
    text-align: center;
    margin-top: 60px;
}
.pageForm .btns .btn {
    display: inline-block;
    vertical-align: middle;
    width: 125px;
    text-align: center;
    line-height: 40px;
    border-radius: 20px;
    background: #FF6600;
    color: #fff;
    cursor: pointer;
    border: none;
}
.pageForm.style2 {
    padding: 0;
    background: none;
}
.pageForm .lineGroup {
    margin-bottom: 60px;
}
.pageForm .lineGroup .tit {
    padding: 0;
    font-size: 20px;
    border: none;
    margin-bottom: 20px;
}
.pageForm .lineGroup .line {
    padding: 0;
}
.radios .item {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    font-size: 14px;
    cursor: pointer;
    line-height: 30px;
}
.radios .item .inp {
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    width: 14px;
    height: 14px;
    position: relative;
}
.radios .item .inp input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    z-index: 10;
}
.radios .item .inp i {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 1px solid #666;
    border-radius: 50%;
}
.radios .item .inp i:after {
    width: 50%;
    height: 50%;
    content: "";
    position: absolute;
    left: 25%;
    top: 25%;
    border-radius: 50%;
}
.radios .item .inp input:checked+i:after {
    background: #44B0FF;
}
.radios .item .inp input:checked+i {
    border-color: #44B0FF;
}
.radios .item label {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}
.pageForm.style2 .line .input {
    width: 820px;
}
.pageForm .line .require:after {
    content: "*";
    width: 20px;
    color: #E63900;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -10px;
}
.pageForm .line .selectBox {
    border-color: #ccc;
    background: #fff;
    font-size: 14px;
}
.pageForm .line .selectBox:after {
    right: -20px;
}
.pageForm .addBtn {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    border: 1px solid #44B0FF;
    padding: 0 10px;
    line-height: 30px;
    border-radius: 4px;
    color: #44B0FF;
    cursor: pointer;
    -webkit-transition: .4s;
    transition: .4s;
    display: none;
}
.pageForm .addBtn i {
    font-style: normal;
    padding-right: 5px;
    display: inline-block;
    vertical-align: middle;
}
.pageForm .addBtn:hover {
    background: #44B0FF;
    color: #fff;
}


.PicList002938 ul{padding: 1.93vw 0; border-bottom: 1px dotted #cecece;display: flex; align-items: center}
.PicList002938 li .inner{padding-left: 33px;font-size: 16px; }
.PicList002938 li time{color: #c8c8c8;}
.PicList002938 li time a{color: #e43937;}
.PicList002938 li p{color: #b8b8b8;line-height: 1.625em; height: 3.25em;}
.PicList002938 li aside{font-size: 18px;}
.PicList002938 li aside a{color: #1e1e1e;}
.PicList002938 li aside a:hover{color: #e43937;}
@media(min-width:481px){
.PicList002938 ol{width: 177px;}
}
@media(max-width:640px){
.PicList002938 li .inner{padding-left: 3vw;font-size: 14px; }
.PicList002938 li aside{font-size: 16px;}
}
@media(max-width:480px){
.PicList002938 .ytable,
 .PicList002938 .ytable-cell{display: block;}
.PicList002938 ul{padding: 3vw 0;}
.PicList002938 li .inner{padding: 3vw;}
}

.box-lcon.padd{background: #000;padding-top: 67px}
.search-shell {   position: relative;   padding: 100px 10px;
    line-height: 50px;
    border-radius: 8px;
    overflow: hidden;
    max-width: 700px;
    border-radius: 50px;
    margin: auto;
}
.search-shell input {
    color: #333333;
    font-size: 16px;
    width: 100%;
    line-height: 50px;
    /* height:50px;*/
    padding-right: 100px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 50px;
    padding-left: 48px;
    border-color: transparent;
    padding-right: 20px;
}
.search-shell .iconfont1:before {
    content: "\e6ad";
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    left: 15px;
    height: 100%;
    width: 100%;
    max-width: 24px;
    /* top:14px;*/
    max-height: 24px;
    text-align: right;
    color: #000;
    border-radius: 0;
    display: block;
    margin-top: 0;
    padding: 2px 0;
    font-family: "iconfont" !important;
}
.search-shell i.iconfont1.sn-search {
    /*font-family: "iconfont" !important;*/
    font-size: 16px;
    font-style: normal;
}
.search-menu ul{
    margin: auto;
    margin-top: 6rem;
    margin-bottom: 2rem;
    display: flex;
}
.search-menu ul li {
    list-style: none;
    font-size: 16px;
    /*font-family: Roboto;*/
    font-weight: 400;
    line-height: 19px;
    color: #666666;
    margin-right: 60px;
    line-height: 2;
}
.search-menu ul li.onactive a{ color: #FF6600; border-bottom: 2px solid #FF6600;}


.searhBlock {
    justify-content: center;
    margin-bottom: 60px;
}
.searhBlock .sear {
    margin-bottom: 0;
    margin-right: 30px;
    height: 40px;
    border-radius: 20px;
    width: 400px;
    background: #fff;
    border: none;
    color: #999;
    border: 1px solid #e5e5e5;
}
.searhBlock .sear i {
    line-height: 40px;
}
.searhBlock .sear input {
    color: #999;
    font-size: 14px;
}
.searhBlock .selectBox {
    line-height: 40px;
    border-radius: 20px;
    border: none;
    background: #fff;
    border: 1px solid #e5e5e5;
}
.searhBlock .selectBox .p {
    font-size: 14px;
    color: #333;
    position: absolute;
    right: 0;
    top: 110%;
    line-height: 1.5;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    white-space: normal;
}
.selectBox .selectDown .div a{ display: block;}
.storesNew .item {
    background: #fff;
    margin-bottom: 20px;
    padding: 33px 40px;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    color: #666;
    align-items: center;
    justify-content: flex-start;
}
.storesNew .item:hover {
    box-shadow: 0px 10px 10px rgb(0 0 0 / 10%);
}
.storesNew .item .tit {
    font-size: 28px;
    color: #333;
    line-height: 1;
}
.storesNew .item .tit span {
    display: block;
    font-size: 16px;
    color: #999;
    margin-top: 10px;
}
.storesNew .item>div {
    padding-right: 50px;
}
.storesNew .item .store_address {
    padding-left: 50px;
    width: 445px;
}
.storesNew .item .store_tel {
    padding-left: 50px;
    flex: 1 1 auto;
}
.storesNew .item .mapLink {
    padding-left: 50px;
    padding-right: 0;
    border-left: 1px solid #ccc;
    height: 80px;
    line-height: 80px;
    font-size: 14px;
    white-space: nowrap;
}
.storesNew .item .mapLink i {
    font-size: 12px;
    padding-left: 5px;
}
.storesNew .item .tit {
    width: 25%;
    flex: 0 0 auto;
}
.storesNew .item .store_tel {
    width: 230px;
    flex: 0 0 auto;
}
.storesNew .item .mapLink {
    width: 145px;
    flex: 0 0 auto;
}
.storesNew .item .store_address {
    width: auto;
    flex: 1 1 auto;
}
@media(max-width:1024px) {
    .storesNew .item>div {
        padding-right: 20px;
    }
    .storesNew .item {
        padding: 30px 20px;
        font-size: 14px;
    }
    .storesNew .item .tit {
        font-size: 20px;
    }
    .storesNew .item .store_address {
        width: 320px;
        padding-left: 20px;
    }
    .storesNew .item .store_tel {
        padding-left: 20px;
    }
    .storesNew .item .mapLink {
        padding-left: 30px;
        height: auto;
        line-height: 2;
    }
}
@media(max-width:560px) {
    .storesNew .item {
        padding: 20px 10px;
        flex-wrap: wrap;
    }
    .storesNew .item .tit {
        width: 100%;
        margin-bottom: 10px;
    }
    .storesNew .item .store_address {
        width: 100%;
        padding: 0;
        margin-bottom: 5px;
    }
    .storesNew .item .store_tel {
        padding-left: 0;
    }
    .storesNew .item .mapLink {
        border: none;
    }
}
@media (max-width: 640px) {
    
    .details-box .pro-two {
        padding-top: 0;
    }
    .details-box .pro-padd {
        padding: 70px 0 0;
    }
}



/*20250226x*/
.nav li.have_dd{position: inherit}
.nav li.have_dd .sub2{width: 100vw;padding: 57px 0;}
.nav li.have_dd .sub2 .auto { flex-wrap: wrap; align-items: stretch;justify-content: flex-start}
.nav li.have_dd .sub2 dl { width: 25%;  padding: 0 20px 0 0; margin-bottom: 20px;}
.nav li.have_dd .sub2 dl dt {font-size: 20px; color: #333; margin-bottom:5px;font-weight: bold}
.nav li.have_dd .sub2 dl dt a{color: #333}
.nav li.have_dd .sub2 dl dd {}
.nav li.have_dd .sub2 a {text-align: left; padding: 0; display: block; white-space: nowrap;line-height: 30px;}
.nav li.have_dd .sub2 a:hover{color: #000; background: none}
.nav li.have_dd .sub2 .seeMore a { color: #44B0FF;}
@media (max-width: 1280px) {
.nav li.have_dd .sub2 dl{padding: 0 10px;}
}
@media (max-width: 768px) {
.nav li.have_dd .sub2{padding: 15px 0}
.nav li.have_dd .sub2 dl{width: 100%}
.nav li.have_dd .sub2 dl dt a{font-size: 15px;}
}

.sideMenu_pro{background: #ffffff}
.sideMenu_pro .search{position: relative; margin-bottom: 20px; border: 1px solid #666; height: 32px; border-radius: 16px;}
.sideMenu_pro .search input{background: none;  outline: none; border: none; width: 100%; height: 100%; padding: 0 20px 0 40px; color: #333;}
.sideMenu_pro .search a{position: absolute; left: 0; top: 0; width: 40px;  text-align: center; line-height: 32px;}
.categray_box{max-width: 100%}
.categray_box .sub{display: none}
.categray_box ul li span{font-size: 16px; display: block; position: relative; font-weight:bold;}
.categray_box ul li span i{position: absolute; right: 0; top:50%;transform: translateY(-50%); color: #ccc; font-size: 12px; cursor: pointer; width: 30px; text-align: center; -webkit-transition: .4s; transition: .4s;}
.categray_box ul li.active span i{-webkit-transform: rotate(-180deg) translateY(50%);  transform: rotate(-180deg) translateY(50%);}
.categray_box ul li.active span a,
.categray_box ul li dd.cur a{color: #ff6600}
@media (max-width: 768px) {
.categray_box li.active{display: block}
.categray_box li a:hover, 
.categray_box li.active span a{color: #ff6600}
.categray_box ul li dd a{color: #333333}
}
  .header .line-ol {
    padding-left: 0;
    margin-left: 0;
}
    .header .line-ol::after{
  display: none;
}