.header{
	width: 100%;
	height: 94px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0 1px 3px rgba(0,0,0,0.07);
	transition: all .3s;
}

.header.fixed{
	height: 78px;
}

.header-space{
	width: 100%;
	height: 94px;
	transition: all .3s;
}
.header-space.add{
	height: 78px;
}



.header .logo {
	display: block;
	line-height: 0;
}

.header .logo img{
	width: auto;
	height: 60px;
	transition: all .3s;
}

.header.fixed .logo img{
	height: 50px;
}


.header .menu {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 0 50px;
}

.header .menu li{
	position: relative;
}

.header .menu li h3{
	display: block;
	width: 100%;
}
.header .menu li a {
	display: block;
	color: #333;
	line-height: 94px;
	font-size: 16px;
	padding: 0 30px;
	font-weight: normal;
	transition: color .3s;
	transition:all .3s;
}
.header.fixed .menu li a{
	color: #333;
	line-height: 78px;
}

.header .menu li:hover h3 a, .header .menu li h3 a.curr, .header.fixed .menu li:hover h3 a, .header.fixed .menu li h3 a.curr{
	color: #920882;
}


.menu .dropdown{
    visibility: hidden; /* 初始状态为隐藏 */
    opacity: 0; /* 初始透明度为 0 */
    transition: visibility 0s, opacity 0.2s ease-in-out; /* 添加过渡效果 */
    position: absolute;
    width: 140px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    z-index: 999999;
}

/* 当菜单显示时，设置可见性和透明度 */

.menu li.m:hover .dropdown {
    visibility: visible; 
    opacity: 1; 
}



.menu .m1 .dropdown{
    width: 500px;
}
.menu .m2 .dropdown{
    width: 500px;
}
.menu .dropdown-pad{
	opacity: 0;
	background: #fff;
    box-shadow: 0 2px 4px 1px rgba(0, 0, 0, 0.05);
    padding: 10px 10px 15px;
	display: flex;
	align-items: stretch;
	position: relative;
}

.menu .dropdown-pad::before,.menu li.no-dropdown::after{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	margin: -1px auto 0;
	width: 0px;
	height: 2px; 
	background-color: #920882;
	transition: all 0.5s ease-in-out;
}
.menu li.no-dropdown::after{
	top: auto;
	bottom: 0;
}
.menu li.m:hover .dropdown .dropdown-pad::before,.menu li.no-dropdown:hover::after{
	width: 100%;
}

.menu li.m:hover .dropdown .dropdown-pad{
    opacity: 1;
}


.menu .m1 .dropdown-pad,.menu .m2 .dropdown-pad{
	padding: 20px;
}


.menu .dropdown .drop-ul{
	width:100%;
}

.menu .m1 .dropdown .drop-ul,.menu .m2 .dropdown .drop-ul{
	width:160px;
}

.menu .dropdown .drop-xx{
	width: 1px;
	background-color: #ddd;
	margin: 0 20px;
}

.menu .dropdown .drop-ul-a{
	width: 100%;
	flex: 1;
}
.menu .dropdown li.sub_li{
	margin: 0;
	height: auto;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 40px;
}
.menu .dropdown li.sub_li a{
    color:#444;
	font-size: 16px;
	text-align: left;
	padding: 0 15px;
	line-height: 40px;
}

.menu .dropdown li.sub_li.sub_on a,.menu .dropdown li.sub_li:hover a{
	color: #920882;
}

