@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
	color:#424242;
}
ul,li{
    list-style:none;
}
body {
	position: relative;
	margin: 0px;
	line-height:180%;
	color:#424242;
}
@font-face {
    font-family: 'iconfont';  /* Project id 2633673 */
    src: url('//at.alicdn.com/t/font_2633673_2wj8q63yn0b.woff2?t=1624805386769') format('woff2'),
    url('//at.alicdn.com/t/font_2633673_2wj8q63yn0b.woff?t=1624805386769') format('woff'),
    url('//at.alicdn.com/t/font_2633673_2wj8q63yn0b.ttf?t=1624805386769') format('truetype');
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.wraper,.wrapper{
	width:1280px;
	margin:0 auto;
}
/*头部*/
.tophead{
	width:100%;
	height:36px;
	line-height:36px;
	font-size:15px;
	background:#EEEEEE;
	overflow:hidden;
}
.tophead ul{
	width:1280px;
	margin:0 auto;
}
.tophead ul .welcome{
	float:left;
	width:50%;
	color:#424242;
}
.tophead ul .en{
	float:left;
	width:50%;
	text-align:right;
	text-transform:uppercase;
}
.tophead ul .en img{
	display:inline-block;
	position:relative;
	top:5px;
}
.tophead ul .en a:hover{
	color:#E85369
}
.header {
	background:#FFFFFF;
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(229,229,229);
}
.header .box {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .box .logo-box {
    width: 560px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .box .logo-box img {
    width: 203px;
    height: 71px;
}
.header .box .logo-box .txt-box {
    position: relative;
}
.header .box .logo-box .txt-box:after {
    content: '';
    position: absolute;
    top: 2px;
    left: -15px;
    width: 1px;
    height: 60px;
    background:#909090;
}
.header .box .logo-box .txt-box .title {
    font-size: 22px;
    font-weight: 700;
	color:#202020;
	letter-spacing:1.5px;
}
.header .box .logo-box .txt-box .small-title {
    font-size: 18px;
    color:#606060;
}
.header .box .search {
    width: 300px;
    height: 44px;
    border: 2px solid #9ACF16;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.header .box .search input {
    width: 222px;
    height: 44px;
    border: none;
    outline: none;
    padding: 20px;
    font-size: 15px;
    font-family: "MicrosoftYaHeiSemibold";
    color: rgb(149, 149, 149);
}
.header .box .search .btn {
    width: 78px;
    height: 44px;
    background: #9ACF16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    position: absolute;
    right: -2px;
    top: -2px;
    border: none;
    outline: none;
}
.header .box .search .btn img{
    width: 20px;
    height: 20px;
}
.menu-box {
	background:#FFF;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(229,229,229);
}
.menu-box .box {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-box li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.menu-box li dl {
    width: 140px;
    position: absolute;
    top: 44px;
	left:15px;
    z-index: 999999;
    background: rgba(255,255,255,.85);
    color: #646464;
    font-size: 14px;
    display: none;
}
.menu-box li dl dd {
    padding: 12px 25px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(229,229,229);
    cursor: pointer;
}
.menu-box li dl dd .iconfont{
	position:absolute;
	right:20px;
}
.menu-box li dl dd:hover {
    background: #505050;
}
.menu-box li dl dd:hover span {
    color: #fff;
}
.menu-box li dl dd span,svg {
    font-size: 14px;
    font-family: "MicrosoftYaHeiSemibold";
    color: rgb(103, 103, 103);
    line-height: 1.786;
}
.menu-box li>a {
    font-size: 16px;
    font-family: "MicrosoftYaHeiSemibold";
    color: #202020;
    line-height: 100%;
    text-align: left;
    font-weight: bold;
    padding: 20px 52px;
	position: relative;
}
.menu-box li a.select {
    position: relative;
}
.menu-box li:hover>a{
	color:#9AD016;
}
.menu-box li a.select:after,.menu-box li:hover>a:after{
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 65px;
    height: 4px;
    background: #9AD016;
}
.menu-box li:first-child a {
    padding-left: 0px;
}
.menu-box li:first-child a.select:after,.menu-box li:first-child:hover a:after {
    left: 0;
	transform: translate(-1px, 0);
}
.menu-box li:last-child a {
    padding-right: 0px;
}
.menu-box li:last-child a.select:after ,.menu-box li:last-child:hover a:after {
    right: 0;
	transform: translate(-7px, 0);
}
.menu-box .box .mall-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.menu-box .box .mall-box:after {
    content: '';
    position: absolute;
    top: 3px;
    left: -35px;
    width: 2px;
    height: 30px;
    background: rgb(229,229,229);
}
.menu-box .box .mall-box a {
    margin: 0 10px;
    transition: all .7s;
}
.menu-box .box .mall-box a:hover {
    transform: scale(1.2,1.2);
}
.menu-box .box .mall-box a:last-child {
    margin: 0 0 0 10px;
}


.customer-box {
    width: 155px;
    height: 326px;
    position: fixed;
    right: 0;
    bottom: 200px;
    border: 2px solid #c8161d;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
.customer-box .top {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #c8161d;
}
.customer-box .top .title {
    color: #fff;
}
.customer-box .top .close-btn {
    cursor: pointer;
}
.customer-box .content {
    flex: 1;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.customer-box .content .qq-btn {
    width: 130px;
    height: 30px;
    border: 1px solid rgb(221,221,221);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}
.customer-box .content .name {
    font-size: 12px;
    color: rgb(85, 85, 85);
    line-height: 2.4;
    text-align: center;
}
.customer-box .content .phone {
    font-size: 16px;
    color: rgb(34, 34, 34);
    font-weight: bold;
    line-height: 2.5;
    text-align: center;
}
.customer-box .content .code {
    width: 97px;
    height: 97px;
}
.customer-box .content .lianxi {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    position: relative;
    cursor: pointer;
}
.customer-box .content .lianxi:after {
    content: '';
    position: absolute;
    width: 120px;
    height: 1px;
    background: rgb(221,221,221);
    top: -10px;
    left: -20px;
}
.customer-box .content .lianxi .title {
    font-size: 12px;
    color: rgb(34, 34, 34);
    line-height: 2.167;
    text-align: center;
    margin-left: 10px;
}


.foot {
    width: 100%;
    height: 515px;
    background: rgb(33,33,33);
}
.foot .content {
    width: 1400px;
    margin: 0 auto;
}
.foot .content .top {
    height: 380px;
    display: flex;
    align-items: center;
    padding: 70px 0;
}
.foot .content .top .top-left {
    width: 910px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.foot .content .top .top-left .nav{
    display: flex;
    flex-direction: column;

}
.foot .content .top .top-left .nav .title {
    margin-bottom: 25px;
}
.foot .content .top .top-left .nav .title a {
    font-size: 18px;
    color: rgb(255, 255, 255);
    text-align: left;
    text-decoration: none;
}
.foot .content .top .top-left .nav .small-title {
    margin-bottom: 20px;
}
.foot .content .top .top-left .nav .small-title a {
    font-size: 14px;
    color: rgb(148, 148, 148);
    text-align: left;
    text-decoration: none;
}
.foot .content .top .top-left .nav .small-title a:hover {
    color: rgb(218,37,29);
}
.foot .content .top .top-right {
    height: 100%;
    margin-left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.foot .content .top .top-right .qrcode-box {
    width: 360px;
    height: 130px;
    display: flex;
    justify-content: flex-end;
}
.foot .content .top .top-right .qrcode-box .qrcode {
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 40px;
}
.foot .content .top .top-right .qrcode-box .qrcode img {
    width: 100%;
    height: 100%;
}
.foot .content .top .top-right .qrcode-box .qrcode .title {
    font-size: 14px;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 5px 0;
}
.foot .content .top .top-right .phone-box {
    display: flex;
    justify-content: flex-end;
}
.foot .content .top .top-right .phone-box .phone .num{
    font-size: 19px;
    color: rgb(255, 255, 255);
    text-align: center;
}
.foot .content .top .top-right .phone-box .phone p {
    font-size: 14px;
    color: rgb(148, 148, 148);
    text-align: center;
}

.foot .content .bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 55px;
}
.foot .content .bottom .font {
    font-size: 14px;
    color: rgb(148, 148, 148);
    text-align: center;
}

/*banner*/
.banner {
    width: 100%;
    /*height: 720px;*/
    position: relative;
    overflow: hidden;
}
.banner .swiper-container {
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
}
.banner .swiper-pagination{
	bottom:30px!important;
}
.swiper-pagination-bullet {
    width: 8px!important;
    height: 8px!important;
    background: #fff!important;
    opacity: 1!important;
    margin: 0 10px!important;
}
.swiper-pagination-bullet-active {
    background: rgb(218,37,29)!important;
}
.swiper-container-horizontal>.swiper-pagination-bullets {
    /*margin-bottom: 50px;*/
}
.swiper-pagination-bullet-active {
    position: relative;
}
.swiper-pagination-bullet-active:after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgb(218,37,29);
}

.bar-btn-box {
    width: 100%;
    background: #fff;
}

.bar-btn-box .bar-btn {
    width: 1280px;
    height: 135px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.bar-btn-box .bar-btn .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    cursor: pointer;
}
.bar-btn-box .bar-btn .box:hover {
    background: rgb(218,37,29);
}
.bar-btn-box .bar-btn .box:hover .text-box .title {
    color: #fff;
}
.bar-btn-box .bar-btn .box:hover .text-box .small-title {
    color: rgba(255, 255, 255, 0.502);
}

.bar-btn-box .bar-btn .box.select {
    background: rgb(218,37,29);
}

.bar-btn-box .bar-btn .box.select .text-box .title {
    color: #fff;
}
.bar-btn-box .bar-btn .box.select .text-box .small-title {
    color: rgba(255, 255, 255, 0.502);
}


.bar-btn-box .bar-btn .box .img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.bar-btn-box .bar-btn .box .text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
}
.bar-btn-box .bar-btn .box .text-box .title {
    font-size: 28px;
    color: rgb(51, 51, 51);
    font-family: "MicrosoftYaHeiSemibold";
    text-transform: uppercase;
    line-height: 1.738;
    text-align: center;
}
.bar-btn-box .bar-btn .box .text-box .small-title {
    font-size: 12px;
    font-family: "Arial";
    color: rgb(102, 102, 102);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.877;
}

.pro-box {
    width: 100%;
    height: 555px;
    background: rgb(244,244,244);
    padding: 35px 0;
}
.pro-box .box {
    width: 1280px;
    margin: 0 auto;
    display: flex;
    position: relative;
}
.pro-box .box .pro {
    width: 310px;
    height: 480px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.pro-box .box>a {
    margin-right: 20px;
}
.pro-box .box .pro .img {
    width: 200px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pro-box .box .pro .img img {
    width: 100%;
}
.pro-box .box .pro .info {
    margin-bottom: 20px;
}
.pro-box .box .pro .info .title {
    font-size: 24px;
    font-family: "MicrosoftYaHeiSemibold";
    color: rgb(28, 28, 28);
    text-align: center;
    font-weight: bold;
}
.pro-box .box .pro .info .small-title {
    font-size: 16px;
    color: rgb(132, 132, 132);
    text-align: center;
}
.pro-box .box .pre {
    width: 30px;
    height: 65px;
    background: rgb(218,37,29);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    cursor: pointer;
}
.pro-box .box .next {
    width: 30px;
    height: 65px;
    background: rgb(218,37,29);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    cursor: pointer;
}
.pro-box .box .pre,.next span {
    color: #fff;
}

.ab-box {
    width: 100%;
	background:#F5F5F5;
    height: 670px;
    padding: 70px 0;
}
.ab-box .box {
    width: 1280px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.ab-box .box .txt-box {
    width: 660px;
    height: 100%;
	float:left;
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;*/
    /*padding: 20px 0;*/
}
/*.ab-box .box .txt-box .text-box {
    height: 150px;
}*/
.ab-box .box .txt-box .title {
    font-size: 46px;
    font-family: "MicrosoftYaHeiSemibold";
    color: #020202;
    text-transform: uppercase;
    text-align: left;
    font-weight: 500;
	line-height:100%;
	margin-bottom:40px;
}
.ab-box .box .txt-box .small-title {
    font-size: 22px;
    font-family: "MicrosoftYaHeiSemibold";
    color: rgb(103, 103, 103);
    line-height: 1.415;
    text-align: left;
    margin-top: 20px;
}
.ab-box .box .txt-box .text {
    font-size: 16px;
    font-family: "Microsoft YaHei";
    color: #424242;
    line-height: 200%;
	letter-spacing:1.2px;
}
.ab-box .box .txt-box .text{
	margin-bottom:20px;
}
.ab-box .box .txt-box .btn {
    width: 200px;
    height: 40px;
	border:#ACCE56 2px solid;
    border-radius: 25px;
    text-align: center;
    line-height: 36px;
    color: #ACCE56;
}
.ab-box .box .txt-box .icon-box1 {
	width:60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	margin:0;
	margin-top:80px;
	margin-bottom:40px;
    /*padding: 40px 15px;
    border-top: 1px solid rgb(229,229,229);
    border-bottom: 1px solid rgb(229,229,229);*/
}
.ab-box .box .txt-box .icon-box1 .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .7s;
}
.ab-box .box .txt-box .icon-box1 .icon:hover {
    transform: scale(1.1,1.1);
}
.ab-box .box .txt-box .icon-box1 .img {
    width: 52px;
    height: 40px;
}
/*.ab-box .box .txt-box .icon-box1 .img img {
    width: 100%;
    height: 100%;
}*/
.ab-box .box .txt-box .icon-box1 .name {
    font-size: 16px;
    font-family: "MicrosoftYaHeiSemibold";
    color: rgb(103, 103, 103);
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
	display:none
}
.ab-box .box .img-box {
    width: 515px;
	padding-top:100px;
	float:right;
    position: relative;
}
.ab-box .box .img-box .pre {
    width: 50px;
    height: 50px;
    background: rgb(218,37,29);
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ab-box .box .img-box .next {
    width: 50px;
    height: 50px;
    background: rgb(218,37,29);
    position: absolute;
    bottom: 20px;
    left: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.ab-box .box .img-box .pre,.next span {
    color: #fff;
}
/************************************************************/
/*产品展示轮播*/
#room_default{
	width:100%;
	height:auto;
	margin:0; 
	padding:0;
	clear:both;
}
#room_default .room_explain{
	width:100%; 
	height:auto; 
	margin:0 auto;
	padding:0; 
	clear:both;
	background-color:#DBDBDB;
}
#room_default .room_explain .tab_switch{
	width:100%; 
	height:auto; 
	margin:0 auto; 
	padding:0; 
	clear:both;
}
#room_default .room_explain .tab_switch ul{
	margin:0; 
	padding:0;
	list-style-type:none;
	width:100%; 
	height:auto; 
	display:-webkit-box; 
	display:-moz-box; 
	display:-ms-flexbox; 
	display:-webkit-flex;
	display:flex; 
	-webkit-box-pack:space-around; 
	-ms-justify-content:space-around; 
	-moz-justify-content:space-around; 
	-webkit-justify-content:space-around; 
	justify-content:space-around; 
	-webkit-box-align:center; 
	-ms-align-items:center; 
	-moz-align-items:center; 
	-webkit-align-items:center; 
	align-items:center; 
	-webkit-box-orient:horizontal; 
	-ms-flex-direction:row; 
	-moz-flex-direction:row; 
	-webkit-flex-direction:row; 
	flex-direction:row; 
	-webkit-box-flex:1.0;
	-moz-flex-shrink:1; 
	-webkit-flex-shrink:1; 
	flex-shrink:1;
}
#room_default .room_explain .tab_switch ul li{
	margin:0; 
	padding:0; 
	display:-webkit-box; 
	display:-moz-box; 
	display:-ms-flexbox; 
	display:-webkit-flex; 
	display:flex; 
	flex:1;
}
#room_default .room_explain .tab_switch ul li a{
	margin:0; 
	padding:0; 
	display:block; 
	text-align:center; 
	position:relative; 
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	-ms-box-sizing:border-box; 
	-o-box-sizing:border-box; 
	box-sizing:border-box;
}
#room_default .room_explain .tab_switch ul li a .ppp{
	width:100%; 
	height:auto; 
	overflow:hidden;
	display:-webkit-box; 
	display:-moz-box; 
	display:-ms-flexbox; 
	display:-webkit-flex; 
	display:flex; 
	-webkit-box-pack:center; 
	-ms-justify-content:center; 
	-moz-justify-content:center; 
	-webkit-justify-content:center; 
	justify-content:center; 
	-webkit-box-align:center; 
	-ms-align-items:center;
	-moz-align-items:center; 
	-webkit-align-items:center; 
	align-items:center; 
	-webkit-box-orient:vertical; 
	-ms-flex-direction:column;
	-moz-flex-direction:column;
	-webkit-flex-direction:column; 
	flex-direction:column; 
	-webkit-box-flex:1.0;
	-moz-flex-shrink:1; 
	-webkit-flex-shrink:1;
	flex-shrink:1;
}
#room_default .room_explain .tab_switch ul li a .ppp img{
	height:50px; 
	width:auto; 
	border:0px; 
	margin:0 auto;
}
#room_default .room_explain .tab_switch ul li a .nnn{
	color:#FFF; 
	font-size:14px;
	line-height:14px;
	width:100%; 
	height:auto; 
	margin:0; 
	padding:10px 0px 10px 0px; 
	overflow:hidden;
}
#room_default .room_explain .tab_switch ul li:not(:first-child) a{
	border-left:#FFF solid 1px;
}
#room_default .room_explain .swiper-container{
	width:1280px;
	margin: 0 auto; 
	height:auto; 
	position:relative;
}
#room_default .room_explain .swiper-container .swiper-wrapper{
	width:100%; 
	height:auto; 
	margin:0;
	padding:0; 
	position:relative;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide{  }
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide a{
	margin:0; 
	padding:30px 0; 
	width:100%;
	display:block; 
	text-align:center; 
	webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box; 
	box-sizing:border-box;
	-webkit-transition:all .4s ease;
	-moz-transition:all .4s ease;
	-ms-transition:all .4s ease;
	transition:all .4s ease;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide .ppp{
	width:100%; 
	height:auto;
	overflow:hidden; 
	text-align:center;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide .ppp img{
	/*height:auto; 
	width:100%; */
	max-width:100%;
	max-height:100%;
	border:0px; 
	margin:0 auto;
	transition:all .3s linear;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide .ppp .img_wrap{
	width: 80%;
	height: 121px;
	overflow: hidden;
	margin: 0 auto;
}
/*#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide a:hover .ico_img1,#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide a:hover .ico_img2{
	transform:translateY(-100%);
}*/
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide .nnn{
	color:#424242;
	font-size:14px; 
	line-height:14px; 
	width:100%;
	height:auto; 
	margin:0;
	padding:10px 0px 10px 0px;
	overflow:hidden; 
	text-align:center;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide a:hover{
	background: #99cf15;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide.on{}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide.on .nnn{
	color:#fff;
}
#room_default .room_explain .swiper-container .swiper-wrapper .swiper-slide.on a{
	background: #99cf15;
}
#room_default .room_explain .swiper-container .swiper-button-next{opacity:0; width:17px; height:100%; margin-top:0px; background-image:none; text-align:center; position:absolute; right:0px; top:0px; bottom:0px; z-index:10; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-justify-content:center; -moz-justify-content:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:center; -ms-align-items:center; -moz-align-items:center; -webkit-align-items:center; align-items:center; -webkit-box-orient:vertical; -ms-flex-direction:column; -moz-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; -webkit-box-flex:1.0; -moz-flex-shrink:1; -webkit-flex-shrink:1; flex-shrink:1;}
#room_default .room_explain .swiper-container .swiper-button-next i{color:#FFF; display:inline-block; font-size:24px; line-height:24px;}
#room_default .room_explain .swiper-container .swiper-button-prev{opacity:0; width:17px; height:100%; margin-top:0px; background-image:none; text-align:center; position:absolute; left:0px; top:0px; bottom:0px; z-index:10; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-justify-content:center; -moz-justify-content:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:center; -ms-align-items:center; -moz-align-items:center; -webkit-align-items:center; align-items:center; -webkit-box-orient:vertical; -ms-flex-direction:column; -moz-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; -webkit-box-flex:1.0; -moz-flex-shrink:1; -webkit-flex-shrink:1; flex-shrink:1;}
#room_default .room_explain .swiper-container .swiper-button-prev i{color:#FFF; display:inline-block; font-size:24px; line-height:24px; -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -ms-transform:rotate(180deg); -o-transform:rotate(180deg); transform:rotate(180deg);}

#room_default .room_content{width:100%; height:auto; margin:0 auto; padding:0; clear:both;min-height: 500px;background: #fafafa;}
#room_default .room_content .tab_content{display:none; width:100%; height:auto; margin:0 auto; padding:0; clear:both;}
#room_default .room_content .tab_content:nth-of-type(1){display:block;}
#room_default .room_content .ppp_txt{width:100%; height:auto; margin:0; padding:0; position:relative;}
#room_default .room_content .ppp_txt .ppp{width:100%; height:auto; margin:0; padding:0; position:relative;}
#room_default .room_content .ppp_txt .ppp img{width:100%; height:auto; border:0px; -webkit-animation:fadeInLeft 0.5s ease-in-out 0s 1; animation:fadeInLeft 0.5s ease-in-out 0s 1;}
#room_default .room_content .ppp_txt .txt{width:50%; height:100%; margin:0; padding:0; position:absolute; right:0px; top:0px; bottom:0px; -webkit-animation:fadeInUp 1s ease-in-out 0s 1; animation:fadeInUp 1s ease-in-out 0s 1;}
#room_default .room_content .ppp_txt .txt dl{margin:0; padding:0; width:90%; height:100%; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-justify-content:center; -moz-justify-content:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:start; -ms-align-items:flex-start; -moz-align-items:flex-start; -webkit-align-items:flex-start; align-items:flex-start; -webkit-box-orient:vertical; -ms-flex-direction:column; -moz-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; -webkit-box-flex:1.0; -moz-flex-shrink:1; -webkit-flex-shrink:1; flex-shrink:1;}
#room_default .room_content .ppp_txt .txt dl dt{margin:0; padding:0; float:none;}
#room_default .room_content .ppp_txt .txt dl dd{margin:0; padding:0; float:none;}
#room_default .room_content .ppp_txt .txt dl dt:nth-of-type(1){height:20px; overflow:hidden;}
#room_default .room_content .ppp_txt .txt dl dt:nth-of-type(2){height:40px; overflow:hidden;}
#room_default .room_content .ppp_txt .txt .nnn{color:#FFF; font-size:32px; line-height:32px; padding-bottom:15px; border-bottom:#FFF solid 1px;}
#room_default .room_content .ppp_txt .txt .uuu{color:#fff; font-size:24px; line-height:24px; padding-bottom:20px;}
#room_default .room_content .ppp_txt .txt .uuu p{margin:0; padding:0;}
#room_default .room_content .ppp_txt .txt .uuu p + p{padding-top:10px;}
#room_default .room_content .ppp_txt .txt .zzz{color:#FFF; font-size:14px; line-height:22px;}
#room_default .room_content .ppp_txt .txt .zzz p{margin:0; padding:0;}
#room_default .room_content .ppp_txt .txt .zzz p + p{padding-top:5px;}
#room_default .room_content .ppp_txt .txt a.button{margin:0; padding:0; width:150px; height:38px; line-height:38px; color:#FFF; font-size:14px; border:#005bb1 solid 1px; background-color:#005bb1; display:inline-block; text-align:center; text-transform:uppercase; white-space:nowrap; text-align:center; overflow:hidden;}
#room_default .room_content .ppp_txt .txt a.button b{width:100%; height:100%; display:inline-block; text-align:center; font-weight:normal; -webkit-transition:all 0.5s ease-in-out 0s; -moz-transition:all 0.5s ease-in-out 0s; -o-transition:all 0.5s ease-in-out 0s; transition:all 0.5s ease-in-out 0s;}
#room_default .room_content .ppp_txt .txt a.button b:nth-of-type(1){-webkit-transform:translateX(-100%); transform:translateX(-100%);}
#room_default .room_content .ppp_txt .txt a.button b:nth-of-type(2){-webkit-transform:translateX(-100%); transform:translateX(-100%);}
#room_default .room_content .ppp_txt .txt a.button:hover{}
#room_default .room_content .ppp_txt .txt a.button:hover b:nth-of-type(1){-webkit-transform:translateX(0); transform:translateX(0);}
#room_default .room_content .ppp_txt .txt a.button:hover b:nth-of-type(2){-webkit-transform:translateX(100%); transform:translateX(100%);}

#room_default .room_content .ppp_txt .switch_2_prev{width:40px; height:40px; display:block; text-align:center; margin-top:-20px; position:absolute; left:0px; top:50%; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-justify-content:center; -moz-justify-content:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:center; -ms-align-items:center; -moz-align-items:center; -webkit-align-items:center; align-items:center; -webkit-box-orient:vertical; -ms-flex-direction:column; -moz-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; -webkit-box-flex:1.0; -moz-flex-shrink:1; -webkit-flex-shrink:1; flex-shrink:1; cursor:pointer;}
#room_default .room_content .ppp_txt .switch_2_prev i{color:#FFF; display:inline-block; font-size:48px; line-height:48px; -webkit-transform:rotate(180deg); -moz-transform:rotate(180deg); -ms-transform:rotate(180deg); -o-transform:rotate(180deg); transform:rotate(180deg);}
#room_default .room_content .ppp_txt .switch_2_next{width:40px; height:40px; display:block; text-align:center; margin-top:-20px; position:absolute; right:0px; top:50%; display:-webkit-box; display:-moz-box; display:-ms-flexbox; display:-webkit-flex; display:flex; -webkit-box-pack:center; -ms-justify-content:center; -moz-justify-content:center; -webkit-justify-content:center; justify-content:center; -webkit-box-align:center; -ms-align-items:center; -moz-align-items:center; -webkit-align-items:center; align-items:center; -webkit-box-orient:vertical; -ms-flex-direction:column; -moz-flex-direction:column; -webkit-flex-direction:column; flex-direction:column; -webkit-box-flex:1.0; -moz-flex-shrink:1; -webkit-flex-shrink:1; flex-shrink:1; cursor:pointer;}
#room_default .room_content .ppp_txt .switch_2_next i{color:#FFF; display:inline-block; font-size:48px; line-height:48px;}


/*four_star*/
#room_default .room_content .tab_content{padding: 60px 0 0 0;background:#EEE;/*height: 708px; */position: relative}
#room_default .room_content .modal{content:"";width: 100%;height: 100%;background: rgba(0,0,0,0);position: absolute;top:0;left:0;z-index: 1;}
.four_star{width: 1280px;margin:  0 auto;display: flex;flex-wrap:wrap;}
.four_star_item{margin-right: 49px;margin-bottom: 49px;width: 283px;/*height: 283px;*/height: 337px;overflow: hidden;position: relative;border-radius: 10px 10px 10px 10px;box-shadow: 0 .025rem .25rem rgba(0,0,0,.075);z-index: 2;}
.four_star_item.last{margin-right: 0;}
.four_star_item .pic{height: 283px;width: 283px;overflow: hidden;background: #fff}
.four_star_item img{width: 100%;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;-ms-transition:all .4s ease;transition:all .4s ease;}
.four_star_item .title {/*position: absolute; bottom:-54px;bottom:0;left:0;*/height:54px;width: 100%;/*background: #99CF15;*/background: #FFF;-webkit-transition:all .4s ease;-moz-transition:all .4s ease;-ms-transition:all .4s ease;transition:all .4s ease;}
.four_star_item .title a{/*color:#fff;*/display: block; line-height:20px; padding-top:6px;text-align: center;height: 100%;align-items:center;justify-content:center;}
.four_star_item:hover img{-webkit-transform:scale(1.1);-moz-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}
.four_star_item:hover .title{bottom: 0;}
.four_star_item:nth-child(4n+4) {
    margin-right: 0;
}
.four_star_item:hover .title{
	background: #99CF15;
}
.four_star_item:hover .title a{
	color:#FFF
}
/*end*/
/************************************************************/
/***首页视频****/
.index-video{
	clear:both;
	width:100%;
	overflow:hidden;
	background:#DBDBDB;
	padding:80px 0;
}
.index-video .box{
	width:1280px;
	margin:0 auto;
}
.index-video h3{
	margin-bottom:30px;
	clear:both;
	
}
.index-video .left{
	width:64.51%;
	float:left;
}
.index-video .left .videoplay video{
	height:465px;
	overflow:hidden;
	background:#000;
}
.index-video .right{
	width:31.45%;
	float:right;
}
.index-video video{
	outline:none
}
.index-video .right li{
	width:100%;
	margin-bottom:20px;
	clear:both;
	height:101px;
}
.index-video .right li:last-child{
	margin-bottom:0px;
}
.index-video .right li img{
	display:block;
	float:left;
	width:160px;
	height:100%;
}
.index-video .right li p{
	float:right;
	width:calc(100% - 180px)
}
.index-video .right li p span{
	display:block;
	color:#999;
}
.index-video .right a.morevideo{
	display:block;
	margin-top:10px;
}
/***应用**********/
.review {
	padding:60px 0;
	overflow:hidden;
	width:100%;
	margin:0 auto;
}
.review h3{
	margin-bottom:20px;
}
.review .con{
	margin:0 auto;
	position:relative;
	width:1340px;
}
.review .list{
	width:1300px;
	margin:0 auto;
}
.review .con ul { font-size:0;}
.review .con li { 
   display:inline-block; 
   vertical-align:top; 
   width:25%; 
   box-sizing:border-box; 
   padding:0 10px;
   text-align:center;
   height:228px;
}
.review .con li a { 
   display:block;
   text-align:center;
}
.review .con li a .img{
	/*border-radius:50%;*/
	width:100%;
	
	/*height:170px;
	padding:4px;
	margin-bottom:20px;*/
	overflow:hidden;
}
.review .con li a .img img { 
   width:100%; 
   /*border-radius:50%;*/
   display:inline-block;
   transition: all linear 0.3s;
   border:#e0e0e0 0px solid;
}
.review .con li:hover img{
	-moz-transform:scale(1.2);
    -webkit-transform: scale(1.2);
    transform:scale(1.2);
}
.review .con li a .txt p {
   color:#FFF;
   font-size:15px;
   line-height:24px;
   height:70px;
   overflow:hidden;
}
.review .con li a .txt strong { 
   display:block;
   margin:10px 0 10px 0;
   color:#FFF;
   font-weight:bold;
   font-size:18px;
}
.review .con li a:hover { }
.review .con li a:hover p { color:#FFFFFF; }
.review .con li a:hover strong { color:#FFFFFF; }
.review .con a.prev { position:absolute; left:0px; top:40%; width:20px; height:36px; /*margin-top:-55px;*/ background:url(../images/left.png?v=2.0) no-repeat left; }
.review .con a.prev:hover { background-image:url(../images/left.png); }
.review .con a.next { position:absolute; right:0px; top:40%; width:20px; height:36px; /*margin-top:-55px;*/ background:url(../images/right.png?v=2.0) no-repeat right; }
.review .con a.next:hover { background-image:url(../images/right.png); }
/***案例***/
.index-product{
	clear:both;
	width:100%;
	overflow:hidden;
	padding:80px 0;
	background:#EEEEEE;
}
.index-product .box{
	width:1280px;
	margin:0 auto;
}
.index-product h3{
	text-transform:uppercase;
	font-size:36px;
	color:#000;
	font-weight:normal;
	margin-bottom:50px;
}
.honor {
	width:100%;
	float:left;
	clear:both;
}
.honor .con { 
	margin:0px auto 0 auto;
	position:relative;
	width:1360px
	/*width:-moz-calc(90% + 100px);
	width:-webkit-calc(90% + 100px);
	width: calc(90% + 100px);
	max-width: calc(1360px + 100px);
	min-width: calc(1200px + 100px);*/
}
.honor .tempWrap{
	overflow:hidden;
	position:relative;
	width:1240px;
	/*width:-moz-calc(100% - 100px);
	width:-webkit-calc(100% - 100px);
	width: calc(100% - 100px);*/
	margin:0 auto;
}
.honor .con ul{
    font-size:0;
    padding:0;
    margin:0 0 0 -25px;
}
.honor .con li { 
   display:inline-block;
   width:25%;
   padding-right:25px;
   position:relative;
}
.honor .con li.last{
	padding-right:0;
}
.honor .con li a { 
   display:block; 
   position:relative; 
   font-size:18px;
}
.honor .con li .s-img {
	/*height:250px; */
	text-align:center;
	vertical-align: middle;
	/*display: table-cell;*/
	width:100%;
	position:relative;
	overflow:hidden;
}
.honor .con li .s-img img {
	display:inline-block; 
	vertical-align:middle; 
	width:100%; 
	max-height:100%;
	transition: all linear 0.3s
}
.honor .con li:hover img{
	-moz-transform:scale(1.2);
    -webkit-transform: scale(1.2);
    transform:scale(1.2);
}
.honor .con li .s-text{
	width:100%;
	padding:20px 10px;
	overflow:hidden;
}
.honor .con li .s-text p{
	color:#101010;
	font-size:14px;
	line-height:150%;
}
.honor .con li .s-text h3{
	color:#000;
	font-size:16px;
	margin:0;
	font-weight:bold;
}
.honor .con li:hover .s-text h3{
	color:#F05E13;
	font-size:16px;
	margin:0;
}
.honor .con li:hover .s-text p{
	color:#101010;
}
.honor .con a.prev {
	outline:none;
    position:absolute; 
	left:0px; 
	top:50%; 
	width:45px; 
	height:45px; 
	margin-top:-65px; 
	background:url(../images/left-1.png) no-repeat center center;
	transition: all linear 0.3s
}
.honor .con a.prev:hover {
	background:url(../images/left-1.png) no-repeat center;
}
.honor .con a.next {
	outline:none;
	position:absolute; 
	right:0px; 
	top:50%; 
	width:45px; 
	height:45px; 
	margin-top:-65px;
	background:url(../images/right-1.png) no-repeat center center;
	transition: all linear 0.3s
}
.honor .con a.next:hover {
	background:url(../images/right-1.png) no-repeat center;
}
/***新闻资讯*************/
.index-solutions{
	clear:both;
	width:100%;
	overflow:hidden;
	background:#C4CDD2;
	padding:80px 0;
}
.index-solutions .box{
	width:1280px;
	margin:0 auto;
}
.index-solutions h3{
	font-size:36px;
	font-weight:normal;
	color:#000;
	margin-bottom:40px;
}
/***滚动****/
.img-count,.img-count img{position:relative;}
.w-newsList2{
	position: relative;
	overflow:hidden;
	width:100%;
	height:100%;
}
.w-newsList2 .swiper-wrapper,.w-newsList2 .swiper-wrapper .swiper-slide,.w-newsList2 .swiper-wrapper .swiper-slide .news-item{
	width:100%;
	height:100%;
}
.w-newsList2 a{ 
   display: block; 
   text-decoration: none; 
   color: #333;
   height:100%;
}
.w-newsList2 .news-item{ 
   position:relative;
}
.w-newsList2 .img{
   float: left; 
   width:44.35%; 
   overflow: hidden;
}
.w-newsList2 .img img{
	width:100%;
	transition:transform 3.5s; 
	-webkit-transition:transform 3.5s;
	transform:scale(1.1); 
	-webkit-transform:scale(1.1);
}
.w-newsList2 .swiper-slide.swiper-slide-active .img img{ 
   transform:scale(1); 
   -webkit-transform:scale(1);
}
.w-newsList2 .news-text{
	width:48.79%;
	float:right;
}
.w-newsList2 .news-h{
	font-size:20px;
	font-weight:bold;
}
.w-newsList2 .news-sum{
	clear:both;
	position:relative;
	z-index:99;
	margin-top:30px; 
	line-height:180%;
	max-height:110px;
	overflow:hidden;
}
.w-newsList2 .more{
	position: absolute; 
	width:200px;
	height:40px;
	right:0;
	top:250px;
	line-height:36px;
	border:2px solid #5F5F61;
	color:#5F5F61;
	overflow: hidden; 
	-webkit-transition: all .6s;
	transition: all .6s;
	text-transform:uppercase;
	font-size:18px;
	text-align:center;
	border-radius:25px;
}
.w-newsList2 .more:hover{color:#E75E0E; border-color:#E75E0E;}
.w-newsList2 .adSN_page{ position: absolute; left: auto; right:10px; width: auto; z-index: 10; text-align: right;}
.w-newsList2.swiper-container-horizontal .adSN_page{bottom:20px;}
.w-newsList2 .adSN_page span{ background: #c9c9c9; opacity: 1; width:40px; height: 5px; border-radius: 0; -webkit-border-radius: 0;}
.w-newsList2 .adSN_page span.swiper-pagination-bullet-active{background: #f60;}
.w-newsList2.swiper-container-vertical .adSN_page span{margin:15px 0;}
.w-newsList2 .swiper-button-next{
	width:142px;
	height:35px;	
	background:url(../images/next.png) no-repeat center;
	position:absolute;
	left:64.51%;
	top:96%;
	z-index:99;
	border:#9FABBA 1px solid;
}
.w-newsList2 .swiper-button-next:after,.w-newsList2 .swiper-button-prev:after{content:''}
.w-newsList2 .swiper-button-prev{
	width:142px;
	height:35px;
	background:url(../images/prev.png) no-repeat center;
	position:absolute;
	left:51.29%;
	top:96%;
	z-index:99;
	border:#456AA5 1px solid;
}
/*******合作伙伴**************/
.partner{
	padding:80px 0 0 0;
	background:#EEEEEE;
	overflow:hidden;
}
.partner h3{
	font-size:36px;
	font-weight:normal;
	color:#000;
	margin-bottom:40px;
}
.partner ul li{
	float:left;
	position:relative;
	height:117px;
	line-height:117px;
	margin-right:42px;
}
.partner ul li:last-child{
	margin-right:0;
}
.partner ul li img{
	display:inline-block;
	vertical-align:middle;
	max-width:100%;
}
/***下载***/
.row {
	display: flex;
	flex-wrap: wrap;
	/*margin-right: -20px;
	margin-left: -20px*/
}
.col,.col-1,.col-2,.col-3,.col-4,.col-5,.col-6,.col-7,.col-8,.col-9,.col-10,.col-11,.col-12,.col-auto,.col-lg,.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-auto,.col-md,.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12,.col-md-auto,.col-sm,.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-auto,.col-xl,.col-xl-1,.col-xl-2,.col-xl-3,.col-xl-4,.col-xl-5,.col-xl-6,.col-xl-7,.col-xl-8,.col-xl-9,.col-xl-10,.col-xl-11,.col-xl-12,.col-xl-auto {
	position: relative;
	width: 100%;
	/*padding-right: 20px;
	padding-left: 20px*/
}
.col-12 {
	flex: 0 0 100%;
	max-width: 100%
}
.col-sm-6 {
	flex: 0 0 50%;
	max-width: 50%
}
.col-md-4 {
	flex: 0 0 33.3333333333%;
	max-width: 33.3333333333%
}
.col-lg-3 {
	flex: 0 0 25%;
	max-width: 25%
}
.index-download{
	clear:both;
	width:100%;
	overflow:hidden;
	padding:100px 0;
	background:#EEEEEE
}
.wall_list_accordion .item .item_inner .info {
	max-width: none!important
}

.wall {
	position: relative
}

.wall:after {
	content: ".";
	clear: both;
	display: block;
	visibility: hidden;
	height: 0px;
	font-size: 0px
}

.wall .item {
	opacity: 1;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	position: relative
}

.wall.wall_default {
	margin-bottom: -10.5em
}
.wall.wall_default .item {
	margin-bottom: 10.5em!important;
	text-align: center
}
.wall.wall_default .item.item_hover:hover {
	cursor: pointer
}

.wall.wall_default .item.disabled {
	opacity: 0.2;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
	filter: alpha(opacity=20)
}
.wall.wall_default .item .image {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	width: 180px;
	height: 180px;
	margin: 0 auto
}

.wall.wall_default .item .image img,.wall.wall_default .item .image svg {
	object-fit: contain;
	font-family: 'object-fit: contain;';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0%;
	left: 0%
}
.wall.wall_default .item .title {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
	transition-property: transform,all;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	display: inline-block;
	margin-top: 1.2em;
	height: auto;
	padding: 0px 20px;
	background: transparent;
	width: 100%;
	max-width: 264px;
}

.wall.wall_default .item .text {
	padding-top: 1em
}

.wall.wall_default .item.selected .title {
	background: #ffffff
}
.wall.wall_list .item .item_inner {
	width: 1280px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	border-top: 2px solid #A8A8A8;
	margin: 0 auto
}
.wall.wall_list .item .item_inner>.title,.wall.wall_list .item .item_inner>h4.title {
	padding: 40px 0px 40px 0px;
	margin-bottom: 0px;
	text-transform:uppercase;
	font-size: 24px;
	line-height:100%;
	font-weight:normal;
}
.wall.wall_list .item:last-child .item_inner {
	border-bottom: 2px solid #A8A8A8
}

.wall.wall_hide_text .item .text {
	display: none
}
.wall.wall_features {
	margin-top: 0px;
	margin-bottom: 0px!important
}
.wall.wall_downloads .item .image {
	width: 90%;
	max-width: 170px;
	height: auto;
	padding-bottom: 0px
}

.wall.wall_downloads .item .image .image_inner {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	width: 100%;
	height: 0px;
	padding-bottom: 135%;
	border: 2px solid #ffffff
}

.wall.wall_downloads .item .image .image_inner img,.wall.wall_downloads .item .image .image_inner svg {
	object-fit: cover;
	object-position: 50% 50%;
	font-family: 'object-fit: cover;';
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0%;
	left: 0%
}

.wall.wall_downloads .item .image .image_inner.image_objectfit_active img,.wall.wall_downloads .item .image .image_inner.image_objectfit_active svg {
	opacity: 0;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0)
}

.wall.wall_downloads .item .image .image_inner.image_contain {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain
}

.wall.wall_downloads .item .download {
	display: block;
	width: 22px;
	height: 22px;
	margin: 12px auto -4px auto
}

.wall.wall_downloads .item .download img {
	width: 100%
}

.wall.wall_list_accordion .item {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
	transition-property: transform,all
}

.wall.wall_list_accordion .item .item_inner>.info,.wall.wall_list_accordion .item .item_inner>.title,.wall.wall_list_accordion .item .item_inner>h4.title {
	padding-left: 58px
}
.wall.wall_list_accordion .item .item_inner>.title,.wall.wall_list_accordion .item .item_inner>h4.title {
	position: relative
}

.wall.wall_list_accordion .item .item_inner>.title:before,.wall.wall_list_accordion .item .item_inner>h4.title:before {
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	-ms-transform: translate3d(0,0,0);
	-o-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	transition-duration: 0.4s;
	transition-timing-function: ease-in-out;
	transition-property: transform,all;
	border-color: #A8A8A8;
	border-style: solid;
	border-width: 0 2px 2px 0;
	display: inline-block;
	width: 22px;
	height: 22px;
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: perspective(999px) rotate(-45deg);
	transform: perspective(999px) rotate(-45deg);
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	content: "";
	position: absolute;
	top: 39px;
	left: -10px
}
.wall.wall_list_accordion .item .item_inner>.title:hover,.wall.wall_list_accordion .item .item_inner>h4.title:hover {
	cursor: pointer;
	color: #323C46;
}

.wall.wall_list_accordion .item .item_inner>.info {
	position: relative;
	display: none;
	max-width: 800px;
	top: -5px;
	padding-bottom: 45px
}
.wall.wall_list_accordion .item.active {
	background: #ffffff;
	margin-bottom: -3px
}

.wall.wall_list_accordion .item.active .caption a:hover,.wall.wall_list_accordion .item.active a:hover,.wall.wall_list_accordion .item.active p a:hover {
	color: #808384;
	border-bottom-color: #808384
}

.wall.wall_list_accordion .item.active .item_inner>.title:before {
	border-color: #323C46;
	border-style: solid;
	border-width: 0 2px 2px 0;
	display: inline-block;
	width: 22px;
	height: 22px;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: perspective(999px) rotate(45deg);
	transform: perspective(999px) rotate(45deg);
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: perspective(999px) rotate(45deg);
	transform: perspective(999px) rotate(45deg);
	-moz-transform-origin: 50% 50%;
	-o-transform-origin: 50% 50%;
	-ms-transform-origin: 50% 50%;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
	top: 41px;
	left: 6px
}
.wall.wall_list_accordion .wall_downloads .item .image .image_inner {
	border-color: #323C46
}
/***询盘***********/
.index-inquiry{
	clear:both;
	width:100%;
	overflow:hidden;
	background:#EEE;
}
.index-inquiry h3{
	text-align:center;
	font-size:36px;
	margin-bottom:40px;
	font-weight:normal;
}
.index-inquiry p.dec{
	text-align:center;
	font-weight:400;
	color:#424242;
	line-height:180%;
}
.index-inquiry form{
	text-align:center;
	margin:40px 0 150px 0;
}
.index-inquiry input.email{
	width:560px;
	height:60px;
	line-height:60px;
	font-size:16px;
	background:#99CF15;
	border-radius:50px;
	border:0;
	outline:none;
	padding-left:40px;
	color:#FFF;
	font-weight:bold;
}
.index-inquiry input.submit{
	display:inline-block;
	width:145px;
	height:45px;
	background:#2C903A;
	border-radius:40px;
	border:0;
	margin-top:20px;
	color:#FFF;
	font-size:16px;
	text-align:center;
	text-transform:uppercase;
	outline:none;
	cursor:pointer;
}
.index-inquiry input::-webkit-input-placeholder { /* WebKit browsers */
  color: #FFF;
  font-size: 16px;
  font-weight:normal;
}

.index-inquiry input::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #FFF;
  font-size: 16px;
  font-weight:normal;
}

.index-inquiry input::-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #FFF;
  font-size: 16px;
  font-weight:normal;
}
/***页脚***/
.footer{
	clear:both;
	width:100%;
	background:#323D43;
	overflow:hidden;
	color:#BEC5CB;
	padding-top:60px;
	padding-bottom:0px;
	position:relative;
}
.footer a{
	color:#BEC5CB;
}
.footer .wrapper{
	position:relative;
	overflow:hidden;
	width:1280px;
	margin:0 auto;
}
.footer h3{
	clear:both;
	color:#FFF;
	margin-bottom:10px;
	width:100%;
	display:block;
}
.footer .left{
	float:left;
	width:56.45%;
}
.footer .left h3{
}
.footer .left ul{
	width:100%;
	clear:both;
	overflow:hidden;
	margin-bottom:20px;
}
.footer .left ul li{
	float:left;
	width:180px;
	font-size:14px;
}
.mtop20{
	padding-top:20px;
	clear:both;
	overflow:hidden;
}
.footer .right{
	width:40%;
	float:right;	
}
.footer .right p{
	margin-bottom:20px;
	font-size:14px;
}
.footer .right ul{
	width:100%;
	clear:both;
	float:left;
	margin-top:50px;
	margin-bottom:50px;
}
.footer .right ul li{
	float:left;
	margin-right:20px;
	font-size:14px;
	text-align:center;
	width:110px;
}
.footer .right ul li img{
	width:100%;
}
a.gotop{
	display:block;
	width:120px;
	height:120px;
	background:url(../images/gotop.png) no-repeat center 20px #75AB91;
	border-radius:50%;
	position:absolute;
	bottom:-60px;
	right:0;
}
/**************************************/
/*********内页*****************/
.ins-ban{
	clear:both;
	width:100%;
	overflow:hidden;
}
.ins-ban img{
	width:100%;
	display:block;
}
/*子栏目导航*/
.lm-nav {
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: #FFF;
  font-size: 0;
  position: relative;
}
.lm-nav a, .lm-nav span {
  display: inline-block;
  padding: 0 28px;
  /*color: #fff;*/
  font-size: 15px;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  margin-right:1px;
}
.lm-nav a.cur {
  background: #f6f6f6;
  color: #424242;
}
.lm-nav a:hover {
  background: #fff;
  color: #424242;
}
/*当前位置*/
.bread-nav {
  padding-top:20px;
  margin-bottom:30px;
  overflow:hidden;
  clear:both;
}
.bread-nav .wraper{
  background:url(../images/home.png) no-repeat left 4px;
  background-size:16px;
  padding-left:25px;
  padding-bottom:5px;
  border-bottom:#f0f0f0 1px solid;
}
.bread-nav,
.bread-nav a,
.bread-nav span,
.bread-nav strong{
  font-size: 15px;
  color: #aaa;
}
.bread-nav span{
  font-family:'宋体'
}
.subpage{
  width:100%;
  float:left;
  clear:both;
  line-height:200%;
  font-size:15px;
  overflow:hidden;
}
.subpage p{
  margin-bottom:15px;
}
.mt50{
  clear:both;
  width:100%;
  height:50px;
  overflow:hidden;
}
/****产品*******/
.productlist{
	clear:both;
	width:100%;
	overflow:hidden;
}
.productlist li{
	float:left;
	width:calc((100% - 60px) / 3);
	margin-right:30px;
	border:#f0f0f0 1px solid;
	background:#FFF;
	padding-top:30px;
	margin-bottom:30px;
	transition: all linear 0.3s;
	box-shadow:0 15px 15px rgba(0,0,0,.03);
	border-radius:15px;
	overflow:hidden;
}
.productlist li:nth-child(3n){
	margin-right:0;
}
.productlist li:hover{
	transform:translateY(-10px);
	-webkit-transform:translateY(-10px);
	-moz-transform:translateY(-10px);
	-ms-transform:translateY(-10px);
	-o-transform:translateY(-10px);
	box-shadow:0 15px 15px rgba(0,0,0,.15);
}
.productlist li .proimg{
	position:relative;
	overflow:hidden;
	clear:both;
	width:100%;
	margin-top:20px;
}
.productlist li img{
	width:100%;
	transition: all linear 0.3s;
	display:block;
}
.productlist li:hover .proimg img{
    -moz-transform:scale(1.1);
    -webkit-transform: scale(1.12);
    transform:scale(1.1);
}
.productlist .type {
	font-size:15px;
	line-height:120%;
	color:#999;
	margin-bottom:20px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	padding:0px 20px;
	text-align:center;
}
.productlist .name {
	line-height:0.5em;
	height:0.5em;
	border-bottom:1px solid #eee;
	position:relative;
	margin:10px 15px 0px 15px;
	text-align:center;
	
}
.productlist .name span {
	background:white;
	display:inline-block;
	text-align:center;
	padding:0px 25px;
	color:#000;
	height:1em;
	line-height:1em;
	font-size:16px;
}
.viewmore{
	background:url(../images/zoom.png) no-repeat 30% #F1EFF9;
	background-size:18px 18px;
	width:100%;
	height:40px;
	line-height:40px;
	text-transform:uppercase;
	text-align:center;
	-webkit-transition-property: background-color;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
	display:none
}
.viewmore:hover,.productlist li:hover .viewmore{
	background:url(../images/zoom.png) no-repeat 30% #FB2644;
	background-size:18px 18px;
}
.viewmore a{
	color:#648397;
}
.viewmore:hover a,.productlist li:hover .viewmore a{
	color:#FFF;
}
/***********产品详情*********************/
.row2{*zoom:1}
.row2:before,.row2:after{content:" ";display:table}
.row2:after{clear:both}
.btn{display:inline-block;*zoom:1;*display:inline;width:158px;height:38px;padding:0;margin:0;font-size:14px;line-height:38px;text-align:center;cursor:pointer;-webkit-transition:all .4s;transition:all .4s}.btn:hover{text-decoration:none;}.btn:focus{outline:0}.btn:active{-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,0.18);box-shadow:inset 0 2px 4px rgba(0,0,0,0.18)}.btn[disabled]{border-style:dashed !important;border-color:#e0e0e0;background-color:#fff !important;color:#b0b0b0 !important;cursor:default !important}
.goods-detail{ width:100%; clear:both; float:left;}
.goods-detail ul,.goods-detail li,.goods-detail p,.goods-detail dl,.goods-detail dd,.goods-detail h1,.goods-detail h2,.goods-detail h3,.goods-detail h4,.goods-detail h5,.goods-detail h6{padding:0;margin:0}
.goods-detail ul,.goods-detail li,.goods-detail ol{list-style:none}
.goods-detail i{font-style:normal}
.goods-detail em{font-style:normal}
.goods-detail .goods-detail-info{/*background:#fff;*/padding-top:40px;/*padding-bottom:50px*/}
.goods-detail .goods-pic-box,.goods-detail .goods-info-box{min-height:550px;_height:550px}
.goods-detail .goods-pic-box{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;text-align:center}
.goods-detail .goods-big-pic{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:482px;width:482px;left:140px;position:absolute;top:0px;z-index:1;cursor:-webkit-zoom-in;cursor:zoom-in; border:#e0e0e0 0px solid;box-shadow:0 15px 15px rgba(0,0,0,.1); position:relative}
.goods-detail .goods-big-pic .shuiyin,.imgteaser .shuiyin{
	width:100%;
	height:100%;
	background:url(../images/shuiyin.png) no-repeat center center;
	position:absolute;
}
.goods-detail .goods-big-pic img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:482px;height:482px}
.goods-detail .goods-pic-loading{width:20px;height:20px;position:absolute;z-index:5;top:255px;left:410px}
.goods-detail .goods-detail-left-info{/*position:relative;overflow:hidden;*/_zoom:1; float:right; width:635px}
.goods-detail .goods-batch-img-list-block{position:absolute;top:0px;left:-700px;width:684px;height:550px;z-index:10;background:#fff;text-align:center;-webkit-transition:left .3s ease-out;transition:left .3s ease-out}
.goods-detail .goods-info-rightbox{position:relative; float:left; width:-moz-calc(100% - 670px);width:-webkit-calc(100% - 670px);width: calc(100% - 670px);}
.goods-detail .goods-info-leftborder{position:absolute;width:0px;height:100%;left:-120px;display:none;border-left:1px solid #e0e0e0}
.goods-detail .goods-small-pic{position:absolute;left:20px;top:0px;}
.goods-detail .goods-small-pic li{height:85px;cursor:pointer;zoom:1;/*padding:4px;*/border:1px solid #e0e0e0;margin-bottom:14px;-webkit-transition:border-color .4s ease-out;transition:border-color .4s ease-out}
.goods-detail .goods-small-pic li img{width:80px;height:80px; margin-top:2px}
.goods-detail .goods-small-pic li:hover{border-color:#b0b0b0}
.goods-detail .goods-small-pic li.current{cursor:default;border-color:#9AD016}
.goods-detail .goods-small-pic li.current:hover{border-color:#FF3300}
.goods-detail .goods-info-head .goods-name{color:#000;font-size:28px;font-weight: bold;line-height:38px; margin-top:10px;}
.goods-detail .goods-info-head .goods-subtitle{margin-top:7px}
.goods-detail .goods-info-head .goods-subtitle p{color:#616161;font-size:18px;line-height:23px}
.goods-detail .goods-info-head .goods-info-head-price{margin-top:20px;/*height:66px;line-height:66px;*/border-top:1px solid #e0e0e0;border-bottom:1px solid #e0e0e0;color:#000000;font-size:15px; padding:20px 0; font-weight:normal; color:#666; font-family:'微软雅黑'; line-height:180%}
.goods-detail .goods-info-head .goods-info-head-colors{padding-top:18px}
.goods-detail .goods-info-head .goods-info-head-colors .style-name{color:#757575;line-height:20px;font-size:14px;display:block}
.goods-detail .goods-info-head .goods-info-head-cart{height:50px;margin-top:95px;position:relative}
.goods-detail .goods-info-head .goods-info-head-cart .goods-add-cart-btn,.goods-detail .goods-info-head .goods-info-head-cart .goods-over-btn{width:220px;height:48px;line-height:48px;font-size:16px;display:block;float:left;text-align:center}
.goods-detail .goods-info-head .goods-info-head-cart .goods-collect-btn{height:48px;width:140px;display:block;float:left;text-align:center;margin-left:10px;line-height:48px}
.full-screen-border{height:0px;border-top:1px solid #e0e0e0}
.goods-detail-nav{background:#fff}
.goods-detail-nav .detail-list{*zoom:1;width:680px;margin:0 auto;list-style-type:none;height:60px}
.goods-detail-nav .detail-list:before,.goods-detail-nav .detail-list:after{content:" ";display:table}
.goods-detail-nav .detail-list:after{clear:both}
.goods-detail-nav .detail-list li{float:left;width:170px;height:18px;margin-top:20px;line-height:18px;text-align:center;font-size:16px;color:#424242}
.goods-detail-nav .detail-list li i{color:#b0b0b0;font-style:normal;vertical-align:1px}
.goods-detail-nav .detail-list li a{color: #424242;width:170px;display:block;cursor:pointer;border-right:1px solid #e0e0e0;-webkit-transition:color .2s ease-out;transition:color .2s ease-out}
.goods-detail-nav .detail-list li.last{border-right:none}
.goods-detail-nav .detail-list li.current a{color:#2ea6df;}
.goods-detail-desc{text-align:center}
.goods-yuyue{position:absolute; width:134px; right:-154px; }
.goods-yuyue ul{border-left:#e6e6e6 1px solid;border-right:#e6e6e6 1px solid;border-top:#e6e6e6 1px solid;background: #ffffff none repeat scroll 0 0;}
.goods-yuyue li{ width:134px; border-bottom:#e6e6e6 1px solid;height:50px; line-height:50px; color:#595757; font-size:14px; text-align:center;}
.goods-yuyue li a{ color:#595757;}
.goods-yuyue .cuss a{ background-color:#2ea6df; color:#FFF; display:block; position:relative;width:133px;}

#showbox p {
	z-index:9999;
}
.dd ul li{list-style-type:disc; line-height:160%; margin-bottom:15px;}
.intro strong{ color:#000}
.biaoge table{/* background:#E8E8E8!important*/ border:#e0e0e0 0px solid; border-bottom:0}
.biaoge td{ padding:10px 10px 10px 10px!important; font-size:14px; line-height:180%; border-bottom:#e0e0e0 0px solid;}
.sx img{ max-width:100%;}
.biaoge td img{ display:block;}
.left{ z-index:99999}
.biaoge img{
   max-width:100%!important
}
.intro table tr td{
   padding:3px 10px!important
}
.intro table tr td:first-child{
   padding-left:0!important
}
			 
.pro{
	clear:both;
	padding-bottom:50px;
	margin:0 auto;
	position:relative;
}
.pro .left{
	width:330px;
	float:left;
	background:#FFF;
	margin-bottom:60px;
}
.pro .left h3{
	line-height:60px;
	background:#9AD016;
	color:#FFF;
	font-size:24px;
	font-weight:normal;
	text-indent:25px;
}
.pro .left li{
	width:100%;
	float:left;
	border-bottom:#FFF 1px solid;
	padding:10px 10px 10px 25px;
	background:#e0e0e0;
	-webkit-transition-property: background-color;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
	
}
.pro .left li:hover,.pro .left li.cur:hover{
	background:#E0E0E0;
}
.pro .left li.cur{
	background:#E0E0E0;
}
.pro .left li:hover a,.pro .left li.cur a{
	color:#424242
}
.pro .left li a{
	font-size:15px;
	font-weight:bold;
}
.smenu li{
	background:#FFF!important;
	border-bottom:#e0e0e0 1px solid!important;
}
.smenu li a{
	font-size:14px!important;
	font-weight:normal!important;
	color:#424242!important
}
.smenu li:hover a,.smenu li.cur a{
	color:#9AD016!important;
	font-weight:bold!important;
}
.pro .right{
	width:-moz-calc(100% - 380px);
	width:-webkit-calc(100% - 380px);
	width: calc(100% - 380px);
	float: right;
	background:#FFF;
	padding:0 40px;
	margin-bottom:60px;
}
.pro .pro-h5 {
  height: 106px;
  line-height: 106px;
  font-size: 26px;
  color: #9AD016;
  padding-left: 46px;
  padding-bottom: 26px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e9e9e9;
  background: url(../images/ico9.png ) no-repeat left center;
}
/***留言*****/
input::-webkit-input-placeholder{
	color:#999;
}
input::-moz-placeholder{   /* Mozilla Firefox 19+ */
	color:#999;
}
input:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
	color:#999;
}
input:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
	color:#999;
}

textarea::-webkit-input-placeholder{
	color:#999;
}
textarea::-moz-placeholder{   /* Mozilla Firefox 19+ */
	color:#999;
}
textarea:-moz-placeholder{    /* Mozilla Firefox 4 to 18 */
	color:#999;
}
textarea:-ms-input-placeholder{  /* Internet Explorer 10-11 */ 
	color:#999;
}
.form-control{
	margin-bottom:10px; 
	border:0;
	border-bottom:#DCDCDC 2px solid;
	width: 100%;
	border-radius: 2px;
	background-color: rgba(0, 0, 0, 0); 
	margin-bottom:20px; 
	padding:10px 20px 10px 0;
	color:#424242;
	font-family:arial;
	outline:none;
	font-size:15px;
}
.form-group{
	width:50%;
	float:left;
	padding-left:0px;
}
/***********************************/

.num-box {
    width: 100%;
    height: 320px;
    position: relative;
}
.num-box img {
    width: 100%;
    height: 100%;
}
.num-box .box {
    width: 1280px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.num-box .box .item .num{
    font-size: 60px;
    font-family: "Arial";
    color: rgb(255, 255, 255);
    font-weight: bold;
    line-height: 0.6;
    text-align: center;
    height: 47px;
}
.num-box .box .item .title {
    font-size: 16px;
    color: rgb(255, 255, 255);
    line-height: 2.572;
    text-align: center;
}
.num-box .box .item .year {
    font-size: 30px;
    font-weight: 500;
}
/****新闻列表**************/
.subnews{
	clear:both;
	width:100%;
}
.subnews ul{
	text-align:left;
}
.subnews li{
	display:block;
	float:left;
	width:-moz-calc((100% - 60px) / 3);
	width:-webkit-calc((100% - 60px) / 3);
	width:calc((100% - 60px) / 3);
	margin-right:30px;
	margin-bottom: 35px;
    position: relative;
	border: 1px solid #dfdfdf;
	transition: all linear 0.3s
}
.subnews li:hover{
	box-shadow:0 15px 15px rgba(0,0,0,.2);
	transform:translateY(-10px);
	-webkit-transform:translateY(-10px);
	-moz-transform:translateY(-10px);
	-ms-transform:translateY(-10px);
	-o-transform:translateY(-10px);
}
.subnews li:nth-child(3n){
	margin-right:0;
}
.subnews li .newsimg{
	width:100%;
	max-height:268px;
	position:relative;
	overflow:hidden;
}
.subnews li .newsimg img{
	width:100%;
	display:block;
	transition-duration: .5s;
	-ms-transition-duration: .5s;
	-moz-transition-duration: .5s;
	-webkit-transition-duration: .5s;
}
.subnews li .newsimg:hover img{
	-moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    -webkit-transform: scale(1.05);
}
.subnews li .newstext{
	height:220px;
	position:relative;
}
.subnews li .newsdate{
	width:85%;
	margin:0 auto;
	text-align:left;
	color: #000;
    opacity: .7;
    display: block;
    margin-top: 20px;
}
.subnews li .newstitle{
	width:85%;
	margin:0 auto;
	text-align:left;
	font-size: 16px;
    color: #404040;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}
.subnews li .subtit {
    width: 85%;
    height: 60px;
	line-height:160%;
    margin: 0 auto;
    font-family: "Gotham-Light", "Normal";
    font-size: 14px;
    color: #999;
    display: block;
    margin-top: 15px;
}

.subnews li .btn {
    width: 85%;
    /* height: 29px; */
    /* margin: 0 auto;
    margin-bottom: 15px; */
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%,0);
    display: block;
}

.subnews li .btn span {
    width: 112px;
    height: 29px; 
	background: #FB253F;
    text-align: center;
    line-height: 29px;
    display: block;
    font-family: "Gotham-Light", "Normal";
    font-size: 12px;
    color: #fff;
	transition: all linear 0.3s
}

.subnews li .btn span:hover {
    background: #ef9b11;
}
/**************分页*****/
.pageBom {
    /*width: 1500px;*/
    margin: 40px auto 50px auto;
    position: relative;
	clear:both;
	overflow:hidden;
	text-align:center;
	color: #999;
}
.three .pageBom{
	display:none;
}
.pageBom .pageFirst {
   /* font-family: "Gotham-Light", "Regular";*/
    font-size: 15px;
    
    /*position: absolute;
    left: 0;
    top: 0;*/
    display:inline-block;
    cursor: pointer;
	border:#e0e0e0 1px solid;
	padding:5px 12px;
	background:#FFF;
}

.pageBom .pageEnd {
    font-family: "Gotham-Light", "Regular";
    font-size: 15px;
    /*position: absolute;
    right: 0;
    top: 0;*/
    display: inline-block;
    cursor: pointer;
    border:#e0e0e0 1px solid;
	padding:5px 12px;
	background:#FFF;
}

.pageBom .mid {
	display:inline-block;
    /*width: 500px;*/
    margin: 0 auto;
    text-align: center;
}

.pageBom .mid i {
    font-size: 15px;
    color: #7f7f7f;
    display: inline-block;
    text-align: center;
    border: 1px solid #299235!important;
    cursor: pointer;
	font-style:normal;
	padding:5px 15px;
	background:#FFF;
	margin:0 5px;
}

.pageBom .mid i.on {
    color: #FFF;
	border: 1px solid #299235!important;
	background:#029141;
}
.pageBom .pagePrev {
    font-family: "Gotham-Light", "Regular";
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
	border:#e0e0e0 1px solid;
	padding:5px 12px;
	background:#FFF;
	margin:0 5px;
}
.pageBom .pageNext {
    font-family: "Gotham-Light", "Regular";
    font-size: 15px;
    display: inline-block;
    cursor: pointer;
	border:#e0e0e0 1px solid;
	padding:5px 12px;
	background:#FFF;
	margin:0 5px
}
.pageBom .pageNextNot,.pageBom .pagePrevNot,.pageBom .pageFirstNot,.pageBom .pageEndNot{
    cursor: not-allowed;
	font-family: "Gotham-Light", "Regular";
    font-size: 15px;
    display: inline-block;
	border:#e0e0e0 1px solid;
	padding:5px 12px;
	background:#FFF;
	margin:0 5px
}
.pageBom a{
	color:#999;
}
/******新闻内页********/
.shownews{
	/*width:1000px;*/
	margin:0 auto 80px auto;
	overflow:hidden;
	clear:both;
	/*margin-top:100px;*/
}
.shownews .l{
	float:right;
	width:280px;
	color:#696969;
	font-size:24px;
	font-weight:300;
}
.shownews .l span{
	display:block;
	font-size:14px;
}
.shownews .l h3{
	height:80px;
	line-height:80px;
	background:#FB253F;
	color:#FFF;
	text-align:center;
}
.shownews .l ul{
	border-left:#e0e0e0 1px solid;
	border-right:#e0e0e0 1px solid;
}
.shownews .l ul a{
	display:block;
	font-size:16px;
	background:url(../images/arr-rt-b.png) no-repeat 92% center #f6f6f6;
	border-bottom:#e0e0e0 1px solid;
	line-height:60px;
	padding-left:20px;
	color:#202020;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	-moz-transition: all .5s ease;
	transition: all .5s ease;
}
.shownews .l ul a:hover{
	background:url(../images/arr-rt-w.png) no-repeat 92% center #AD8C6B;
	color:#FFF;
}
.shownews .r{
	width:960px;
	float:left;
	border:#e0e0e0 1px solid;
	padding:40px 40px;
}
.shownews .r .tit{
	font-size:24px;
	overflow:hidden;
	font-weight:400;
	letter-spacing:2px;
	color:#322D2A;
	/*margin-bottom:60px;*/
	padding-bottom:20px;
}
.shownews .r .newscon{
	width:100%;
	clear:both;
	line-height:220%;
	font-size:16px;
	font-weight:300;
}
.shownews .r .newscon p{
	margin-bottom:20px;
	color:#000;
	line-height:220%;
	font-size:16px;
	font-weight:300;
}
.shownews .r .newscon img{
	max-width:100%;
	display:inline-block;
	/*min-width:960px;*/
	margin-bottom:10px;
}
.newsbot{
	width:100%;
	clear:both;
	margin-top:50px;
	/*margin-bottom:100px;*/
	padding-top:10px;
	border-top:#cecece 2px solid;
	text-align:right;
}
.newsbot a{
	display:inline-block;
}
.newsbot a:first-child{
	float:left;
	width:80px;
	height:28px;
	background:#FB253F;
	color:#FFF;
	text-align:center;
	line-height:28px;
	margin-top:10px;
}
.newsbot a:first-child:hover{
	background:#AD8C6B;
	color:#FFF;
}
.newsbot a:hover{
	color:#00B3FB;
}
.newsbot a.close{
	margin:0 20px;
}
.share{width: 100%;clear:both; height:30px; margin-bottom:60px;border-bottom:#cecece 1px solid; padding-bottom:10px;}
.share p{float: left;overflow: hidden;}
.share p span{display: block;font-size: 14px;color: #999999;padding: 0 8px;border-left: 1px dotted #b6b6b6;float: left;}
.share p span:first-child{padding-left: 0;border-left: none;}
.share p span #cntrHits{ float:right;}
.share ul{float: right;}
.share li{margin-left: 7px;width: 24px;height: 24px;float: left;}
.share li img{display: block;}
.table-c{
	clear:both;
	margin-bottom:20px;
	overflow:hidden;
}
.table-c table{
	border-right:1px solid #e0e0e0;
	border-bottom:1px solid #e0e0e0;
}
.table-c table td{
	border-left:1px solid #e0e0e0;
	border-top:1px solid #e0e0e0;
	padding:10px;
}
/******图片列表****************/
.list_case{
	width: 100%;
	clear:both;
}
.subcasetit{
	width:100%;
	clear:both;
	border-bottom:#e0e0e0 2px solid;
	margin-bottom:30px;
	padding-bottom:10px;
	font-size:20px;
	color:#029141;
	background:url(../images/abob_jt_2.png) no-repeat 100% center;
}
.subcase .mpc{
	border:#f0f0f0 1px solid;
}
.imgteaser{
	overflow:auto;
	float: left;
	position: relative;
	width:-moz-calc((100% - 40px) / 3);
	width:-webkit-calc((100% - 40px) / 3);
	width: calc((100% - 40px) / 3);
	margin:0 20px 50px 0;
	text-align:center;
	box-sizing: border-box;
	transition: all linear 0.3s;
	/*box-shadow: rgba(0,0,0,0.1) 0 5px 10px;*/
}
.imgteaser.subcase{
	overflow:auto;
	float: left;
	position: relative;
	width:-moz-calc((100% - 90px) / 4)!important;
	width:-webkit-calc((100% - 90px) / 4)!important;
	width: calc((100% - 90px) / 4)!important;
	margin:0 30px 50px 0;
	text-align:center;
	box-sizing: border-box;
	transition: all linear 0.3s;
	/*box-shadow: rgba(0,0,0,0.1) 0 5px 10px;*/
}
.clst,.imgteaser.subcase.clst{ margin-right:0}
.imgteaser a{text-decoration: none;float: left; /* height:200px; */display:block;}
.imgteaser a .pcc{ position:relative; overflow:hidden}
.imgteaser a:hover{cursor:pointer}
.imgteaser .mpc{
	position:relative;
	overflow:hidden;
}
.imgteaser a .mpc img{
	float:left;
	border: none;
	width:100%;
	/*height:200px;*/
    transition-duration: .5s;
    -ms-transition-duration: .5s;
    -moz-transition-duration: .5s;
    -webkit-transition-duration: .5s;}
.imgteaser a .mpc:hover img{
	-moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
}
.CC{
	clear:both;
    background:#e0e0e0;
	width:100%;
	height:60px;
	line-height:60px;
	-webkit-transition-property: background-color;
    -webkit-transition-duration: 0.3s;
    -webkit-transition-timing-function: ease;
	font-size:16px;
}
.imgteaser a:hover .CC{
	background:#029141;
	color:#FFF;
	line-height:60px;
}
.imgteaser:hover{
	box-shadow: rgba(0,0,0,0.2) 0 8px 20px;
	transform:translateY(-5px);
}
.indd_wb{
	 background: #eaeaea; 
	 padding: 20px 3% 25px 5%;
	 transition: 0.5s;
	 text-align:left;
}
.imgteaser:hover .indd_wb{ 
     background: #fff; 
	 transition: 0.5s;
}
.indd_lxmo{
	 padding-top: 30px;
	 display: flex; 
	 justify-content: space-between; 
	 align-items: flex-end;
}
.indd_lm{ color: #828282;}
.indd_lm p:nth-child(1){ font-family: 'Din';}
.indd_more{ 
     padding-right: 5%; 
	 opacity: 1;
	 transition: 0.5s;
}
.imgteaser:hover .indd_more{ 
    opacity: 1; 
	padding-right: 2%; 
	transition: 0.5s 0.5s;
}
.proNavbox{height:80px;position:relative;margin-bottom:40px; background:#FFF; clear:both; z-index:99}
.proNavbox .proNav{height:80px;box-shadow:0 1px 2px rgba(0,0,0,0.05);border-bottom:1px solid #ededed;color:#333}
.proNavbox .proNav.open:after{content:"";position:absolute;background:url("c_zz.png");width:2000px;height:100000px;top:50px;left:0;z-index:-1;}
.proNavbox .proClass{display:inline-block;position:relative;margin-right:30px}
.proNavbox .proClass .name{position:relative;border:1px solid #eee;width:80px;height:80px;line-height:80px;text-align:center;display:inline-block;background:white;z-index:1;border-top:none;border-bottom:none}
.proNavbox .proClass .name img{width:32px;vertical-align:middle}
.proNavbox .proClass .name span{display:block;text-align:center;font-size:12px;color:#333;position:absolute;bottom:0;left:0;width:100%;line-height:12px;display:none}
.proNavbox .proClass .name .shetou{position:absolute;width:36px;bottom:-9px;left:50%;margin-left:-18px}
.proNavbox .proClass .list{display:none;border:1px solid #eee;background:white;width:260px;padding:15px 10px;position:absolute;top:80px;}
.proNameBox {float:left; height:80px; width:800px; line-height:80px;/* padding-top:5px; */font-size:15px;/* font-family:arial; */color:#000; text-transform:capitalize; overflow:hidden}
.proNameBox a{color:#000;/* background:#f0f0f0;*/ display:block; float:left; padding:0 5px; margin:0 10px; position:relative;}
.proNameBox a span{position:absolute; bottom:0; width:100%; height:4px; background:#E9556B; left:0;opacity:0;}
.proNameBox a:hover{ color:#E9556B;}
.proNameBox a:hover span{opacity:1;-webkit-transition: all .5s;-o-transition: all .5s;-ms-transition: all .5s;transition: all .5s;}
.proNameBox a.cur span{opacity:1;}
.proNameBox span,.loca span{ font-family:'宋体'; padding:0 5px}
.loca{ float:right; font-size:14px; margin-top:35px; color:#888888; text-transform:capitalize}
.loca a{ color:#888888}
.loca img{ vertical-align:middle; margin-bottom:5px}
.proClass {float:left;}
.pp .loca{
	display:none;
}
.pp .proNameBox{
	width:1100px;
}
/*****视频列表*********/
.mask{
	position:fixed;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .8;
	-moz-opacity: .8;
	filter: alpha(opacity=80);
	top: 0;
	left: 0;
	z-index:1000;
}
.modal{
	background: #fff;
	width: 720px;
	height: 450px;
	position: fixed;
	_position: absolute;
	display: none;
	z-index: 1001;
}
.modal .close{
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	z-index: 2;
}
.modal iframe{
	z-index: 1;
}
.modal .close a:link,.modal .close a:visited{
	color: #666;
	text-decoration: none;
}
.modal .close a:hover,.modal .close a:active{
	color: #333;
	text-decoration: none;
}
.prosortlist li:nth-child(3n){
	margin-right:0;
}
.video-cell{
	float: left;
	width: 31.5%;
	margin-right: 2.75%;
	margin-bottom:30px;
	background:#f5f5f5;
	transition: all linear 0.3s;
	box-shadow:0 10px 10px rgba(0,0,0,.1);
}
.pro-cell:hover{
	box-shadow:0 15px 15px rgba(0,0,0,.2);
	transform:translateY(-10px);
	-webkit-transform:translateY(-10px);
	-moz-transform:translateY(-10px);
	-ms-transform:translateY(-10px);
	-o-transform:translateY(-10px);
}
.video-cell{
	padding-top:0!important;
	padding-bottom:15px
}
.video-cell .title{
	margin-top:15px
}
.videopic{
	position:relative;
	width:100%;
	overflow:hidden;
}
.videopic img.vpc{
	width:100%;
}
.zzx-company-logo-box {
	position: absolute;
	left: 50%;
	top:40%;
	width: 60px;
	height: 60px;
	margin-left: -30px;
	background:rgba(0,0,0,0.3);
	background-size:60px;
	border-radius: 50%;
	box-shadow: 0 0 10px 3px rgba(0,0,0,.1);
	-webkit-box-shadow: 0 0 10px 3px rgba(0,0,0,.1);
	-moz-box-shadow: 0 0 10px 3px rgba(0,0,0,.1);
	
}

.zzx-company-logo {
	position: absolute;
	left: 50%;
	width: 44px;
	height: 44px;
	margin-left: -22px;
	bottom: 8px;
}
.prosortlist .title {
	clear:both;
	height:auto!important;
	font-size:18px;
	line-height:1.3em;
	color:#333;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	padding:0px 20px;
	text-align:center;
	
}
.prosortlist .name {
	line-height:0.5em;
	height:0.5em;
	border-bottom:1px solid #e0e0e0;
	font-size:14px;
	position:relative;
	margin:10px 15px 20px 15px;
	text-align:center;
}
.prosortlist .name span {
	background:#f5f5f5;
	display:inline-block;
	text-align:center;
	padding:0px 25px;
	color:#333;
	height:1em;
	line-height:1em;
}
.yb_conct{position:fixed;z-index:9999999;top:200px;right:-167px;cursor:pointer;transition:all .3s ease;}
.yb_bar ul li{width:220px;height:53px;font:16px/53px 'Microsoft YaHei';color:#fff;text-indent:54px;margin-bottom:3px;border-radius:3px;transition:all .5s ease;overflow:hidden;}
.yb_bar .yb_top{background:#9ACF16 url(../images/fixCont.png?v=2.0) no-repeat 0 0;}
.yb_bar .yb_phone{background:#9ACF16 url(../images/fixCont.png?v=2.0) no-repeat 0 -57px;}
.yb_bar .yb_mail{background:#9ACF16 url(../images/mail.png?v=2.0) no-repeat;}
.yb_bar .yb_QQ{text-indent:0;background:#9ACF16 url(../images/fixCont.png?v=2.0) no-repeat 0 -113px;}
.yb_bar .yb_ercode{background:#9ACF16 url(../images/fixCont.png?v=2.0) no-repeat 0 -169px;}
.hd_qr{margin:0 0 0 49px;}
.yb_QQ a{display:block;text-indent:54px;width:100%;height:100%;color:#fff;}
.cpy{
	font-size:15px;
	margin-top:20px;
	clear:both;
}
.pshuiyin{
	width:100%;
	height:100%;
	background:url(../images/shuiyin.png) no-repeat center center;
	position:absolute;
	left:0;
	top:0;
	z-index:999999999999999999999999999;
	color:#FFF
}