@charset "utf-8";
/*全局初始化样式*/
*{box-sizing: border-box; margin:0; padding:0;}
body{position: relative; padding:0; margin:0 auto; font-size:14px; line-height:1.42857143;font-family: "SourceHanSerifSC", "宋体", PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif; color: #333; min-width: 1340px; width: 100%; zoom:1;/*禁用Webkit内核浏览器的文字大小调整功能*/-webkit-text-size-adjust:none; /*取出点击出现半透明的灰色背景*/-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight:rgba(0,0,0,0); /*设置字体的抗锯齿或者说光滑度*/-webkit-font-smoothing: antialiased;background-color: #131313}
*{-moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; /*word-break: break-all;*/word-wrap: break-word;}
/*默认去除ul、li的默认样式*/
.p,.h1,.h2,.h3,.h4,.h5,.h6{ margin: 0; padding: 0;}
.ul,.ul li{ list-style:none; margin: 0; padding: 0;}
p,h1,h2,h3,h4,h5,h6{ margin: 0; padding: 0;}
ul,ul li{ list-style:none; margin: 0; padding: 0;}
/*初始化下拉菜单、单行输入框、多行输入框的样式*/
select,input,textarea{ border-radius:0; -webkit-border-radius:0; color:#333;}
/*表单元素获得焦点时不显示虚线框*/
input:focus { outline: none;}
input,button,select,textarea{ outline:none;/*-webkit-appearance:none;*//*强制去除表单自带的样式*/ }
/*不允许多行输入文本框有滚动条*/
textarea{ resize:none;/*-webkit-appearance:none;*//*强制去除textarea自带的样式*/ }
/*初始化表单元素样式*/
textarea,input,select { background:none; border:none; margin:0; padding:0;}
/*初始化HTML5标签样式*/
audio,canvas,progress,video { display: inline-block; vertical-align:baseline;}
article,aside,footer,header,hgroup,nav,section,figure,figcaption{ display:block;}
/*去除figure边距*/
figure,figcaption{ margin:0; padding:0;}
/*初始化图片样式*/
img{ border:none; border:0; max-width:100%; vertical-align:middle;}

/*初始化a的样式和字体样式*/
a{ color:#333; text-decoration:none!important; -webkit-tap-highlight-color:rgba(0,0,0,0);}
a:hover{color: #AF8F6E;}
.pc_w{ width: 1200px;margin: 0 auto;}
/*.left{ float: left}*/
/*.right{ float: right}*/

.width_web{ width: 1440px;margin: 0 auto}
.width_web2{ width: 1400px;margin: 0 auto}

.color{color:#AF8F6E !important;background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
/*.color{background-image:-webkit-linear-gradient(bottom,#998A7C,#BEB0A0);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}*/
/*
滚动条的设置
::-webkit-scrollbar 滚动条整体部分，可以设置宽度啥的
::-webkit-scrollbar-button 滚动条两端的按钮
::-webkit-scrollbar-track  外层轨道
::-webkit-scrollbar-track-piece  内层滚动槽
::-webkit-scrollbar-thumb 滚动的滑块
::-webkit-scrollbar-corner 边角
::-webkit-resizer 定义右下角拖动块的样式
*/
/*::-webkit-scrollbar {width: 6px;background-color: #181c32;}*/
/*::-webkit-scrollbar-thumb {background-color: #5a76cd;}*/
::-webkit-scrollbar {
    width: 9px;
    background-color: #000;
}
::-webkit-scrollbar-thumb {
    border: solid 2px #000;
    width: 5px;
    border-radius: 4px;
    background-color: #AF8F6E;
}
::-webkit-scrollbar-corner {
    background-color: #000;
}
::-webkit-scrollbar:horizontal {
    height: 9px;
}
::-webkit-selection {
    background: #AF8F6E;
    color: #fff;
}
::-moz-selection {
    background: #AF8F6E;
    color: #fff;
}
::selection {
    background: #AF8F6E;
    color: #fff;
}

/*渐进效果*/
.Txtblur1 {
    animation-duration: 1.2s!important;
    animation: Txtblur cubic-bezier(0.82, 0.01, 0.34, 1);
}
.Txtblur2 {
    animation-duration: 1s!important;
    animation: Txtblur cubic-bezier(0.82, 0.01, 0.34, 1);
}
.scaleIn {
    animation-duration: 0.8s!important;
    animation: scaleIn cubic-bezier(0.82, 0.01, 0.34, 1);
}
@keyframes Txtblur {
    0% { filter: blur(12px);opacity: 0;transform: scale(1.2);-webkit-transform: scale(1.2);-moz-transform: scale(1.2);-o-transform: scale(1.2);-ms-transform: scale(1.2);}
    100% { filter: blur(0);opacity: 1;transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);-ms-transform: scale(1);}
}
@keyframes scaleIn {
    0% { opacity: 0;transform: scale(1.1);-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-o-transform: scale(1.1);-ms-transform: scale(1.1);}
    100% { opacity: 1;transform: scale(1);-webkit-transform: scale(1);-moz-transform: scale(1);-o-transform: scale(1);-ms-transform: scale(1);}
}
@keyframes gorotate {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
@keyframes fadeIn1 {
    from { opacity: 0.2;}
    to { opacity: 1;}
}
@keyframes menu {
    from { stroke-dashoffset: 0%;}
    to { stroke-dashoffset: -150%;}
}
@keyframes fadeInLeftSmall {
    from { opacity: 0;transform: translate3d(-10px, 0, 0);}
    to { opacity: 1;transform: none;}
}
.fadeInLeftSmall {
    animation-name: fadeInLeftSmall;
}
@keyframes fadeInRightSmall {
    from { opacity: 0;transform: translate3d(10px, 0, 0);}
    to { opacity: 1;transform: none;}
}
.fadeInRightSmall { animation-name: fadeInRightSmall;}
@keyframes fadeOutRightSmall {
    from { opacity: 1;transform: none;}
    to { opacity: 0;transform: translate3d(10px, 0, 0);}
}
.fadeOutRightSmall { animation-name: fadeOutRightSmall;}
@keyframes fadeInDownSmall {
    from { opacity: 0;transform: translate3d(0%, -10px, 0);}
    to { opacity: 1;transform: none;}
}
.fadeInDownSmall { animation-name: fadeInDownSmall;}
@keyframes fadeOutDownSmall {
    from { opacity: 1;transform: none;}
    to { opacity: 0;transform: translate3d(0%, 10px, 0);}
}
.fadeOutDownSmall { animation-name: fadeOutDownSmall;}
@keyframes fadeInUpSmall {
    from { opacity: 0;transform: translate3d(0%, 10px, 0);}
    to { opacity: 1;transform: none;}
}
.fadeInUpSmall { animation-name: fadeInUpSmall;}
@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
    }
}
@keyframes banner-scale {
    0% {transform: scale(1.2);}
    50% { transform: scale(1);}
    100% {transform: scale(1.2);}
    50% { transform: scale(1);}
    0% {transform: scale(1.2);}
}

@keyframes spread {
    0% { height: 0;}
    100% {height: 545px;opacity: 1;}
}
@-moz-keyframes spread {
    0% { height: 0;}
    100% {height: 545px;opacity: 1;}
}
@-webkit-keyframes spread {
    0% { height: 0;}
    100% {height: 545px;opacity: 1;}
}

@keyframes height01 {
    0% { height: 0;}
    100% {height: auto;opacity: 1;}
}
@-moz-keyframes height01 {
    0% { height: 0;}
    100% {height: auto;opacity: 1;}
}
@-webkit-keyframes height01 {
    0% { height: 0;}
    100% {height: auto;opacity: 1;}
}

@keyframes fadeIn1 {
    from {opacity: 0.2;}
    to {opacity: 1;}
}
@-moz-keyframes fadeIn1 {
    from {opacity: 0.2;}
    to {opacity: 1;}
}
@-webkit-keyframes fadeIn1 {
    from {opacity: 0.2;}
    to {opacity: 1;}
}

@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-moz-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

@keyframes transr {
    0% { transform: translate(4rem);}
    100% { opacity: 1;transform: translate(0);}
}
@-moz-keyframes transr {
    0% {transform: translate(4rem);}
    100% { opacity: 1;transform: translate(0);}
}
@-webkit-keyframes transr {
    0% { transform: translate(4rem);}
    100% { opacity: 1;transform: translate(0);}
}

@keyframes transl {
    0% { transform: translate(-4rem);}
    100% {opacity: 1;transform: translate(0);}
}
@-moz-keyframes transl {
    0% {transform: translate(-4rem);}
    100% {opacity: 1;transform: translate(0);}
}
@-webkit-keyframes transl {
    0% { transform: translate(-4rem);}
    100% { opacity: 1;transform: translate(0);}
}

@keyframes scale {
    0% { transform: scale(0.8);}
    100% {opacity: 1;transform: scale(1);}
}
@-moz-keyframes scale {
    0% {transform: scale(0.8);}
    100% {opacity: 1;transform: scale(1);}
}
@-webkit-keyframes scale {
    0% {transform: scale(0.8);}
    100% {opacity: 1;transform: scale(1);}
}

@keyframes transBot {
    0% {transform: translateY(1.2rem);}
    100% {opacity: 1;transform: translateY(0);}
}
@-moz-keyframes transBot {
    0% {transform: translateY(1.2rem);}
    100% {opacity: 1;transform: translateY(0);}
}
@-webkit-keyframes transBot {
    0% {transform: translateY(1.2rem);}
    100% { opacity: 1;transform: translateY(0);}
}

@keyframes scle2 {
    from {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.1);
    }
}
@keyframes criss-cross-left {
    0% {
        left: -20px;
    }
    50% {
        left: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        left: 50%;
        width: 375px;
        height: 375px;
    }
}
@keyframes criss-cross-right {
    0% {
        right: -20px;
    }
    50% {
        right: 50%;
        width: 20px;
        height: 20px;
    }
    100% {
        right: 50%;
        width: 375px;
        height: 375px;
    }
}
@-webkit-keyframes mask_fadeUp {
    0% {-webkit-transform: translateY(0%);transform: translateY(0%);}
    100% {-webkit-transform: translateY(-101%);transform: translateY(-101%);}
}
@keyframes mask_fadeUp {
    0% {-webkit-transform: translateY(0%);transform: translateY(0%);}
    100% {-webkit-transform: translateY(-101%);transform: translateY(-101%);}
}
@-webkit-keyframes fadeIn {
    from {opacity: 0}
    to {opacity: 1}
}
@keyframes fadeIn {
    from { opacity: 0}
    to { opacity: 1}
}
.fadeIn {-webkit-animation-name: fadeIn;animation-name: fadeIn}
@-webkit-keyframes fadeInUp {
    from { opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInUp {
    from { opacity: 0;-webkit-transform: translate3d(0, 100%, 0);transform: translate3d(0, 100%, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInUp {-webkit-animation-name: fadeInUp;animation-name: fadeInUp}

@-webkit-keyframes fadeInUpSmall {
    from { opacity: 0;-webkit-transform: translate3d(0, 80px, 0);transform: translate3d(0, 80px, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInUpSmall {
    from { opacity: 0;-webkit-transform: translate3d(0, 80px, 0);transform: translate3d(0, 80px, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInUpSmall {-webkit-animation-name: fadeInUpSmall;animation-name: fadeInUpSmall}
.fadeInUpSlow {-webkit-animation-name: fadeInUpSlow;animation-name: fadeInUpSlow}
@keyframes fadeInUpSlow {
    from { opacity: 0;-webkit-transform: translate3d(0, 80px, 0);transform: translate3d(0, 80px, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInUpSlowTo {-webkit-animation-name: fadeInUpSlowTo;animation-name: fadeInUpSlowTo}
@keyframes fadeInUpSlowTo {
    from { opacity: 0;-webkit-transform: translate3d(50px, 50px, 0);transform: translate3d(50px, 50px, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@-webkit-keyframes fadeInDown {
    from { opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInDown {
    from { opacity: 0;-webkit-transform: translate3d(0, -100%, 0);transform: translate3d(0, -100%, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInDown {-webkit-animation-name: fadeInDown;animation-name: fadeInDown}
@-webkit-keyframes fadeInLeft {
    from { opacity: 0;-webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInLeft {
    from { opacity: 0;-webkit-transform: translate3d(-100%, 0, 0);transform: translate3d(-100%, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInLeft {-webkit-animation-name: fadeInLeft;animation-name: fadeInLeft}
@-webkit-keyframes fadeInLeftSmall {
    from { opacity: 0;-webkit-transform: translate3d(-40px, 0, 0);transform: translate3d(-40px, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInLeftSmall {
    from { opacity: 0;-webkit-transform: translate3d(-40px, 0, 0);transform: translate3d(-40px, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInLeftSmall {-webkit-animation-name: fadeInLeftSmall;animation-name: fadeInLeftSmall}
@-webkit-keyframes fadeInRight {
    from { opacity: 0;-webkit-transform: translate3d(100%, 0, 0);transform: translate3d(100%, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInRight {
    from { opacity: 0;-webkit-transform: translate3d(100%, 0, 0);transform: translate3d(100%, 0, 0)}
    to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInRight {-webkit-animation-name: fadeInRight;animation-name: fadeInRight}
@-webkit-keyframes fadeInRightSmall {
    from {opacity: 0;-webkit-transform: translate3d(40px, 0, 0);transform: translate3d(40px, 0, 0)}
    to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
@keyframes fadeInRightSmall {
    from {opacity: 0;-webkit-transform: translate3d(40px, 0, 0);transform: translate3d(40px, 0, 0)}
    to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0)}
}
.fadeInRightSmall {-webkit-animation-name: fadeInRightSmall;animation-name: fadeInRightSmall}
@-webkit-keyframes fadeZoom { from {-webkit-transform: scale3d(1.2, 1.2, 1.2);transform: scale3d(1.2, 1.2, 1.2)} to {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1)} }
@keyframes fadeZoom {
    from {-webkit-transform: scale3d(1.2, 1.2, 1.2);transform: scale3d(1.2, 1.2, 1.2)}
    to {-webkit-transform: scale3d(1, 1, 1);transform: scale3d(1, 1, 1)}
}
.fadeZoom {-webkit-animation-name: fadeZoom;animation-name: fadeZoom}

.inner{ float: left;width: 100%;height: 800px;overflow: hidden;position: relative}
.inner .swiper-container { width: 100%;height: 100%;}
.inner .swiper-slide { position: relative}
.inner .swiper-slide img{ width: 100%}
.video_css{ float: left;width: 100%;height: 100%;}
.inner .swiper-slide:after{ position: absolute;content: "";width: 100%;height: 100%;background-color: rgba(0,0,0,0.1);left: 0;top:0;z-index: 88}

.header{ width: 100%;height: 100px;padding: 0 80px;text-align: center;position: fixed;top:0;left:0;z-index: 9999;background-color: rgba(0,0,0,0);transition: all .56s}
.header:hover{ background-color: rgba(0,0,0,0.7)}
.header_logo{ float: left;width: auto;height: 100%;line-height: 100px;text-align: left;overflow: hidden}
.header_logo img{ max-width: 100%;display: inline}
.header_list{ width: auto;height: 100px;line-height: 100px;display: inline-block}
.header_list ul li{ text-align: center;display: inline-block;margin: 0 17px;position: relative}
.header_list ul li a{ padding: 0 7px;color: #999999;position: relative;height: 100px;line-height:115px;display: inline-block;font-size: 16px;}
.header_list ul li a.active,.header_list ul li a:hover{ transition: all .6s;background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;color: rgb(175, 143, 110);}
.header_list ul li a.active:after{ position: absolute;width: 100%;height: 3px;background:#AF8F6E;left: 0;bottom: 0;content: ""; }
.header_list ul li > ul{ position: absolute;left: 50%;margin-left: -75px;top: 100px;width: 150px;height: auto;overflow: hidden;display: none;background-color: rgba(0,0,0,.7);}
.header_list ul li:hover > ul{ display: inline-block}
.header_list ul li > ul li{ margin: 0;width: 100%;height: 40px;line-height: 40px;;float: left}
.header_list ul li > ul li:nth-of-type(1){ margin-top: 10px}
.header_list ul li > ul li:nth-last-of-type(1){ margin-bottom: 10px;}
.header_list ul li > ul li a{ font-size: 14px;padding: 0;text-align: center;height: 100%;line-height: normal;width: 100%;display: inline-block}
.header_list ul li > ul li a:after,.header_list ul li > ul li a:hover:after{ height: 0;}

.header_search{ float: right;width: auto;height: 100%;overflow: hidden}
.header_search input{ width: 202px;height: 36px;border: none;outline: none;border-radius: 25px;padding: 0 32px 0 22px;color: #FFFFFF;margin-top: 36px; background: rgba(255,255,255,0.102) url("../images/images_02.png") no-repeat 170px center ;}
.header_one_po{ display: none;transition: all .6s}
.footer{ float: left;width: 100%;height:auto;overflow: hidden;display: table;padding: 60px 0 0;background-color: #111}
/*移动端导航*/
.header_wab { background-color: #131313;position: fixed;top: 0;left: 0;width: 100%;z-index: 3000;height: auto;display: none}
.header_wab .logo { float: left;display: block;width: 130px;height: 31px;margin-top: 10px;margin-left: 5.33333%;}
.header_wab .logo img{ width: 100%;}
.header_wab .btn_tools { float: right;font-size: 0;position: relative;display: block;clear: both;width: 100%;border-top: 1px solid rgba(255, 255, 255, 0.1);z-index: 200}
.header_wab .tel_phone { display: inline-block;color: #fff;line-height: 50px;height: 50px;width: 100%;font-size: 14px;border-bottom: 1px solid rgba(255, 255, 255, 0.1);text-align: center}
.header_wab .tel_phone .icon-icon_tel { margin-right: 15px;padding-left: 19%;height: auto;font-size: 16px}
.header_wab .tel_phone span { display: inline-block;height: 100%;width: 50%;margin-right: 0 !important;padding-left: 12%;font-size: 14px !important}
.header_wab .tel_phone .tel { font-size: 18px}
.header_wab .btn_inquiry { float: right;background-color: #AF8F6E;-moz-transition: all .36s ease;text-align: center;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;width: 50px;height: 50px;line-height: 50px;font-size: 16px}
.header_wab .btn_inquiry:hover { background-color: rgba(175, 143, 110, 0.8)}
.header_wab .btn_inquiry img{ max-width: 50%}
.header_wab .btn_tools_menu { position: absolute;top: 50%;right: 0;display: none;margin-right: 0;margin-top: -40px;}
.header_wab .options { font-size: 0;line-height: normal;background-color: #AF8F6E;padding: 10px 20px;position: absolute;top: 100%;left: 50%;height: 180px;overflow: hidden;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;width: 0;-moz-transform: translate(-50%, 0);-ms-transform: translate(-50%, 0);-webkit-transform: translate(-50%, 0);transform: translate(-50%, 0);filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity: 0;visibility: hidden}
.header_wab .options li { width: 100%;display: inline-block;vertical-align: top;padding-top: 10px;padding-bottom: 10px;line-height: normal}
.header_wab .options li a { font-size: 14px;color: #fff;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease}
.header_bg { height: 50px}
.otherpage .header_bg { height: 138px}
.button_menu { float: right;position: relative;width: 40px;height: 40px;margin-right: 14px;margin-top: 5px}
.button_menu .menu { display: block;position: absolute;top: 50%;left: 50%;-moz-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);width: 18px;height: 14px}
.button_menu .menu span { display: block;width: 100%;height: 2px;background-color: #fff;position: absolute;left: 0}
.button_menu .menu span:nth-child(1) { top: 0}
.button_menu .menu span:nth-child(2) { top: 50%;margin-top: -1px}
.button_menu .menu span:nth-child(3) {bottom: 0}
.button_close .menu span:nth-child(2) {display: none}
.nav_bar { display: none;position: fixed;left: 0;width: 100%;top: 50px;height: calc(100vh - 50px)}
.nav_bar .nav_bar-nav { float: left;width: 100%;font-size: 0;margin-left: 0;position: relative;z-index: 300;clear: both}
.nav_bar .nav_bar-nav > li{ position: relative;display: inline-block;vertical-align: top;width: 50%;margin-right: 0;line-height: 40px;height: 40px;padding-left: 10%;border-bottom: 1px solid rgba(255, 255, 255, 0.1);border-right: 1px solid rgba(255, 255, 255, 0.1)}
.nav_bar .nav_bar-nav > li > a { display: block;position: relative;z-index: 2000;color: #fff;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;font-size: 14px;line-height: 40px;height: 40px}
.nav_bar .nav_bar-nav > li > a span {display: inline-block;width: 20px;padding-left: 8px}
.nav_bar .nav_bar-nav > li > a span:before {display: none}
.nav_bar .nav_bar-nav > li > a .hasClass {width: 42px}
.nav_bar .nav_bar-nav > li > a .hasClass:before {display: block}
.nav_bar .nav_bar-nav > li > a:after {content: "";position: absolute;display: block;width: 100%;bottom: 0;height: 2px;background-color: #AF8F6E;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease}
.nav_bar .nav_bar-nav > li:last-child {margin-right: 0}
.nav_bar .bg_cover { position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: #212121;z-index: 100}
.nav_bar .drop_down { position: absolute;display: none;left: 0;width: calc(100% + 1px);background-color: #AF8F6E;z-index: 3000;top: 40px}
.nav_bar .drop_down .drop_down_menu { display: block;width: 100%;position: relative;padding: 0;}
.nav_bar .drop_down .drop_down_menu_one{ padding-top: 0;padding-bottom: 0;width: 100% !important}
.nav_bar .drop_down .drop_down-menu_wrapepr:after { content: "";display: block;position: absolute;top: 0;left: -50vw;width: 200vw;height: 100%;background-color: rgba(0, 0, 0, 0.8);z-index: 200}
.nav_bar .drop_down ul { padding-left: 0;padding-right: 0;display: block}
.formsearch { -moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;border-right: 1px solid rgba(255, 255, 255, 0.2);filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);opacity: 1;visibility: visible;position: relative;width: auto;background-color: #212121;top: 0;right: 0;margin-left: 0;margin-right: 0;border-right: none;font-size: 0;padding-left: 0;z-index: 200;height: 50px}
.formsearch .form-group { display: inline-block;vertical-align: top;-moz-transition: all .8s ease;-o-transition: all .8s ease;-webkit-transition: all .8s ease;transition: all .8s ease;filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity: 0;visibility: hidden;width: 0;position: absolute;top: 0;right: 25%;height: 50px;margin-top: 0;margin-right: 0}
.formsearch .form-control { display: block;margin: 0;border: none;background: none;height: 100%;width: 100%;border-bottom: 1px solid rgba(255, 255, 255, 0.1);font-size: 14px;color: #ffff;padding: 0 3%}
.formsearch .form-control + label {position: absolute;top: 22px;left: 20px;font-size: 14px;color: #fff}
.formsearch .form-control::-webkit-input-placeholder {font-size: 14px;color: #fff}
.formsearch .form-control::-moz-placeholder {font-size: 14px;color: #fff}
.formsearch .form-control:-ms-input-placeholder {font-size: 14px;color: #fff}
.formsearch .form-control:-moz-placeholder {font-size: 14px;color: #fff}
.formsearch .form-group.on .form-control + label { display: none}
.formsearch .form-control:focus {outline: none;box-shadow: none}
.formsearch .button { padding: 0;margin: 0;border: none;display: inline-block;text-align: center;color: #fff;cursor: pointer;float: right;height: 50px;line-height: 50px;font-size: 16px;width: 25%;background: #AF8F6E url("../images/web_02.png") no-repeat center center;background-size: 30px auto}
.formsearch .button:focus { outline: none;}
.formsearch.active .form-group { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);opacity: 1;visibility: visible;width: 75%}
.container-full {background-color: rgba(0, 0, 0, 0.8);position: fixed;top: 88px;left: 0;width: 100%;z-index: 2500}
.button_close {
    -moz-transform: translate(50px, 0);
    -ms-transform: translate(50px, 0);
    -webkit-transform: translate(50px, 0);
    transform: translate(50px, 0)
}
.button_close .menu span:nth-child(1) {
    -moz-transform: rotate(45deg) translate(4px, 4px);
    -ms-transform: rotate(45deg) translate(4px, 4px);
    -webkit-transform: rotate(45deg) translate(4px, 4px);
    transform: rotate(45deg) translate(4px, 4px)
}
.button_close .menu span:nth-child(3) {
    -moz-transform: rotate(-45deg) translate(4px, -5px);
    -ms-transform: rotate(-45deg) translate(4px, -5px);
    -webkit-transform: rotate(-45deg) translate(4px, -5px);
    transform: rotate(-45deg) translate(4px, -5px)
}
@media only screen and (max-width: 1130px) {
    .nav_bar .nav_bar-nav > li > a:after {display: none}
    .formsearch .form-control + label {left: 18.79433%}
    .nav_bar .nav_bar-nav > li:last-child {border-bottom: none}
    .nav_bar .nav_bar-nav > li.on {background-color: #AF8F6E}
    .header_wab .btn_inquiry.opa {filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);opacity: 0}
    .nav_bar .drop_down .drop_down-menu_wrapepr:after {display: none}
    .nav_bar .drop_down .img-box {display: none}
    .nav_bar .drop_down .drop_down_menu {width: 100% !important}
    .nav_bar .drop_down .level {display: none}
    .nav_bar .drop_down li {height: auto;line-height: normal;padding: 15px 0;padding-left: 20%}
    .nav_bar .drop_down li a {height: auto;line-height: normal;font-size: 14px;color: #FFFFFF}
}

/*#171717*/
/*background: url("../images/images_04.jpg") no-repeat center center;*/
/*.footer_from{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 50px;}*/
/*.footer_from h2{ font-size: 36px;line-height: 36px; color: #fff;margin-bottom: 35px;text-align: center}*/
/*.footer_from input{ float: left;width: 265px;height: 55px;border: none;border-bottom: 1px solid #7d7d7d;outline: none;line-height: 55px;margin-right: 23px; color: #999;font-size: 16px;transition: all .6s}*/
/*.footer_from input:focus{ border-bottom: 1px solid #AF8F6E;}*/
/*.footer_from input:nth-last-of-type(1){ margin-right: 0}*/
/*.footer_from button{ width: 100px;height: 45px;float: right;background-color: #AF8F6E;text-align: center;font-size: 16px;line-height: 45px;color: #fff;border: none;margin-top: 10px;}*/
.footer_from{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 50px;text-align: center;font-size: 16px;}
.footer_from input{ float: left;width: 32%;height: 55px;border: 1px solid #666;outline: none;line-height: 55px;margin-right: 2%; color: #999;font-size: 16px;transition: all .6s;padding: 5px 20px;border-radius: 5px;}
.footer_from input:focus{ border: 1px solid #AF8F6E;}
.footer_from input:nth-last-of-type(1){ margin-right: 0}
.footer_from textarea{ float: left;width: 100%;height: 120px;margin-top: 25px;color: #999;border: 1px solid #666;padding: 10px 10px;margin-bottom: 25px;outline: none;border-radius: 5px;transition: all .6s;}
/*.footer_from button { width: 144px;height: 47px;float: right;background-color: #AF8F6E;text-align: center;font-size: 16px;line-height: 47px;color: #fff;border: none;margin-top: 10px;position: relative}*/
.footer_from textarea:focus{ border: 1px solid #AF8F6E;}
.footer_from button{ width: 160px;height: 45px;margin: 0 auto;text-align: center;border: none;display: inline-block;background-color: #AF8F6E;font-size: 16px;line-height: 45px;color: #fff;border-radius: 5px}

/*.footer_from button:before { opacity: 0; content: "";position: absolute;background-color: #DC5F00;z-index: 50;-moz-transition: all 1.4s ease;-o-transition: all 1.4s ease;-webkit-transition: all 1.4s ease;transition: all 1.4s ease;top: 0;left: 0;width: 100%;height: 100%;background-color: rgba(255,255,255,0.28);-moz-transform: scale(1.02, 1.02);-ms-transform: scale(1.02, 1.02);-webkit-transform: scale(1.02, 1.02);transform: scale(1.02, 1.02);}*/
/*.footer_from button:after { opacity:0; content: "";display: block;position: absolute;top: 5px;left: 5px;right: 5px;bottom: 5px;background-color: #fff;z-index: 100;-moz-transition: all 400ms ease-in-out;-o-transition: all 400ms ease-in-out;-webkit-transition: all 400ms ease-in-out;transition: all 400ms ease-in-out;}*/

.footer_nav{ float: left;width: 100%;height: auto;overflow: hidden;margin-bottom:10px;}
.footer_nav_list{ float: left;width: auto;height: auto;overflow: hidden}
.footer_nav_list ul li{ float: left;margin-right: 90px;padding-left: 12px}
.footer_nav_list ul li:nth-last-of-type(1){ margin-right: 0}
.footer_nav_list ul li p{ width: 100%;height: auto;font-size: 18px;line-height: 26px;color: #fff;margin-bottom: 5px;position: relative}
.footer_nav_list ul li p:before{ content: "";position: absolute;left: -12px;top:6px;width: 2px;height: 15px;background-color: #AF8F6E;}
.footer_nav_list ul li a{ display: block;width: 100%;font-size: 14px;line-height: 26px;color: #545454;margin-bottom: 5px;}
.footer_nav_list ul li a:hover{ color: #FFFFFF;transition: all .6s}
.footer_nav_int{ float: right;width: 400px;height: auto;overflow: hidden;}
.share{ margin-bottom: 25px;float: left;width: 100%}
.share a {width: 25px;height: 20px;display: block;padding: 0;float: right;margin: 0 0 0 25px;}
.share a.bds_tsina {background: url(../images/wb.png) no-repeat center center;}
.share a.bds_weixin {background: url(../images/wx.png)  no-repeat center center;}
.share a.bds_tianmao{ background: url(../images/tianmao.png)  no-repeat center center;}
.share a.bds_jindong{ background: url(../images/jingdong.png)  no-repeat center center;}
.footer_nav_int .statement {float: left;width: 100%;margin-bottom: 10px;}
.footer_nav_int .statement span {font-size: 12px;display: inline-block;float: right;margin: 0 10px;}
.footer_nav_int .statement a {color: #bbb;display: inline-block;float: right;}
.footer_nav_int .nnav a:hover {color: #fff;}
.footer_nav_int .tits {text-align: right;font-size: 14px;line-height: 28px;color: #bbb;}
.foot .bottom-wap{display:none;}
.ewm-tk { width: 100%;height: 100%;position: fixed;top: 0;left: 0;display: none;z-index: 20000; }
.ewm-tk .bg {width: 100%;height: 100%;position: absolute;top: 0;left: 0;background-color: rgba(0, 0, 0, 0.5); }
.ewm-tk .ewm {width: 300px;height: 300px;position: absolute;top: 0;left: 0;right: 0;bottom: 0;margin: auto;z-index: 5;overflow: hidden;transform: scale(0.7);transition: transform .5s; }
.ewm-tk .ewm .ewm-new {width: 100%;height: 100%; }
.ewm-tk.on .ewm {transform: scale(1); }
.footer_link{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 20px;}
.footer_link p{ float: left;display: inline;font-size: 14px;color: #bbb;line-height: 24px;margin-right: 15px;margin-bottom: 5px;}
.footer_link p a{ font-size: 13px;color: #bbb;line-height: 24px;}
.footer_s{ float: left;width: 100%;height: 50px;line-height: 50px;background-color: #111111;color: #bbb}
.footer_s span:nth-of-type(2),.footer_s span:nth-of-type(3){ float: right}
.footer_s span:nth-of-type(2) a{ margin-left: 20px;padding-left: 23px;background: url("../images/20181116121048_9839.png") no-repeat left center;height: 100%;display: inline-block}
.footer_s span a{ color: #bbb}

.btn_backtop,.btn_app{ display: none; width: 60px;height: 60px;text-align: center;position: fixed;bottom: 100px;right: 0;z-index: 2000;float: right}
.btn_backtop .box,.btn_app .box{ position: absolute;top: 50%;left: 0;width: 100%;margin-top: -14px;z-index: 70;font-size: 14px;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;}
.btn_backtop:before,.btn_app:before{ content: "";display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: #AF8F6E;-moz-transform: scale(0.7, 0.7) rotate(45deg);-ms-transform: scale(0.7, 0.7) rotate(45deg);-webkit-transform: scale(0.7, 0.7) rotate(45deg);transform: scale(0.7, 0.7) rotate(45deg);z-index: 60;}
.btn_backtop:after { content: "";display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;background-color: #fff;-moz-transform: scale(0.7, 0.7) rotate(45deg);-ms-transform: scale(0.7, 0.7) rotate(45deg);-webkit-transform: scale(0.7, 0.7) rotate(45deg);transform: scale(0.7, 0.7) rotate(45deg);z-index: 50;margin-top: 0;margin-left: -10px;-moz-transition: all .36s ease;-o-transition: all .36s ease;-webkit-transition: all .36s ease;transition: all .36s ease;}
.btn_backtop span { position: relative;z-index: 200;color: #fff;display: block;line-height: 26px;}
/*.icon-icon_arrow1:before { content: "∧";}*/
.btn_backtop .text { font-size: 14px;}

.index_fast{float: left;width: 100%;height: 100%;overflow: hidden;}
.index_one{float: left;width: 100%;overflow: hidden;position: relative;z-index: 500;}
.banner{width: 100%;height: 100%;overflow: hidden;cursor: pointer;position: relative}
.banner .swiper-container{width: 100%;height: 100%;position: relative}
.banner_index .swiper-slide {width: 100%;height: 100%;position: relative;display: table}
.banner_index .swiper-slide video{position: absolute;width: 100%;left: 0;top: 50%;transform: translateY(-50%);object-fit: fill;background-size: 100% 100%;background-position: center center;transition-duration: .5s;z-index: 2;}
.banner_button{ width: 100%;position: absolute;left: 0;bottom: 0;z-index: 9999}
.banner_button2{ float: left;width: 1040px;height: 58px;overflow: hidden;position: relative;z-index: 9999}
.banner_txt { display: table-cell;vertical-align: middle;}
.banner_txt > div { padding: 0 80px;}
.banner_txt > div p{ font-size: 44px;color: rgb(255, 255, 255);line-height: 1.389;font-weight: lighter;position: relative;padding-bottom: 24px;}
.banner_txt > div p:after{ content: "";position: absolute;width: 24px;height: 3px;background-color: #FFFFFF;left: 0;bottom: 0}
.banner_txt > div span{ font-size: 22px;color: rgb(245, 245, 245);line-height: 1.6;font-weight: lighter;display: inherit;}
.banner_txt > div span:nth-of-type(1){ margin-top: 38px;}
.banner_txt > div span:nth-of-type(2){ font-size: 14px;}
.banner_index .swiper-pagination{ top: 50%;width: 50px;right: 80px;margin-top: -80px;left:auto;}
.banner_index .swiper-pagination-custom li{ text-align: right;margin: 15px 0;width: auto;color: #5c5c5b;font-size: 16px;}
.banner_index .swiper-pagination-custom li.active{ color:#AF8F6E; }
.banner_index span.swiper-pagination-bullet{ float: left;width: 8px;height: 8px;;border-radius: 50%;margin: 20px 15px!important;background-color: #AF8F6E;opacity: 1;position: relative}
.banner_index .swiper-pagination span:before,.banner_index .swiper-pagination span:after{ content: "";width: 38px;height: 38px;position: absolute;left: -15px;top:-15px;border: 2px solid transparent;border-radius: 100%;}
.banner_index .swiper-pagination span.swiper-pagination-bullet-active::before { border-top-color: #AF8F6E;border-right-color: #AF8F6E;border-bottom-color: #AF8F6E;transition: border-top-color 0.6s linear, border-right-color 0.6s linear 0.4s, border-bottom-color 0.6s linear 0.8s;}
.banner_index .swiper-pagination span.swiper-pagination-bullet-active::after { border-top: 2px solid #AF8F6E;border-left-width: 2px;border-right-width: 2px;-webkit-transform: rotate(270deg);transform: rotate(270deg); /*transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;*/ /*transition: transform 0.8s linear 0s, border-left-width 0s linear 0.7s;*/transition: transform 1.6s linear 0s, border-left-width 0s linear 1.4s, -webkit-transform 1.6s linear 0s;}
#load_txt {position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;width: 100%;height: 150px;z-index: 3;}
#load_txt .logoName {height: 120px;text-align: center;display: none;}
#load_txt .logoName > label {display: inline-block;text-transform: uppercase;overflow: hidden;height: 120px;line-height: 120px;color: #fff;width: 80px;text-align: center;cursor: auto;font-size:30px;font-weight:lighter;}
#load_txt .logoName:nth-of-type(2) > label {font-size: 20px;width: 20px;height: 20px;line-height: 20px;}
#load_txt .logoName.on {display: block; }

.disable-hover {pointer-events: none;}
.scroll-animate.animated {visibility: hidden;}
.font-fadeIn font {display: inline-block;}
.scrolly {transition: all 0.5s ease-out;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;-o-transition: all 0.5s ease-out;-ms-transition: all 0.5s ease-out;}

.page_point{ width: 100%;text-align: center;position: absolute;left: 0;bottom: 25px;z-index: 15}
.page_point a > i {width: 100%;height: 9px;background: url("../images/xxb_ioc.png") no-repeat center center;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;opacity: 0.2;display: block;cursor: auto}
.page_point a > i:nth-of-type(1) {animation: fadeIn1 1.2s ease-in-out alternate infinite;animation-delay: 0s;}
.page_point a > i:nth-of-type(2) {animation: fadeIn1 1.2s ease-in-out alternate infinite;animation-delay: 0.3s;}
.page_point a > i:nth-of-type(3) {animation: fadeIn1 1.2s ease-in-out alternate infinite;animation-delay: 0.6s;}

.index_two{ float: left;width: 100%;height: auto;position: relative;background-color: #131313;}
.index_two_txt{ float: left;width: 1040px;height: 676px;overflow: hidden;position: absolute;background-color: #1d1d1d;top:-56px;z-index: 500;display: table}
.index_two_new{ position: absolute;left: 0;top:0;width: 100%;height: 56px;padding: 0 10%;line-height: 56px;z-index: 100;background: url("../images/images_42.png") no-repeat 70px center;}
.index_two_new .swiper-slide{ width: 100%;height: 100%;background-color: #1d1d1d;overflow: hidden }
.index_two_new a{ font-size: 15px;color: rgb(102, 102, 102);}
.index_two_txt > div.index_two_con{ display: table-cell;vertical-align: middle;padding-left: 140px;}
.index_two_txt > div.index_two_con h2{ font-size: 60px;color: rgb(175, 143, 110);line-height: 1.2;padding-bottom: 20px;position: relative;font-weight:300}
.index_two_txt > div.index_two_con h2:after{ content: "";width: 24px;height: 4px;background-color: #AF8F6E;transition: all .6s;position: absolute;left: 0;bottom: 0}
.index_two_txt > div.index_two_con p{ width: 315px;height: auto;overflow: hidden;font-size: 15px;color: rgb(102, 102, 102);line-height: 1.714;margin-top: 20px;}
.index_two_txt > div.index_two_con a{ width: 105px;height: 39px;line-height: 39px;text-align: left;border: none;border-bottom: 1px solid #666666; font-size: 14px;color: rgb(102, 102, 102);display: inline-block;margin-top: 65px;transition: all .6s}
.index_two_txt > div.index_two_con a:hover{ background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;border-bottom: 1px solid #AF8F6E;}
.index_two_img{ width: 1130px;height: 570px;overflow: hidden;position: absolute;top:155px;right:0;z-index: 601}
.index_two_img .pic{ background: url("../images/images_01.jpg") no-repeat center center;background-size: cover}
.index_two_img .pic:after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;background-color: rgba(0, 0, 0, 0.2);}
.index_two_img img {height: 100%;animation: scle2 8s linear infinite;}

.pic {position: relative;width: 100%;height: 100%;}
.pic video {z-index: 3;object-fit: cover;opacity: 0;pointer-events: none;position: absolute;top: 50%;left: 50%;min-width: 100%;min-height: 100%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}
.pic video.on {opacity: 1;pointer-events: auto;}
.pic .play,.w_box_three_b {z-index: 5;position: absolute;left: 50%;top: 50%;transform: translate(-50%, -50%);-webkit-transform: translate(-50%, -50%);-moz-transform: translate(-50%, -50%);-o-transform: translate(-50%, -50%);-ms-transform: translate(-50%, -50%);text-align: center;cursor: pointer;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;}
.pic .play a:nth-of-type(1),.w_box_three_b a{display: block;margin: 20px auto;width: 78px;height: 77px;border-radius: 50%;line-height: 77px;text-align: center;position: relative;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;background: url("../images/images_03.png") no-repeat 28px center;}
.pic .play a:nth-of-type(1):after,.w_box_three_b a:after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;pointer-events: none;background: url("../images/images_04.png") center no-repeat;background-size: 100%;animation: gorotate 3s linear infinite;}
.pic .play.on {opacity: 0;}
.pic .play.on a:nth-of-type(1) {transform: scale(1.1);-webkit-transform: scale(1.1);-moz-transform: scale(1.1);-o-transform: scale(1.1);-ms-transform: scale(1.1);}
.play_txt{ height: 100%;display: table}
.play_txt .play_txts{ display: table-cell;vertical-align: middle}
.play_txt_box{ width: 272px;height: 370px;overflow: hidden;background-color: #FFFFFF;padding: 0 50px;}
.play_txt_box p{ font-size: 14px; color: rgb(153, 153, 153);margin-top: 35px;}
.play_txt_box h2{ font-size: 30px; color: rgb(51, 51, 51);line-height: 40px;margin: 40px 0 110px;font-weight: bolder;letter-spacing: 2px;position: relative}
.play_txt_box h2:before{  content: "";width: 25px;height: 3px;background-color: #000000;left: 0;top:110px;position: absolute}
.play_txt_box span{ width: auto;height: 33px;background: url("../images/images_05.png") no-repeat left center;display: inline-block;line-height: 33px;padding-left: 50px;font-size: 16px;color: rgb(0, 0, 0);}

.index_four{ float:left;width: 100%;height: auto;overflow: hidden;text-align: center;margin-top: 825px;}
.index_four ul{ text-align: center;}
.index_four ul li{ width: 16%;height: auto;overflow: hidden;text-align: center;display: inline-block}
.index_four ul li .ico_01{ width: 100%;position: relative}
/*.index_four ul li .ico_01:after,.index_four ul li .ico_01:before{content: "";position: absolute;bottom:02px;width: 60px;height: 1px;background-image: linear-gradient(to top,#d2a26e,#fedeba)}*/
/*.index_four ul li .ico_01:after{ left: 22%;}*/
/*.index_four ul li .ico_01:before{ right:22%}*/
.index_four ul li .ico_01 img{ max-width: 60px;}
.index_four ul li p{ position: relative;font-size: 18px;line-height: 28px;margin-top: 15px;}
.index_four ul li p a{ color: rgba(255, 255, 255, 0.42);transition: all .65s}
.index_four ul li:hover p a{ color: #AF8F6E;}
.index_four ul li span{ font-size: 16px;color: rgba(255, 255, 255, 0.3);}

.four_one{ float: left;font-size: 30px;color: rgb(175, 143, 110);text-transform: uppercase;}
.four_two{ float: right;position: relative;padding-left: 37px;}
.four_two:after{ content: "";position: absolute;left: 0;top:6px;width: 3px;height: 62px;background-color: #424242;}
.four_two p{  font-size: 24px;color: rgb(255, 255, 255);text-align: left}
.four_two p span{ color: #AF8F6E}

.index_pro{ float: left;width: 100%;height: auto;overflow: hidden;padding: 65px 0;}
.index_pro h2{ font-size: 36px;color: rgb(255, 255, 255);line-height: 46px;}
.index_pro_list,.index_pro_tab{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 15px;}
.index_pro_list ul{ float:left;width:calc(100% - 100px);height:auto;height:auto;overflow:hidden;}
.index_pro_list ul li{ float: left;width: auto;height: 40px;line-height: 40px;transition:  .6s all;font-size: 14px;background-color: #212121;color: #ffffff;padding: 0 26px;border-radius: 25px;overflow: hidden;margin-right: 25px;}
.index_pro_list ul li:nth-last-of-type(1){ margin-right: 0}
.index_pro_list ul li.active,.index_pro_list ul li:hover{ background-color: #AF8F6E;color: #ffffff}
.index_pro_list a{ float:right;line-height:40px;font-size:16px;color:#ffffff}
.index_pro_tab{ margin-top: 35px;}
.index_pro_tab .item{ float: left;width: 100%;height: auto;overflow: hidden;display: none}
.index_pro_tab .item:nth-of-type(1){ display: inline-block}
.index_pro_tab .item ul li{ float: left;width: 32%;height: auto;overflow: hidden;margin-right: 2%;background-color: #1d1d1d;padding: 25px 0}
.index_pro_tab .item ul li:nth-child(3n){ margin-right: 0}
.index_pro_img{ width: 100%;height: 300px;overflow: hidden;text-align: center;line-height: 300px;padding: 10px;}
.index_pro_img img{ max-width: 85%;max-height: 85%;transition: all .65s}
.index_pro_tab .item ul li:hover .index_pro_img img{ transform: scale(1.1)}
.index_pro_txt{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 15px;}
.index_pro_txt p{ float: left;width: 100%;height: 32px;line-height: 32px;font-size: 14px;overflow: hidden;text-align: center;color: #ffffff}
.index_pro_txt p:nth-of-type(2){ font-size: 12px;height: 30px;line-height: 30px;}
.index_pro_list ul li:hover a { text-decoration: none;}
.p_right_con { width: 100%;height: auto;overflow: hidden;float: left;margin-top: 50px; }
.p_right_con a { float:left;display:block;padding:5px 4px 0 5px;width:25%;}
.p_right_con a:hover {text-decoration:none}
.p_right_con a:hover .desc {text-decoration:underline}
.p_right_con dl{ width: 100%;height: 100%;overflow: hidden;background:#1d1d1d;padding-bottom: 20px;margin-bottom: 5px;}
.p_right_con dt {position:relative;display:block;width:100%;height:300px;background:#1d1d1d;text-align:center;line-height: 300px;}
.p_right_con dt img { max-height: 85%;max-width: 85%}
.p_right_con .title {overflow:hidden;padding:5px 10px 0;height:30px;text-align:center;color:#727171;font-size:14px;line-height:30px;}
.p_right_con .desc {height:50px;text-align:center;color:#727171;font-size:14px;line-height:20px;}

.apply_con{ float: left;width: 100%;height: auto;overflow: hidden;}
/*新闻类 右侧列表*/
.p_right { float:right;width:100%;padding-top:10px;}
.p_right h3{ margin:45px 0 10px;padding:0 0 0;height:auto;font-weight:400;font-size:24px;line-height:35px;color: rgb(175, 143, 110);}
.p_right_one{ float: left;width: 100%;height: auto;overflow: hidden;display: flex;align-items: stretch;flex-wrap: wrap;}
.p_images { float:left;flex: 0 0 50%;display: flex;}
.p_images .p_images_img{ float: left;width: 100%;height: 100%;min-height: 500px;overflow: hidden;text-align: center;display: table;}
.p_images_center{ display: table-cell;vertical-align: middle}
.p_images .p_images_img img{ max-width: 95%;max-height: 90%}
.p_parameter { float:right;flex: 0 0 47%;}
.p_xilie_show{ float: left;width: 100%;overflow: hidden;margin: 15px 0 10px;height: 40px;background: #232323;font-size: 14px;border-radius: 18px;}
.p_xilie_show a{ display: inline-block;margin-right: 0;padding: 0 20px;height: 40px;border-right: 0 solid #fff;border-radius: 18px;line-height: 40px;color: #fff;}
.p_other{ float: left;width: 100%;min-height: 310px;overflow: hidden;padding-top: 10px;}
.p_other p{ font-size: 14px;line-height: 26px;margin-bottom: 5px;color: #999999}
.p_right_two{ margin-top:38px;height:36px;background:#232323;float: left;width: 100%;overflow: hidden}
.p_right_two ul li{ float:left;display:block;margin-right:10px;width:89px;height:36px;text-align:center;line-height:36px;cursor:pointer;background:#636363;color:#fff}
.ic_con_2{ float: left;width: 100%;height: auto;overflow: hidden;padding: 20px 0; }
.ic_con_2 p{ text-align: left;font-size: 14px;line-height: 30px;color: #999999}
.ic_con_2 p img{ max-width: 100%}

.apply_nav{ float: left;width: 100%;height: auto;overflow: hidden;padding: 0 80px 0 0;position: relative;margin-top: 15px;}
.apply_nav_tit{ float: left;font-size: 16px;color: #ffffff;width: 80px;height: 100%;line-height: 35px;text-align: left;}
.apply_nav ul{ float: right;width: calc(100% - 85px) !important;}
.apply_nav ul li{ float: left;height: 30px;line-height: 30px;margin: 0 20px 14px 0;}
.apply_nav ul li a{ background-color: #212121;color: #999;padding: 0 26px;border-radius: 25px;float: left;height: 35px;line-height: 35px;display: inline-block;transition: all .6s}
.apply_nav ul li.active a,.apply_nav ul li:hover a{ background-color: #AF8F6E;color: #ffffff;}
.apply_nav .readmore-js-toggle{ position: absolute;right: 0;top: 5px;height: 30px;line-height: 30px;padding: 0;width: 66px !important;text-align: center;color: #ffffff;background: #212121;border-radius: 4px;font-size: 14px;}
.apply_nav .readmore-js-toggle:hover{ color: #ffffff;}



.index_five{ float: left;width: 100%;background-color: #131313;position: relative;min-height: 100%;z-index: 15;overflow: hidden;opacity: 1;transition: all 3s ease-out;-webkit-transition: all 3s ease-out;-moz-transition: all 3s ease-out;-o-transition: all 3s ease-out;-ms-transition: all 3s ease-out;}
.index_five_row{ height: 100%;background-color: #131313;position: absolute;width: 100vw;top: 0;left: 0;z-index: 4;opacity: 1;}
#btm{ display: flex;justify-content: center;align-content: center;}
#btm .box{ position: relative;width: 50%;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
#btm .box .photo{ position: absolute;width: 100%;height: 100%;top: 0;left: 0;overflow: hidden;z-index: 3;text-align: right;}
#btm .box .photo:after{ content: '';position: absolute;width: 100%;height: 100%;top: 0;left: 0;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;background-color: rgba(0, 0, 0, 0.3);}
#btm .box .photo > img{height: 100%;max-width: none;margin-left: -8%;;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
#btm .box .msg{ position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;z-index: 5;width: 50vw;text-align: center;flex-direction: column;height: 72%;cursor: pointer;display: flex;justify-content: center;flex-wrap: wrap;align-items: center;}
#btm .box .msg h3{ transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;font-size: 40px;color: rgb(255, 255, 255);text-transform: uppercase;}
#btm .box .msg a:hover h3{ color:#AF8F6E}
#btm .box .msg h4{ transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;font-size: 30px;color: rgb(255, 255, 255);text-transform: uppercase;}
#btm .box .msg a:hover h4{ color:#AF8F6E}
#btm .box .msg .img{ position: absolute;left: 0;right: 0;margin: auto;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;bottom: 0;opacity: 0.3;}
#btm .box.app{ width: 100%;height: 100%;}
#btm .box.app #component .itemwrap > li:after{ content: "";pointer-events: none;position: absolute;width: 100%;height: 100%;top: 0;left: 0;background-color: rgba(0, 0, 0, 0.1);}
#btm .box.app #component .Tcon{ height: 80%;}
#btm .box.app #component .Tcon .txtChange > li{ top: auto;text-align: left;}
#btm .box.app #component .Tcon .pageChange{ justify-content: flex-start;bottom: 120px;}
#btm .box.app #component .Tcon .pageChange > li{ width: 10px;height: 10px;border-radius: 50%;line-height: 10px;text-align: center;margin-left: 0;margin-right: 20px;}
#btm .wrapper_left{ left: 0;}
#btm .wrapper_left .msg{ left: 0;right: auto;}
#btm .wrapper_left:after{ content: "";position: absolute;z-index: 8;width: 100vw;height: 100vh;top: 0;left: 100%;background-color: rgba(0, 0, 0, 0.5);opacity: 0;pointer-events: none;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
#btm .wrapper_right{ right: 0;}
#btm .wrapper_right .msg{ right: 0;left: auto;}
#btm .wrapper_right:after{ content: "";position: absolute;z-index: 8;pointer-events: none;width: 100vw;height: 100vh;top: 0;right: 100%;background-color: rgba(0, 0, 0, 0.5);opacity: 0;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
@media screen and (min-width: 600px) {
    #btm .wrapper_left:hover {
        width: 80%;
    }
    #btm .wrapper_left:hover:after {
        opacity: 1;
    }
    #btm .wrapper_left:hover .photo:after {
        opacity: 0;
    }
    #btm .wrapper_left:hover .photo > img {
        transform: translateX(-2%);
        -webkit-transform: translateX(-2%);
        -moz-transform: translateX(-2%);
        -o-transform: translateX(-2%);
        -ms-transform: translateX(-2%);
    }
    #btm .wrapper_left:hover .msg h3 {
        opacity: 1;
    }
    #btm .wrapper_left:hover .msg .img {
        opacity: 1;
    }
}
@media screen and (min-width: 600px) {
    #btm .wrapper_right:hover {
        width: 80%;
    }
    #btm .wrapper_right:hover:after {
        opacity: 1;
    }
    #btm .wrapper_right:hover .photo:after {
        opacity: 0;
    }
    #btm .wrapper_right:hover .photo > img {
        transform: translateX(-2%);
        -webkit-transform: translateX(-2%);
        -moz-transform: translateX(-2%);
        -o-transform: translateX(-2%);
        -ms-transform: translateX(-2%);
    }
    #btm .wrapper_right:hover .msg h3 {
        opacity: 1;
    }
    #btm .wrapper_right:hover .msg .img {
        opacity: 1;
    }
}

.index_six{ float: left;width: 100%;height: auto;overflow: hidden;padding: 105px 0 85px;;background-color: #131313}
.six_title{ float: left;width: 100%;height: auto;overflow: hidden}
.six_title h3{ font-size: 36px; color: rgb(255, 255, 255);line-height: 46px;}
.six_list{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 13px;}
.six_list ul li{ float:left;margin-right: 29px;height: 36px;line-height: 36px;position: relative;color: #666666;font-size: 15px;}
.six_list ul li:after{ position: absolute;content: "";left: 0;bottom: 0;width: 0;height: 2px;background-color: #AF8F6E;}
.six_list ul li.active{ color: #AF8F6E;transition: all .6s}
.six_list ul li.active:after{ width: 100%;transition: all .6s}
.six_tab{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 48px;}
.six_tab div.item_six{display:none;width: 100%;transition: opacity .6s}
.item_six_one{ float: left;width: 100%;height: auto;overflow: hidden;margin-bottom: 70px;}
.item_six_one_left{ float: left;width: 50.2%;height: 481px;overflow: hidden;position: relative}
.item_six_one_left img{ width: 100%}
/*.item_six_one_left:after{ background-color: rgb(63, 63, 63);position: absolute;left: 0;top:0;}*/
.item_six_one_right{ float: right;width: 49.8%;height: auto;min-height: 392px;background-color: #212121;padding: 65px 80px 0 46px;}
.item_six_one_right h5{ font-size: 18px;color: rgba(153, 153, 153, 0.6);line-height: 1.667;margin-bottom: 8px;}
.item_six_one_right h4{ width:100%;height:48px;font-size: 24px;color: rgb(255, 255, 255);line-height: 48px;margin-bottom: 5px;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
.item_six_one_right h4 a{ color: rgb(255, 255, 255);transition: all .6s}
.item_six_one_right h4:hover a{ color: #AF8F6E;}
.item_six_one_right p{ font-size: 14px;color: rgba(255, 255, 255, 0.302);line-height: 25px;}
.item_six_one_right > a{ width: 160px;height: 43px;border: 1px solid #AF8F6E;display: inline-block;text-align: center;line-height: 41px;font-size: 14px;color: rgb(175, 143, 110);margin-top: 35px;transition: all .6s}
.item_six_one_right > span{    width: 160px;
    height: 43px;
    border: 1px solid #AF8F6E;
    display: inline-block;
    text-align: center;
    line-height: 41px;
    font-size: 14px;
    color: rgb(175, 143, 110);
    margin-top: 35px;
    transition: all .6s;}
.item_six_one_right > span:hover{ background-color: #AF8F6E;color: #FFFFFF}
.item_six_one_right > a:hover{ background-color: #AF8F6E;color: #FFFFFF}
.item_six_two{ float: left;width: 100%;height: auto;overflow: hidden}
.item_six_two ul li{ float: left;width: 705px;height: 166px;overflow: hidden;margin-bottom: 30px;background-color: #202324;border-right: 3px solid #AF8F6E;}
.item_six_two ul li:nth-child(2n){ float: right}
.six_t_img{ float: left;width: 255px;height: 100%;overflow: hidden;}
.six_t_img img{ max-width: 100%;}
.six_t_txt{ float: left;width: calc(100% - 255px);height: 100%;overflow: hidden;display: table;padding: 0 55px 0 26px;}
.six_t_txt > div{ display: table-cell;vertical-align: middle;}
.six_t_txt h5{ font-size: 18px;color: #a6a7a7;line-height: 1.667;}
.six_t_txt h6{ width:366px;height: 30px;font-size: 18px;color: #ffffff;line-height: 30px;margin-bottom: 5px;transition: all .6s;overflow: hidden;text-overflow:ellipsis;white-space: nowrap;}
/*.six_t_txt h6 span{ width: 100%;height: 100%;display: inline-block;overflow: hidden}*/
/*.six_t_txt h6:after{ content: "...";width: 30px;color: #FFFFFF;position: absolute;right: -30px;bottom: 0}*/
.item_six_two ul li:hover .six_t_txt h6{ color: #AF8F6E}
.six_t_txt p{ float: left;width: 100%;overflow: hidden;font-size: 14px;color: #797b7c;line-height: 25px;height: 50px;}
.news_array{ float: left;width: 100%;height: auto;overflow: hidden;margin-top:15px;}
.news_array ul li{ float: left;width: 25%;height: 32px;line-height: 32px;overflow: hidden;background: url(../images/arrow_right.png) no-repeat left 11px;}
.news_array ul li a{ float: right;width: 98%;height: 100%;color: #797b7c;transition: all .3s;font-size: 13px;padding: 0 0 0 12px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.news_array ul li:hover a { color: #AF8F6E;}


/*内页banner*/
.inner_banner{ width: 100%;height: 594px;overflow: hidden;display: table;position: relative}
.inner_banner_i{position: absolute;left: 0;width: 1920px;height:594px;overflow:hidden;z-index:11}
.inner_banner .inner_banner_i img{ max-width: initial;transform: scale(1.2);visibility: visible!important;animation: banner-scale 20s linear 1 forwards;}
.inner_banner .inner_banner_m{ display: table-cell;vertical-align: middle;text-align: center;position: relative;z-index: 12}
.inner_banner_txt{ text-align: center}
.inner_banner_txt p{ font-size: 55px;line-height: 55px;color: #ffffff;letter-spacing: 15px;margin-bottom: 15px;font-weight: lighter}
.inner_banner_txt p i{ font-style:normal;}
/*color: rgb(175, 143, 110);background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;*/
.inner_banner_txt span{ text-align: justify;font-size: 20px;color: rgb(255, 255, 255);text-transform: uppercase;}

.inner_title{width: 100%;height: auto;overflow: hidden;text-align: center}
.inner_title h3{ font-size: 36px;color: #333333;font-family: "Bebas";margin-bottom: 8px;text-transform: unset;}
.inner_title p{ font-size: 22px;color: #444444;position: relative;display: inline}
.inner_title p:before{ content: "";position: absolute;display: inline-block;width: 58px;height: 1px;background: #5e5e5e;left: -85px;top: 50%;}
.inner_title p:after{ content: "";position: absolute;display: inline-block;width: 58px;height: 1px;background: #5e5e5e;right: -85px;top: 50%;}

.slogan{ float: left; width: 100%; height: auto;font-size: 24px; color: #595757;line-height: 64px;text-align: center;margin: 0 auto 50px}
.slogan a{ color: rgb(175, 143, 110);;text-transform:uppercase}

/*.inner_nav{text-align: center;line-height: 85px;border-bottom: 1px solid #dbdbdb;}*/
/*.inner_nav a{ display: inline-block;padding: 0 20px;line-height: 36px;border-radius: 100px;font-size: 16px;color: #444444;margin-right: 35px;transition: all .65s;border: 1px solid rgb(175, 143, 110);}*/
/*.inner_nav a.active,.inner_nav a:hover{ color: #fff; background: rgb(175, 143, 110);}*/
.crumbs{ position:fixed;opacity:0;}

.banner_nav{ width: 100%;height: 55px;background: rgba(0,0,0,.3);line-height: 55px;position: absolute;left: 0;bottom: 0;z-index: 15}
.banner_nav a{ color: #999999;padding-right: 25px;position: relative;font-size: 14px;transition: all .6s}
.banner_nav a:hover{ color: rgb(175, 143, 110);background-image: -webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
.banner_nav a:before{ content: "";position: absolute;right: 5px;width: 10px;top:-20px;height: 55px;background: url('../images/lengprev.png') no-repeat center center;background-size: 10px;-moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
.banner_nav a:nth-last-of-type(1):before{ display: none}

/*分页样式*/
.list_page {float: left;width: 100%;display: block;margin: 10px 0 20px;text-align: center;}
.list_page:after {clear: both;display: block;visibility: hidden;overflow: hidden;height: 0;content:""}
.list_page ul {display: inline-block;margin: 0;padding: 0;list-style: none;vertical-align: bottom;border-radius: 5px;}
.list_page ul li {display: inline-block;float: left;border-right: none;border-radius: 0;}
.list_page ul a {display: inline-block;padding: 9pt 20px;color: #797b7c;line-height: 18px;transition: all 1s cubic-bezier(.175, .885, .32, 1) 0s;float:left;}
.list_page ul li a:hover,.list_page ul li.active a { color: rgb(175, 143, 110);}
.list_page ul li:not(:first-child):not(:last-child) {border-radius: 0}
.list_page ul li:first-child {border-radius: 4px 0 0 4px}
.list_page ul li:last-child {border-radius: 0 4px 4px 0}
.list_page ul .page-active a {border-radius: 0;background: #eee;color: #333}
.list_page ul li:nth-of-type(1),.list_page ul li:nth-of-type(2),.list_page ul li:nth-last-of-type(1){ display: none; }

/*关于我们*/
.about_list{ text-align: center;width: 100%;z-index: 10;float: left;margin-top: 30px;position: relative}
.about_list:before{ content: "";width: 100%;height: 2px;background-color: rgba(157,157,157,.3);position: absolute;left: 0;bottom: 0}
.about_list ul li{ display: inline-block;width:11%;margin:0 0;color: #626262;font-size: 16px;line-height: 80px;cursor: pointer;position: relative;transition: all .6s}
.about_list ul li:after{ content: "";position: absolute;left: -1%;bottom: 0;width: 0;height: 2px;background-color: rgb(175, 143, 110);transition: width .6s}
.about_list ul li a{ color: #626262;width: 100%;display: inline-block}
.about_list ul li.active a,.about_list ul li:hover a,.about_list ul li.active,.about_list ul li:hover{ color: rgb(175, 143, 110);background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.about_list ul li.active:after,.about_list ul li:hover:after{ width: 100%;left: 0;}
.about_tab{ float: left;width: 100%;height: auto}
.about_tab div.item{ float: left;width: 100%;height: auto;display: none;}
/*.about_tab div.item .inner_tit{ display: none}*/
.section_title { display: block;color: #fff;margin-top: 100px;position: relative;font-size: 42px;}
.section_title em{color: rgb(175, 143, 110);font-style: normal;background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.section_title span { display: block;font-size: 18px;font-weight: 600;color: #666666;text-transform: uppercase;margin-top: 5px}

.about_one{ float: left;width: 100%;height: 825px;padding: 100px 0 105px;background-color: #131313}
.about_one .width_web2{ position: relative}
.about_txt{ float: left;width: 630px;height: 565px;padding: 0 100px 0 60px;overflow: hidden;display: table;}
.about_txt > div.about_txt_m{ display: table-cell;vertical-align: middle;text-align: left}
.inner_tit{ font-size: 24px;color: #878787;line-height: 54px;margin-bottom: 20px;}
.inner_tit i{ color: rgb(175, 143, 110);font-style:normal;position: relative}
.inner_tit i:after{ width: 100%;height: 2px;background-color: rgb(175, 143, 110);content: "";position: absolute;left: 0;bottom: -15px;}
.about_txt > div.about_txt_m .inner_tit{ font-size: 42px;margin-bottom: 35px;}
.about_txt > div.about_txt_m p{ font-size: 14px;color: #666666;line-height: 25px;margin-bottom: 10px;}
.about_txt_num{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 35px;}
.about_txt_num ul li{ float: left;width: auto;margin-right: 50px;}
.about_txt_num ul li:nth-last-of-type(1){ margin-right: 0}
.about_txt > div.about_txt_m .about_txt_num ul li > p{ font-size: 32px;color: rgb(175, 143, 110);line-height: 26px;margin-bottom: 0;}
.about_txt > div.about_txt_m .about_txt_num ul li > p i{ font-size: 14px;font-style:normal;margin-left: 3px;}
.about_txt > div.about_txt_m .about_txt_num ul li > span{ font-size: 14px;color: rgb(102, 102, 102);letter-spacing: 1px;}
.about_img{ float:right;width: 770px;height: 562px;overflow: hidden;}
.about_img img {height: 100%;}

.about_two{ float: left;width: 100%;height: 800px;overflow: hidden;position: relative}
/*.about_three{ float: left;width: 100%;height: auto;overflow: hidden;background: url("../images/images_07.jpg") no-repeat center bottom}*/
.about_honor{ float: left;width: 100%;height: auto;overflow: hidden;margin:45px 0 100px;position: relative }
.about_honor_w{ float: left;width: 49%;}
.about_honor_w:nth-of-type(2){ float: right}
.about_honor_w .inner_tit i{ font-size: 36px;padding-right: 5px;}
.about_honor_con{ min-height: 630px;position: relative;display: table;background: #272727;padding: 15px 40px;margin: 40px 0;overflow: auto;width: 100%}
.about_honor_con ul{ min-height: inherit;display: table-cell;vertical-align: middle;}
.about_honor_con ul li { display: inline-block;padding: 20px 0 0;text-align: center;width: 25%;margin: 0;box-sizing: border-box;float: left;}
.about_honor_con ul li img{ width: 100px;}
.about_honor_con2 ul li img{ width: 88%;}
.about_honor_con ul li span { font-size: 16px;display: block;padding: 15px;color:  #666666}
.about_honor_con p{ margin-top: 50px}
.about_brand{ float: left;width: 100%;height: auto;overflow: hidden;padding-bottom: 95px;}
.core_list{ float: left;width: 100%;height: auto;overflow: hidden;text-align: center;margin: 60px 0 0;}
.core_list ul li{ float:left;width: auto;height: auto;display: inline-block;margin: 0 60px 30px 0 ;position: relative;cursor: pointer;text-align: center;}
.core_list ul li:nth-of-type(1){ margin-left: 0}
.core_list ul li:nth-last-of-type(1){ margin-right: 0}
.core_list ul li img{ display: none}
.core_list ul li img:nth-of-type(1){ display: inline-block;transition: all .6s}
/*.core_list ul li:hover img:nth-of-type(1),.core_list ul li.active img:nth-of-type(1){ display: none}*/
/*.core_list ul li:hover img:nth-of-type(2),.core_list ul li.active img:nth-of-type(2){ display: inline-block}*/
.core_list ul li > div{ width: 93px;height: 93px;display: inline-block;border-radius: 50%;background-color: #333333;position: relative;transition: all .6s;overflow: hidden;margin: 0 auto}
.core_list ul li.active > div,.core_list ul li:hover > div{ background-color: #AF8F6E}
.core_list ul li > div img{ position: absolute;left: 0;top:0;width: 93px;z-index: 100}
.core_list ul li.active > div img,.core_list ul li:hover > div img{ top:-94px;}
.core_list ul li > p{ color: #999;font-size: 16px;margin-top: 5px;}
.core_list ul li.active > p,.core_list ul li:hover > p{ color: #AF8F6E}
.core_tab{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 40px;}
.core_tab > div.core{ float: left;width: 100%;height: auto;overflow: hidden;display: none}
.core_tab > div.core .core_tab_txt,.core_tab > div.core .core_tab_img{ float: left;width: 50%;padding: 0 15px 0 0;}
.core_tab_txt .core_tab_txt_tit{ font-size: 26px;color: rgb(175, 143, 110);line-height: 2.5;}
.core_tab_txt h1,.core_tab_txt h2,.core_tab_txt h3,.core_tab_txt h4,.core_tab_txt h5,.core_tab_txt h6{ font-size: 16px;color: rgb(102, 102, 102);line-height: 24px;margin-bottom: 10px;position: relative;}
.core_tab_txt p{ font-size: 14px;color: rgb(102, 102, 102);line-height: 24px;margin-bottom: 15px;position: relative;padding-left: 10px;}
.core_tab_txt p:before{ content: "";position: absolute;left: 0;top:10px;width: 5px;height: 5px;border-radius: 50%;background-color: #333333}
.core_tab_img{ text-align: center}

/*.honor_txt{ float: left;width: 820px;height: 560px;padding: 0 150px 0 85px;overflow: hidden;display: table;background: linear-gradient(to top, rgba(255,255,255,.4) 0%, rgba(238,238,238,.4) 100%);}*/
/*.honor_txt_zj{ display: table-cell;vertical-align: middle}*/
/*.honor_txt_zj h2{ color: #333333;line-height: 34px;font-size: 34px;margin-bottom: 20px;}*/
/*.honor_txt_one,.honor_txt_two{ float: left;width: 100%;height: auto;overflow: hidden}*/
/*.honor_txt_one h3,.honor_txt_two h3{ float: left;width: 100%;color: #333333;line-height: 24px;font-size: 22px;margin-bottom: 5px;}*/
/*.honor_txt_one ul li,.honor_txt_two p{ float: left;width: 50%;color: #666666;font-size: 15px;line-height: 24px;}*/
/*.honor_txt_two{ margin-top: 15px;}*/
/*.honor_txt_two p{ width: 100%}*/
/*.inner_img{ width: 700px;height: auto;position: absolute;right: 0;top: 50px;}*/
/*.about_brand{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 110px;padding-bottom: 95px;}*/
/*.brand_img{ float: left;width: 650px;text-align: left;padding-top: 30px;position: relative}*/
/*.brand_img img{ max-width: 100%}*/
/*.brand_txt{ float: right;width: 660px;height: auto;padding: 5px 30px 0 0}*/
/*.brand_txt h3{ font-size: 24px;color: rgb(51, 51, 51);line-height: 35px;}*/
/*.brand_txt p{ font-size: 14px;color: rgb(102, 102, 102);line-height: 25px;}*/
/*.about_course,.course_content,.course_time{ float:left;width: 100%;height: auto;}*/
/*.course_content .swiper-slide{ background-color: #ffffff}*/
/*.course_tit{ position: absolute;left: 0;top:-30px;z-index: 88}*/
/*.course_tit h3{ color: #AF8F6E;font-size: 48px;font-weight: bolder;text-transform: uppercase;margin-bottom: 9px;}*/
/*.course_tit h4{ font-size: 36px;color: #AF8F6E;position: relative;z-index: 50;}*/
.about_course{ float: left;width: 100%;height: auto;margin-bottom: 50px;}
.course_content{ position: relative;width: 1122px;height: auto;margin: 60px auto 0}
.course_content_tit{ float: left;width: 584px;height: 300px;overflow: hidden;position: relative}
.course_content_tit h3{ width: 235px;height: auto;overflow: hidden;position: absolute;left: 0;bottom: 10px;text-align: center;font-size: 80px;color: rgb(175, 143, 110);line-height: 68px;border-right: 1px solid #a1a1a1}
/*.course_content_tit h3:before{ content: "";position: absolute;display: inline-block;width: 55px;height: 2px;background: #000;left: 0;top: 50%;}*/
.course_content_tit p{ line-height: 30px;text-align: left;position: absolute;right: 0;bottom: 10px;font-size: 16px;color: rgb(102, 102, 102);width: 349px;height: auto;overflow: hidden;padding: 0 5%}
.course_content_img{ float: right;width: 538px;height: 300px;overflow: hidden;}
.course_content_img img{ width: 100%;opacity: 0}
/*.course_content .swiper-container-fade.swiper-container-free-mode .swiper-slide{ opacity: 1 !important;}*/
.course_content .swiper-button-next,.course_content .swiper-button-prev{width: 57px;height: 57px;opacity: 1;outline:none;top: 47.5%;transition: all .6s;box-shadow: 0 6px 21px rgba(0,86,184,.23);border-radius: 50%;cursor: pointer}
.course_content .swiper-button-next{background: url("../images/next_hover.png") no-repeat center center;right: -130px}
.course_content .swiper-button-prev{background: url("../images/prev_hover.png") no-repeat center center;left: -130px;}
.course_content .swiper-button-next:after,.course_content .swiper-button-prev:after{content: "";}
/*.course_bjimg{ width: 1249px;height: 24px;background: url("../images/images_08.png") no-repeat center center;position: relative;z-index: 50}*/
.course_time{  width: 1300px;position: relative;z-index: 100;padding:0 0 35px;margin: 70px auto 5px;}
.course_time .swiper-container{ padding-top: 30px;background: url("../images/images_08.png") no-repeat top center;}
.course_time .swiper-slide{ line-height: 50px;text-align:  center;font-style: inherit;font-size: 24px;color: #999999;position: relative;}
.course_time .swiper-slide span{ position: relative;display: inline;line-height: 25px;}
.course_time .gallery-thumbs .swiper-slide-thumb-active,.course_time .swiper-slide:hover span{ transition: all 0.5s ease 0s;color: rgb(175, 143, 110);cursor: pointer}
.course_time .gallery-thumbs .swiper-slide-thumb-active span:before{ content: "";position: absolute;left: 50%;top:-27px;border: 1px solid #c5966f;width: 14px;height: 14px;border-radius: 50%;overflow: hidden;margin-left: -7px;}
.course_time .gallery-thumbs .swiper-slide-thumb-active span:after{ content: "";position: absolute;left: 50%;top:-23px;width: 6px;height: 6px;background-color: #c5966f;border-radius: 50%;overflow: hidden;margin-left: -3px;}
/*.course_time .swiper-slide span:before{ content: "▶";font-size: 14px;color: #AF8F6E;position: absolute;left: -50px;opacity: 0;transition: all .6s ease;}*/
/*.course_time .swiper-slide span:after{ content: "◀";font-size: 14px;color: #AF8F6E;position: absolute;right: -50px;opacity: 0;transition:all .6s ease;}*/
/*.course_time .swiper-slide:hover span:before{ left: -20px;opacity: 1;}*/
/*.course_time .swiper-slide:hover span:after{ right: -20px;opacity: 1;}*/
/*.course_time .gallery-thumbs .swiper-slide-thumb-active span,.course_time .swiper-slide:hover span{ color: #AF8F6E;cursor: pointer}*/
/*.course_time .gallery-thumbs .swiper-slide-thumb-active span:before{ content: "▶";font-size: 14px;color: #AF8F6E;position: absolute;left: -20px;opacity: 1;transition: all .6s ease;}*/
/*.course_time .gallery-thumbs .swiper-slide-thumb-active span:after{  content: "◀";font-size: 14px;color: #AF8F6E;position: absolute;right: -20px;opacity: 1;transition:all .6s ease;}*/

/*全屋净水*/
.whole_banner{ float: left;width: 100%;height: auto;position: relative;overflow: hidden;background-color: #151515;cursor: pointer}
.video_play{ position: relative; width: 100%; height: 100vh;;overflow: hidden;padding-top: 100px;background-color: #151515;}
.video_play video { position: absolute;top: 50%;left: 50%;z-index: 1;min-width: 100%;min-height: 100%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}
.video_play > img { position: relative;z-index: 3;width: 100%;height: auto;-webkit-animation-name:scaleDraw;-webkit-animation-timing-function:ease-in-out;-webkit-animation-iteration-count:infinite;-webkit-animation-duration:15s;}
.video_play_mask{ position: absolute;z-index: 2;width: 100%;height: 100%;overflow: hidden;background-color: #151515;top: 0;left: 0;}
.video_play_finger{ position: absolute;bottom:20%;width: 100%;z-index: 4;}
.video_play_finger:before{ content: "";position: absolute;left: 50%;bottom:-200px;margin-left: -55px;width: 110px;height: 290px;background: url('../images/house_finger.png') no-repeat center bottom;background-size: cover;animation: rotate 2s linear infinite;}
@keyframes rotate {
    0% { transform: translateY(0);}
    25% { transform: translateY(8px);}
    50% { transform: translateY(10px) scale(1, 1);}
    75% { transform: translateY(8px);}
    100% { transform: translateY(0);}
}
@keyframes scaleDraw {
    0% { transform:scale(1);}
    25% { transform:scale(1.05);}
    50% { transform:scale(1);}
    75% { transform:scale(1.05);}
}
.web_whole{ display: none;width: 100%;height: 345px;margin-top: 50px;position: relative;text-align: center;color: #fff;padding: 0 8%;}
.web_whole_Box{ width: 100%;height: 100%;display: -webkit-flex;display: flex;justify-content: center;align-items: flex-end;}
.web_whole_playBox{position: relative;z-index: 10;font-size: .6rem;}
.box_play{ display: inline-block;cursor: pointer;}
.box_play_wrap{position: relative;display: inline-block;vertical-align: middle;margin: 40px 0 10px;width: 50px;height: 50px;border-radius: 50%;text-align: center;line-height: 50px;overflow: hidden;background: #AF8F6E;animation: video_but 1.5s linear infinite;-webkit-animation: video_but 1.5s linear infinite;}
.box_play span {display: block;margin: 0 auto 15px;font-size: 14px;color: #ffffff;}
#heat_video{width: 100%;height: 100%;overflow: hidden;position: fixed;top: 0;right: 0;z-index: -2;opacity: 0;}
.hide{display: none;}
.heat_video_mov{ width: 100%;height: 100%;position: fixed;top: 0;right: 0;z-index: -1;background: rgba(0,0,0,.6);opacity: 0;}
.content{ width: 100%;height: 100%;margin: 0;overflow: hidden;position: relative;z-index: 9999;}
.close1{ right:0;opacity: 1;z-index: 999;cursor: pointer;text-align: center;position: fixed;top: 70%;left: 50%;margin-left: -25px;width: 50px;height: 50px;line-height: 30px;padding: 10px;color: #fff;background: #AF8F6E;border-radius: 50%;transition: .5s;}
.close1 img{ width: 90%;margin: 0 auto}
.center{ float: left;width: 100%;height: 100%;overflow: hidden;background: rgba(0,0,0,.4);position: relative;z-index: 998;}
.center video{ display: block;background-size: 100% 100%;background-position: center center;transition-duration: .5s;position: fixed;left: 50%;top: 50%;width: 90%;height: auto;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}


@-webkit-keyframes video_but {
    0% { -webkit-transform: translateX(0);transform: translateX(0);}
    50% { -webkit-transform: translateX(6px);transform: translateX(6px);}
    100% { -webkit-transform: translateX(0);transform: translateX(0);}
}
@keyframes video_but {
    0% { -webkit-transform: translateX(0);transform: translateX(0);}
    50% { -webkit-transform: translateX(6px);transform: translateX(6px);}
    100% { -webkit-transform: translateX(0);transform: translateX(0);}
}


/*.video_play .video_play_mask{ opacity: 0;position: absolute;top: 0;left: 0;z-index: 3;width: 100%;height: 100%;display: flex;align-items: center;justify-content: center;text-align: center;transition: .5s;}*/
/*.video_play:hover .video_play_mask{ opacity: 1;}*/
/*.video_play .video_play_mask span{ display: block;font-size: 20px;line-height: 1.5;color: #fff;}*/
/*.video_play_ico{ position: relative;display: inline-block;vertical-align: middle;margin-bottom: 10px;width: 80px;height: 80px;border-radius: 50%;text-align: center;line-height: 80px;overflow: hidden;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;background: url(../images/ico_06.png) no-repeat center center;background-size: 24px;}*/
/*.video_play_ico::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;pointer-events: none;background: url(../images/ico_13.png) center no-repeat;background-size: 100%;animation: gorotate 3s linear infinite;}*/
/*.house{ float: left;width: 100%;height: auto;overflow: hidden;position: relative;background-color: #151515;}*/
/*.house video { position: absolute;top: 50%;left: 0;z-index: 1;width: 100%;-webkit-transform: translateY(-50%);transform: translateY(-50%);}*/
/*.house > img { position: relative;z-index: 2;width: 100%;*/
/*-webkit-animation-name:scaleDraw;*/
/*-webkit-animation-timing-function:ease-in-out;*/
/*-webkit-animation-iteration-count:infinite;*/
/*-webkit-animation-duration:15s;*/
/*}*/
/*.video_play_ico{ position: relative;display: inline-block;vertical-align: middle;margin-bottom: 10px;width: 80px;height: 80px;border-radius: 50%;text-align: center;line-height: 80px;overflow: hidden;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;background: url(../images/ico_06.png) no-repeat center center;background-size: 24px;}*/
/*.video_play_ico::after{content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;pointer-events: none;background: url(../images/ico_13.png) center no-repeat;background-size: 100%;animation: gorotate 3s linear infinite;}*/
/*.whole_banner_img,.whole_banner_txt{ height: 550px;overflow:hidden;}*/
/*.whole_banner_txt{ float: left;width: 45%;display: table;}*/
/*.whole_banner_img{ float: right;width: 55%;line-height:550px;text-align:right;}*/
/*.whole_banner_txt{ padding: 0 10% 0 0;text-align: left}*/
/*.whole_banner_txt > div{ display: table-cell;vertical-align: middle;}*/
/*.whole_banner_img > div{ width:100%;}*/
/*.whole_banner_txt > div h2{ font-size: 45px;color: rgb(175, 143, 110);margin-bottom: 10px;}*/
/*.whole_banner_txt > div h3{ font-size: 28px;text-transform: uppercase;line-height: 1.057;margin-bottom: 20px;color: rgb(175, 143, 110);}*/
/*.whole_banner_txt > div p{ font-size: 16px;color: rgb(180, 180, 180);line-height: 1.756;}*/
/*.whole_banner_img > div img{ max-width: 90%;max-height:90%;display:inline-block;}*/


.item_img{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 60px;position: relative}
.switch_menu{ position: absolute;bottom: 20px;left: 50%;text-align: center;margin-left: -106px}
.switch_menu ul{ width: auto;display: inline-block}
.switch_menu ul li{ float: left;cursor: pointer; background-color: rgb(175, 143, 110);color: #FFFFFF;border: rgb(175, 143, 110) 1px solid;display: inline-block;padding: 10px 20px;font-size: 16px;transition: all 0.3s;}
.switch_menu ul li.active{  background-color: #FFFFFF;color: rgb(175, 143, 110);}
.switch_pure{ float: left;width: 100%;height: auto;overflow: hidden;margin:75px 0;}
.switch_pure .menu{ display: none}
.switch_pure .pure_pro{ float: left;width: 100%;height: auto;overflow: hidden}
.switch_pure .pure_pro ul{ width: auto;text-align: center;max-width: 100%;justify-content: center;display: -webkit-box;display: -webkit-flex;display: -ms-flexbox; /* display: flex; */-webkit-box-orient: horizontal;-webkit-box-direction: normal;-webkit-flex-flow: row wrap;-ms-flex-flow: row wrap;flex-flow: row wrap;-webkit-align-content: flex-start;-ms-flex-line-pack: start;align-content: flex-start;}
.switch_pure .pure_pro ul li{ width: 550px;height: 330px;display: inline-block;border: 1px #333333 solid;background: #333333;padding: 25px 0;text-align: center;color: #fff;text-decoration: none;transition: all 0.3s;position: relative;margin: 0 80px 80px 0}
.switch_pure .pure_pro ul li:nth-child(2n){ margin-right: 0}
.switch_pure .pure_pro ul li:after,.switch_pure .pure_pro ul li:before{ content: "";position: absolute;width: 37px;height: 37px;background: url("../images/images_41.png") no-repeat center center;top:50%;right: -60px;margin-top: -18px;}
.switch_pure .pure_pro ul li:before{ left:50%;top: auto;bottom: -60px;margin-left: -18px;}
.switch_pure .pure_pro ul li:nth-child(2n):after{ content: none}
.switch_pure .pure_pro ul li:nth-of-type(3):before,.switch_pure .pure_pro ul li:nth-of-type(4):before{ content: none}
.pure_pro_img,.pure_pro_txt{ float: left;width: 45%;height: 100%;overflow: hidden;text-align: center;}
.pure_pro_img{ line-height: 280px;}
.pure_pro_img img{ max-height: 80%;max-width: 80%}
.pure_pro_txt{ width: 55%;text-align: left;display: table}
.pure_pro_txt > div{ display: table-cell;vertical-align: middle}
.pure_pro_txt > div h3{ font-size: 28px;color: #999;line-height: 36px;margin-bottom: 10px;}
.pure_pro_txt > div p{ font-size: 16px;color: rgb(138, 138, 138);line-height: 25px;}

/*产品中心*/
.p_pic { background-position: center;background-repeat: no-repeat;background-size: cover;overflow: hidden;position: relative;}
.p_pic img.w-h { width: 100%;max-width: 100%;opacity: 0;}
.p_pic img.lazy { position: absolute;left: 0;top: 0;width: 100%;height: 100%;transition: all 0.1s ease-out;-webkit-transition: all 0.1s ease-out;-moz-transition: all 0.1s ease-out;-o-transition: all 0.1s ease-out;-ms-transition: all 0.1s ease-out;}
.product{ float: left;width: 100%;height: auto;overflow: hidden;padding: 90px 0}
.max-wid { width: 1360px;max-width: 1600px;margin: auto;}
.pro_che{ position: absolute;transition: all .6s}
.pro_che .section_title{ margin-top: 20px;}
.p_pic { background-position: center;background-repeat: no-repeat;background-size: cover;overflow: hidden;position: relative;}
.p_pic img.w-h { width: 100%;max-width: 100%;opacity: 0;}
.p_pic img.lazy { position: absolute;left: 0;top: 0;width: 100%;height: 100%;transition: all 0.1s ease-out;-webkit-transition: all 0.1s ease-out;-moz-transition: all 0.1s ease-out;-o-transition: all 0.1s ease-out;-ms-transition: all 0.1s ease-out;}
#product { width: 100%;height: auto;background-color: #000;}
#product #top { height: 100%;justify-content: flex-start;z-index: 5;position: absolute;left: 0;right: 0;margin: auto;pointer-events: none;}
#product #top .con { height: 60%;pointer-events: auto;}
.nav_fix_pos {position: fixed !important;top: 70px;}
.pro_che_tab { position: relative;display: inline-block;margin-top: 30px;}
.pro_che_tab .tab_down { width: 60px;height: 60px;cursor: pointer;line-height: 55px;text-align: center;display: inline-block;background-color: rgb(175, 143, 110);position: relative;z-index: 100}
.pro_che_tab .tab_down > i { display: inline-block;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;color: #FFFFFF;font-size: 24px;font-style:normal;font-weight: bold}
.pro_che_tab .tab_down.on > i{ transform: rotate(45deg);-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);-o-transform: rotate(45deg);-ms-transform: rotate(45deg);}
.pro_che_tab .child_1 { position: absolute;text-align: right;left: 0;display: none;top: 0;background-color: rgb(175, 143, 110);padding: 60px 30px 30px;animation-duration: 0.6s;}
.pro_che_tab .child_1 li{ white-space: nowrap;margin: 3px 0;height: 45px;line-height: 45px;min-width: 200px;text-align: left;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;}
.pro_che_tab .child_1 li > a { font-size: 16px;color: #FFFFFF;display: inline-block;width: 100%;opacity: 0.8;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;position: relative;border-bottom: 1px solid rgba(255, 255, 255, 0.2);}
.pro_che_tab .child_1 li > a:after{ content: "";position: absolute;left: 0;bottom: 0;height: 1px;width: 0;background-color: #fff;opacity: 0;transition: all 0.4s ease-out;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;-o-transition: all 0.4s ease-out;-ms-transition: all 0.4s ease-out;}
.pro_che_tab .child_1 li:hover > a:after { width: calc(100% + 0.4rem);opacity: 1;}
/*.pro_che_tab .child_1 > li > ol { position: absolute;display: none;min-height: 100%;left: 100%;top: 0;background-color: #ffffff;padding: 0.4rem;}*/
/*.pro_che_tab .child_1 > li > ol > img { margin-right: 0.4rem;}*/
/*.pro_che_tab .child_1 > li > ol > li { white-space: nowrap;margin: 0.1rem 0;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;height: 0.5rem;line-height: 0.5rem;min-width: 1.6rem;text-align: left;}*/
/*.pro_che_tab .child_1 > li > ol > li:last-of-type > a {border: none;}*/
/*.pro_che_tab .child_1 > li > ol > li > a { display: inline-block;width: 100%;opacity: 0.6;color: rgba(0, 0, 0, 0.8);border-bottom: 1px solid rgba(0, 0, 0, 0.2);transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;position: relative;height: 0.5rem;line-height: 0.5rem;}*/
/*.pro_che_tab .child_1 > li > ol > li > a:after { content: "";position: absolute;left: 0;bottom: -1px;height: 1px;width: 0;background-color: #28b8b9;opacity: 0;transition: all 0.4s ease-out;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;-o-transition: all 0.4s ease-out;-ms-transition: all 0.4s ease-out;}*/
/*.pro_che_tab .child_1 > li > ol > li > a:hover { opacity: 1;color: #28b8b9;}*/
/*.pro_che_tab .child_1 > li > ol > li > a:hover:after { width: 100%;opacity: 1;}*/
/*.pro_che_tab .child_1 > li > ol.on { display: block;}*/
@media screen and (min-width: 600px) {
    .pro_che_tab .child_1 > li:hover > a {
        opacity: 1;
    }
    .pro_che_tab .child_1 > li:hover > a:after {
        width: calc(100% + 0.4rem);
        opacity: 1;
    }
    .pro_che_tab .child_1 > li:hover > ol {
        display: block;
    }
}
#product #main { pointer-events: none;position: relative;z-index: 3;background-color: #000;}
#product #main .con { pointer-events: auto;padding: 100px 0 40px;}
#product #main .con .list { display: flex;justify-content: flex-end;pointer-events: none;align-items: center;padding: 20px 0;position: relative;}
#product #main .con .list .left { position: relative;width: 58%;z-index: 5;pointer-events: auto;}
#product #main .con .list .left .p_pic { background-size: auto 80%;position: relative;z-index: 5;}
#product #main .con .list .left .mask { position: absolute;top: 0;bottom: 0;margin: auto;width: 100%;z-index: 2;}
#product #main .con .list .right { position: relative;z-index: 9;width: 20.8%;pointer-events: auto;}
#product #main .con .list .right .msg{ left: -12%;position: absolute;height: 100%;display: flex;justify-content: center;align-items: flex-start;flex-direction: column;}
#product #main .con .list .right .msg h3{ font-size: 38px;color: #FFFFFF;transition: all .6s}
#product #main .con .list:hover .right .msg h3{ background-image: -webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip: text;-webkit-text-fill-color: transparent;color: rgb(175, 143, 110);}
#product #main .con .list .right .msg h4{ font-size: 24px;margin-top: 10px;color: #FFFFFF}


/*产品详情*/
.product_detail{ float: left;width: 100%;height: auto;overflow: hidden}
.p_detail_slider{ float: left;width: 100%;height: auto;background-color: #232323;}
.p_slider_txt{ float: left;width: 700px;height: 900px;overflow: hidden;display: table}
.p_slider_txt .table_cell{ display: table-cell;vertical-align: middle;text-align: left}
.slider_txt_01 h3{ font-size: 48px;color: rgb(175, 143, 110);padding-bottom: 50px;position: relative}
.slider_txt_01 h3:before{ content: "";position: absolute;left:0;bottom: 25px;width: 30px;height: 5px;background-color: #727373}
.slider_txt_01 p{ font-size: 18px;color: rgba(255, 255, 255, 0.502);margin-bottom: 10px;padding-right: 50px;}
.slider_txt_01 p:nth-last-of-type(1){ margin-bottom: 0}
.slider_txt_02{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 50px;}
.slider_txt_02 h3{ font-size: 24px;color: rgb(175, 143, 110);;margin-bottom: 20px;}
.slider_txt_02 ul li{ float: left; width: auto;height: auto;margin-right: 30px;;text-align: center}
.slider_txt_02 ul li div{width: 65px;height: 65px;overflow: hidden;text-align: center;position: relative;border-radius: 50%;background-color:#333333;display: inline-block;transition: all .6s}
.slider_txt_02 ul li:hover div{ background-color: #AF8F6E}
.slider_txt_02 ul li div img{ position: absolute;width: 65px;height: 130px;left: 0;top:0;transition: top .6s}
.slider_txt_02 ul li:hover div img{ top: -65px; }
.slider_txt_02 ul li p{ font-size: 16px;color: #727373;line-height: 36px;}
.p_slider_img{ float: right;width: 700px;height: 900px;padding: 168px 0 70px 0 ;text-align: right;line-height: 660px}
.p_slider_img .swiper-slide{ background-color: #232323;padding-right: 90px}
.p_slider_img .swiper-slide img{ max-height: 640px}
.p_slider_img .swiper-slide-active{ opacity: 1 !important;}
.p_slider_img .swiper-pagination{ line-height: 0}
.p_slider_img .swiper-pagination-bullet{ margin: 0 5px;outline: none;border: 1px solid #AF8F6E;background-color: #262727;opacity: 1}
.p_slider_img .swiper-pagination-bullet-active{ background-color: #AF8F6E;}
.p_detail_conter{ float: left;width: 100%;height: auto;overflow: hidden;padding: 45px 0;}
.p_detail_conter .section_title{ margin-top: 50px}

.p_detail_conter ul{ margin-top: 30px;}
.p_detail_conter ul > li{ color: #999;float: left;width: 31%;height: 70px;line-height: 70px;border-bottom: 1px solid #4e4e4e;overflow: hidden;margin-right: 3.5%}
.p_detail_conter ul > li:nth-child(3n){ margin-right: 0}
/*.p_detail_conter ul > li > span { color: #999;display: inline-block;line-height: 20px;width: 84px;margin-right: 50px;top: 50%;transform: translateY(-50%);-webkit-transform: translateY(-50%);-moz-transform: translateY(-50%);-o-transform: translateY(-50%);-ms-transform: translateY(-50%);position: absolute;}*/
/*.p_conter_img,.p_conter_txt{ float: left;width: 700px;height: auto;overflow: hidden;padding-top: 40px;}*/
/*.p_conter_txt1{ float: left;width: 700px;height: auto;overflow: hidden}*/
/*.p_conter_txt1 ul li{ float: left;width: 305px;height: 60px;text-align: left;border-bottom: 1px solid #d8d8d8;line-height: 60px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;color: #666666}*/
/*.p_conter_txt1 ul li:nth-of-type(even){ float: right}*/
/*.p_conter_txt1 ul li span{ float: left;width: 78px;height: 100%;overflow: hidden;display: inline-block;font-size: 14px;color: rgb(51, 51, 51);font-weight: bold}*/
.return_product{ width: 75px;height: 75px;position: fixed;top: 220px;right: 2%;display: inline-block;z-index: 9999;line-height: 75px;text-align: center;transition: all 0.6s ease-out;-webkit-transition: all 0.6s ease-out;-moz-transition: all 0.6s ease-out;-o-transition: all 0.6s ease-out;-ms-transition: all 0.6s ease-out;background: #000 url("../images/images_17.png") no-repeat center center; }
.return_product:hover{ background-color: #AF8F6E}
.return_product a{ width: 100%;height: 100%;display: inline-block}

/*案例*/
/*.case_list{ float: left;width: 100%;height: auto;overflow: hidden;padding: 40px 0}*/
/*.case_list ul.case_l li{ float: left;width: 32%;height: 350px;margin: 0 2% 30px 0;overflow: hidden;background-color: #e6e6e6;position: relative;transition: all .6s}*/
/*.case_list ul.case_l li:nth-child(3n){ margin-right: 0}*/
/*.case_list ul.case_l li p{ width: 100%;height: 46px;line-height: 46px;background-color: rgba(0,0,0,.6);text-align: center;color: #FFFFFF;font-size: 18px;position: absolute;left: 0;bottom: 0;padding: 0 10px;overflow: hidden}*/
#product #main .case .list{ margin-bottom: 100px;padding: 40px 0;}
#product #main .case .list .right{ width: 21%}
#product #main .case .list .right .msg{ left: 0;padding: 0 0 0 40px}
#product #main .case .list .right .msg h3{ font-size: 28px;}

/*新闻资讯*/
.new_slide_one{ float: left;width: 100%;height: auto;overflow: hidden}
.new_slide_one ul li{float: left;width: calc(50% - 10px);height: auto;margin-bottom: 15px;overflow: hidden;background-color: #1d1d1d;}
.new_slide_one ul li:nth-child(even){float: right;}
/*.new_slide_one ul li:nth-last-of-type(1),.new_slide_one ul li:nth-last-of-type(2){ margin-bottom: 0}*/
.new_slide_one_img{float: left;width: 240px;height: 150px;overflow: hidden;background: url('../images/no_bj.jpg') no-repeat center center;background-size: 100%;}
.new_slide_one_img img{width: 100%;}
.new_slide_one_txt{float: left;width: 450px;height: 150px;padding: 0 0 0 20px;overflow: hidden;}
.new_slide_one_txt h4{float: left;width: 100%;height: 40px;color: #FFFFFF;font-size: 18px;line-height: 40px;font-weight: normal;display: block;overflow: hidden;transition: all.3s;margin-top: 15px;word-break: break-all;text-overflow: ellipsis;}
.new_slide_one ul li:hover h4{color: #AF8F6E;}
.new_slide_one_txt p{float: left;width:100%;height: 50px;font-size: 13px;font-style: normal;color: #797b7c;line-height: 25px;margin-bottom: 5px;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.new_slide_one_txt p:nth-of-type(2){ height: auto;margin-bottom: 0;line-height: normal}
.new_slide_one_txt p span{ float: right;padding-right: 30px;}
.new_slide_two{width: 100%;height: auto;overflow: hidden;}
.new_slide_two ul li{float: left;width: 25%;height: 32px;line-height: 32px;padding: 0 15px 0 12px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;background: url('../images/images_06.png') no-repeat left 11px;}
.new_slide_two ul li a{color: #FFFFFF;transition: all .3s;font-size: 13px;}
.new_slide_two ul li:hover a{color: #AF8F6E;}

.new{ float: left;width: 100%;height: auto;overflow: hidden}
.new_slider{ float: left;width: 100%;height: 500px;margin-top: 85px;}
.new_slider .swiper-container{ width: 100%;height: 100%;}
.new_slider .swiper-slide{ position: relative;background-size: 900px auto !important;}
.new_slider .new_slider_txt{ float:right;width: 500px;height: 500px;background-color: #1d1d1d;padding: 115px 30px 50px;color: #ffffff;}
.new_slider_txt h4{ font-size: 32px;line-height: 1.5;display: -webkit-box;word-break: break-all;text-overflow: ellipsis;overflow: hidden;-webkit-box-orient: vertical;-webkit-line-clamp: 2;margin-bottom: 10px;}
.new_slider_txt h4 a{ color: #ffffff;transition: all .5s;}
.new_slider_txt h4:hover a{ color: #AF8F6E}
.new_slider_txt p{ color: #efefef;font-size: 14px;text-indent: 0;clear: both;line-height: 1.8;margin-top: 4px;}
.n_one_jt{ width: 500px;height: 60px;position: absolute;right: 0;bottom: 0;padding: 0 10%;z-index: 9999;}
.n_one_jt .swiper-button-next, .n_one_jt .swiper-button-prev{outline: none}
.n_one_jt .swiper-button-next{ right:100px}
.n_one_jt .swiper-button-prev{ left:100px;}
.n_one_jt .swiper-button-next:after, .n_one_jt .swiper-button-prev:after{ font-size: 24px;}
.new_mark{ width: 500px;height: auto;position: absolute;bottom: 3%;right: 0;z-index: 999;color: #FFFFFF;font-size: 18px;left: auto}

.new_list{ float: left;width: 100%;height: auto;overflow: hidden;margin: 0 0 25px;}
/*.new_title{ float: left;width: 100%;height: 70px;border 1px solid ;overflow: hidden;}*/
.new_title{height: 65px;background-color: #1d1d1d;}
/*border-bottom: 1px solid #d8d8d8;*/
.new_title a{line-height: 65px;position: relative;font-size: 24px;transition: all .6s;padding: 0 30px;}
.new_title a:hover{color: #AF8F6E;}
.new_title .more{float: right;}
.new_title .more a{padding-right: 50px;height: 65px;display: inline-block;font-size: 18px;color: #AF8F6E;}
.new_title .more a:after{ content: '';background: url(../images/more_ico_hover.png) no-repeat center center;position: absolute;right: 30px;top: 0;z-index: 2;width: 10px;height: 65px;transition: all .6s;}
/*.new_title .more a:hover:after{ background: url(../images/more_ico_hover.png) no-repeat center center;}*/
.new_title .nav_title{font-size: 24px;float: left ;color: #212121;position: relative;overflow: hidden}
.new_title .nav_title:after{position: absolute;left: 0;bottom: 0;width: 3px;height: 100%;opacity: 1;background: #AF8F6E;content: "";}
.new_list_one,.new_list_two,.new_list_three{ float: left;width: 100%;height: auto;overflow: hidden;padding: 15px 0 20px;margin-top: 30px;}
.new_list_one .new_slide_one{ padding: 25px 0 0;}
.new_list_one .new_slide_one ul li{ width: calc(50% - 3%);}
.new_list_one .new_slide_one_txt{ width: 410px;}
.n_list_t1,.n_list_t2{ float: left;width: calc(50% - 3%); }
.n_list_t2{ float: right}
.n_list_timg{ float: left;width: 100%;height: 302px;overflow: hidden;margin: 20px 0 0;}
.n_list_ttxt{ float: left;width: 100%;height: auto;overflow: hidden;padding: 20px 30px;background-color: #1d1d1d;}
.n_list_ttxt ul li{ font-size: 15px;float: none;margin: 0;height: 35px;line-height: 35px;}
.n_list_ttxt ul li a{ color: #797b7c;width: 80%;overflow: hidden;height: 35px;display: inline-block;transition: all .6s}
.n_list_ttxt ul li a:hover{ color: #AF8F6E;}
.n_list_ttxt ul li span{ float: right;width: 10%;height: 35px;display: inline-block;color: #797b7c;text-align: right}
/*.new_list_three{ margin-top: 30px;}*/
.new_list_three .new_slide_one{ margin-top: 18px;}
.new_list_three .new_slide_one ul li{ width: 100%;margin-bottom: 0;padding: 20px 30px 0;}
.new_list_three .new_slide_one ul li .new_slide_one_txt{ width: calc( 100% - 240px )}

.new_nav{ float: right}
.new_nav ul li{ display: inline-block;margin-right: 5px;}
.new_nav ul li a{ display: block;padding: 0 18px;height: 30px;position: inherit; line-height: 30px;font-size: 14px;color: #fff;transition: 0.5s all;-webkit-transition: 0.5s all;border-radius: 25px;}
.new_nav ul li a:after,.new_nav ul li a:first-child:before{ content:''; }
.new_nav ul li a:first-child:before{ background: none}
.new_nav ul li:hover a ,.new_nav ul li.active a { background: #fff;color: #000;  }
.column_sort{float: left;width: 100%;height: auto;overflow: hidden;}
.column_sort ul{width: 1400px;margin: 20px auto 15px;height: auto;text-align: left;padding-bottom: 10px;overflow: hidden;}
.column_sort ul li{display: inline-block;position: relative;margin-right:15px;}
.column_sort ul li a {display: block;padding: 0 30px;height: 35px;line-height: 33px;font-size: 14px;color: #333;transition: 0.5s all;-webkit-transition: 0.5s all;-moz-transition: 0.5s all;-o-transition: 0.5s all;border: 1px solid #000;border-radius: 25px;}
.column_sort ul li.cur a,.column_sort ul li a:hover{background: #AF8F6E;color: #fff;border: 1px solid #fff;}
.new_detail{float: left;width: 1400px;padding: 20px;height: auto;margin: 65px auto 25px;overflow: hidden;border: 1px solid #111;background-color: #212121;}
.new .fenye{margin-top: 20px;}
#con_one_1{float: left;width: 945px;position: relative;border-right: 1px solid #f2f2f2; padding: 0 28px 40px 0;}
.post{overflow:hidden;border-radius:2px;position:relative;min-height: 120px;max-height: 170px;border-bottom: 1px dashed #FFFFFF;-webkit-transition:all .4s ease;transition:all .4s ease;margin: 20px 0;padding-bottom: 10px;cursor: pointer;}
#con_one_1 .post:nth-of-type(1){margin:0 0 20px;}
/*.post:hover{background:#fcfcfc;}*/
.post .new_txt{position:relative}
.post .new_txt h2{padding:0;font-size:20px;line-height:36px;margin-top: 16px;color: #ffffff;display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1;height: 36px;overflow: hidden;}
.float-left{ overflow: hidden;display: block;}
.post_img{float:left;max-width:240px;max-height: 160px; min-height: 160px;position:relative;height: auto;box-sizing: border-box;overflow: hidden}
.post_img p{ margin-right:4%;}
.post_img p img{ max-width: 100%;}
.post_img .mask-tags{position:absolute;top:0;left:0;color:#fff;padding:2px 10px;font-size:12px;display:block;background:#f45170;z-index:50}
.post-text{font-size:14px;line-height:25px;display:block;max-height: 50px;overflow: hidden;color: #797b7c;margin-top: 3px}
.post .new_con{color:#999;height:auto;margin:5px 0 0}
.post .new_con span{font-size:13px;color:#797b7c;margin-right:10px;display:inline-block}
.post .new_con span a{color:#999}
.post .new_con span .fa{width:13px;display:inline-block;margin-right:4px;font-size:13px}
#con_one_2{float: right;display: inline;width: 380px;}
.com-title{border-bottom: 3px solid #1a1a1a;padding-bottom: 5px;margin-bottom: 5px;}
.com-title span{border-bottom: 3px solid #AF8F6E;padding-bottom: 9px;font-size: 18px;color: #AF8F6E;}
.new_hot{width: 100%;height: auto;margin-bottom: 25px;overflow: hidden;}
.new_hot ul{padding: 0 0;background: url('../images/hot.png') no-repeat 0 8px;overflow: hidden;}
.new_hot ul li{ font-size: 15px;height: 36px;line-height: 36px;width: 100%;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;}
.new_hot ul li a{color: #fff;transition: all .7s;width: 100%;display: inline-block;padding-left: 30px;}
.new_hot ul li a:hover{color: #AF8F6E;}
.new_follow{width: 100%;height: auto;overflow: hidden;}
.follow_ewm{width: 100%;height: auto;padding-top: 15px;text-align: center;overflow: hidden;}
.follow_ewm p{width: 100%;height: 24px;display: block;text-align: center;font-size: 16px;color: #4c4c4c;line-height: 24px;overflow: hidden;}
.follow_ewm img{ width: 240px; margin: 0 auto 15px;}
.read { margin: 25px 0 30px;}
.read .read_box, .read .read_box { padding: 10px 0;margin-top: 5px;}
.read .read_box+.read_box, .read .read_box+.read_box { border-top: 1px dashed #EEEEEE;}
.read .read_box .readtitle, .read .read_box .readtitle { font-size: 16px; margin-bottom: 10px; margin-top: 10px;}
.read .read_box .read_img, .read .read_box .read_img { width: 90px; height: 59px; float: left; display: inline; margin-right: 10px; padding-top: 4px;text-align: center}
.read .read_box .read_img img{ height: 100%}
.read .read_box p {  margin-left: 100px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden;margin-top: 10px}
.read .read_box p a{ color: #999;font-size: 14px;height: 46px; line-height: 23px; display: block;}
#con_one_3{ width: 1200px; position: relative;margin: 65px auto;}
.list_con { border-bottom: 1px solid #F2F2F2; padding-bottom: 8px;}
.list_con h1 { max-height:90px; line-height: 35px; font-size: 28px; color: #FFFFFF; margin-bottom: 5px;}
/*.list_con .tfontsize { float: right; color: #B9B9B9; font-size: 14px;}*/
.list_con span { color: #797b7c; margin: 0 20px 0 0; font-size: 14px;}
.list_con span i {color: #B9B9B9;}
.article-content{ line-height: 2;font-size: 16px;padding: 15px 0 0}
.article-content p{ line-height: 2;font-size: 14px;color: #797b7c;}
.article-content img{ max-width: 100%!important; height: auto!important; }
.article_page{ float: left;margin: 10px 0;width: 100%;}
.article_page .pre,.article_page .next{ float: left;height: 30px;width: 100%;font-size: 16px;line-height: 30px;color:#797b7c;overflow: hidden }
.article_page .pre a,.article_page .next a{ font-size: 16px;line-height: 30px;color:#797b7c;transition: all .6s}
.article_page .pre a:hover,.article_page .next a:hover{ color:#AF8F6E;}
.correlation {margin: 20px 0 10px; overflow:hidden;float: left;width: 100%}
.correlation ul { padding: 10px 0; overflow: hidden}
.correlation ul li { width: 210px; float: left; margin:0 16px; display:inline;}
.correlation ul li p { font-size: 14px; line-height: 22px; margin-top: 5px;height: 22px;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;color: #999999;transition: all .6s}
.correlation ul li:hover p{ color:#AF8F6E; }
.correlation ul li img { width: 210px; height: 140px;}
.correlation ul li:nth-of-type(1){margin-left:0;}
.correlation ul li:nth-last-of-type(1){margin-right:0;}
.new_det{ width: 1200px;height: auto;overflow: hidden;margin: 85px auto 60px;}
.new_det_cont{ float: left; width: 840px; height: auto; background: #212121; padding: 30px; margin-bottom: 20px;}
.new_det_cont_head h1{ margin-top: 0;margin-bottom: 8px;font-size: 24px;line-height: 1.4;color: #FFFFFF}
.n_head_info{ color: #999;}
.n_head_info .dot{ margin: 0 6px;color: #ccc;}
.n_head_info a{ color: #999;}
.n_head_des{ padding: 15px;margin: 20px 0 25px;font-size: 15px;line-height: 25px;color: #999;background: #1a1a1a;border: 1px solid #1a1a1a;border-radius: 3px;float: left}
.n_head_cont{ float: left;width:100%;position: relative;font-size: 15px;color: #626262;text-align: center;margin-bottom: 50px;}
.n_head_cont h1,.n_head_cont h2,.n_head_cont h3,.n_head_cont h4,.n_head_cont h5,.n_head_cont h6{ font-size: 22px;line-height: 32px;text-align: left;color: #AF8F6E;margin-bottom: 12px;}
.n_head_cont p { margin-bottom: 8px;line-height: 26px;word-wrap: break-word;text-align: left;color: #626262}
.n_head_cont img{ max-width: 100%;display: inline-block;margin-bottom: 8px;}
.n_head_cont a{ background-image:-webkit-linear-gradient(bottom,#d2a26e,#fedeba);-webkit-background-clip:text;-webkit-text-fill-color:transparent;}
.n_head_page{ margin-top: 40px;color: #fff;}
.pre,.next { display: inline-block;vertical-align: top;width: 49.9%;height: 60px;line-height: 60px;font-size: 14px;letter-spacing: 1.5px;color: #E4E4E4;position: relative;overflow: hidden}
.pre{ background-color: #171715;text-align: left;padding-left: 40px;}
.next{ background-color: #AF8F6E;text-align: right;padding-right: 40px;float: right}
.pre span,.next span{ margin: 0 2px;color: #FFFFFF}
.next span{ float: right}
.pre a,.next a{ color: #FFFFFF}
.new_det_tag{ float: right;width: 330px;height: auto;overflow: hidden;}
.new_det_tag .read{ background-color: #212121;margin-top: 0;padding: 10px;}
.det_tag{ float: left;width: 100%;height: auto;background-color: #212121;padding: 10px;}
.det_tag a{ float: left;display: inline-block;width: 32%;margin: 5px 1% 5px 0;padding: 12px 3px;font-size: 12px!important;line-height: 1.2;text-align: center;color: #999;border: 1px solid rgba(100,100,100,.3);border-radius: 2px;text-decoration: none;background: #1a1a1a;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;white-space: nowrap;transition: all .6s}
.det_tag a:hover{ background-color:#AF8F6E;color: #FFFFFF }
.det_tag a:nth-child(3n){ margin-left: 0}
.new_det .correlation{ background-color: #212121;padding: 15px 10px;}

.video_new iframe{ width: 100%;height: 400px;margin-bottom: 30px;}

.new_item{ width: 100%;height: auto;overflow: hidden;padding: 85px 0;}
.new_item_list{ float: left;width: 100%;height: auto;padding: 5px 0}
.new_item_list li{ float: left;width: 32%;overflow: hidden;margin-right: 2%;margin-bottom: 35px;background-color: #FFFFFF;box-shadow: 0 0 8px rgba(255,255,255,.3);position: relative;transition: all .6s}
.new_item_list li:after{ content: '';display: block;width: 100%;height: 3px;background: #AF8F6E;position: absolute;left: 0;bottom: 0;transform: scaleX(0);transition: ease .65s;}
.new_item_list li:hover:after{transform: scaleX(1);}
.new_item_list li:nth-child(3n){ margin-right: 0}
.new_item_list_img{ width: 100%;height: 300px;background-size: cover !important;}
.new_item_list_img img{ display: none}
.new_item_list_txt{ width: 100%;height: 200px;background-color: #1d1d1d;padding: 35px 14px 0;}
.new_item_list_txt h3{ width: 100%;height: 25px;line-height: 25px;color: #cacaca;font-size: 18px;overflow: hidden;margin-bottom: 10px;text-overflow: ellipsis;white-space: nowrap;transition: all .6s}
.new_item_list li:hover .new_item_list_txt h3{ color: #AF8F6E;}
.new_item_list_txt p{ width: 100%;height:auto;line-height: 24px;color: #797b7c;font-size: 14px;;overflow: hidden;display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 3;}
.new_item_list_txt span{ float: left;width:50%;font-size: 13px;margin-top: 8px;color: #797b7c;display: inline-block}
.new_item_list_txt span:nth-of-type(2){ text-align: right}

/*联系我们*/
.company_intr{ float: left;width: 100%;height: auto;overflow: hidden;margin: 25px 0 0;}
.int_list{ margin-top: 40px;}
.int_list ul li{ float:left;width: 48%; margin-right: 4%; background: #1d1d1d;text-align: center; margin-bottom: 2.5%; border-radius: 10px; height: 245px;display: table}
.int_list ul li:nth-child(2n){ margin-right: 0;float: right}
.int_list ul li > div{ display: table-cell;vertical-align: middle}
.int_list ul li dd{ background: url(../images/images_22.png) no-repeat 50% 50%;}
.int_list ul li dt{ font-size: 22px; color: #333333; margin-top: 25px;font-weight: 500;}
.int_list ul li dd img{ max-width: 45px;}
.int_list ul li p{ font-size: 14px; color: #797b7c; margin-top: 10px;}
.int_answer{ float: left;width: 100%;height: auto;padding: 50px 0 45px;}
.answer_list{ float: left;width: 100%;height: auto;overflow: hidden;background-color: #1d1d1d;padding: 30px 30px 50px;}
.int_answer .item{ overflow: hidden;position: relative;border-bottom: 1px solid #000;height: 50px;line-height: 50px;}
.int_answer li.active .item{border: none}
.int_answer .item .item_tit{ float: left;width: 70%;height: 100%;font-size: 16px;}
.int_answer .faq_c_z{background-color: #212121;padding: 30px 20px;display: none;border-radius: 5px;margin-bottom: 12px;color: #878787;}
.int_answer .faq_c_z p{ line-height: 24px;color: #878787;font-size: 13px;}
.int_answer .faq_c_z p a{ color: #000}
.int_answer .faq_c_z h1,.int_answer .faq_c_z h2,.int_answer .faq_c_z h3,.int_answer .faq_c_z h4,.int_answer .faq_c_z h5,.int_answer .faq_c_z h6{ font-size: 20px;line-height: 36px;}
/*.about-index .main .main-content .job #fenye{margin-top: 38px;}*/
.int_answer .item .triangle_ico{cursor: pointer;opacity: 0;content: '';position: absolute;right: 30px;bottom: -10px;width: 0;height: 0;border-left: 22px solid transparent;border-right: 22px solid transparent;border-bottom: 22px solid #212121;transition: opacity cubic-bezier(0.38, 0.04, 0.35, 0.96);}
.int_answer li.active .item .triangle_ico{opacity:1}
.int_answer .item .ico{cursor: pointer;display: inline-block;text-align: center;position: relative;-webkit-flex: none;-ms-flex: none;flex: none;width: 44px;height: 50px;border-radius: 50%;transition: transform cubic-bezier(0.38, 0.04, 0.35, 0.96) 600ms;margin-right: 30px;}
.int_answer .item .ico:before{position: absolute;top: 23px;left: 14px;content: '';background: #fff;width: 16px;height: 2px;}
.int_answer li.active .item .ico:after {opacity: 0;-webkit-transform: rotate(0deg);transform: rotate(0deg);}
.int_answer .item .ico:after{opacity: 1;transition: all cubic-bezier(0.38, 0.04, 0.35, 0.96) 600ms;-webkit-transform: rotate(90deg);transform: rotate(90deg);position: absolute;top: 23px;left: 14px;content: '';background: #fff;width: 16px;height: 2px;}
.conter_map{ float: left;width: 100%;height: auto;overflow: hidden;position: relative;margin-top: 20px;}
/*.conter_map:after{ content: "";position:absolute;left: 0;top:0;width: 100%;height: 100%;background-color: rgba(0,0,0,0.7);z-index: 100}*/
.map_c{ float: left;width: 100%;height: 100%;position: absolute;left: 0;top: 0;z-index: 10}
.map_c img{ height: 100%}
.conter_map .width_web2{ position: relative;z-index: 200}
.map_form{ width: 100%;height: auto;border-radius: 8px;padding: 60px 0 40px;text-align: center;background: url("../images/bj_01.jpg") no-repeat center center;}
.map_form form input{ float: left;width: 48%;height: 45px;border: 1px solid #666;padding: 5px 20px;margin-bottom: 25px;outline: none;color: #fff9ec;border-radius: 5px;transition: all .6s;}
.map_form form input:nth-child(2n){ float: right}
.map_form form input:focus{ border: 1px solid #AF8F6E;}
.map_form form textarea{ float: left;width: 100%;height: 90px;border: 1px solid #666;padding: 10px 10px;margin-bottom: 25px;outline: none;color: #fff9ec;border-radius: 5px;transition: all .6s;}
.map_form form textarea:focus{ border: 1px solid #AF8F6E;}
.map_form form button{ width: 160px;height: 45px;margin: 0 auto;text-align: center;border: none;display: inline-block;background-color: #AF8F6E;font-size: 16px;line-height: 45px;color: #fff;border-radius: 5px}
.join{ float: left;width: 100%;height: auto;margin: 80px 0 0}
.join_one{ float: left;width: 100%;height: auto;overflow: hidden}
.join_one h2,.join_two h2,.join_three h2,.join_four h2{ text-align: center;font-size: 38px;padding-bottom: 8px;}
.join_one p,.join_two p{ text-align: center;color: #808080;}
.join_one ul{ margin-top: 30px;}
.join_one ul li{ float: left;width: 32.8%;padding: 40px 28px 0;margin-right: 0.8%;border: 1px solid #d1d1d1;height: 200px;}
.join_one ul li:nth-of-type(1){ background-color: #AF8F6E;border: 1px solid #AF8F6E;}
.join_one ul li:nth-of-type(2){ background-color: #000;border: 1px solid #000;}
.join_one ul li:nth-last-of-type(1){ margin-right: 0;background-color: #1d1d1d;border: 1px solid #1d1d1d;}
.join_one ul li h3{ font-size: 24px;margin-bottom: 10px;line-height: 38px;color: #878787;}
.join_one ul li span{ color: #797b7c;line-height: 26px;font-size: 16px;}
.join_one ul li:nth-of-type(1) h3,.join_one ul li:nth-of-type(1) span{ color: rgba(255,255,255,1)}
.join_one ul li:nth-last-of-type(1) h3,.join_one ul li:nth-last-of-type(1) span{ color: #878787}
.join_two{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 70px;background: url("../images/images_17.jpg") no-repeat top center;padding-top: 90px;}
/*background-attachment: fixed*/
.join_two h2,.join_two p{ color: #FFFFFF;}
.join_two ul{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 40px;}
.join_two ul li{ float: left;width: 48%;height: 380px;overflow: hidden;position: relative;margin-bottom: 30px;}
.join_two ul li:nth-of-type(2){ float: right}
.join_two ul li:nth-of-type(3){ width: 100%}
.join_two ul li > div{ position: absolute;left: 0;bottom: 20px;}
.join_two ul li > div h4,.join_two ul li > div p{ padding-left: 50px;font-size: 24px;line-height: 34px;color: #FFFFFF;text-align: left}
.join_two ul li > div p{font-size: 17px;line-height: 28px;}
.join_three,.join_four{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 60px;}
.join_three h2{ margin-bottom: 25px;}
.join_three_img,.join_three_txt{ float: left;width: 50%;height: 500px;overflow: hidden;background-color: #f8f8f8;display: table}
.join_three_txt > div{ display: table-cell;vertical-align: middle;}
.join_three_txt > div ul li{ padding: 0 40px 0 60px;position: relative;margin: 30px 0}
.join_three_txt > div ul li:after{ content: "";position: absolute;left: 40px;top:50%;width: 8px;height: 8px;text-align: center;margin-top: -4px;background-color: #AF8F6E;border-radius: 50%}
.join_three_txt > div ul li p{ font-size: 20px;line-height: 36px;}
.join_three_txt > div ul li span{ font-size: 16px;line-height: 26px;}
.join_four{float: left;width: 100%;height: auto;margin: 100px 0;overflow: hidden;padding: 0 50px; }
/*.join_four p{ text-align: center;color: #797b7c}*/
.job_list_tit{ float: left;width: 100%;height: 50px;background: #AF8F6E;color: #fff;line-height: 55px;border-radius: 5px 5px 0 0;margin-top: 20px;}
.job_list_tit span,.job_list_show span{ float: left;height: 50px;text-align:center;overflow: hidden;display: inline-block;}
.job_list_tit span:nth-of-type(1),.job_list_tit span:nth-of-type(4),.job_list_show span:nth-of-type(1),.job_list_show span:nth-of-type(4){ width: 19%;}
.job_list_tit span:nth-of-type(2),.job_list_tit span:nth-of-type(3),.job_list_show span:nth-of-type(2),.job_list_show span:nth-of-type(3){ width: 28%;}
.join_four ul li div.job_list_show span:nth-of-type(5){ width: 6%;background: url("../images/jt_02.png") no-repeat center center;transition: all .6s}
.join_four ul li div.on span:nth-of-type(5){ -moz-transform:rotate(180deg);-webkit-transform:rotate(180deg);transform:rotate(180deg); }
.join_four ul,.join_four ul li{ float: left;width: 100%;height: auto;overflow: hidden;cursor: pointer}
.join_four ul li{border:1px solid #1d1d1d;border-top: none}
.job_list_show{ float: left;width: 100%;height: 50px;line-height: 50px;background-color: #1d1d1d;color: #797b7c}
.join_four ul li .on{ border-bottom: 1px dotted #d5d5d5;}
.job_list_hide_con{ float: left;width: 100%;height: auto;background-color: #1d1d1d;padding: 25px 3% 35px;}
.job_list_hide_con h3{ font-size: 18px;color: #AF8F6E;margin-top: 10px;}
.job_list_hide_con p{ font-size: 14px;color: #878787; line-height: 24px;}
.job_list_hide{ float: left; width: 100%; padding: 2%; background: #111; display: none }

.join3{ float: left;width: 100%;height: auto;margin: 100px 0 110px;}
.join3 ul li{ float: left;width: 48%;height: 208px;background-color: #171717;transition: all .8s;margin-bottom: 30px;border-left: 3px solid #AF8F6E;display: table}
.join3 ul li:nth-child(2n){ float: right}
.join3 ul li:nth-last-of-type(1),.join3 ul li:nth-last-of-type(2){ margin-bottom: 0}
.join3 ul li:hover{ background-color: #AF8F6E;}
.join3 ul li .join3_cell{ padding: 0 80px 0 80px;color: rgb(153, 153, 153);display: table-cell;vertical-align: middle;position: relative;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;}
.join3 ul li .join3_cell h4{ position: relative;margin-bottom: 20px;line-height: 30px;font-size: 24px;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;z-index: 5;}
.join3 ul li .join3_cell h4:after { content: "";position: absolute;width: 20px;height: 3px;background-color: #999999;left: 0;bottom: -12px;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;}
.join3 ul li .join3_cell p{ font-size: 16px;line-height: 1.9;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;position: relative;z-index: 5;}
.join3 ul li .join3_cell:after { content: attr(data-num);position: absolute;right: 31px;top: 18px;font-size: 30px;color: rgb(153, 153, 153);font-family: PFHandbookPro;transition: all 0.3s ease-out;-webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;z-index: 6;}
.join3 ul li:hover .join3_cell{ color: #FFFFFF}
.join3 ul li:hover .join3_cell h4:after { background-color: #FFFFFF;}
.join3 ul li:hover .join3_cell:after { color: #FFFFFF;}

.store{ float: left;width: 100%;height: 900px;overflow: hidden;margin-top: 40px;}
.store .swiper-container { width: 100%;height: 100%;background-color: rgb(0, 0, 0);transition: 1s background-color 1.3s;}
.store .swiper-wrapper { transition-delay: 1s;transition-timing-function: cubic-bezier(0.5, 0, 0, 1);}
.store .swiper-slide { text-align: center;font-size: 18px; /* Center slide text vertically */display: -webkit-box;display: -ms-flexbox;display: -webkit-flex;display: flex;-webkit-box-pack: center;-ms-flex-pack: center;-webkit-justify-content: center;justify-content: center;-webkit-box-align: center;-ms-flex-align: center;-webkit-align-items: center;align-items: center;}
.store .title { transition-delay: 1s;z-index: 10;margin-top: 56%}
.store .title h3 { font-size:32px;letter-spacing: 5px;color: rgba(255,255,255,0);-webkit-text-stroke: 2px #fff;}
.store .img-box { width: 100%;height: 100%;position: absolute;transform: scale(0.6, 0.6);transition-duration: 1s;transition-property: transform;transition-timing-function: cubic-bezier(0.5, 0, 0, 1);opacity: 0.9;overflow: hidden;left:0;top:0;}
.img-box img { width: 100%;height: 100%;object-fit: cover;transform: scale(1.2, 1.2) translateX(50%);transition-timing-function: cubic-bezier(0.5, 0, 0, 1);transition-property: transform;}
.button-prev, .button-next { transition: 0.5s;outline: none;position: absolute;width: 140px;z-index: 10;top: 50%;margin-top: -8px;transform: translateY(-34px);cursor: pointer;}
.button-prev { left: 4vw;}
.button-next { right: 4vw;}
.button.disabled { opacity: 0.6;cursor: default;}
#arrow-svg-home { transform: translateY(353px);}
.button-next #arrow-svg-home { transform: translateY(353px) rotateY(180deg);transform-origin: 80px 0 0;}
svg { transition: 0.5s;}
.cls-1 { transition: 0.5s;transform-origin: -20px 40px;opacity: 1;}
.cls-4 { transition: 0.5s;stroke-width: 2px;stroke: #fff;fill: none;stroke-dasharray: 1;stroke-dashoffset: 1;opacity: 0.4;transform-origin: 0 0 0;}
#arrow-trg { transition: 0.5s;fill: #fff;transform: rotateY(180deg) translate(-53px, 39px);}
#line { transition: 0.5s;stroke: #fff;transform: translate(50px, 42px);}
.button-prev:not(.disabled):hover svg { transform: translateX(-25px);}
.button-next:not(.disabled):hover svg { transform: translateX(25px);}
.button:not(.disabled):hover .cls-1 { transform: scale(1.1);}
.button:not(.disabled):hover .cls-4 { stroke-dasharray: 2px;stroke-dashoffset: 2px;opacity: 1;}
.button:not(.disabled):hover #arrow-trg { transform: rotateY(180deg) translate(-37px, 39px);}
.button:not(.disabled):hover #line { transform: translate(35px, 42px) scaleX(0.33);}
.store .swiper-pagination{ font-size: 24px;color: #FFFFFF}
.store_web{ display: none}

.good{ float: left;width: 100%;height: auto;overflow: hidden;padding-top: 100px;}
.good_konw{ float: left;width: 100%;height: auto;overflow: hidden}
.good_konw_img{ float: left;width: 50%;height: auto;overflow: hidden;margin-bottom: 65px;}
.good_konw_img img{ max-width: 100%}
.good_konw_txt{ float: right;width: 44.5%;height: auto;overflow: hidden}
.good_konw_txt h3{ font-size: 40px;color: rgb(102, 102, 102);text-transform: uppercase;line-height: 40px;}
.good_konw_txt h2{ font-size: 48px;color: rgb(102, 102, 102);line-height: 60px;margin-bottom: 50px;}
.good_konw_txt p{ font-size: 20px;color: rgba(153, 153, 153, 0.502);line-height: 1.2;text-transform: uppercase;margin-bottom: 10px;}
.good_konw_txt span{ font-size: 22px;color: rgb(153, 153, 153);line-height: 1.591;}
.good_list{ float: left;width: 100%;height: auto;overflow: hidden;margin-bottom: 100px;}
.good_list ul{ text-align: center}
/*.good_list ul li{ display: inline-block;max-width: 130px;margin: 0 30px;}*/
/*.good_list ul li:nth-of-type(1){ margin-left: 0}*/
/*.good_list ul li:nth-of-type(2){ margin-right: 0}*/
/*.good_list ul li img{ max-width: 60px;margin-bottom: 5px;}*/
/*.good_list ul li p{ font-size: 16px;color: rgb(153, 153, 153);line-height: 1.69;}*/
.good_list ul li{ float:left;width: auto;max-width:130px;height: auto;display: inline-block;margin: 0 30px 30px 0;position: relative;cursor: pointer;text-align: center;}
/*.good_list ul li:nth-of-type(1){ margin-left: 0}*/
.good_list ul li:nth-last-of-type(1){ margin-right: 0}
.good_list ul li img{ display: none}
.good_list ul li img:nth-of-type(1){ display: inline-block;transition: all .6s}
.good_list ul li > div{ width: 93px;height: 93px;display: inline-block;border-radius: 50%;background-color: #222222;position: relative;transition: all .6s;overflow: hidden;margin: 0 auto}
.good_list ul li.active > div,.core_list ul li:hover > div{ background-color: #e1ab7d}
.good_list ul li > div img{ position: absolute;left: 0;top:0;width: 93px;z-index: 100}
.good_list ul li.active > div img,.core_list ul li:hover > div img{ top:-94px;}
.good_list ul li > p{ color: #fff;font-size: 16px;margin-top: 5px;}


.main_01,.main_02{ float: left;width: 100%;height: auto;overflow: hidden;background-color: #131313;padding: 85px 0 120px}
.main_01 .main_half{ float: left;width: 50%}
.main_01 .main_half h4{ font-size: 30px;color: rgb(175, 143, 110);line-height: 1;margin-bottom: 40px;}
.main_01 .main_half p {font-size: 16px;color: rgb(102, 102, 102);line-height: 1.875;}
.main_02{ background-color: #000000;padding: 85px 0 120px}
.main_02 h3{ font-size: 32px;line-height: 1;color: rgb(175, 143, 110);}
.model{ float: left;width: 590px;}
.main_02 .model:nth-of-type(2){ float: right}
.model h4{ width: 100%;height: 62px;line-height: 62px;border-bottom: 1px dashed rgb(102, 102, 102);font-size: 26px; color: rgb(102, 102, 102);margin-top: 25px;}
.model ul li{ float: left;width: 100%;height: auto;margin-top: 25px;}
.model ul li p{ font-size: 16px;line-height: 1.875;color: #666666}
.model ul li p:nth-of-type(1){ color: rgb(175, 143, 110);}
/*background-image: linear-gradient(to top,#d2a26e,#fedeba)*/
.join_box .inner_tit{ display: none}

#new{ float: left;width: 92%;height: auto;overflow: hidden;margin: 20px 4% 40px;display: none;}
#new ul{ float: left;width: 100%;height: auto;overflow: hidden}
#new ul li{ float: left;width: 100%;height: auto;display: inline-block;box-sizing: border-box;vertical-align: top;margin-top: 30px;}
#new ul li a { display: block; transition: all .4s ease-in;}
#new li .imgs { overflow: hidden;}
#new li .imgs img {width: 100%;transition: all 10s ease-in;}
#new li .text { background-color: #1d1d1d;padding: 4% 3%;width: 100%;height: auto;overflow: hidden}
#new li .text .tit{font-size:18px;color:#fff;line-height:1.5;padding:.25em 0;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
#new li .text .con{font-size:14px;color:#797b7c;line-height:22px;margin-top:5px;height: 44px;width: 100%;overflow: hidden}
#new li .text .con p{ font-size: 13px;}
#new li .text .gn_box{margin-top:10px;float: left;width: 100%;height: auto;overflow: hidden}
#new li .text .gn_box span{font-size:13px;color:#797b7c;display:inline-block}
#new li .text .time{ float: left;}
#new li .text .look{ float: right;}



@media (max-width: 1760px){
    .index_two_img{ width: 64%;}
}
@media (max-width: 1650px){
    .index_five:before {width: 100%;left: 0;}
}
@media (max-width: 1600px){
    .header{ padding: 0 4%;}
    .header_list ul li { margin: 0 10px;
    }
}
@media (max-width: 1540px){
    .header{ padding: 0 4%;}
    .header_list ul li { margin: 0 5px;}
}
@media (max-width: 1440px){
    .width_web{ width: 1320px;margin: 0 auto}
    .new_slide_one_txt{ width: calc(100% - 240px); }
    .index_two_txt > div.index_two_con{ padding-left:105px;}

    .item_six_two ul li{ width: 48%}

    .six_t_txt h6{ width: 294px}
}
@media (max-width: 1400px){
    .width_web2{ width: 1320px;margin: 0 auto}
    .about_img{ width: 730px;height: auto}
    .header{ padding: 0 1%;}
    .whole_int_img{ width: 740px;}
    .whole_atlas ul li{ width:311px}
    .product_list ul li{ width: 60.7%}
    .product_list ul li:nth-child(2n) { width: 38%;}
    .product_list ul li:nth-of-type(3) { width: 43.9%;}
    .product_list ul li:nth-of-type(4) { width: 54.8%;}
    .league1 .width_web2 .imgBox .img2{ margin: 0 7px;}
    .new_list_one .new_slide_one_txt { width: calc(100% - 240px); }
    .about_txt{ width: 590px;padding: 0 75px 0 55px;}
    .p_slider_txt{ width: 600px}
}
@media (max-width: 1330px){
    .six_t_txt { display:inline-block;padding-top:25px;}
}
@media (max-width: 1300px) {
    .header_list ul li a{ font-size: 14px;}
}
.dis_table{ display:table;width: 100%;height:100%;overflow: hidden;}
.dis_cell{ display: table-cell;vertical-align: middle;}

.web_box{ width: 100%;height: auto;overflow: hidden;display: none}
.web_box_one{ float: left;width: 100%;height: auto;overflow: hidden;display: none}
.web_box_one .swiper-container { width: 100%; height: 100%;color: #FFFFFF}
.web_box_one .swiper-container .swiper-slide{ position: relative}
.w_box_one_txt{ width: 100%;height: auto;overflow: hidden;position: absolute;top:0;left: 0;z-index: 100;padding-top: 25%;text-align: center;}
.w_box_one_txt h2{ color: #FFFFFF;font-size: 22px;}
.w_box_one_txt p{ color: #FFFFFF;font-size: 16px;margin-top: 10px;}
.web_box_one .swiper-pagination-bullet{ background-color: #FFFFFF}
.web_box_two{ float: left;width: 100%;height: auto;padding: 0 1%;margin: 35px 0 25px;}
.web_box_two_k{ width: 100%;height: auto;background-color: #1d1d1d;overflow: hidden;padding: 30px 0 15px}
.w_two_about{ float: left;width: 100%;height: auto;overflow: hidden;padding: 0 3%}
.w_two_about h3,.web_box_four h3,.web_box_five h3,.web_box_six h3.w_house,.web_box_eight h3{ color: rgb(175, 143, 110);font-size: 18px;position: relative;padding-bottom: 30px;width: 100%}
.w_two_about h3:after,.web_box_four h3:after,.web_box_five h3:after,.web_box_six h3.w_house:after,.web_box_eight h3:after{ content: "";position: absolute;left: 0;width: 24px;height: 3px;background-color: rgb(175, 143, 110);bottom: 15px}
.web_box_four h3 a,.web_box_five h3 a,.web_box_eight h3 a{ float: right;font-size: 15px;color: #999;letter-spacing: -1px;}
.w_two_about p{ color: rgb(102, 102, 102);line-height: 1.5;font-size: 13px;letter-spacing: 1px;}
.w_two_about a{ width: auto;height: 33px;line-height: 33px;text-align: left;border: none;border-bottom: 1px solid #666666;margin-top: 5px;font-size: 14px;color: rgb(102, 102, 102);display: inline-block;transition: all .6s;}
.w_two_about a:hover { border-bottom: 1px solid #AF8F6E; color: #AF8F6E;}
.w_two_honner{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 30px;}
.w_two_honner ul li{ float: left;width: 33.33%;margin-bottom: 10px;text-align: center}
.w_two_honner ul li img{ max-width: 50px;margin-bottom: 5px;}
.w_two_honner ul li p{ font-size: 13px;color: rgb(102, 102, 102);line-height: 20px;}
.w_two_honner ul li span{ font-size: 12px;color: rgb(102, 102, 102);}
.w_two_honner ul li:nth-last-of-type(1){ display: table;}
.w_two_honner ul li:nth-last-of-type(1) > div{ display: table-cell;vertical-align: center}
.w_two_honner ul li:nth-last-of-type(1) > div img{ max-width: 35px}

.web_box_three{ float: left;width: 100%;height: auto;overflow: hidden;position: relative;margin-top: 10px;}
.web_box_three img{ width: 100%}
.web_box_three:after {content: "";position: absolute;width: 100%;height: 100%;top: 0;left: 0;z-index: 1;background-color: rgba(0, 0, 0, 0.2);}
.web_box_video { display: none;position: fixed;top: 0;left: 0;z-index: 9999;width: 100%;height: 100%;background: rgba(0, 0, 0, 0.5);text-align: center;}
.web_box_video .c-btn { position: fixed;top: 86%;left: 50%;margin-left: -25px;width: 50px;height: 50px;color: #fff;background: #fff;border-radius: 50%;transition: .5s;}
.web_box_video .c-btn:after, .web_box_video .c-btn:before { content: "";position: absolute;bottom: 24px;left: 10px;width: 30px;height: 2px;background: #333;transition: .5s;}
.web_box_video .c-btn:hover {background: #AF8F6E;}
.web_box_video .c-btn:hover:after, .web_box_video .c-btn:hover:before {background: #fff;}
.web_box_video .c-btn:after {-webkit-transform: rotate(45deg);transform: rotate(45deg);}
.web_box_video .c-btn:before {-webkit-transform: rotate(-45deg);transform: rotate(-45deg);}
.web_box_video video {position: fixed;left: 50%;top: 50%;width: 90%;-webkit-transform: translate(-50%, -50%);transform: translate(-50%, -50%);}
.w_box_three_b a{ width: 50px;height: 49px;background: url(../images/images_03.png) no-repeat 18px center;background-size: 20px;}
.web_box_four{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 35px;padding: 0 3%}
.w_four_tab{ float: left;width: 100%;height: auto;overflow: hidden;color: #FFFFFF}
.web_box_four .core_list{ margin-top: 10px !important;}
.web_box_four .core_list ul li{ width: 25%;margin-bottom: 20px;}
.web_box_five{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 15px;padding: 0 3%}
.web_box_pro{ float: left;width: 100%;height: auto;overflow: hidden}
.web_box_pro .swiper-slide{ float:left;width: 100%;height: auto;overflow: hidden;background-color: #1d1d1d;padding-bottom: 40px;}
.web_box_pro .swiper-slide a{ width: 100%;height: 100%}
.web_box_pro .swiper-slide a div{ float: left;width: 100%;height: 230px;overflow: hidden;text-align: center;line-height: 230px;}
.web_box_pro .swiper-slide a div img{ max-height: 80%;display: inline-block;max-width: none;}
.web_box_pro .swiper-slide a h2{ float: left;width: 100%;height: auto;font-size: 22px;line-height: 34px;color: #FFFFFF;margin-bottom: 5px;text-align: center}
.web_box_pro .swiper-slide a p{ float: left;width: 100%;height: auto;font-size: 18px;text-align: center;color: #999;}
.web_box_pro .swiper-pagination-bullet{ background-color: #AF8F6E}
.web_box_six{ float: left;width: 100%;height: auto;overflow: hidden;padding: 0 1%;margin-top: 35px;display: none}
.web_box_house{ float: left;width: 100%;height: auto;overflow: hidden}
.web_house_list{ float: left;width: 100%;height: auto;overflow: hidden}
.web_house_list ul li{ float: left;width: 33.33%;height: auto;overflow: hidden;line-height: 35px;text-align: center;color: #999;transition: all .6s;position: relative}
.web_house_list ul li:after{ position: absolute;content: "";width: 2px;height: 15px;background-color: #999;right: 0;top:10px;}
.web_house_list ul li:nth-last-child(1):after{ display: none}
.web_house_list ul li.active{ color: #AF8F6E}
.web_house_tab{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 5px;}
.web_house_tab > div.house_item{ float: left;width: 100%;height: auto;overflow: hidden;display: none;position: relative;text-align: center}
.web_house_tab > div.house_item img.house_item_banner{ max-width: none;max-height: 240px;}
.web_house_tab .switch_pure{ margin: 20px 0 0;}
.web_house_tab .switch_pure .pure_pro ul li{ width: 50%;margin: 0 0 0;min-height: 206px;}
.web_house_tab .switch_pure .pure_pro ul li:nth-of-type(2n){ float: right}

.web_box_seven{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 35px;}
.scene{ float: left;width: 100%;height: 50vh;overflow: hidden;position: relative;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out; -moz-transition: all 0.8s ease-out; -o-transition: all 0.8s ease-out; -ms-transition: all 0.8s ease-out;}
.scene:after { content: "";position: absolute;z-index: 8;pointer-events: none;width: 100vw;height: 100vh;top: 0;right: 100%;background-color: rgba(0, 0, 0, 0.5);opacity: 0;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
.scene .scene_img{ position: absolute;width: 100%;height: 100%;top: 0;left: 0;overflow: hidden;z-index: 3;}
.scene .scene_img img { max-width: none;width: 100%;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;}
.scene .scene_img:after { content: '';position: absolute;width: 100%;height: 100%;top: 0;left: 0;transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;background-color: rgba(0, 0, 0, 0.2);}
.scene .scene_txt{ position: absolute;top: 0;bottom: 0;left: 0;right: 0;margin: auto;z-index: 5;width: 50vw;text-align: center;flex-direction: column;height: 72%;cursor: pointer;display: flex;justify-content: center;flex-wrap: wrap;align-items: center;}
.scene .scene_txt h3,.scene .scene_txt h4{ transition: all 0.8s ease-out;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;-o-transition: all 0.8s ease-out;-ms-transition: all 0.8s ease-out;font-size: 22px;color: rgb(255, 255, 255);text-transform: uppercase;}
.scene .scene_txt h4{ font-size: 18px;margin-top: 10px;}
.scene .scene_txt h4{ font-size: 18px;margin-top: 10px;}
.web_box_eight{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 35px;}
.web_box_eight h3{ padding: 0 3% 30px;}
.web_box_eight h3:after{ left: 3%}
.w_new_list{ float: left;width: 100%;height: auto;overflow: hidden}
.w_new_list ul li{ float: left;width: 25%;height: 40px;text-align: center;background-color: #AF8F6E;color: #fff;line-height: 40px;font-size: 14px;transition: all .6s}
.w_new_list ul li:nth-last-of-type(1){ display: none}
.w_new_list ul li.active{ background-color: #1d1d1d}
.w_new_tab{ float: left;width: 100%;height: auto;overflow: hidden;margin-top: 20px;}
.w_new_tab > div.news_item{ float: left;width: 100%;height: auto;overflow: hidden;display: none}
.w_new_tab > div.news_item ul li{ float: left;width: 100%;height: auto;overflow: hidden;padding: 3%;position: relative;margin-top: -1px;}
.w_new_tab > div.news_item ul li:nth-of-type(1){ margin-top: 0}
.w_new_desc{ font-size: 14px;margin-right: 10px;display: block;width: calc(100% - 130px);float: left}
.w_new_desc h2{ width: 100%;height: 30px;line-height: 30px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;font-size: 14px;color: rgb(255, 255, 255);}
.w_new_desc p{ color: #a0a0a0;height: 50px;line-height: 25px;display: -webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp: 2;overflow: hidden;}
.w_new_img { width: 120px;height: 73px;display: block;float: right}
.w_new_img img { display: block;width: 100%;height: 100%;}
.w_new_tab > div.news_item ul li:before { content: " ";position: absolute;left: 0;top: 0;width: 100%;height: 1px;border-top: 1px solid #D9D9D9;color: #D9D9D9;-webkit-transform-origin: 0 0;transform-origin: 0 0;-webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
.w_new_tab > div.news_item ul li:after { content: " ";position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;border-bottom: 1px solid #D9D9D9;color: #D9D9D9;-webkit-transform-origin: 0 100%;transform-origin: 0 100%;-webkit-transform: scaleY(0.5);transform: scaleY(0.5);}
.web_footer{ float: left;width: 100%;height: auto;overflow: hidden;display: none;background-color: #202020;margin-top: 15px;padding: 20px 4%}
/*.web_footer_one{ float: left;width: 100%;height: auto;padding: 30px 8% 20px 3%;}*/
/*.web_footer_one h2{ color: #AF8F6E;line-height: 30px;margin-bottom: 10px;font-size: 16px;}*/
/*.web_footer_one p,.web_footer_one p a{ font-size: 14px; line-height: 26px; color: #999;letter-spacing: 1px}*/
/*.web_footer_one p:nth-of-type(2) { margin-top: 8px}*/
/*.web_footer_two{ float: left;width: 100%;height: auto;padding: 3%;background-color: #131313}*/
/*.web_footer_two span a{ font-size: 14px;color: #999;line-height: 30px;}*/
/*.web_footer_two span:nth-of-type(1) a{ margin-left: 5px;padding-left: 23px;background: url("../images/20181116121048_9839.png") no-repeat left center;height: 100%;display: inline-block}*/
.w_f_one{ margin-bottom: 20px;color: #FFFFFF}
.w_f_one dl{ margin-bottom: 5px;}
.w_f_one dl dt{ font-weight: 400}
.w_f_one dl dd{ font-size: 22px;font-weight: bold;color: #AF8F6E}
.w_f_one dl dd:hover,.w_f_one dl dd a,.w_f_one dl dd a:hover{ color: #AF8F6E}
.w_f_one p { color: #999;margin-bottom: 5px;line-height: 22px;}
.w_f_one p a{ color: #999;}
.w_f_two{ float: left;color: #fff;}
.w_f_two a img.web_logo{ width: 130px;}
.w_f_two .share{ margin: 15px 0 8px;}
.w_f_two .share a{ float: left;margin: 0 30px 0 0;}
.other_a{ margin-top: 12px;}
.other_a a {  color: #fff;font-size: 13px;}
.other_a i { padding: 0 10px;}
.other_b{ margin-top: 5px}
.other_b span a{ font-size: 13px;color: #fff;line-height: 30px;float: left;width: 100%;height: auto;display: inline-block}
.other_b span:nth-of-type(2) a{ padding-left: 23px;background: url("../images/20181116121048_9839.png") no-repeat left center;height: 100%;display: inline-block}

@media (max-width: 1400px) {
    .max-wid{ width: 1300px;float: left;overflow: hidden}
}
@media (max-width: 1340px) {
    body{ min-width: 100%}
    .width_web,.width_web2{ width: 100%;}

    .about_txt,.about_img{ width: 50%}
    .about_img img{ max-width: none}

    .course_time{ width: 100%}
    .course_content{ width: 100%;margin: 0}
    .course_content .swiper-button-next{ right: 10px}
    .course_content .swiper-button-prev{ left: 10px;}

    .max-wid{ width: 1200px;}
}
@media (max-width: 1200px) {
    .btn_app .box{ width: 50px;height: 50px;background: url('../images/web_01.png') no-repeat center center;background-size: 25px;margin-top: -25px}

    .width_web,.width_web2{ padding: 0 1%;}
    .banner_index .swiper-pagination{ right:38px;}
    .index_two .width_web{ padding: 0 }
    .index_two_txt > div.index_two_con{ padding-left: 2%}
    .index_four ul li{ width: 19%}
    .item_six_one{ margin-bottom: 40px;}
    .item_six_one_left{ height: auto}
    .course_content_tit,.course_content_img{ width: 50%}
    .course_content_tit p{ width: calc( 100% - 235px)}

    .switch_pure .pure_pro ul li{ width: calc(50% - 40px);}
    .switch_pure .pure_pro ul li:nth-last-of-type(1),.switch_pure .pure_pro ul li:nth-last-of-type(2){ margin-bottom: 0}

    .max-wid{ width: 100%;}

    .model{ width: 48%}
    .new_list_one .new_slide_one ul li{ width: calc(50% - 1%);}
    .n_list_t1, .n_list_t2{ width: calc(50% - 1%)}
    /*.new_mark{ width: 100%}*/

    .new_det{width: 100%}
    .new_det_cont{ width: 70%}
    .new_det_tag{ width: 28%}
}
@media (max-width: 1120px) {
    .header{ padding: 0 0.5%}
    .header_logo{ width: 150px;line-height: 90px;}
    .header_list{ line-height: 100px;}
    /*.header_list ul li.active a:after, .header_list ul li:hover a:after{ bottom: 55px;}*/
    .header_search input{ width:155px;padding: 0 10px;margin-top: 33px;}
    .footer_nav_list ul li{ margin-right: 58px;}

    .index_two{ height: auto}
    .index_two_txt{ width: 100%;position: relative}
    .index_two_txt > div.index_two_con{ width: 40%}
    .index_two_img{ top: 10px;right: auto;left: 0;width: 60%;}
    .index_four{ margin: 20px auto 80px;}
    .about_txt{ padding: 0 45px 0 35px}
    .about_one{ padding: 50px 0 60px;height: auto}
    .about_two{ height: auto}
}
@media (max-width: 1050px) {
    .header_list ul li a{ padding:0 3px}
    .about_txt{ padding: 0 15px 0 15px}
    .about_honor_w{ width: 100%}
    .footer_nav_int{ width: 370px;}
    .new_slider .new_slider_txt{ background-color: rgba(0,0,0,.5)}
}
@media (max-width: 993px) {
    .header{ display: none}
    .header_wab{ display: inline-block}
    .inner_banner{ height: 400px}
    .inner_banner_i{ width:100%;height: 100%}
    .inner_banner_txt p{ font-size: 24px;margin-bottom: 0;letter-spacing: 8px;padding-left: 8px;line-height: 36px;margin-top: 15px;}
    .inner_banner_txt span{ font-size: 18px;}
    .footer{ display: none}
    .footer_s{ display: none}
    .web_footer{ display: inline-block}
    .btn_backtop{ width: 50px;height: 50px;bottom: 50px;display: none !important;}
    .btn_app{ width: 50px;height: 50px;bottom: 50px;display: inline-block}

    .about_one,.about_txt{ height: auto}
    .about_txt{ margin-bottom: 30px;}
    .about_txt, .about_img{ width: 100%}
    .about_img img{ width: 100%}
    /*.btn_backtop:after{ left: 10px;}*/
    /*.btn_backtop .text{ display: none}*/
    /*.btn_app:before{ background: #AF8F6E url('../images/web_01.png') no-repeat center center;background-size: 30px}*/

    .web_box{ display: inline-block}

    .inner_tit{ line-height: normal;font-size: 20px;}
    .inner_tit i:after{ width: 50%;height: 4px;}
    .about_list,.banner_nav{ display: none}

    .whole_banner_txt{ float: left;width: 100%;padding: 0 3%;height: auto}
    .whole_banner_img{ width: 100%;;height: auto;line-height: normal;text-align: center;margin-top: 20px;}
    .whole_banner_txt > div h2{ font-size: 22px;}
    .whole_banner_txt > div h3{ font-size: 18px;}
    .whole_banner_txt > div p{ font-size: 14px;}
    /*.item_img img{ max-width: none;height: 200px;}*/
    .item_img{ margin-top: 0}
    .item_img img{ width: 100%;}
    .switch_menu{ position: relative;bottom: auto;left: auto;margin-left: auto;}
    .switch_menu ul{ width: 100%;}
    .switch_menu ul li{ width: 50%}
    .switch_pure{ margin:40px 0 0}
    .switch_pure .pure_pro ul li{ margin: 0 0 80px;width: 100%;height: auto;min-height: 330px;padding: 0;}
    .switch_pure .pure_pro ul li:after{ position: inherit;}
    .switch_pure .pure_pro ul li:nth-of-type(3):before{ content: ""}
    .pure_pro_img, .pure_pro_txt{ width: 100%;height: auto}
    .pure_pro_txt{ padding: 0 3%}
    .pure_pro_txt > div h3{ text-align: center;font-size: 22px;}
    .pure_pro_txt > div p{ font-size: 13px;}
    .pure_pro_img{ height: 280px;}
    .about_tab div.item{ display: inline-block}
    .about_one { height: auto;padding: 0 0 0;}
    .about_txt { width:100%; padding: 0 0;position: relative;z-index: 100;}
    .about_txt > div.about_txt_m .inner_tit{ font-size: 22px;margin-bottom: 25px;}
    .about_txt_con{ float: right;width: 91%;background-color: #1c1c1c;margin-top: 50%;padding: 30px 6% 40px;}
    .about_txt > div.about_txt_m p{ font-size: 13px;line-height: 20px;}
    .about_txt_num{ margin-top: 15px;}
    .about_txt_num ul li{ width: 33.33%;margin-right: 0;padding-right: 6%}
    .about_txt > div.about_txt_m .about_txt_num ul li > p{ font-size: 20px;line-height: normal;}
    .about_txt > div.about_txt_m .about_txt_num ul li > span{ font-size: 12px;}
    .about_img{ width: 100%;position: absolute;top:55px;z-index: 8}
    .about_img img{ height: auto;width: 100%}
    .about_two{ height: auto}
    .pic img{ height: 300px;max-width: none}
    .pic .play a:nth-of-type(1){ width: 50px;height: 49px;background: url("../images/images_03.png") no-repeat 18px center;background-size: 20px;}
    .pic video{ height: 100%;}
    .section_title{ font-size: 22px;margin-top: 0;padding: 0 0}
    .section_title span{ display: none}
    .section_title em{ position: relative;background-image: none;-webkit-text-fill-color: rgb(175, 143, 110);}
    .section_title em:after{ width: 50%;height: 4px;background-color: rgb(175, 143, 110);content: "";position: absolute;left: 0;bottom: -15px;}
    .about_honor{ margin: 30px 0 0;width: 100%;padding: 0 0}
    .about_honor_w{ width: 100%}
    .about_honor_w .inner_tit { background: #272727;margin-bottom: 0;padding: 15px 0 3px;text-align: center;color: rgb(175, 143, 110);width: 100%}
    .about_honor_w .inner_tit i{ display: none}
    .about_honor_con{ min-height: auto;display: inline-block;margin: 0 0 15px 0;padding: 15px 3%;height: auto}
    .about_honor_con p{ margin: 0 0 15px;}
    .about_honor_con ul{ min-height: auto;display: inline-block;vertical-align: inherit;}
    .about_honor_con ul li{ width: 50%;padding: 0 0 20px ;}
    .about_honor_con ul li span{ padding: 0}
    .about_brand{ padding-bottom: 10px;}
    .about_brand .section_title{ margin-top: 0}
    .core_list{ margin-top: 42px;}
    .core_list ul li{ width: 20%;margin: 0 auto 10px}
    .core_list ul li > div{ width: 50px;height: 50px;}
    .core_list ul li > p{ font-size: 14px;}
    .core_list ul li.active > div img, .core_list ul li:hover > div img{ top:-48px;}
    .core_tab{ margin-top: 20px;}
    .core_tab > div.core{ padding: 0 0}
    .core_tab > div.core .core_tab_txt, .core_tab > div.core .core_tab_img{ width: 100%;padding: 0}
    .core_tab_txt .core_tab_txt_tit { font-size: 22px;line-height: 2;}
    .core_tab_txt h1,.core_tab_txt h2,.core_tab_txt h3,.core_tab_txt h4,.core_tab_txt h5,.core_tab_txt h6{ font-size: 14px;margin-bottom: 5px;}
    .core_tab_txt p{ font-size: 12px;margin-bottom: 5px;}
    .course_content{ width: 100%;padding: 0 4%;margin: 45px auto 0;}
    .course_content_tit{ width: 100%;height: auto;}
    .course_content_tit h3{ position: relative;width: 100%;text-align: center;font-size: 24px;border-right: none;height: 40px;line-height: 40px;color: #FFFFFF}
    .course_content_tit p{ width: 100%;position: relative;padding: 0;color: rgb(102, 102, 102);font-size: 14px;}
    .course_content_img{ width: 100%;height: auto;background-image: none !important;}
    .course_content_img img{ opacity: 1}
    .course_content .swiper-button-next, .course_content .swiper-button-prev{ width: 30px;height: 30px;display: none}
    .course_time{ width: 100%;padding: 0 0 0; margin: 30px auto 5px;}
    .course_time .swiper-container{ padding: 0 0 30px 0;background: url(../images/images_08.png) no-repeat bottom center;}
    .course_time .swiper-slide{ line-height: 25px;}
    .course_time .swiper-slide span{ font-size: 20px;}
    .inner_banner_txt span{ letter-spacing: 1px !important;}
    .max-wid{ width: 100%}
    #product #main .con{ padding: 0 4% 20px}
    #product #main .con .list{  flex-wrap: wrap;}
    #product #main .con .list .left{ width: 100%}
    #product #main .con .list .right { width: 100%;;height: 40px;border-bottom: 1px solid rgba(255,255,255,0.3);}
    #product #main .con .list .right .msg{ left:0;position: relative;flex-direction: row;justify-content: space-between;}
    #product #main .con .list .right .msg h3{ float: left;font-size: 14px;}
    #product #main .con .list .right .msg h4 { font-size: 16px;margin-top: 0; }
    .pro_che{ display: none}
    /*.pro_che .section_title{ font-size: 14px;;width: 200px;}*/
    /*.pro_che .section_title em:after{ position: relative}*/
    /*.nav_fix_pos { top: 160px; z-index: 100}*/
    .return_product{ width: 50px;height: 50px;}
    .p_slider_img{ width: 100%;height: 340px;line-height: normal;padding: 0;margin-top: 70px;}
    .p_slider_img .swiper-wrapper{ height: 260px;}
    .p_slider_img .swiper-slide{ padding-right: 0;text-align: center;height: 230px;line-height: 230px;margin-top: 30px;}
    .p_slider_img .swiper-slide img{ max-width: none;max-height: 80%}
    .p_slider_img .swiper-pagination{ position: relative;margin-top: 40px;}
    .p_slider_img .swiper-pagination-bullet{ width: 12px;height: 12px;margin: 0 10px;}
    .p_slider_txt{ width: 100%;height: auto;padding: 0 4%}
    .slider_txt_01 h3{ font-size: 22px;text-align: center}
    .slider_txt_01 h3:before{ width: 100%;height: 1px;}
    .slider_txt_01 p{ font-size: 14px;padding: 0;line-height: 22px;}
    .slider_txt_02{ margin: 20px 0;}
    .slider_txt_02 h3{ font-size: 18px}
    .slider_txt_02 ul li{ margin: 0 0 5px;width: 20%}
    .slider_txt_02 ul li p{ font-size: 13px;width: 100%;height: 36px;overflow: hidden}
    .slider_txt_02 ul li div{ width: 36px;height: 36px;}
    .slider_txt_02 ul li div img{ width: 100%;height: auto}
    .slider_txt_02 ul li:hover div img{ top:-100%}
    .p_detail_conter{ margin-bottom: 0;padding: 40px 4%}
    .p_detail_conter .section_title{ margin-top: 0}
    .p_detail_conter ul > li{ width: 100%;padding: 0 4%;height: 50px;line-height: 50px;}
    .about_tab div.item{ width: 100%;height: auto;padding: 0 0;margin-top: 50px;}
    /*.about_tab div.item .about_one .inner_tit*/
    .about_tab div.item .inner_tit{ display: inline-block}
    .about_honor .about_tab div.item .inner_tit{ display: inline-block;width: 100%;height: auto;text-align: center}
    .join_box .inner_tit{ display: inline-block}
    .good{ padding-top: 5px}
    .good_konw_img{ width: 100%;margin-bottom: 0}
    .good_konw_txt{ width: 100%;margin: 15px 0;}
    .good_konw_txt h2,.good_konw_txt h3,.good_konw_txt p{ display: none}
    .good_konw_txt span{ font-size: 16px;}
    .good_list { margin-bottom: 0; }
    .good_list ul li{ width: 25%;margin: 0 auto 15px;text-align: center;float: left}
    .good_list ul li img{ width: 40px;}
    .good_list ul li p{ font-size: 12px;width: 100%;height: 20px;overflow: hidden}
    .about_tab div.item:nth-of-type(2){ margin-top: 50px;}
    .join3{ margin: 5px 0 0}
    .join3 ul li{ width: 47%;height: 280px;background-color: #000000;border-left: 0;border-bottom: 3px solid #AF8F6E }
    .join3 ul li .join3_cell{ padding: 0}
    .join3 ul li .join3_cell:after{ right: 5%}
    .join3 ul li .join3_cell h4{ padding: 0 5%;font-size: 20px;}
    .join3 ul li .join3_cell h4:after{ left: 5%}
    .join3 ul li .join3_cell p{ padding: 0 5%;font-size: 14px;}
    .main_01, .main_02{ padding: 0;}
    .main_01{ padding-top: 5px}
    .main_01 .main_half{ width: 100%;margin-bottom: 20px;}
    .main_01 .main_half h4{ font-size: 16px;margin-bottom: 10px;}
    .main_01 .main_half p{ font-size: 14px;line-height: 20px;margin-bottom: 3px;}
    .main_02 h3{ font-size: 18px;margin-top: 10px;}
    .model{ width: 100%}
    .model h4{ font-size: 16px;height: 40px;line-height: 40px;-webkit-text-fill-color: #AF8F6E;margin-top: 5px;}
    .model ul li{ margin-top: 10px;}
    .model ul li p{ font-size: 14px;}
    .store{ height: 0;}
    .store_web{ width: 100%;height: auto;overflow: hidden;display: inline-block;margin-top: 5px;}
    .store_web p{ margin-bottom: 15px;}
    .store_web p img{ max-width: 100%;}
    #product #main .case .list{ margin-bottom: 0;padding: 20px 0 40px;}
    #product #main .case .list .right .msg{ padding: 0}

    .new_det{ width: 100%;margin: 40px 0}
    .new_det_cont{ width: 100%;padding: 4%}
    .new_det_tag,.correlation{ display: none}
    .pre, .next{ width: 100%}
    .pre{ padding-left: 0}
    .next span{ float: left}
    .new_item{ width: 100%;padding: 0 4%;margin: 40px 0}
    .new_item_list li{ width: 100%;margin-right: 0;}
    .new_item_list_img{ height: auto}
    .new_item_list_img img{ display: inline-block;max-width: 100%}
    .new_det_cont_head h1{ font-size: 16px;}
    .n_head_des{ float: left;width: 100%;padding: 2%;font-size: 13px;}
    .n_head_cont p{ font-size: 13px;}
    .n_head_cont img{ height: auto !important;width: 100% !important;}
    .company_intr{ padding: 0 1%}
    .int_list ul li{ width: 100%;margin-right: 0;height: 165px;}
    .int_list ul li dd img{ max-width: 35px;}
    .int_list ul li dt{ font-size: 18px;margin-top: 15px;}
    .conter_map{ margin-top: 35px;}
    .map_form{ padding: 10px 0 0;}
    .map_form form input{ width: 48.5%;margin-bottom: 15px;}
    .map_form form textarea{ margin-bottom: 15px;}
    .answer_list{ padding: 3%}
    .int_answer .item .item_tit{ font-size: 14px;}
    .int_answer .item .ico{ margin-right: 0}
    .int_answer .faq_c_z{ padding: 2%}
    .int_answer .faq_c_z h1, .int_answer .faq_c_z h2, .int_answer .faq_c_z h3, .int_answer .faq_c_z h4, .int_answer .faq_c_z h5, .int_answer .faq_c_z h6{ font-size: 14px;}
    .join{ margin-top: 40px;padding: 0 4%}
    .join_one h2, .join_two h2, .join_three h2, .join_four h2{ font-size: 18px;}
    .join_one ul li{ width: 100%;height: auto;padding: 5%;min-height: 126px;}
    .join_one ul li h3{ font-size: 16px;margin-bottom: 0}
    .join_one ul li span{ font-size: 13px;}
    .join_four{ margin: 40px 0;padding: 0}
    .job_list_tit{ margin-top: 5px;}
    .job_list_hide_con{ padding: 0 0 15px 0}
    .job_list_hide_con h3{ font-size: 16px;}
    .job_list_hide_con p{ font-size: 13px;}
    .color{ -webkit-text-fill-color: #AF8F6E;}
    .list_page ul a{ padding: 9pt 16px;}
    .pre a, .next a{ font-size: 13px;}

    .index_two,.index_pro,.index_three,.index_four,.index_five,.index_six{ display: none}

    .ewm-tk .ewm{ text-align: center;width: 150px;height: 150px}
    .ewm-tk .ewm .ewm-new img{ max-width: 150px;display: inline-block}

    .house_item .pure_pro_txt > div h3{ font-size: 14px;}
    .house_item .pure_pro_img { height: 160px;line-height: 160px;}

    .w_f_two .share a{ margin-right: 12px}
    .share a{ background-size: 18px !important;width: 18px;height: 18px;}

    .whole_banner{ display: none}
    .web_whole{ display: inline-block}
}
@media (max-width: 768px) {
    .index_one{ display: none}
    .web_box_one,.web_box_six{ display: inline-block}
    .scene .scene_img img{ width: auto;height: 100%;margin-left: -15%}

    .new,.slogan{ display: none}
    #new{ display: inline-block}
}
@media (max-width: 380px) {
    .inner_banner{ height: 280px;}
    .about_txt_con { padding: 30px 4% 40px;}
    .pure_pro_img { height: 200px;line-height: 200px;}
    .good_list ul li{ width: 33.33%;}
    .list_page ul a{ padding: 9pt 13px;}
    .list_page ul li:nth-of-type(3) a{ padding-left: 5px;}
    .list_page ul li:nth-last-of-type(2) a{ padding-right: 5px;}

    .w_new_desc h2{ font-size: 13px;}
    .w_new_desc p{ font-size: 12px;}
    .web_footer_two span a{ font-size: 12px;color: #fff}

    .core_list ul li > p{ font-size: 12px;height: 17px;overflow: hidden}
    .web_house_tab > div.house_item img.house_item_banner{ max-height: 200px;}

    .house_item .pure_pro_img { height: 160px;line-height: 160px;}
}

/*seo*/
.seo_list,.seo_list_pro,.seo_list_word,.seo_list_word ul,.seo_new_tab,.seo_new_list{ float: left;width: 100%;height: auto;overflow: hidden}
.seo_list .seo_1400{ width:1400px;margin:0 auto;}
.seo_list .seo_1200{ width:1200px;margin:0 auto;}
.seo_list{ margin-bottom: 60px; margin-top: 30px;}
.seo_list_pro,.seo_list_word{ margin-bottom: 40px}
.seo_list_pro h3,.seo_list_word h3,.seo_new_tab{ font-size: 24px;line-height: 50px;color: #FFFFFF;margin-bottom: 10px;font-weight: 400}
.seo_list_pro h3 a,.seo_list_word h3 a{ float: right;font-size: 16px;color: #999}
.seo_list_pro ul li{ float: left;width: 24.1%;height: 360px;overflow: hidden;margin-right: 1.2%;background-color:#232323}
.seo_list_pro ul li:nth-of-type(4){ margin-right: 0}
.seo_list_pro ul li .seo_list_pro_img{ float: left;width: 100%;height: 300px;line-height: 300px;overflow: hidden;background-color: #232323;text-align: center}
.seo_list_pro ul li .seo_list_pro_img img{ max-width: 85%;max-height: 85%;transition: all .6s}
.seo_list_pro ul li:hover .seo_list_pro_img img{ transform: scale(1.1)}
.seo_list_pro ul li .seo_list_pro_txt{ float: left;width: 100%;height: 60px;overflow: hidden;line-height: 60px;padding: 0 3%;text-align: center;background-color: #232323;}
.seo_list_pro ul li .seo_list_pro_txt p{ display: inline-block;vertical-align: middle;line-height: 30px;font-size: 18px;color: #999;}
.seo_list_word h3{ border-bottom: 1px solid #d8d8d8;}
.seo_list_word ul{ margin-top: 10px;}
.seo_list_word ul li{ float: left;margin-right: 10px;line-height: 40px;}
.seo_list_word ul li a{ font-size: 16px;color: #555555;transition: all .6s}
.seo_list_word ul li a:hover{ color: #999;}
.seo_new_tab{ border-bottom: 1px solid #d8d8d8;}
.seo_new_tab ul{ float: left;width: 100%}
.seo_new_tab ul a{ float: right;font-size: 16px;color: #999;}
.seo_new_tab ul li{ float: left;width: auto;height: 100%;overflow: hidden;margin-right: 30px;color: #999;font-size:20px;}
.seo_new_tab ul li.active{ color: #FFFFFF;}
.seo_new_list{ margin-top: 20px;}
.seo_new_list > div.item_seo{ display: none;float:left;width:100%}
.seo_new_list > div:nth-of-type(1).item_seo{ display: inline-block}
.seo_new_list_one ul li,.seo_new_list_two ul li{ float: left;width: 31.6%;height: auto;overflow: hidden;margin-right: 2.6%}
.seo_new_list_one ul li:nth-of-type(3),.seo_new_list_two ul li:nth-child(3n){ margin-right: 0}
.seo_new_list_one ul li a > div{ float: left;width: 100%;height: 240px;overflow: hidden;background-size: cover !important;}
.seo_new_list_one ul li a > p{ margin-top: 20px;font-size: 18px;transition: all .6s;color: #555;float: left;width: 100%;line-height: 26px;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;text-align:center}
.seo_new_list_one ul li:hover a > p{ color: rgb(175, 143, 110);}
.seo_new_list_two ul li{ margin-bottom: 8px;}
.seo_new_list_two ul li a{ float: left;width: 100%;height: 40px;line-height: 40px;position: relative;padding-right: 90px;color: #999;font-size: 16px;transition: all .5s;overflow: hidden;text-overflow: ellipsis;white-space: nowrap;}
.seo_new_list_two ul li:hover a{ color: rgb(175, 143, 110);}
.seo_new_list_two ul li a span{ position: absolute;right: 0;top:0;width: 80px;height: 40px;font-size: 14px;}
.seo_new_list_two ul li:hover a span{ color: rgb(175, 143, 110);}
/*end*/

.page_join{ width: 100%;height: auto;overflow: hidden;margin: 85px auto 60px;}
.page_join_con{ width: 100%;height: auto;overflow: hidden}
.page_join_con{ float: left;width: 100%;height: auto;background: #212121;padding: 30px;}


@media (max-width: 1416px) {
    .seo_list .seo_1400{ width:1300px;}
}
@media (max-width: 1316px) {
    .seo_list .seo_1400{ width:1200px;}
}
@media (max-width: 1216px) {
    .seo_list .seo_1400{ width:100%}
    .seo_list .seo_1200{ width:100%;}
}
@media (max-width: 993px) {
    .seo_list_pro ul li{ float: left;width: 49%;height: 360px;overflow: hidden;margin-right: 2%;margin-bottom: 10px}
    .seo_list_pro ul li:nth-child(2n),.seo_new_list_two ul li:nth-child(2n){ margin-right: 0}
    .seo_new_list_two ul li{ width: 49%;margin-right: 2%;}
    .seo_new_list_two ul li:nth-child(odd){ margin-right: 2%}
}
@media (max-width: 768px) {
    .seo_list_pro ul li{ float: left;width: 100%;height: auto;overflow: hidden;margin-right: 0;margin-bottom: 10px}
    .seo_new_tab ul li{ font-size: 24px;margin-right: 15px}
    .seo_new_list_one ul li, .seo_new_list_two ul li{ width: 100%;margin-right: 0;}
    .seo_new_list_one ul li{ font-size: 16px;margin-bottom: 15px;}
    .seo_new_list_one ul li a > p{ margin-top: 8px}
    .seo_new_list_two ul li:nth-child(odd){ margin-right: 0}
    .seo_list_word ul li a{ font-size:14px;}
    .seo_list_new{ display:none}

    .page_join_con{ padding: 4% 1%;}
}
