

.headingList{
	width: 90%;
	padding: 20px 5%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #555555;
	background-color: #fff;
	transition: all 0.5s;
	border-top: 1px solid #ddd;
}
.headingList.active{
	color: #fff;
	border-top: 1px solid #126eba;
	background-color: #126eba;
}
.headingList.active:hover{
	color: #fff;
}
.headingList:hover{
	color: #126EBA;
}
.headingList .title_p{
	width: calc(100% - 25px);
	font-size: 16px;
	line-height: 28px;
}
/* 加号 */
.headingList .plus{
	width: 22px;
	height: 22px;
	line-height: 22px;
	border-radius: 50%;
	background-color: #ccc;
	transition: all 0.5s;
}
.headingList:hover .plus{
	background-color: #126EBA;
}
.headingList.active .plus{
	background-color: #fff;
}
.headingList.active:hover .plus{
	background-color: #fff;
}

.headingList .plus span{
	display: block;
	width: 8px;
	height: 1px;
	margin: auto;
	background-color: #fff;
	transition: all 0.5s;
}
.headingList .plus span:first-child{
	margin-top: 10px;
}
.headingList.active .plus span{
	background-color: #126eba;
}
.headingList .plus span:nth-child(2){
	transform: rotate(90deg);
	margin-top: -1px;
}
.headingList.active .plus span:nth-child(2){
	transform: rotate(0deg);
	margin: auto;
}

@media (max-width: 768px) {
	.headingList{
		width: 90%;
		padding: 17px 5%;
	}
	.headingList .title_p{
		font-size: 15px;
	}
}
@media (max-width: 540px) {
	.headingList{
		width: 90%;
		padding: 10px 5%;
	}
	.headingList .title_p{
		font-size: 14px;
	}
}