.menu .dropdown li.sub_li .sub-more{
	width: 20px;
	height: 20px;
	position: relative;
}
.menu .dropdown li.sub_li .sub-more img{
	width: 100%;
	height: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.menu .dropdown li.sub_li .sub-more img.normal{
	opacity: 1;
}
.menu .dropdown li.sub_li .sub-more img.hover{
	opacity: 0;
}

.menu .dropdown li.sub_li:hover img.normal,.menu .dropdown li.sub_li.sub_on img.normal{
	opacity: 0;
}
.menu .dropdown li.sub_li:hover img.hover,.menu .dropdown li.sub_li.sub_on img.hover{
	opacity: 1;
}



.menu .dropdown li.sun_li{
	display: none;
	height: auto;
}
.menu .dropdown li.sun_li.sub_on{
	display: block;
	height: auto;
}

.menu .dropdown li.sun_li a{
	color:#666;
	font-size: 16px;
	text-align: left;
	padding: 0 10px;
	line-height: 40px;
}

.menu .dropdown li.sun_li a:hover{
	color: #920882;
}

.header .right-button{
	display: flex;
	align-items: center;
	margin-right: 15px;
}

.phone{display: flex;align-items: center;}
.phone img{height: 25px; width: auto;}
.phone span{margin-left: 5px; font-weight: 600; font-size: 18px; color: #920882}



/* 首页banner样式 */

.banner {
	width: 100%;
	height: auto;
	position: relative;
}

.banner .swiper-slide {
	height: auto;
	position: relative;
}

.banner .swiper-slide a{
	display: block;
	line-height: 0;
}


.banner .swiper-slide img {
	width: 100%;
	height: auto;
}
.banner .swiper-button-next,.banner .swiper-button-prev{
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}
.banner:hover .swiper-button-next,.banner:hover .swiper-button-prev{
	opacity: 1;
	transition: opacity 0.5s ease-in-out;
}
.banner .swiper-button-next::after,.banner .swiper-button-prev::after{
	content: '';
	display: none;
}
.banner .swiper-button-next{
	background: url(../images/banner_arrow.png) no-repeat left top;
	left: 20px;
	right:auto;
	margin-top: -35px;
	width: 70px;
	height: 70px;
	outline: none;
}

.banner .swiper-button-prev {
	background: url(../images/banner_arrow.png) no-repeat left bottom;
	right: 20px;
	left:auto;
	margin-top: -35px;
	width: 70px;
	height: 70px;
	outline: none;
}
.banner .swiper-pagination{
	bottom: 30px !important;
}

.banner .swiper-pagination-bullet{
	width: 10px !important;
	height: 10px !important;
	margin: 0 6px !important;
	background-color: rgba(255,255,255,.7);
	opacity: 0.5
}
.banner .swiper-pagination-bullet-active{
	opacity: 1;
	background-color: rgba(146,8,130,1);
}


.index-product{
	padding: 100px 0 100px;
}
.title-box{
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 50px;
	color: #111;
}

.cat-lists{
	display: flex;
	justify-content: center;
	margin-left: -77px;
	margin-right: -77px;
	margin-bottom: 40px;
	list-style: none;
}
.cat-lists li{
	padding: 0 77px;
}
.cat-lists li a{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cat-lists li a{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.cat-lists li a img{
	width: 65px;
	height: auto;
}
.cat-lists li a span{
	font-size: 18px;
	margin-top: 15px;
	color:#333;
}
.cat-lists li a:hover span{
	color: #920882;
}


.hot-product{
	display: flex;
  	flex-wrap: wrap;
}

.hot-product .hot-one{
	width: 32.75%;
}

.hot-product .hot-one a{
	position: relative;
	display: block;
	background:url(../images/hot-bg.jpg) center top no-repeat;
	background-size: 100% auto;
}

.hot-product .hot-one a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #920882;
  transition:all 0.36s;
}
.hot-product .hot-one a:hover::after {
  width: 100%;
}

.hot-product .img-box{
	width: 100%;
	line-height: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hot-product .img-box img{
	width: 100%;
	height: auto;
	transition: all .3s ease;
}
.hot-product a:hover .img-box img{
	transform: scale(1.05);
}

.hot-product .info-box{
	position: relative;
	z-index: 1;
	padding:10px 30px 30px;
}

.hot-product .info-box .title{
	line-height: 1.2;
  	margin-bottom: 15px;
	font-size: 24px;
	color:#333
}

.hot-product .info-box .tip{
	line-height: 1.6;
	font-size: 16px;
	color:#666
}

.hot-product .biaoqian{
	position: absolute;
	top: 0;
	left: 0;
	padding:2px 20px;
	background: #920882;
	color: #fff;
	font-size: 14px;
	line-height: 1.6;
}
.hot-product .main-product .biaoqian{
	font-size: 12px;
}

.hot-product .main-product{
	width: 67.75%;
	padding-left: 16px;
	display: flex;
	flex-wrap: wrap;
	margin-left: -8px;
	margin-right: -8px;
	margin-bottom: -16px;
}

.hot-product .main-product .product-one{
	width: 50%;
	height: calc(50% - 16px);
	padding:0 8px;
}

.hot-product .main-product .product-one a{
	position: relative;
	height: 100%;
	display: block;
}

.hot-product .main-product .product-one a{
	position: relative;
	height: 100%;
	background:url(../images/normal-bg.jpg) center top no-repeat;
	background-size: 100% auto;
	display: flex;
	align-items: center;
	padding: 10px;
}
.hot-product .main-product .product-one a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #920882;
  transition:all 0.36s;
}
.hot-product .main-product .product-one a:hover::after {
  width: 100%;
}


.hot-product .main-product .img-box{
	width: 155px;
}

.hot-product .main-product .info-box{
	padding:10px 30px 10px 20px;
	position: absolute;
	top:50%;
	right: 0;
	left:160px;
	transform: translateY(-50%);
}

.hot-product .main-product .info-box .title{
	line-height: 1.2;
  	margin-bottom: 15px;
	font-size: 24px;
	color:#333
}

.hot-product .main-product .info-box .tip{
	line-height: 1.6;
	font-size: 16px;
	color:#666
}


.solu-section{
	background-color: #630a59;
	padding:100px 0;
	position: relative;
}
.solu-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background:#f5f5f5;
	z-index: 0;
}

.solu-section .w80{
	position: relative;
	z-index: 1;
}
.solu-box{
	margin-top: 40px;
	overflow: hidden;
	width: 100%;
}
.solu-box .item-one{
	display: block;
	float: left;
	width: 33.333333%;
	position: relative;
}

.solu-box .item-one .img-box{
	width: 100%;
	line-height: 0;
	overflow: hidden;
	transition:all 0.3s;
	position: relative;
}
.solu-box .item-one .img-box img{
	width: 100%;
	height: auto;
	transition: all .3s ease;
}
.solu-box .item-one .img-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 54px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.01)) 80%;
}

.solu-box .item-one:hover .img-box img{
	transform: scale(1.04);
}

.solu-box .item-one .info-box{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	padding: 20px 25px;
	font-size: 24px;
	line-height: 1.5;
	color: #fff;
	font-weight: bold;
}

.about-section{
	padding: 140px 0
}

.about-section .w80{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about-section .left-box{
	width: 50%;
}

.about-section .left-box .title{
	font-size: 36px;
	font-weight: bold;
	line-height: 1.4;
	padding-bottom: 30px;
}

.about-section .left-box span.line{
	width: 46px;
	height: 6px;
	background-color: #920882;
	display: block;
}

.about-section .left-box .introduce{
	padding-top: 10px;
}
.about-section .left-box .introduce p{
	font-size: 16px;
	line-height: 28px;
	margin-top: 20px;
}
.number-list{
	margin-top: 60px;
}

.number-list .item-one{
	width:25%;
	float: left;
}

.number-list .item-one .num-box{
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.number-list .item-one .num-box .number{
	font-size: 36px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	color: #920882;
}

.number-list .item-one .num-box .unit{
	color: #555555;
	margin-left: 10px;
	margin-top: 15px;
}

.number-list .item-one .desc{
	color: #555555;
}

.about-section .right-img{
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-section .about-img{
	display: block;
	line-height: 0;
	position: relative;
	overflow: hidden;
}
.about-section .about-img img{
	width: 100%;
	height: auto;
}

.about-section .about-img::before{
	display: block;
	content: ' ';
	position: absolute;
	top:0;
	left:-100%;
	width:30%;
	height:100%;
	background:-webkit-linear-gradient(left, rgba(255,255,255,0)0%, rgba(255,255,255,0.4)30%, rgba(255,255,255,0)100%);
	transform:skewX(-30deg);
}
.about-section .about-img:hover::before{
	left:150%;
    transition: all 0.8s ease-in-out;
}


.new-pro-section{
	background-image: url(../images/new-pro-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	min-height: 500px;
}

.new-pro-section .main{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 200px 0;
}

.new-pro-section .new-pro-title{
	font-size: 44px;
	color: #FFFFFF;
	font-weight: bold;
	line-height: 1.4;
}
.new-pro-section .import-title{
	font-size: 44px;
	color: #00ccff;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 20px;
}

.new-pro-section a.more{
	display: block;
	width: 165px;
	height: 46px;
	background-color: #920882;
	color: #ffffff;
	text-align: center;
	line-height: 46px;
	border-radius: 46px;
	font-size: 20px;
	margin-top: 80px;
}
.new-pro-section a.more:hover{
	background-color: #00a8ff;
}



.news-section{
	background-color: #f5f5f5;
	padding:100px 0 20px;
}

/*首页新闻中心*/
.thumbnail img {display:block; position:absolute; left:0; top:0; width:100%; height:100%;}

.home-news {padding:0 0 50px;}
.home-news ul {overflow: hidden; width:104%;}
.home-news li {float:left; width:46%; padding-right:4%; padding-bottom:4%;}
.home-news li a {display: block; overflow: hidden; position:relative;  border-top:2px solid #ddd; padding-top:30px;}
.home-news li .thumbnail {float:left; width:280px; margin-bottom: 0;}
.home-news li .thumbnail img {transition:transform .3s;}
.home-news li figure {padding-bottom:67.924%; position:relative; overflow: hidden;}
.home-news li .info {margin-left:310px; padding:0 10px 25px 0;}
.home-news li h3 {font-size:18px; color:#333; font-weight:normal; line-height: 1.5; max-height: 60px; overflow: hidden; margin-bottom:5px;}
.home-news li .text {font-size:16px; color:#777; line-height: 1.75em; max-height:5.25em; overflow: hidden;}
.home-news li time, .home-news li .more {position:absolute; bottom:0; left:310px; font-size:14px; color:#aaa;}
.home-news li .more {left:auto; right:10px;}
.home-news li a:hover img {transform:scale(1.1,1.1);}
.home-news li a:hover h3, .home-news li a:hover .more {color:#920882; }


.readMore {text-align: center; font-size: 20px; border-top:1px solid #f1f1f1; padding-top:25px;}
.readMore a {color:#999; background:url(../images/icon_13.png) no-repeat right center; padding-right:25px;}
.readMore a:hover {color:#920882;}


/*内页Banner*/
.sub_banner {width: 100%;height: auto;line-height: 0;}
.sub_banner img{width: 100%; height: auto;}

.sub_bar {
	background-color:#f7f7f7;
	height:80px;
}

.sub_bar .w80{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.subMenu span {display:none;}
.subMenu li {line-height: 80px; font-size:16px; color:#333; float:left; padding-right:30px;}
.subMenu li a {display:block; color:#333; position:relative;}
.subMenu li a:hover,.subMenu li a.cur {color:#920882;}
.subMenu li a.cur:after{content:''; display:block; width:100%; height:3px; background-color:#920882; position:absolute; left:0; bottom:0;}

.localtion {line-height: 80px; font-size:14px; color:#888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}
.localtion i {font-family: 'Simsun'; font-style: normal; padding:2px;}
.localtion a {color:#888; padding:2px 0;}
.localtion a:hover {color:#920882;}
.localtion span {color:#920882; padding:2px 0;}




.sub_content{padding:0; font-size: 16px; line-height: 1.8;}

.sub_content p{text-indent:0;}

.sub_content .section{padding: 80px 0;}

.section .title{
	font-size: 40px;
	color: #333;
	text-align: center;
	line-height: 1.4;
	font-weight: bold;
}

.section .con-box{
	padding: 40px 60px 50px;
	line-height: 2;
}

.about-info-list {
    display: flex;
    background: #faf9fe;
	margin-bottom: 20px;
}

.about-info-list .item-one {
    padding: 32px 36px 50px;
    border-right: 1px solid #ddd;
    width: 33.333333%;
}

.about-info-list .item-one:last-child {
    border-color: #faf9fe;
}

.about-info-list .item-one .item-top{
    display: flex;
    align-items: center;
    margin-bottom: 26px;
}

.about-info-list .item-one .item-top  h3{
    color: #333;
    padding-left: 24px;
	font-size: 24px;
	line-height: 1.6;
    font-weight: bold;
}

.about-info-list .item-one .item-bottom li p {
    color: #777;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.about-info-list .item-one .item-bottom li p::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(146, 8, 130, 0.2);
}

.about-info-list .item-one .item-bottom li p::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(146, 8, 130, 1);
}


.culture-s{
	background-image: url(../images/cultrue-bg.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.culture-grid{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
	padding: 60px 0 50px;
}


.culture-item {
    overflow: hidden;
    transition: transform 0.5s ease;
	cursor: pointer;
}
.culture-item:hover {
    transform: translateY(-5px);
}

.culture-item:nth-child(2n) {
    margin-top: 50px;
}
.culture-item:nth-child(2n):hover {
    transform: translateY(-5px);
}


.culture-image {
    width: 100%;
    overflow: hidden;
	line-height: 0;
}

.culture-image img {
    width: 100%;
	height: auto;
	transition: transform 0.5s ease;
}

.culture-item:hover .culture-image img {
    transform: scale(1.05);
}

.culture-text {
    padding: 20px;
    background: #fff;
}

.culture-text h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.culture-text p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    text-indent: 0;
}


.icon-list{
	width:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.icon-list .icon-item{
	width:25%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.icon-list .icon-item .pic{
	width:75px;
	height:75px;
}

.icon-list .icon-item .item-text{
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color:#777;
}

.icon-list .icon-item .item-text em.number{
	font-style: normal;
	font-weight: bold;
	margin:0 10px 10px;
	font-size: 38px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	color: #920882;
}

.honor-s{
	padding: 80px 0 50px;
}
#certify {
	position: relative;
	width: 100%;
	padding-top: 40px;
}

#certify .swiper-container {
	padding-bottom: 60px;
}

#certify  .swiper-slide {
	width: 520px;
	height: 400px;
	background: #fff;
	box-shadow: 0 8px 30px #ddd;
}

#certify  .swiper-slide .pic{
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}
#certify  .swiper-slide .pic img{
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

#certify  .swiper-slide .text {
	width: 100%;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
#certify  .swiper-slide .text p {
	text-align: center;
	color: #555;
	font-size: 16px;
	margin: 0;
	padding: 0;
}

#certify .swiper-pagination {
	width: 100%;
	bottom: 20px;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	border: 3px solid #fff;
	background-color: #d5d5d5;
	width: 10px;
	height: 10px;
	opacity: 1;
}

#certify .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #920882;
	background-color: #fff;
}

#certify .swiper-button-prev {
	left: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 0;
	background-size: 100%;
}

#certify .swiper-button-prev:hover {
	background-position: 0 -46px;
	background-size: 100%
}

#certify .swiper-button-next {
	right: -30px;
	width: 45px;
	height: 45px;
	background: url(../images/wm_button_icon.png) no-repeat;
	background-position: 0 -93px;
	background-size: 100%;
}

#certify .swiper-button-next:hover {
	background-position: 0 -139px;
	background-size: 100%
}





.development{
	background: #FFF;
	position: relative;
}

#devSwiper{
	padding: 50px;
	overflow: hidden;
	position: relative;
	z-index: 3;
}
#devSwiper .swiper-slide{
	position: relative;
	overflow: hidden;
	height: 300px;
}
#devSwiper .swiper-slide .time{
	width: 110px;
	height: 110px;
	line-height: 110px;
	margin: auto;
	background-image: linear-gradient(to right,#358a9b,#006fad);
	border-radius: 50%;
	text-align: center;
	margin-top: 95px;
	color: #fff;
	font-size: 26px;
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
#devSwiper .swiper-slide .txt{
	font-size: 16px;
	height: 80px;
	line-height: 1.4;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow:hidden;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 220px;
	width: 100%;
	padding: 0 10px;
	box-sizing: border-box;
}
#devSwiper .swiper-slide:nth-child(even) .txt{
	position: absolute;
	top: 220px;
}
#devSwiper::after{
	content: "";
	position: absolute;
	top: 50%;
	height: 2px;
	margin-top: -1px;
	width: 150%;
	left: 50%;
	transform: translateX(-50%);
	background: url(../images/line3.png);
}
.development .button-box{
	position: absolute;
	top: 60px;
	right: 50px;
	display: flex;
	z-index: 9;
}
.development .button-prev, .development .button-next{
	width: 45px;
	height: 45px;
	background-size: 100% auto;
	background-repeat: no-repeat;
	cursor: pointer;
	margin: 0 8px;
}
.development .button-box .button-next{
	background-image: url(../images/wm_button_icon.png);
	background-position: 0 -93px;
}

.development .button-box .button-next:hover {
	background-position: 0 -139px;
}

.development .button-box .button-prev {
	background-image: url(../images/wm_button_icon.png);
	background-position: 0 0;
}

.development .button-box .button-prev:hover {
	background-position: 0 -46px;
}


/* 产品应用 */
.application-list{
	padding: 80px 0;
}

.application-list .item-one{
	margin-bottom: 50px;
	background-color: #f8f8f8;
	padding: 30px 0;
}
.application-list .item-one .text-box{
	width: 50%;
	float: left;
	padding: 50px;
	box-sizing: border-box;
}
.application-list .item-one a.app-title{
	display: flex;
	align-items: center;
	font-size: 28px;
	color:#333;
	font-weight: bold;
	margin-bottom: 20px;
}

.application-list .item-one a.app-title img{
	width: 34px;
	height: auto;
	margin-right: 10px;
}

.application-list .item-one .desc{
	line-height: 30px;
	max-height: 180px;
	overflow-y: auto;
	padding-right: 25px;
	text-align: justify;
	font-size: 16px;
}

.application-list .item-one .related-product{
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	padding-right: 60px;
	width: 100%;
	flex-wrap: wrap;
}

.related-product .rd-one{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 0;
	border-bottom: 1px solid #e5e5e5;
	width: 43%;
	cursor: pointer;
	position: relative;
}

.related-product .rd-one .i{
	width: 20px;
	height: 20px;
	border-radius: 100%;
	background: url(../svg/roll-right.svg) center no-repeat;
	background-size: 12px;
	transition: transform 0.5s;
}

.related-product .rd-one:hover .i{
	background: #920882 url(../svg/roll-right-white.svg) center no-repeat;
	background-size: 12px;
}

.related-product .rd-one:hover span,.related-product .rd-one.on span{color: #920882;}


.related-product .rd-one.on .i{
	transform: rotate(90deg);
	background: #920882 url(../svg/roll-right-white.svg) center no-repeat;
	background-size: 12px;
}

.application-list .item-one .pic-box{
	width: 50%;
	height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
 	overflow: hidden;
	float: right;
}

.application-list .item-one .pic-box img {
	width: 100%;
	transform: scale(1);
	transition: all .4s cubic-bezier(.4,0,.2,1);
}
.application-list .item-one .pic-box:hover img {
	transform: scale(1.05);
}

.application-list .item-one:nth-child(2n) .text-box{
	float: right;
}
.application-list .item-one:nth-child(2n) .pic-box{
	float: left;
}

.section.fengcai{
	background: #faf9fe;
	position: relative;
	padding-bottom: 100px;
}

.fengcai-box{
	margin-top: 50px;
	width: 100%;
	position: relative;
}

.fengcai-box img.bg{
	width: 100%;
	height: auto;
}


.fengcai-box .about-staff-ul {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.about-staff-li {
	position: absolute;
    transition: all .8s ease-out;
}

.about-staff-li.on {
    transform: scale(1.2);
}

.about-staff-li.active {
    transform: scale(0.9);
}


.about-staff-li-img, .about-staff-li-img img {
    width: 100%;
	height: auto;
}

.about-staff-li-cont {
    position: relative;
}

.about-staff-li-cont::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 52.69%, rgba(0, 0, 0, 0.60) 100%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-staff-li-cont .std-text2 {
    position: absolute;
	line-height: 1.5;
    bottom: 14px;
    left: 0;
    width: 100%;
    padding: 0 32px;
    color: rgba(255,255,255,0.8);
    z-index: 10;
}

.about-staff-li1 {
    left: 1.88%;
    top: 27.34%;
    width: 14vw;
}

.about-staff-li2 {
    left: 18.70%;
    top: 48%;
    width: 14vw;
}

.about-staff-li3 {
    left: 20.00%;
    top: 7.81%;
    width: 18.5vw;
}

.about-staff-li4 {
    left: 41.51%;
    top: 0.00%;
    width: 17.7vw;
}

.about-staff-li5 {
    left: 37%;
    top: 52%;
    width: 17vw;
}

.about-staff-li6 {
    left: 62.03%;
    top: 19.25%;
    width: 19.4vw;
}

.about-staff-li7 {
    left: 59.5%;
    top: 62%;
    width: 19.4vw;
}

.about-staff-li8 {
    left: 84.17%;
    top: 40%;
    width: 14vw;
}

.partner-box{
	padding: 30px 0 20px;
}
.partner-ul{
	list-style: none;
}

.partner-ul li{
	width: 16.6666%;
	float: left;
}

.partner-ul li a{
	line-height: 0;
	margin: 15px;
	padding: 15px;
	background-color: #FFFFFF;
	border: 1px solid #cdcdcd;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}
.partner-ul li a img{
	max-width: 100%;
	height: auto;
	width: auto;
	max-height: 100%;
}

/* 产品频道页 */
.product-cat-list{
	padding: 80px 0;
}
.product-cat-list .cat-one{
	margin-bottom: 50px;
}
.product-cat-list .cat-one .cat-name{
	width: 100%;
	text-align: center;
	font-size: 32px;
	color: #333;
	font-weight: bold;
	margin-bottom: 20px;
}
.product-ul{
	list-style: none;
	display: flex;
  	justify-content: center;
	flex-wrap: wrap;
	margin: 0 -15px;
}
.product-ul li{
	width: 33.3333%;
	padding: 0 15px;
	margin-bottom: 24px;
}
.product-ul li a{
	display: block;
	margin: 15px;
	background: #fff;
  	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
	transition:
	transform 0.5s ease;
	overflow: hidden;
}

.product-ul li a:hover{
	transform: translateY(-10px);
}

.product-ul li a p{
	line-height: 0;
	display: block;
	margin: 0;
	padding: 20px;
	background:url(../images/hot-bg.jpg) center top no-repeat;
	background-size: 100% auto;
	text-align: center;
}

.product-ul li a img{
	width: 90%;
	height: auto;
}
.product-ul li a span{
	background-color: #FFFFFF;
	display: block;
	padding:20px;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}
/* 产品频道页 */

.brc-con{
	padding: 50px 0;
	line-height: 1.8;
	font-size: 17px;
}

.brc-con img{
	max-width: 100%;
	height: auto;
}

.brc-con table{
	width: 100% !important;
	margin-bottom: 20px;
	max-width: 100%;
	border-spacing: 2px;
	border-collapse: separate !important;
	background-color: #dddddd;
	
}

.brc-con table td{
	padding: 8px;
	line-height: 1.5;
	background-color: #ffffff;
}
.brc-con table td img{
	width:auto;
	height: auto;
	max-width: 280px;
}
.brc-con p{
	display: block;
	line-height: 26px;
	min-height: 26px;
}

/*产品列表*/
#product-list ul{
	padding: 60px 0 0px;
}
#product-list li{
	width: 33.3333%;
	float: left;
}
#product-list a{
	display: block;
	margin: 15px;
	background: #fff;
  	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
	transition:
	transform 0.5s ease;
	overflow: hidden;
}
#product-list a:hover{
	transform: translateY(-10px);
}
#product-list a .pic{
	line-height: 0;
	display: block;
	margin: 0;
	padding: 20px;
	background:url(../images/hot-bg.jpg) center top no-repeat;
	background-size: 100% auto;
	text-align: center;
}
#product-list a .pic img{
	width: 90%;
	height: auto;
}
#product-list a .text{
	background-color: #FFFFFF;
	display: block;
	padding:20px;
	font-size: 18px;
	line-height: 1.6;
	text-align: center;
}


/*解决方案列表*/
#solution-list a{display: flex; padding:50px 0;background: #fff;border-bottom: 1px solid #f2f2f2;}
#solution-list a img{width:374px;height:auto; margin-right: 50px;}
#solution-list a .infobox{width:100%; flex:1;}
#solution-list a .infobox span{display:block;font-size:26px;color:#333;line-height:1.4;padding-bottom: 10px;}
#solution-list a .infobox p{display:block;font-size: 16px;color:#888;padding:10px 0 5px;line-height: 1.6}
#solution-list a:hover span{color:#920882;}


/*文档列表*/
#doclist{padding: 80px 0 0px;}
#doclist a{display: block;padding:50px 0;background: #fff;border-bottom: 1px solid #f2f2f2;}
#doclist a .infobox{width:100%;}
#doclist a .infobox span{display:block;font-size:26px;color:#333;line-height:1.4;padding-bottom: 10px;}
#doclist a .infobox p{display:block;font-size: 16px;color:#888;padding-bottom: 5px;line-height: 1.6}
#doclist a:hover span{color:#920882;}

/*新闻列表*/
#newslist{padding: 20px 0 0px;}
#newslist a{display: block;padding:50px 0;background: #fff;border-bottom: 1px solid #f2f2f2;}
#newslist a img{width:374px;height:auto;float: right;}
#newslist a .infobox{width:720px;float: left;}
#newslist a .infobox span{display:block;font-size:26px;color:#333;line-height:1.4;padding-bottom: 10px;}
#newslist a .infobox em{display:block;font-size: 16px;color:#999;padding-bottom:10px;font-style: normal;}
#newslist a .infobox p{display:block;font-size: 16px;color:#888;padding-bottom: 5px;line-height: 1.6}
#newslist a:hover span{color:#920882;}


/*内页分页*/
.pagenavi {font-size:0; text-align:center; line-height:normal; color:#323232;}
.pagenavi a {font-size:18px; color:#323232; display:inline-block; padding:0 18px 15px; margin:2px; border-bottom:2px solid transparent;}
.pagenavi a:hover {color:#920882;}
.pagenavi a.a_cur {border-color:#920882; color:#920882;}
.pagenavi a.a_btn {font-family: 'Simsun'; font-style: normal;}


/* 联系我们 */
.contact-us{
	padding: 50px 0;
}
.contact-us .gmap{
	float: left;
	position: relative;
	width: 48%;
}

.contact-us .gmap img{
	width: 100%;
	height: auto;
}

.contact-con{
	width: 48%;
	float: right;
}

.contact-con h1.title{
	display: block;
	line-height: 1.4;
	font-size: 40px;
	position: relative;
	padding-bottom: 20px;
	margin: 0;
	font-weight: bold;
}
.contact-con h1.title::after{
	width: 46px;
  	height: 6px;
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: 20px 0 0;
	background: #920882;
	
}
.c-icon-list{
	margin-top: 20px;
}
.c-icon-list li {
    display: flex;
    padding: 15px 0;
    margin: 0;
    align-items: center;
    position: relative;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
}


.c-icon-list li:hover {
    background-color: #f5f5f5;
}
.c-icon-list li .box-icon{
    width: 60px;
    height: 60px;
    background-color: #666;
    border-radius: 50%;
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-icon-list li:hover .box-icon {
    background-image: linear-gradient(to right,#dd54cd,#920882);
}

.c-icon-list li .box-icon img{
    width: 20px;
	height: 20px;
}


.c-icon-list .box-content{
    width: calc(100% - 80px);
    position: relative;
}
.c-icon-list .box-content h4{
	font-weight: bold;
}
.c-icon-list .box-content p{
	text-indent: 0;
}


/* 详情页 */
.ctt_tit{display:block;color:#333;font-size:32px;text-align:center;margin-bottom: 10px;}
.ctt_con{padding:50px 0;color:#555;font-size:16px;line-height: 1.8;}
.ctt_con img{max-width: 100%;}
.ctt_con .date{display:block;color:#888; font-size:14px; padding:10px 0 0;text-align:center;}
.ctt_con .date span{margin:0 10px}
.ctt_con .ctt_det{padding:20px 0; line-height: 1.8;}


.ctt_con .ctt_det p{margin-top: 20px;}
.ctt_con .ctt_det ul li{margin-top: 10px; position: relative;padding-left: 15px;}
.ctt_con .ctt_det li::before{content: ''; display: block;position: absolute;left: 0; margin-top: 13px;width: 5px;height: 5px;background-color: #111;border-radius: 5px;}


.section-item p{margin-top: 20px;}
.section-item ul li{margin-top: 10px; position: relative;padding-left: 15px;}
.section-item li::before{content: ''; display: block;position: absolute;left: 0; margin-top: 13px;width: 5px;height: 5px;background-color: #111;border-radius: 5px;}

.section-item{
	padding: 60px 0;
	line-height: 1.8;
	font-size:16px;
	color:#333;
	background-color: #fff;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.section-item h1.sub-title{
	color:#111;
	font-size:38px;
	text-align:center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
	font-weight: bold;
}
.section-item .sub-item-title{
	color:#111;
	font-size:32px;
	text-align:center;
	margin-bottom: 10px;
	padding-bottom: 10px;
	position: relative;
}
.section-item .sub-item-title::after{
	content: '';
	display: block;
	width: 58px;
	height: 4px;
	background-color: #920882;
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	border-radius: 4px;
}
.section-con{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 50px;
}

.section-con.top-one{
    padding: 50px 0;
}

.section-con.pro-top-one{
    padding:0; 
    margin-top:-20px;
}

.section-item .pro-pic{
	width: 40%;
	line-height: 0;
}
.section-item .pro-pic img{
	width: 100%;
	height: auto;
}
.section-item .pro-desc{
	width: 60%;
	margin-left: 50px;
	box-sizing: border-box;
	line-height: 2;
}
.section-item .diy-con{
	padding: 40px 0 0;
}
.section-item .diy-con img{
	max-width: 100%;
	height: auto;
}



.diy-con table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
}

.diy-con table td,.diy-con table th {
  border: 1px solid #ccc;
  padding: 12px 15px;
  vertical-align: middle;
}

.diy-con table tbody tr:nth-child(even) {
  background-color: #FAF9FE;
}

.diy-con table tbody tr:hover {
  background-color: #FAF9FE;
}

.diy-con table td[rowspan="3"], .diy-con table td[rowspan="8"] {
  background-color: #FAF9FE;
}

/* 移动端简单调整，表格横向滚动 */
@media screen and (max-width: 600px) {
  .diy-con table table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  
  .diy-con table tbody tr:hover {
    background-color: #FAF9FE; /* 移动端去掉悬浮高亮 */
  }
}







.ud{line-height:2;color:#999}
.ud p{margin: 0;}
.ud a{line-height:2;color:#555}
.ud a:hover{color:#920882}
/* 详情页 */


/*全站底部*/
.footer {background-color:#2f2f2f; clear:both;}
.footer .top {overflow:hidden; border-bottom:1px solid #3b3b3b; padding:60px 0 40px;}
.footer .top .left {float:left; overflow: hidden;}
.widget {float:left; padding-right:80px;}
.widget:last-child {padding-right:0;}
.widget h3 {font-size:18px; color:#fff; font-weight:normal; line-height: 1.125em; margin-bottom:20px;}
.widget h3  a{color:#fff;}
.widget li {font-size:16px; color:#888; line-height: 1.5em; padding:5px 0;}

.widget li a {color:#888;}
.widget li a:hover {color:#eee;}

.footer .top .right {float:right;}
.realTime {text-align:right; margin-bottom:40px;}
.realTime h3, .hotLine h3 {font-size:18px; color:#fff; font-weight:normal; line-height: 1.125em; margin-bottom:20px;}
.realTime .code {font-size:16px; color:#888; line-height: 1.75em;}
.hotLine {text-align:right;}
.hotLine h3 i {font-style:normal; background:url(../images/icon_06.png) no-repeat left center; padding-left:30px;}
.hotLine p {font-size:24px; color:#fff; font-family: Arial;}

.links {font-size:14px; color:#6e6e6e; position:relative; width:218px; border:1px solid #555;}
.links span {display:block; height:38px; line-height: 38px; padding:0 30px 0 15px; position:relative; cursor:pointer; -webkit-user-select:none;}
.links span:after {content:''; display:block; width:8px; height:8px; border-right:1px solid #6e6e6e; border-bottom:1px solid #6e6e6e; transform:rotate(45deg); position:absolute; right:15px; top:50%; margin-top:-6px;}
.links ul {position:absolute; left:-1px; bottom:100%; width:100%; background-color:#2f2f2f; border:1px solid #555; padding:5px 0; display:none; z-index: 5;}
.links li a {display:block; line-height: 30px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding:0 15px;}
.links li a:hover {color:#eee;}

.copyright {clear:both; padding:2% 0; font-size:14px; display: flex;align-items: center;justify-content: space-between; color:#6c6c6c; text-transform: uppercase;}
.copyright a {color:#6c6c6c;}
.copyright a:hover{color:#fff;}
.copyright .left {float:left;} 
.copyright .right {float:right;}
.copyright .right img {display:inline-block; vertical-align: middle; margin-right:5px;}

.backTop {width:68px; height:68px; border-radius:50%; background:#fff; cursor:pointer; position:fixed; bottom:18%; right:3%; z-index: 7; color:#fff;display: flex; align-items: center; justify-content: center;box-shadow: 0 0 5px rgba(0,0,0,0.3);}
.backTop img{width:30px;height:30px;}
.backTop img.n{display: block;}
.backTop img.h{display: none;}
.backTop:hover{ background:#920882; }
.backTop:hover img.n{ display: none; }
.backTop:hover img.h{ display: block; }