.productData{
    display: flex;
	flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.bannerPicture{
    width: 45%;
    position: relative;
}
.productData .dataBox{
    width: 50%;
}

/* 查看更多 */
.productData .buttom{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.productData .seemore{
	width: 210px;
	color: #fff;
	border: none;
	margin-bottom: 20px;
	border-radius: 5px;
	background-color: #ec5718;
}
.productData .seemore .imageIcon img{
	width: 20px;
	height: 20px;
	margin-right: 15px;
}
.productData .seemore:hover .imageIcon img:nth-last-child(1){
	display: block;
	margin: 0;
	margin-right: 15px;
}



/* 轮播图 */
.banner_con2{
    margin-bottom: 30px;
}
.banner_con2 .swiper-slide-list{
    width: 100%;
    border: 1px solid #D9D9D9;
    
}
/* 左右按钮 */
.bannerPicture .button_prevNext{
    position: relative;
    top: -45px;
	
}
.bannerPicture .button_prevNext .swiper-button-next,
.bannerPicture .button_prevNext .swiper-button-prev {
    width: 35px;
	margin-top: -28px;
    background-size: 12px 20px;
}
.bannerPicture .button_prevNext .swiper-button-prev,
.bannerPicture .button_prevNext .swiper-container-rtl .swiper-button-next {
    /* background-image: url(../img/left001.png); */
}
.bannerPicture .button_prevNext .swiper-button-next,
.bannerPicture .button_prevNext .swiper-container-rtl .swiper-button-prev {
    /* background-image: url(../img/rigth001.png); */
}
/* 分页器 */
.gallery-thumbs2{
    width: 80%;
    margin: 0 auto;
    padding-bottom: 11px;
}
.gallery-thumbs2 .swiper-slide:nth-child(1){
    margin-left:-38%;
}
.gallery-thumbs2 .swiper-slide a{
    cursor: pointer;
    width: 90%;
    margin: 0 auto;
    vertical-align: top;
    color: #333;
	margin-left: 15px;
	
}
.gallery-thumbs2 .swiper-slide-active a{
    position: relative;
    box-shadow:none;
}
.gallery-thumbs2 .swiper-slide-active a::before{
    position: absolute;
    width: 0;
    content: "";
    height: 0;
    top: 0;
    left: 50%;
    z-index: 99;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #235bba;
    text-align: center;
    transform: rotate(180deg) translateX(50%);
}

.gallery-thumbs2 .swiper-slide a img{
    border: 1px solid #D9D9D9;
    box-shadow: 0 1px 10px 0 rgb(0 0 0 / 10%);
    cursor: pointer;
    width: 90%;
    /* padding: 0 10%; */
    margin: 0 auto;
    margin-top: 10px;
    vertical-align: top;
    color: #333;
}
.gallery-thumbs2 .swiper-slide-active a img{
    width: 90%;
    /* padding: 0 10%; */
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    border: 1px solid #235bba;
}
.productData .dataBox h2{
    font-size: 24px;
    font-weight: initial;
	padding-bottom: 25px;
    color: #333333;
	font-weight: bold;
	line-height: 30px;
}
.productData .dataText{
	margin-bottom: 30px;
	border-top: 1px solid #D9D9D9;
}
.productData .dataBox .textBox{
    width: 100%;
    margin-top: 25px;
	padding-top: 25px;
	line-height: 28px;
	border-top: 1px solid #D9D9D9;
}
.productData .dataBox .textBox:first-child{
	border-top: 0;
	padding-top: 0;
}
.productData .dataBox .textBox .th{
    font-size: 16px;
    color: #000;
	font-weight: bold;
	margin-bottom: 5px;
}
.productData .dataBox .textBox p{
    font-size: 16px;
    color: #555;
    
}

.productData .dataBox .textBox .download{
	display: flex;
	align-items: center;
	margin-bottom: 8px;
}
.productData .dataBox .textBox .download img{
	width: 20px;
	margin-right: 10px;
}
.productData .dataBox .textBox .download img:nth-child(2){
	display: none;
}
.productData .dataBox .textBox .download:hover img:nth-last-child(1){
	display: block;
}
.productData .dataBox .textBox .download:hover img:nth-last-child(2){
	display: none;
} 

.productData .dataBox .textBox .download p{
	width: calc(100% - 30px);
	font-size: 16px;
	color: #555;
	white-space:nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.5s;
}
.productData .dataBox .textBox .download:hover p{
	color: #126EBA;
}

@media (max-width: 992px){
    /* 轮播图 */
    .banner_con2{
        margin-top: 30px;
    }
    .productData .mainsVw{
        display: flex;
        flex-wrap: wrap-reverse;
        align-items: flex-start;
        justify-content: space-between;
    }
    .bannerPicture{
        width: 100%;
        position: relative;
		margin-bottom: 30px;
    }
    .productData .dataBox{
        width: 100%;
    }
}
@media (max-width: 540px){
    
    .productData .dataBox H2{
        font-size: 20px;
        padding-bottom: 15px;
    }
    .productData .dataText{
		margin-bottom: 25px;
	}
    .productData .dataBox .textBox{
        margin-top:15px;
    }
    /* 轮播图 */
    .banner_con2{
        margin: 20px auto;
    }
    .bannerPicture .button_prevNext{
        position: relative;
        top: -35px;
    }
    .gallery-thumbs2 .swiper-slide-active a::before{
        position: absolute;
        width: 0;
        content: "";
        height: 0;
        top: 3px;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
        border-top: 7px solid #235bba;
    }
}



.tableNav{
	width: 100%;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	background-color: #f2f9ff;
	margin-top: 70px;
}
.tableNav li{
	cursor: pointer;
	width: 20%;
	font-size: 18px;
	text-align: center;
	padding: 22px 0;
	color: #666;
	transition: all 0.5s; 
}
.tableNav li.active{
	color: #fff;
	background-color: #126eba;
}
.tableNav li:hover{
	color: #126eba;
}
.tableNav li.active:hover{
	color: #fff;
}

@media (max-width: 540px) {
	.tableNav{
		margin-top: 45px;
	}
	.tableNav li{
		width: 33.33%;
		font-size: 16px;
		padding: 20px 0;
	}
}

.tableList{
	width: 100%;
	background-color: #fff;
	margin-bottom: 30px;
}
.tableBox{
	width: 90%;
	padding: 0 5%;
}
.tableBox .text{
	line-height: 30px;
	padding-top: 30px;
}
.tableBox .th{
	font-size: 20px;
	font-weight: bold;
	color: #126eba;
}
.tableBox p{
	font-size: 16px;
	color: #333;
}
.tableBox img{
	width: auto;
	max-width: 100%;
	margin: 10px auto;
	display: block;
	text-align: center;
}
.tableBox .minwidth{
	width: 100%;
	overflow: hidden;
}
.tableBox table{
	width: 100%;
	min-width: 700px;
	table-layout:fixed;
	border-collapse:collapse;
	margin-top: 20px;
}
.tableBox table tr td{
	padding: 10px 0;
	font-size: 16px;
	color: #666;
	text-align: center;
	border: 1px solid #D9D9D9;
}
.tableBox table tr td:first-child{
	width: 40%;
	text-align: left;
	text-indent: 50px;
	background-color: #f5f8fb;
}
@media (max-width: 700px) {
	.tableList{
		width: 100%;
		margin-bottom: 0px;
	}
	.tableBox .minwidth{
		overflow-x: scroll;
	}
	.tableBox table::-webkit-scrollbar {
		width: 2px;
		height: 1px;
	}
}