@charset "utf-8";
/* CSS Document */
:root{
	--green:#168d39;
	--grey:#666666;
	--red:#e70808;
	--bluecolor:#0a70cc;
}
html{
	font-size:1px;
}

body{
	font-size:14px;
	font-family:"微软雅黑","Microsoft Yahei";
	padding:0;
	margin:0;
	user-select: none;
	color: #333;
}

*{
	box-sizing: border-box;
}
div, ul, li, dl, dd, span, h1, h2, p, h4, h3 {
	margin:0;
	padding:0;
	list-style:none;
}
a{
	text-decoration:none;
	color: #333;
}

img{
	display: inline-block;
	width: auto;
	max-width: 100%;
}

ul,li{
	padding: 0;
	margin: 0;
	 list-style: none;
}

button,input{
	outline: none;
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
	border: none;
	font-family: inherit;
}


/*选择下拉效果*/

.select-ui { 
	width: 100%;
	border-radius: 10px;
    position: relative;
}

.select-ui select{
	display:none;
	position:relative;
	width:100%;
	cursor:pointer; 
}

.select-ui .select .button{
	width:100%;
	display:flex;
	align-items:center;
	justify-content: center;
	background:#ffffff;
	border-radius:25px;
	box-sizing:border-box;-webkit-box-sizing:border-box;  color:#7d8592;
	cursor:pointer;
}

.select-ui .select.focus{ padding:0px;}

.select-ui .select.focus .button{
	border-color:rgb(55,65,81);
}


.select-ui .select .button .text{
	flex:1;
	color:#7d8592;
	display:flex;
	flex-wrap:nowrap;
	align-items:center;
	
	overflow:auto;
	box-sizing:border-box;
	max-width:340px;
	text-align:center;
}

.select-ui-multiple .select .button .text::-webkit-scrollbar {
    width: 7px;
	height:7px;
	background:#ffffff;
}
.select-ui-multiple .select .button .text::-webkit-scrollbar-thumb {
    background: rgba(214,216,221,.7);
    scrollbar-arrow-color:#898989;
	border-radius:7px;
}


.select-ui .select .button .text .item{
	display:flex;
	margin-right:5px;
	align-items:center;
	padding:0 5px;
	color:#ffffff;
	background-color:#333333;
	line-height:26px;
	white-space:nowrap;
	flex-wrap:nowrap;
	border-radius:3px;
	font-size:12px;
}


.select-ui .select .button .fill-current{
	fill:rgb(125,133,146);
}


.select-ui .select .options{
	--tw-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);
	position:absolute;
	top:100%;
	border-radius:4px;
	background:#ffffff;
	border:1px #efeff0 solid;
	display:flex;
	flex-direction:column;
	width:100%;
	z-index:1000;
	box-shadow: var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);
	visibility:hidden; left: 0px;
	opacity:0;
	box-sizing:border-box;
	margin-top:-8px;
   
}


.select-ui .select.focus .options{
	margin-top:0px;
	opacity:1;
	visibility:visible; 
	transition:all .3s;
	-webkit-transition:all .3s;
}


.select-ui .select .options li{
	font-size:14px;
	text-align:left;
	margin:0;
	color:#666;
	width:100%;
	padding:0px;
}

.select-ui .select .options li{ margin-right:0px;}


.select-ui .select .options li.selected span{
	color:#fff;
	 background-color:var(--blue);
}


.select-ui .select .options li span{
	display:block;
	padding:8px 15px; line-height: 30px; width:100%;box-sizing:border-box;-webkit-box-sizing:border-box;
	cursor:pointer;
}

.select-ui .select .options li span:hover{
	 background-color:var(--blue);color:#fff;box-sizing:border-box;-webkit-box-sizing:border-box;
}

.grid{
	display: grid;
}
.g-1{
	grid-template-columns: 1fr;
}
.g-2{
	grid-template-columns: repeat(2,1fr);
}
.g-3{
	grid-template-columns: repeat(3,1fr);
}
.g-4{
	grid-template-columns: repeat(4,1fr);
}
.g-5{
	grid-template-columns: repeat(5,1fr);
}
.b{
	font-weight: bold;
}
.normal{
	font-weight: normal;
}
.hide{
	overflow: hidden;
}
.hide-x{
	overflow-x:hidden;
}
.scroll{
	overflow:auto;
}
.scrollview{
	overflow:auto;
}
.flex{
	display: flex;
}
.flex-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flex-center {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex-center-x {
	display: flex;
	justify-content: center;
}
.flex-center-y {
	display: flex;
	align-items: center;
}
.flex-column{
	display: flex;
	flex-direction: column;
}
.flex-col-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.flex-col-center-y {
	display: flex;
	justify-content: center;
}
.flex-col-center-x {
	display: flex;
	align-items: center;
}
.flex-col-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.flex-r-center{
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.f-1{
	flex:1;
	overflow: hidden;
}
.f-2{
	flex:2;
	overflow: hidden;
}
.f-3{
	flex:3;
	overflow: hidden;
}
.fixed{
	position: fixed;
}
.abs{
	position:absolute;
}
.relative{
	position: relative;
}
.round{
	border-radius:100%;
	overflow: hidden;
}
.full{
	top:0;
	left: 0;
	width: 100%;
	height: 100%; 
}

.ellipsis{
	display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;
}

.multi-ellipsis{
	--line:3;
	display: -webkit-box;
	-webkit-line-clamp:var(--line);
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ui-button{
	display: inline-block;
	align-items: center;
	justify-content: center;
	padding:0 23px;
	color:#ffffff;
	font-size: 14px;
	background-color: var(--green);
	border: none;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
}

.container{
	width:min(92%,1510px);
	margin:auto;
}

.button-more{
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 138px;
	height: 44px;
	line-height: 44px;
	padding: 0 12px 0 20px;
	background-color: #fff;
	color: var(--grey);
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
}

.button-more::after{
	content: "";
	width: 8px;
	height: 9px;
	background: url(../images/arrow-right.png) center no-repeat;
	background-size:contain;
}

.red{
	color: var(--red);
}

header{
	border-top: solid 5px var(--green);
}

.head{
	padding: 29px 0 29px;
}

.head .logo img{
	height:70rem;
	object-fit:contain;
}

.head .search{
	width:555rem;
	position: relative;
	
}
.head .search_one{height:46px;
	border:solid 2px var(--green);
	border-radius:10px;
	position: relative; width: 100%;}
.head .search form{
	overflow: visible;
}
header .search_4{ display: none;}
.head .search .selectbox{
	width:93px;
	position:relative;
}

.head .search .selectbox:after{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #e6f4e4;
	z-index: -1;
	content: "";
}

.head .search .selectbox .select,
.head .search .selectbox .select-ui{
	flex:1;
	display: flex;
}

.head .search .selectbox .options{
	transform: translateY(6px);
	-webkit-transform: translateY(6px);
	background: rgba(22,141,57,.84);
	--tw-shadow:none;
	border-radius:10px;
	overflow: hidden;
	padding: 7px 4px;
}

.head .search .selectbox .button{
	padding: 0 17px;
	background: none;
}

.head .search .selectbox .options li span{
	padding: 0;
	text-align: center;
	height: 26px;
	line-height: 26px;
	color: #fff;
}

.head .search .selectbox .options li.selected{
	background-color: var(--green);
	border-radius: 8px;
}

.head .search .input{
	width:100%;
	padding:0 10px;
}

.head .search .keys{
	position: absolute;
	top: 100%;
	left: 0;
	color: var(--grey);
	padding: 6px 14px 0;
}

.head .search .keys a{
	color: var(--grey);
	margin-left: 15px;
}
.head .index_adv{ width: 24.8%;}
header .search_4{ cursor: pointer; width: 24px;}
header nav ul{
	display: flex;
	justify-content: space-between;
}

header nav ul a{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	font-size: 16px;
}
header nav ul li{ flex:1;}
header nav ul a.active,
header nav ul a:hover{
	color: var(--green);
}

header nav ul a::before{
	content: "";
	margin-right: 4px;
	width: 25px;
	height: 25px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

header nav ul .icon1::before{
	background-image: url(../images/icon1.png);
}

header nav ul .icon1:hover::before,
header nav ul .icon1.active::before{
	background-image: url(../images/icon1_2.png);
}

header nav ul .icon2::before{
	background-image: url(../images/icon2.png);
}

header nav ul .icon2:hover::before,
header nav ul .active.icon2::before{
	background-image: url(../images/icon2_2.png);
}

header nav ul .icon3::before{
	background-image: url(../images/icon6.png);
}

header nav ul .icon3:hover::before,
header nav ul .active.icon3::before{
	background-image: url(../images/icon6_2.png);
}

header nav ul .icon4::before{
	background-image: url(../images/icon3.png);
}

header nav ul .icon4:hover::before,
header nav ul .active.icon4::before{
	background-image: url(../images/icon3_2.png);
}

header nav ul .icon5::before{
	background-image: url(../images/icon7.png);
}

header nav ul .icon5:hover::before,
header nav ul .active.icon5::before{
	background-image: url(../images/icon7_2.png);
}

header nav ul .icon6::before{
	background-image: url(../images/icon4.png);
}

header nav ul .icon6:hover::before,
header nav ul .active.icon6::before{
	background-image: url(../images/icon4_2.png);
}

header nav ul .icon7::before{
	background-image: url(../images/icon5.png);
}

header nav ul .icon7:hover::before,
header nav ul .active.icon7::before{
	background-image: url(../images/icon5_2.png);
}

header nav ul .icon11::before{
	background-image: url(../images/zt_18.png);
}

header nav ul .icon22::before{
	background-image: url(../images/zt_15.png);
}


header nav ul .icon33::before{
	background-image: url(../images/zt_26.png);
}


header nav ul .icon44::before{
	background-image: url(../images/zt_29.png);
}

header nav ul .icon55::before{
	background-image: url(../images/zt_21.png);
}

header nav ul .icon66::before{
	background-image: url(../images/zt_23.png);
}


header nav ul .icon77::before{
	background-image: url(../images/zt_32.png);
}


.index-main {
	background-color: #f9f9f9;
	padding-top: 24px;
	
}

.index-main .topnews{
	align-items: stretch;
}

.index-main .topnews .focus{
	width: 53.4%;
	margin-right: 23px;
	border-radius: 10px;
}

.index-main .topnews .focus .swiper-pagination{
	bottom: 25px;
}

.index-main .topnews .focus .swiper-pagination span{
	width: 15px;
	height: 11px;
	background-color: #fff;
	opacity: 1;
	margin: 0 4px;
	border-radius: 0;
	border: solid 1px #e0e0e0;
}

.index-main .topnews .focus .swiper-pagination .active{
	background-color: var(--green);
	border-color: var(--green);
}
.index-main .topnews .focus ul{  height: 100%;}
.index-main .topnews .focus li{
	position: relative;
	height: 100%;
}

.index-main .topnews .focus img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.index-main .topnews .focus .txt{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 58px 50px;
	line-height:1;
}

.index-main .topnews .focus .y{
	color: #000000;
	font-size: 40rem;
	font-weight: bold;
	margin-bottom: 30rem;
}

.index-main .topnews .focus .title{
	font-size: 48rem;
	color: #202020;
	margin-bottom: 16rem;
}

.index-main .topnews .focus .en{
	font-size: 18rem;
	color: #030303;
	margin-bottom: 56rem;
}

.index-main .topnews .focus .author{
	font-size: 24rem;
	color:#646464;
	margin-bottom: 94rem;
}

.index-main .topnews .tabs{
	background-color: #fff;
	border-radius: 10px;
	padding: 20px 25px;
}

.index-main .topnews .tabbtn{
	margin-bottom: 24px;
}

.index-main .topnews .tabbtn .btn{
	height: 42px;
	line-height: 42px;
	text-align: center;
	margin-right: 20px;
	background-color: #f7f7f7;
	border-radius: 6px;
	cursor: pointer;
}

.index-main .topnews .tabs .btn:last-child{
	margin-right: 0;
}

.index-main .topnews .tabs .btn.active{
	background-color:#e6f4e4 ;
}

.index-main .topnews .tabs .content{
	display: none;
}

.index-main .topnews .tabs .photo{
	width: 40.3%;
	min-width: 180px;
	margin-right: 28px;
}

.index-main .topnews .tabs .photo a{
	display: block;
	position: relative;
	padding-bottom: 62.8%;
	height: 100%;
}

.index-main .topnews .tabs .photo img{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
	border-radius: 6px;
}

.index-main .topnews .tabs .list li{
	height: 52px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #333333;
}

.index-main .topnews .tabs .list li::before{
	content: "";
	width: 14px;
	min-width: 14px;
	height: 14px;
	background-color: #e3e3e3;
	border-radius: 100%;
	border: solid 1px #e3e3e3;
	margin-right: 15px;
}

.index-main .topnews .tabs .list li a{
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	flex:1;
}

.index-main .topnews .tabs .list li:hover a,
.index-main .topnews .tabs .list li:hover{
	color: var(--green);
}

.index-main .topnews .tabs .list li:hover::before{
	background-color: #fff;
	border: solid 1px var(--green);
}

.index-main .topnews .tabs .list li .dt{
	white-space: nowrap;
	margin-left: 15px;
}

.index-main .topnews .tabs .content:nth-child(1){
	display: block;
}

.index-main .topnews .tabs .photonews{
	display: flex;
	margin-bottom: 20px;
	align-items: stretch;
}

.index-main .topnews .tabs .photonews .info{
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1;
	padding-top: 20px;
	overflow: hidden;
}

.index-main .topnews .tabs .photonews .title{
	font-size: 16px;
	font-weight: bold;
	max-width: 100%;
	padding-right: 39px;
	position: relative;
}

.index-main .topnews .tabs .photonews .title i.ico{
	position: absolute;
	top: -22px;
	right: -0px;
	width: 41px;
	height: 20px;
	background: url(../images/index_36.jpg) center no-repeat;
	background-size:contain;
}

.index-main .topnews .tabs .photonews .desc{
	--line:3;
	line-height: 1.4;
	margin-bottom: 25px;
	margin-top: 15px;
}

.index-main .topnews .tabs .photonews .ft{
	display: flex;
	align-items: center;
}

.index-main .topnews .tabs .photonews .more{
	display: flex;
	align-items: center;
	color: var(--green);
}

.index-main .topnews .tabs .photonews .more::after{
	content: "";
	width: 16px;
	height: 16px;
	background: url(../images/index_60.jpg) center no-repeat;
	margin-left: 9px;
}

.card{
	margin-top: 54px;
}

.card-title{
	font-size: 30px;
	font-weight: bold;
	color: var(--green);
	line-height: 1;
	margin-bottom: 20px;
}

.card-title::before{
	content: "";
	width: 7px;
	height: 26px;
	border-radius: 7px;
	background-color: var(--green);
	margin-right: 13px;
}

.index-main .product-new .ad{
	position: relative;
	width: 19.867%;
	z-index: 0;
	min-width: 240px;
	margin-right: 18px;
}

.index-main .product-new .ad img{
	border-radius: 10px;
	position: absolute;
	z-index: -1;
}

.index-main .product-new .ad .txt{
	line-height: 1.5;
	position: absolute;
	padding:45px 13%;
}

.index-main .product-new .ad .title{
	font-size: 30px;
	color: #000000;
}

.index-main .product-new .ad .desc{
	font-size: 18px;
	color: #000000;
	margin-bottom: 30px;
}

.index-main .product-new .list{
	position: relative;
	position: relative;
	border-radius: 10px;
	background-color: #ffffff;
	padding: 53rem 57rem 30rem;
}

.index-main .product-new .slide-btn{
	position: absolute;
	width: 31px;
	height: 31px;
	background-image: url(../images/slidebtn.png);
	top: 50%;
	margin-top: -15.5pxx;
	z-index: 100;
}

.index-main .product-new .btn-prev{
	left: 14px;
	background-position: 0 0;
}

.index-main .product-new .btn-next{
	right: 14px;
	background-position: 31px 0;
}

.index-main .product-new .list li .photo{
	position: relative;
	padding-bottom: 131%;
	margin-bottom: 25px;
	display: block;
}

.index-main .product-new .list li .photo img{
	object-fit: contain;
	position:absolute;
}

.index-main .product-new .list li .title{
	font-size: 16px;
	margin-bottom: 15px;
	display: block;
}

.index-main .product-new .list li:hover .title{
	color: var(--green);
}

.index-main .product-new .list li .price{
	margin-bottom: 8px;
	color: var(--grey);
}

.index-main .tujian-book .list ul li{
	margin-right: 8%;
	text-align: center;
}

.index-main .tujian-book .list ul li:last-child{
	margin-right: 0;
}

.index-main .tujian-book .list ul li .title{
	color: var(--grey);
	margin-bottom: 8px;
}

.index-main .tujian-book .list ul li .price{
	margin-bottom: 0px;
	font-size: 16px;
}

.index-main .tujian-book .list ul li .price .n{
	font-style: normal;
	font-size: 30px;
	font-weight:bold;
}

.index-main .tujian-book .list{
	padding: 44rem 54rem 34rem;
}

.index-main .product-hot .top11{
	width: 22.5%;
	min-width: 200px;
	background-color: #ffffff;
	border-radius: 10px;
	padding: 16px;
	margin-right: 18px;
}

.index-main .product-hot .top11 li{
	padding: 17px 15px;
	border-radius: 8px;
	margin-bottom: 9px;
}

.index-main .product-hot .top11 li::after{
	content: "";
	width: 10px;
	height: 7px;
	background: url(../images/arrow-up-default.png);
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	margin-left: 15px;
}

.index-main .product-hot .top11 li:hover::after{
	background-image: url(../images/arrow-up.png);
	opacity: .5;
}

.index-main .product-hot .top11 li:nth-child(1),
.index-main .product-hot .top11 li:nth-child(2),
.index-main .product-hot .top11 li:nth-child(3){
	background-color: #f9f9f9;
}

.index-main .product-hot .top11 .title{
	flex: 1;
	overflow: hidden;
}

.index-main .product-hot .top11 .num{
	margin-right: 15px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	background-color: #ffffff;
	border:solid 1px  #a5a5a5;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
}

.index-main .product-hot .top11 li:hover a{
	color: var(--green);
}

.index-main .product-hot .top11 li:hover .num{
	border-color: var(--green);
	color: var(--green);
}

.index-main .product-hot .top11 li:nth-child(1) .num{
	border-color: #e40a52;
	background-color: #e40a52;
	color: #fff;
}

.index-main .product-hot .top11 li:nth-child(2) .num{
	border-color: #e1bd07;
	background-color: #e1bd07;
	color: #fff;
}

.index-main .product-hot .top11 li:nth-child(3) .num{
	border-color: #a3a3a3;
	background-color: #a3a3a3;
	color: #fff;
}

.index-main .product-hot .top11 .photo{
	width: 28.6%;
	margin-right: 15px;
}

.index-main .product-hot .list{
	background-color: #ffffff;
	border-radius: 10px;
	padding: 23px 16px 0px;
}

.index-main .product-hot .list ul{
	display: grid;
	grid-template-columns: repeat(4,1fr);
}

.index-main .product-hot .list ul li{
	padding:0 13%;
	line-height: 1.7;
	margin-bottom: 20%;
	overflow: hidden;
}

.index-main .product-hot .list li .title,
.index-main .product-hot .list li .price{
	margin-bottom: 0;
}

.index-main .product-hot .list .tabbtn{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}

.index-main .product-hot .list .tabbtn .btn{
	height: 34px;
	line-height: 34px;
	padding: 0 16px;
	border-radius: 8px;
	background-color: #f8f8f8;
	color: #575757;
	margin-right: 20px;
	margin-bottom: 20px;
	cursor: pointer;
}

.index-main .product-hot .list .tabbtn .btn.active{
	background-color: var(--green);
	color: #ffffff;
}

.index-main .footad{
	margin-top: 22px;
}

.index-main .footad .container{
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	z-index: 0;
	padding: 60rem 60rem 70rem;
}

.index-main .footad .container img.full{
	object-fit: cover;
	z-index: -1;
	position: absolute;
}

.index-main .footad .title{
	font-size: 40rem;
	margin-bottom: 10px;
	color:#181818;
}

.index-main .footad .desc{
	font-size: 18px;
	color: #13842e;
	margin-bottom: 40rem;
}
.friendlink{ padding-bottom: 30px;}
.friendlink .card-list{
	display: flex;
}

.friendlink .card-list .item{
	margin-right: 1.589%; position: relative;
}

.friendlink .card-list .item:last-child{
	margin-right: 0;
}

.friendlink .card-list .item .label{
	height: 60px;
	font-size: 18px;
	background-color: #ffffff;
	position: relative;
	cursor: pointer;
}
.friendlink .card-list .item.no1 .label:before{ content: ""; background-image: url(../images/arrow-up-default.png); background-repeat: no-repeat; right: 7%; top: 50%;transform:translateY(-50%);-webkit-transform:translateY(-50%); position: absolute; width: 10px; height: 7px;}
.friendlink .card-list .item .submenu{ position: absolute; bottom: 110%; left: 0px; width: 100%; background-color: #fff;transition: all .3s ease;-webkit-transition: all .3s ease; opacity: 0;visibility:hidden}
.friendlink .card-list .item{ overflow: inherit;}
.friendlink .card-list .item .submenu dd a{ font-size: 16px; line-height: 2.5; padding: 0px 15px; display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis; text-align: center;}
.friendlink .card-list .item:hover .submenu{ opacity: 1; bottom: 100%;visibility: visible;}
.friendlink .card-list .item:hover{ color: var(--green);}
.friendlink .card-list .item .submenu dd a:hover{ color: var(--green);}

.friendlink .card-list .item .label:hover{ color: var(--green);}
.friendlink.no1 .card-list .item:hover{ color: var(--bluecolor);}
.friendlink.no1 .card-list .item .submenu dd a:hover{ color: var(--bluecolor);}
.friendlink.no1 .card-list .item .label:hover{ color: var(--bluecolor);}


footer{
	background-color: #13842e;
	padding: 25px 0;
	line-height:2;
	color: #fff;
}
footer.no1{ background-color: var(--bluecolor);}
footer.no1 .tpright{ text-align: right;}
footer a{
	color: #fff;
}

footer p{
	margin: 0;
}

footer .footlink a{
	margin: 0 24rem;
}

footer .footlink a:first-child{
	margin-left: 0;
}

footer .footlink a:last-child{
	margin-right: 0;
}

/*移动菜单*/
.menubtn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 26px;
	height: 40px;
	right: 0px;
	z-index: 100;
	display: none;
	position: relative;
	margin-left: 15px;

}

.menubtn .name {
	font-size: 16px;
	left: -60px;
	font-weight: 500;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	position: absolute;
	font-weight: 600;
}

.menubtn .navbar-icons {
	height: 20px;
	width: 100%;
	position: relative;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .5s ease-in-out;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.menubtn .navbar-icons span {
	display: block;
	height: 2px;
	width: 100%;
	opacity: 1;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	transition: .25s ease-in-out;
	top: 0;
	-webkit-transform-origin: left center;
	transform-origin: left center;
	background-color: #333;
	position: relative;
	border-radius: 5px;
}

.menubtn .navbar-icons span:first-child {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn .navbar-icons span:nth-child(2) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
	width: 70%;
}

.menubtn .navbar-icons span:nth-child(3) {
	-webkit-transform-origin: left center;
	transform-origin: left center;
}

.menubtn.open .navbar-icons span:first-child {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 1px;
}

.menubtn.open .navbar-icons span:nth-child(2) {
	opacity: 0;
}

.menubtn.open .navbar-icons span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 1px;
}

.menu-mc {
	position: fixed;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #168d39;
	z-index: 500;
	transition: all .5s;
	-webkit-transition: all .5s;
	transform: translateY(-100%);
	-webkit-transform: translateY(-100%);
	padding-top: 85px;
	display: flex;
	flex-direction: column;
	display: none;

}

.menu-mc.active {
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.menu-mc .list {
	flex: 1;
	overflow: auto;
}

.menu-mc .list ul {
	padding: 0 24px;
}

.menu-mc .list ul li {
	line-height: 60px;
}

.menu-mc .list ul li .submenu {
	display: none;
}
.menu-mc .list ul li .submenu dd{ padding-left: 0px; margin-left: 0px;}

.menu-mc .list ul li .title {
	border-bottom: 1px solid rgba(255, 255, 255, .19);
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 600;
	color: #fff;
}

.menu-mc .list ul li .title .icon {
	width: 18px; height: 18px;
	background-image: url(../images/arrow1.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.menu-mc .list ul li a {
	display: block;
	font-size: 14px;
	color: #fff;
}

.menu-mc .list ul li .submenu a {
	padding-left: 20px;
	line-height: 45px;
}

.menu-mc .list ul li .submenu a:hover {

	font-weight: 600;
}

header nav ul .first{ background-color: var(--green); color: #fff; padding: 0px 17px;}
header nav ul .first .icon11{ width: 20px; height: 15px;background-image: url(../images/icon2_06.png); background-repeat: no-repeat;background-size: cover;}
header nav ul .first:before{ display: none;}
header nav ul .first:hover{ color: #fff;}

.local .icon{ margin-right: 10px;}
.local .green{ color: var(--green);}
.local .line{ margin: 0px 5px;}
.index-main.no1{ padding-top: 0px;}
.local{ padding: 17px 0px;}
.border_1{ background-color: #fff; border-radius: 5px; padding: 30px 43rem; margin-bottom: 19px;}
.sta_class{ padding-top: 42px; padding-bottom: 42px;}
.sta_class .items { align-items: flex-start; line-height: 30px; }
.sta_class .items .lab{ padding: 0px 29px 0px 0px; white-space: nowrap}
.sta_class .items .btn{ background-color: var(--green); color: #fff; border-radius: 3px; display: inline-block; padding: 0px 29px;}
.sta_class .items .list{ flex-wrap: wrap; flex:1; overflow: hidden; margin-left: 35rem; gap: 15px;}
.sta_class .items .list li a{ border-radius: 3px; display: inline-block; padding: 0px 18px; border: 1px #fff solid;}
.sta_class .items .list li.active a,.sta_class .items .list li a:hover{ background-color:#e6f7eb; border: 1px var(--green) solid; color: var(--green);}
.sta_class .items .box{ flex:1; overflow: hidden;}
.sta_class .items .box .content{align-items: flex-start; display: flex;margin-bottom: 20px;}
.sta_class .items .box .content:last-child{ margin-bottom: 0px;}
.shop_class{ margin-bottom: 30rem;}
.shop_class ul li a{ background-color: #e1f0e5; height: 29px;  border-radius: 3px; min-width: 58px; padding: 0px 7px; display: flex; align-items: center; justify-content: center;}
.shop_class ul li{ margin-right: 10px;}
.shop_class ul li a .img2{ display: none;}
.shop_class ul li a img{ margin-left: 3px; width: 15px;}
.shop_class ul li.active a{background-color: #168d39; color: #fff;}
.shop_class ul li.active a .img1{ display: none;}
.shop_class ul li.active a .img2{ display: block;}

.pro_list ul{
	display: grid;
	grid-template-columns: repeat(4,1fr);
	grid-gap: 20px 0px;
}
.pro_list ul li{ overflow: hidden;}

.pro_list ul li a{
	padding:20px 13%;
	line-height: 1.7;
	display: block;
	overflow: hidden;
	border: 1px #fff solid; border-radius: 5px; position: relative;
}
.pro_list ul li .photo{position: relative;
    padding-bottom: 131%;
    margin-bottom: 20px;
    display: block; cursor: pointer;}
.pro_list ul li .title{
	color: #0d0d0d; font-size: 16px;
}
.pro_list ul li .photo img{ width:100%; height:100%; position:absolute; top:0px; left:0px;object-fit: cover;
	object-position: center center;}

.pro_list ul li .desc{ color: #666666; font-size: 12px; margin: 5px 0px;}
.pro_list ul li .price .red{ color: #f50000; font-size: 18px;}
.pro_list ul li .price .red span{  font-size: 26px; font-weight: 600;}
.pro_list ul li .price .gray{ font-size: 18px; margin-left: 10px; color: #575757;text-decoration: line-through;}
.pro_list ul li a:hover:before{ content: ""; position: absolute; background-color: rgba(255,255,255,0.83); left: 0px; top: 0px; width: 100%; height: 100%; background-image: url(../images/icon2_19.png); background-repeat: no-repeat; background-position: center; background-size: 57px 58px; z-index: 10;}
.pro_list ul li a:hover{ border: 1px var(--green) solid;}

/*翻页*/
.fany{display:flex;align-items: center; justify-content: flex-end; margin-top:20px;text-transform: uppercase; margin-bottom: 10px;
}
/*分页*/
.divid-a {
   display: flex;
   align-items: center;
   justify-content: center;
flex-wrap: wrap; font-size:14px;
}
.divid-a a {
   background: #fff;
   color: #636363; font-size:14px;
  width:35px;
   padding:0px 10px; height:35px;
   cursor:pointer; margin:5px 4px;
   display: flex;
   align-items: center;
   justify-content: center;
   border:1px #eaeaea solid; 
   font-family: "黑体";
   
} 
.divid-a span{ margin:5px 10px;}
.divid-a .active ,.divid-a a:hover{
  color: #fff;
   background:var(--green);
   border:1px var(--green) solid;
}
.fany.no1 .divid-a .active ,.fany.no1 .divid-a a:hover{
	color: #fff;
	 background: var(--bluecolor);
	 border:1px var(--bluecolor) solid;
  }
.book_lab{ background-color: #48a55f; padding: 15px 0px; display: none;}
.book_lab .tpleft{ font-size: 18px; color: #fff;}
.book_lab .back{ width: 10px; cursor: pointer; margin-right: 15px;}
.book_lab .icon{ width: 21px; margin-right: 8px;}
.book_lab .shop_class{ margin-bottom: 0px;}
.book_lab .shop_class ul li a{ font-size: 12px; height: 25px;}
.book_lab .shop_class ul li { margin-right: 0px; margin-left: 8px;}
.book_list{ background-color: #fff; padding: 10px; width: 100%; position: relative; display: none;}
.book_list ul{ gap: 6px; }
.book_list ul li {}
.book_list ul li .title{ min-width: 80px; height: 35px; display: flex; align-items: center; justify-content: center; background-color: #e6f6eb; border-radius: 3px; padding: 0px 10px; white-space:  nowrap}
.book_lab .shop_class ul li a{ background-color: #fff;}
.book_lab .shop_class ul li.active a{ background-color:#63bb7f;}
.book_list ul li.active a{ background-color: var(--green);color: #fff;}
.book_list ul li.no1 .title:after{ content: ""; border:5px solid transparent;border-top: 5px solid #d0d2cf;transform:translateY(-50%);-webkit-transform:translateY(-50%); margin-top: 14px; margin-left: 5px; }
.book_list ul li.active .title:after{border-top: 5px solid #fff;}
.book_list ul li .box{ position: absolute; top: 100%; width: 100%; background-color: #f9f9f9; flex-wrap: wrap; left: 0px;box-shadow:3px 3px 3px 0px rgba(0,0,0,0.2); -webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.2); }
.book_list ul li .box a{ width: 50%; line-height: 3; padding: 0px 10px;background-color: #f9f9f9; color: #333; text-align: center;}
.shop_1 { display: flex; align-self: flex-start; margin-bottom: 46px;}
.shop_1 .tpleft{ width: 37.7%;}
.show_1{ padding-top: 58rem;}
.shop_1 .tpleft .photo{ margin-bottom: 35rem;}
.shop_1 .tpleft .see{ color: #838282; font-size: 22px; cursor: pointer;}
.shop_1 .tpleft .see img{ margin-right: 10px;}
.shop_1 .content{ flex:1; margin-left: 65rem; overflow: hidden;}
.shop_1 .content .title{ font-size: 30px; color: #000; margin-bottom: 30rem;}
.shop_1 .content .desc{ color: #999; line-height: 2; font-size: 16px; margin-bottom: 40rem;}
.shop_1 .content .desc .black{color: #000;}
.shop_1 .content .price{ color: #d80202; font-size: 30px; line-height: 1; margin-bottom: 50rem;}
.shop_1 .content .price span{ font-size: 40px; font-weight: 600;}
.shop_1 .content .title img{ width: 36px; margin-right: 8px;}
.shop_1 .content .list{ gap: 20px;}
.shop_1 .content .list li { flex:1;}
.shop_1 .content .list li a{ display: flex; align-items: center; justify-content: center; border: 1px #d3d3d3 solid; border-radius: 5px; height: 64px; font-size: 28px;}
.shop_1 .content .list li a img{ width: 37px; margin-right: 7px;}
.shop_1 .content .list li a:hover,.shop_1 .content .list li.active a{border: 1px var(--green) solid;}
.shop_2 ul { gap:15px;}
.shop_2 { margin-bottom: 68px;}
.shop_2 ul li{  cursor: pointer; min-width: 157px; padding: 0px 10px; text-align: center; line-height: 64px; background-color: #dbf0e2; color: #000; font-size: 22px; border-radius: 6px; border: 1px var(--green) solid;}
.shop_2 ul li.active{ background-color: var(--green); color: #fff;}
.shop_3{ font-size: 22px; color: #000; line-height: 2; margin-bottom: 30px;}
.show_1{ margin-bottom: 58rem;}
.shop_2{ overflow-x: auto;}
.card-title .more{ font-size: 16px; font-weight: normal; color: var(--green);} 
.card-title .more img{ margin-left: 10px;}
.book_lab.no1{ position: relative;}
.book_lab.no1 .back{ position: absolute; left: 5%; top: 50%; transform:translateY(-50%);-webkit-transform:translateY(-50%);}
.new_top{ background-color: #fff; border-radius: 7px; padding: 26px; position: relative; }
.new_top .photo{ width: 45.8%; border-radius: 8px; overflow: hidden;}
.new_top .photo a{ display: block; height: 100%;}
.new_top .photo img{ width:100%; height:100%; object-fit: cover;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
.new_top .photo a:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
.new_top .content{ flex:1; padding-left: 2.8%; padding-right: 5%; color: #666; overflow: hidden;}
.new_top .more1{}
.new_top .content .title a{ font-size: 24px; color:var(--green);display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.new_top .content .date{ font-size: 16px; margin-top: 18px; margin-bottom: 35px;}
.new_top .content .desc{ font-size: 18px;display:-webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp:5;-webkit-box-orient:vertical; overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis; line-height: 1.7; margin-bottom: 29px;}
.more1{ width: 140px; height: 45px; padding: 0px 12px; border: 1px var(--green) solid; font-size: 14px; border-radius: 7px; color: var(--green);}
.more1 .icon{ width: 16px; height: 16px;  background-image: url(../images/index_60.jpg); background-size: cover; background-repeat: no-repeat;}
.new_top ul li{ display: flex; align-items: stretch;}
.new_top .sbtn{ position: absolute; bottom: 26px; right: 26px; display: flex; align-items: center; justify-content: center;}
.new_top .sbtn span{ width: 33px; height: 8px; border: 1px var(--green) solid; margin-left: 6px; cursor: pointer;}
.new_top .sbtn span.active{ background-color: var(--green);}
.more2{ width: 140px; height: 45px; padding: 0px 12px; border: 1px #b1b1b1 solid; font-size: 14px; border-radius: 7px; color:#b1b1b1;}
.more2 .icon{ width: 16px; height: 16px;  background-image: url(../images/grapmore_07.png); background-size: cover; background-repeat: no-repeat;}
.more2:hover{ background-color: var(--green); color: #fff; border: 1px var(--green) solid;}
.more2:hover .icon{background-image: url(../images/index_601.png); }
.new_list{ margin-bottom: 40rem;}
.new_list ul li{ background-color: #fff; border-radius: 7px;
    padding: 26px; margin-top: 24px; display: flex;align-items: stretch;}
.new_list ul li .box{ flex:1; overflow: hidden;}
.new_list ul li .photo{ width: 351px; height: 100%; border-radius: 4px; overflow: hidden; margin-right: 2%;}
.new_list ul li .photo a{ height: 100%;}
.new_list ul li .photo a img{ width:100%; height:100%; object-fit: cover;
	object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
.new_list ul li .photo a:hover img{transform:scale(1.05);-webkit-transform:scale(1.05);}
   
.new_list ul li .box .content{ flex:1; margin-right: 9.5%;color: #999999; font-size: 16px; overflow: hidden;}
.new_list ul li .box .content .title a{ font-size: 24px; color: #000;display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.new_list ul li .box .content .desc{ display:-webkit-box; -webkit-box-orient: vertical;-webkit-line-clamp:2;-webkit-box-orient:vertical; overflow:hidden;text-overflow:ellipsis;-webkit-text-overflow:ellipsis; line-height: 1.7; margin-top: 24rem; margin-bottom: 29rem;} 
.new_list ul li .box .content .title a:hover{ color: var(--green);}
.index-main .tujian-book .list.no1{    padding: 20px 20px 40rem;}
.index-main .tujian-book .list.no1 ul li{ flex:1; margin-right: 0px; padding:38px 40rem 0px; position: relative;}
.index-main .tujian-book .list.no1 ul li .lab_1{ background-color: #d30003; color: #fff; font-size: 16px;  display: inline-block; line-height: 31px; padding: 0px 10px; border-radius: 0px 12px 0px 12px; position: absolute; left: 0px;  top:0px;}
.index-main .tujian-book .list.no1 ul li:nth-child(2) .lab_1{ background-color: #e59226;}
.index-main .tujian-book .list.no1 ul li:nth-child(3) .lab_1{ background-color: #0a70cc;}
.index-main .tujian-book .list.no1 ul li:nth-child(4) .lab_1{ background-color: #168d39;}

.new_class ul { gap:20px;}
.new_class { margin-bottom: 22px;}
.new_class ul li a{  cursor: pointer; min-width: 145px; padding: 0px 10px; text-align: center;  height: 54px; background-color: #fff; color: #000; font-size: 18px; border-radius: 6px; border: 1px #fff solid; display: flex; align-items: center; justify-content: center;}
.new_class ul li.active a{ background-color: var(--green); color: #fff;}
.new_class{ overflow-x: auto;}
.new_show{ padding-top: 70px; font-size: 16px; line-height: 2;}
.new_show .new_title{ text-align: center; font-size: 30px; line-height: 1.2;}
.new_show .date{ text-align: center;color: #999; margin-top: 25px; margin-bottom: 36px;}
.new_show .show_2 p{ margin-bottom: 20px;}

header.no2{ border-top: 0px;}
header.no2 nav{ background-color: var(--bluecolor);}
header.no2 nav ul a{ color: #fff;}
.bg2{ background: url(../images/ztbg_02.jpg) center top no-repeat;}
.notice_1{ background-color: #fff; margin-bottom: 35px;}
.notice_1 .tpleft{ height: 64px; background-color: var(--bluecolor); color: #fff; font-size: 24px; padding: 0px 19px;}
.notice_1 .tpleft img{ height: 26px; margin-right: 15px;}
.notice_1 .list{ flex:1; margin: 0px 2%; overflow: hidden; height: 64px; line-height:64px;}
.notice_1 .list ul li{ font-size: 16px; display: flex; align-items: center; display: flex; align-items: center;}
.notice_1 .list ul li a{ margin-right: 20px;display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.notice_1 .list ul li .date{white-space:nowrap}
.notice_1 .turn { margin-right: 2%;}
.notice_1 .turn .btn{ width: 30px;height: 30px; background-image: url(../images/slidebtn1.png); background-repeat:no-repeat;cursor: pointer; margin-left: 12px;}
.notice_1 .turn .prev{ background-position: left bottom;}
.notice_1 .turn .next{ background-position: right bottom;}
.notice_1 .turn .next.active,.notice_1 .turn .next:hover{background-position: right top;}
.notice_1 .turn .prev.active,.notice_1 .turn .prev:hover{background-position: left top;}
.card-title.no2{ color: var(--bluecolor);}
.card-title.no2::before{ display: none;}
.card-title.no2 .more{ color: var(--bluecolor);}
.special_1{ background-color: #fff; display: flex; align-items: stretch;}
.special_1 .spe_list{ width: 61.1%; position: relative;}
.special_1 .spe_list ul,.special_1 .spe_list ul li{ height: 100%;}
.special_1 .spe_list ul li a{ display: block; position: relative; height: 100%;}
.special_1 .spe_list ul li a img{ width: 100%; height: 100%;object-fit: cover;
	object-position: center center;display: block;}
.special_1 .spe_list ul li a .xfk{background-color:rgba(0,0,0,0.3); position: absolute; height: 2; color: #fff; line-height: 62px; padding-left: 12px; padding-right: 10%; font-size: 22px; width: 100%; left: 0px; bottom: 0px;display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis;}
.special_1 .spe_list .sbtn{ position: absolute; right: 2%; left: unset; width: auto; bottom: 23px; z-index: 10;}
.special_1 .spe_list .sbtn span{ opacity:1; border-radius:0;display: inline-block; width: 12px; height: 12px; margin: 0; margin-left: 9px; background-color: #fff;}
.special_1 .spe_list .sbtn span.active{ background-color: var(--bluecolor);}
.special_1 .spe_right{ flex:1; padding: 42rem 42rem 20rem; overflow: hidden;}
.special_1 .spe_right .title{ text-align: center; margin-bottom: 20px; font-weight: bold;}
.special_1 .spe_right .title a{display:block; white-space:nowrap; overflow:hidden; text-overflow:ellipsis;-webkit-text-overflow:ellipsis; font-size: 30px;}

.new_list1 ul li{
	height: 52px;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: #333333;
}

.new_list1 ul li::before{
	content: "";
	width: 14px;
	min-width: 14px;
	height: 14px;
	border-radius: 100%;
	border: solid 1px #e3e3e3;
	margin-right: 15px;
}

.new_list1 ul li a{
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	flex:1;
}

.new_list1 ul li:hover a,
.new_list1 ul li:hover{
	color: var(--bluecolor);
}

.new_list1 ul li:hover::before{
	background-color:var(--bluecolor);
	border: solid 1px var(--bluecolor);
}

.new_list1 ul li .dt{
	white-space: nowrap;
	margin-left: 15px;
}
.dance1{ margin-bottom: 58px;}
.index-main.no5{ background-color: #f9f9f9;}
.Recom_list ul{display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px 48rem;
align-items: stretch;}
.Recom_list ul li{ display: flex; align-items: stretch; }
.Recom_list ul li a{ padding: 48rem 10rem 25px; text-align: center; font-size: 22px;background-color: #fff;border-radius: 7px; border: 1px #e3e3e3 solid; display: flex;flex-direction: column; width: 100%;}
.Recom_list ul li a .icon{ margin-bottom: 20rem; text-align: center;}
.Recom_list ul li a .icon img{ height: 45px; margin: 0px auto;}
.Recom_list ul li a .icon .img2{ display: none;}
.Recom_list ul li a:hover .icon .img1{ display: none;}
.Recom_list ul li a:hover .icon .img2{ display: block;}
.Recom_list ul li a:hover{background:linear-gradient(to bottom,#0e73ce,#3d9beb);}
.member_1 { width: 100%;}
.member_1 ul{display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 38rem 38rem;
align-items: stretch;}
.member_1 ul li{}
.member_1 ul li a{ display: block;}
.member_1 ul li a .photo{position:relative; display:block; padding-top:127.2%; width:100%; overflow:hidden; border-radius: 10px;}
.member_1 ul li a .photo img{ width:100%; height:100%; position:absolute; top:0px; left:0px;object-fit: cover;
 object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
 .member_1 ul li a:hover .photo img{transform:scale(1.05);-webkit-transform:scale(1.05);}
 .member_1 ul li a .title{ font-size: 22px; margin-top: 17px; margin-bottom: 10px;}
 .member_1 ul li a .desc{ font-size: 16px; color: #666666;}
 .Resource_1 ul{display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 19px 28px;
align-items: stretch;}
.Resource_1 ul li{ background-color: #fff;  overflow: hidden; }
.Resource_1 ul li a{ display: block; height: 100%;display: flex; align-items: center; justify-content: center; font-size: 16px;border: 1px #fff solid;background-color: #fff;}
.Resource_1 ul li a .tpleft{ height: 140px; display: flex; flex-direction: column;align-items: center; width: 140px; justify-content: center; border-right: 1px #e9e9e9 dashed;}
.Resource_1 ul li a .box{ flex:1; padding: 0px 28px; overflow: hidden;}
.Resource_1 ul li a .tpleft .icon{ width: 43px; height: 31px; background-image: url(../images/zt_99.png); background-repeat: no-repeat;background-size: cover; margin-bottom: 19px;}
.Resource_1 ul li a .box .content{ flex:1; margin-right: 5%; overflow: hidden;}
.Resource_1 ul li a .box .content .tit{ font-size: 18px; margin-bottom: 12px;}
.Resource_1 ul li a .box .more{ width: 10px; height: 20px;background-image: url(../images/ztico_03.png); background-repeat: no-repeat;background-size: cover;}
.Resource_1 ul li a:hover{ border: 1px var(--bluecolor) solid;}
.Resource_1 ul li a:hover .tpleft{  background-color: var(--bluecolor); color: #fff;  border-right: 1px var(--bluecolor) solid;}
.Resource_1 ul li a:hover .tpleft .icon{background-image: url(../images/zt_103.png);}
.Resource_1 ul li a:hover .box .more{background-image: url(../images/ztico_05.png); }
.nybanner{ text-align: center; padding: 109rem 0rem;}
.nybanner img{ max-width: 60%;}
header .search_2 { width: 340rem; height: 59px; border-radius: 5px; border: 1px #dddddd solid; padding: 0px 12px; background-color: #ffffff;}
header .search_2 .sumbit{ width: 21px; height: 19px; cursor: pointer; border: 0px; outline: none;background-color: #fff; padding: 0px;}
header .search_2 .sumbit img{width: 100%;}
header .search_2 .formbit{ flex:1; height: 50px;line-height: normal; overflow: hidden; margin-left: 10px;}
.index_contact{ display: flex; align-items: stretch;border-radius: 5px; overflow: hidden;}
.index_contact .tpleft{ width: 273px; text-align: center;background-color: var(--bluecolor); color: #fff; display: flex; flex-direction: column; justify-content: center; }
.index_contact .tpleft .tit{ font-size: 32px; letter-spacing: 2px;}
.index_contact .tpleft .eng{ font-size: 22px; letter-spacing: 2px;}
.index_contact .photo{ flex:1; overflow: hidden;}
.index_contact .photo img{ width: 100%; height: 100%;object-fit: cover;
	object-position: center center;}

.menu-mc.no1{ background-color: var(--bluecolor);}

.search_3 { width: 90%; height: 39px; border-radius: 25px; border: 1px #fff solid; padding: 0px 12px; margin: 0px auto;}
.search_3 .sumbit{ width: 18px; height: 16px; cursor: pointer; border: 0px; outline: none; background: none; padding: 0px;}
.search_3 .sumbit img{width: 100%;}
.search_3 .formbit{ flex:1; height: 35px;line-height: normal; overflow: hidden; margin-left: 10px; background: none;}
.search_3 .formbit::-webkit-input-placeholder {
	color:#fff;
	}
.local .blue{ color: var(--bluecolor);}	
.new_list.no1 ul li .box .content .title a:hover{ color: var(--bluecolor);}
.new_list.no1 ul li .box .more2{ border-radius: 25px; letter-spacing: 2px;}
.new_list.no1 ul li .box .more2:hover{ background-color: var(--bluecolor); border: 1px var(--bluecolor) solid;}

.new_top1 ul{display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 34px 34px;
align-items: stretch;}
.new_top1 ul li{ background-color: #fff; padding: 23rem 23rem 36rem; border-radius: 5px; overflow: hidden; color: #666; font-size: 16px; border: 1px #fff solid; }
.new_top1 ul li a{ display: block;}
.new_top1 ul li a .title{ font-size: 18px; color: #333; margin: 20px 0px;}
.new_top1 ul li a .desc{ margin-bottom: 48rem; line-height: 1.5; color: #666;}
.new_top1 ul li a .date{ color: #666;}
.new_top1 ul li a .photo{position:relative; display:block; padding-top:64.7%; width:100%; overflow:hidden; border-radius: 5px;}
.new_top1 ul li a .photo img{ width:100%; height:100%; position:absolute; top:0px; left:0px;object-fit: cover;
 object-position: center center;transition:all .5s;-webkit-transition:all .5s;}
 .new_top1 ul li a:hover .photo img{transform:scale(1.05);-webkit-transform:scale(1.05);}
 .new_top1 ul li a .more{ display: inline-block; padding-right: 25px;background-image: url(../images/mess_10.jpg); background-repeat: no-repeat; background-position: right center;  background-size: 18px 17px; color: var(--bluecolor); margin-left: 5px;}
 .new_top1 ul li:hover{ border: 1px var(--bluecolor) solid;}
 .new_top1 ul li:hover a .title{ color:var(--bluecolor);}
@media (max-width:1450px){
	.shop_1 .content .title{ font-size: 26px;}
	.shop_1 .tpleft .see{font-size: 18px;}
	.shop_1 .tpleft .see img{ width: 24px;}
	.shop_1 .content .list li a img{ width: 27px;}
	.shop_1 .content .list li a{ font-size: 24px;}
	.shop_1 .content .list li a{ height: 54px;}
	.shop_1 .content .title{ margin-bottom: 20px;}
	.shop_1 .content .desc{ margin-bottom: 25px;}
	.shop_1 .content .price{ margin-bottom: 30px;}
	.shop_2 ul li{ font-size: 18px; line-height: 54px;min-width: 137px; }
	.shop_2{ margin-bottom: 48rem;}
	.shop_3 {  font-size: 18px;}
	.card-title{ font-size: 25px;}
	.card-title::before{ width: 5px; height: 22px;}
	.shop_1 .tpleft .photo{ margin-bottom: 25px;}
	.new_top .content .date{ font-size: 14px;}
.new_top .content .desc{ font-size: 16px;}
.new_top .content .title a{ font-size: 20px;}
.new_list ul li .box .content .title a{ font-size: 20px;}
.new_class ul li a{min-width: 145px; height: 45px; }
.notice_1 .tpleft{ font-size: 20px; height: 54px;}
.notice_1 .tpleft img{ height: 22px;}
.special_1 .spe_right .title a{ font-size: 25px;}
.Recom_list ul{grid-gap: 20px 28rem;}
.Recom_list ul li a{ font-size: 18px;}
.Recom_list ul li a .icon img{ height: 38px;}
.Recom_list ul li a:hover{ color: #fff;}
.member_1 ul li a .title{ font-size: 18px; }
.member_1 ul li a .desc{ font-size: 14px; }
.member_1 ul{
	grid-gap: 28rem 28rem;}
	.Resource_1 ul li a{ font-size: 16px;}
	.Resource_1 ul li a .box .content .tit{ font-size: 18px;}
	.Resource_1 ul li a .tpleft{ height: 120px;}
	header .search_2{ height: 49px;}
	header .search_2 .formbit{ height: 45px;}
	.index_contact .tpleft .tit{ font-size: 28px;}
.index_contact .tpleft .eng{ font-size: 18px; }
.special_1 .spe_list ul li a .xfk{ font-size: 18px; line-height: 52px;}
.new_top1 ul li{ font-size: 14px;}
.new_top1 ul li a .title{ font-size: 16px;}
.notice_1 .list{ height: 54px; line-height:54px;}
}
@media (max-width:1200px){
	html{
		font-size: .7px;
	}
	.pro_list ul li .price .red span{ font-size:22px;}
	.pro_list ul li .price .gray{ font-size: 16px;}
	header nav ul a{ font-size: 14px;}
	header nav ul .first{ padding: 0px 8px;}
	.new_list ul li .photo{ width: 30%;}
	.new_show{ font-size: 14px;}
	.new_show .new_title{ font-size: 25px;}
	.new_show .date{margin-top: 15px;
		margin-bottom: 16px;}
   .special_1 .spe_right .title a{ font-size: 20px;}
	.new_list1 ul li{ height: 45px;}
	.special_1 .spe_right .title{ margin-bottom: 15px;}
	.special_1 .spe_list{ width: 50%;}
	.Recom_list ul li a{ font-size: 16px;}
	.Resource_1 ul li a .tpleft{ width: 120px; height: 120px;}
	.new_top1 ul{grid-gap: 24px 24px;}
}

@media (max-width:768px){
	html{
		font-size: .5px;
	}
	header nav{
		display: none;
	}
	.index-main{
		margin-top: 0;
	}
	.index-main .topnews{
		display: block;
	}
	.index-main .topnews .focus{
		margin-right: 0;
		margin-bottom: 5%;
		width: 100%;
	}
	.index-main .topnews .focus img{
		height: auto;
		min-height: 310px;
	}
	.index-main .product-new .ad{
		display: none;
	}
	.menubtn,
	.menu-mc {
		display: flex;
	}
	.head .search{ position: absolute; top: 100%; width: 100%; left: 0px; z-index: 20; background-color: #fff; flex-direction: column; padding: 0px 10px 15px; display: none;}
	header{ position: sticky; width: 100%; left: 0px; top: 0px; z-index: 20;background-color: #fff; z-index: 10000;box-shadow: 0px 0px 8px rgb(0 0 0 / 18%);}
	.head .search .keys{ position: static;}
	header .search_4{ display: block;}
	.head .search .input{ height: 40px;}
	.head{ padding: 11px 0px 11px;}
	.head .logo img{ height: 30px;}
	.head .search.active{ display: block;}
	.index-main .topnews .tabbtn .btn{ margin-right: 5px;}
	.index-main .topnews .tabs{ padding: 15px 15px;}
	.index-main .topnews .tabs .photonews .desc{ --line: 2;}
	.index-main .topnews .tabs .photonews{ flex-direction: column;}
	.index-main .topnews .tabs .photo{ width: 100%; margin-right: 0px; margin-bottom: 5px;}
	.index-main .topnews .tabs .list li{ font-size: 14px;}
	.index-main .topnews .tabs .list li::before{ width: 10px; height: 10px; min-width: 10px;}
	.index-main .topnews .tabs .list li{ height: 45px;}
	.card-title{ font-size: 25px;}
	.card-title::before{ width: 4px; height: 22px; margin-right: 8px;}
	.index-main .product-new .list li .title{ font-size: 14px;}
	.index-main .product-new .list li .photo{ margin-bottom: 14px;}
	.index-main .tujian-book .list ul li .price{ font-size: 14px;}
	.index-main .tujian-book .list ul li .price .n{ font-size: 25px;}
	.card-list{ flex-direction: column;}
	.index-main .product-hot .top11{ width: 100%; margin-right: 0px; margin-bottom: 20px;}
	.index-main .product-hot .list .tabbtn .btn{     margin-right: 10px;
		margin-bottom: 10px;}
		.friendlink .card-list .item{ margin-right: 0px;}
		.card-list{ gap: 10px;}
		.friendlink .card-list .item .label{ font-size: 16px; height: 50px;}
		.friendlink .card-list .item .submenu{box-shadow: 0px 0px 8px rgb(0 0 0 / 8%);}
		.pro_list ul{    grid-template-columns: repeat(2, 1fr);grid-gap: 10px 20px;}
		.pro_list ul li .photo{ margin-bottom: 10px;}
		.pro_list ul li{ padding: 0px 0%; margin-bottom: 0px;}
		.border_1{ padding: 30px 15px;}
		.book_lab{ display: block;}
		.book_list{ display: block;}
		/*.sta_class{ display: none;}*/
		.sta_class .magaL{width: 100%; padding-right:0;border-right:0;}
		.sta_class .magaR{width: 100%; margin-top: 20px; }
		.sta_class .magaL .magaImg,.sta_class .magaL .magaInfo{width: 100%;}
		.shop_class{ display: none;}
		.book_lab .shop_class{ display: block;}
		.pro_list ul li a{ padding: 10px 0px;}
		.shop_1{ flex-direction: column;}
		.shop_1 .tpleft{ width: 100%; text-align: center; margin-bottom: 25px;}
		.shop_1 .tpleft .see{ justify-content: center;}
		.shop_1 .content{ flex:none; width: 100%; margin-left: 0px;}
		.shop_1 .content .title{ font-size: 22px;}
		.shop_1 .content .desc{ font-size: 14px;}
		.shop_1 .content .price span{ font-size: 30px;}
		.shop_1 .content .price{ font-size: 20px;}
		.shop_1 .content .title img{ width:30px ;}
		.shop_1 .content .list li a { font-size: 18px; height: 44px;}
		.shop_1 .content .list li a img{ width: 17px;}
		.shop_1 .content .list{ gap:10px}
		.shop_1{ margin-bottom: 36px;}
		.shop_2 ul li{font-size: 17px;
			line-height: 44px;
			min-width: 100px;}
		.shop_2 ul{ gap: 7px;}
		.shop_3{ font-size: 14px; margin-bottom: 20px;}
		.local.no1{ display: none;}
		.index-main.no1{ padding-top: 24px;}
		.new_top ul li{ flex-direction: column;}
		.new_top .photo{ width: 100%; margin-bottom: 20px;}
		.new_top .content{ padding: 0px;}
		.new_top .content .title a{ font-size: 18px;}
		.new_top .content .desc{ font-size: 14px;}
		.new_top .content .date{ font-size: 12px; margin: 10px 0px 20px;}
		.more1{ width: 120px; height: 35px;}
		.more1 .icon{ width: 12px; height: 12px;}
		.new_top{ padding: 15px;}
		.new_top .content .desc{ margin-bottom: 19px;}
		.new_list ul li .box .content .title a{ font-size: 18px;}
		.new_list ul li .box .content{ font-size: 14px;}
		.more2{ width: 120px; height: 35px;}
		.more2 .icon{ width: 12px; height: 12px;}
		.new_class ul li a{ font-size: 16px;}
		.new_class ul{ gap: 10px;}
		.new_class ul li a{ min-width: 100px;}
		.new_class{ margin-bottom: 15px;}
		.new_show .new_title{ font-size: 22px;}
		.new_show .show_2{ line-height: 1.7;}
		.new_show .show_2 p{ margin-bottom: 15px;}
		.head .index_adv{ display: none;}
		header .search_2{ display: none;}
		header.no2 .head .logo img{ height: 35px;}
		.nybanner img{ max-width: 70%;}
		.nybanner{ padding: 30px 0px;}
		.notice_1 .list ul li{ font-size: 14px;}
		.notice_1 .tpleft img{ height: 18px; margin-right: 5px;}
		.notice_1 .tpleft{ font-size: 16px; height: 44px; padding: 0px 8px;}
		.notice_1 .list ul li .date{ display: none;}
		.notice_1 .turn{ zoom: 0.6;}
		.notice_1 .list ul li a{ margin-right: 0px;}
		.special_1{ flex-direction: column;}
		.special_1 .spe_list{ width: 100%;}
		.special_1 .spe_list ul li a .xfk{ font-size: 16px; padding-right: 80px;}
		.special_1 .spe_list .sbtn span{ width: 10px; height: 10px;}
		.special_1 .spe_list .sbtn{ bottom: 18px;}
		.dance1{  margin-bottom: 38px;}
		.Recom_list ul{grid-template-columns: repeat(3, 1fr);}
		.Recom_list ul li a{ font-size: 14px;}
		.Recom_list ul li a .icon img{ height: 28px;}
		.member_1 ul{    grid-template-columns: repeat(3, 1fr);grid-gap: 25px 15px;}
		.Resource_1 ul{ grid-template-columns: repeat(1, 1fr);}
		.Resource_1 ul li a .tpleft .icon{ margin-bottom: 10px; width: 33px; height: 24px;}
		.Resource_1 ul li a .tpleft{ width: 100px; height: 100px;}
		.Resource_1 ul li a{font-size: 12px;}
		.Resource_1 ul li a .box .content .tit{ font-size: 16px;}
		.Resource_1 ul li a .box{ padding: 0px 20px;}
		.Resource_1 ul li a .box .more{ width: 7px; height: 14px;}
		.index_contact .tpleft{ width: 35%; padding: 30px 0px;}
		.index_contact .tpleft .tit{ font-size: 20px;}
		.index_contact .tpleft .eng{ font-size: 14px;}
		footer.no1 .container{flex-direction: column; text-align: left;}
		footer.no1 .container .tpleft{ width: 100%; text-align: left;}
		footer.no1 .container .tpright{ width: 100%; text-align: left;}
		.new_top1 ul{grid-gap: 20px 20px;    grid-template-columns: repeat(1, 1fr);}
	.new_top1 ul li{ padding: 15px 15px 20px;}
	.new_top1 ul li a .title{ margin-bottom: 15px;}
	.notice_1 .list{ height: 44px; line-height:44px;}
}

@media (max-width:750px){
	.index-main .tujian-book .list{
		padding-left: 0;
		padding-right: 0;
	}
	.index-main .tujian-book .list ul{
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-gap: 15px 0px;
	}
	.index-main .tujian-book .list ul li{
		margin: 0;
		margin-bottom: 5%;
		padding: 0 8%;
	}
	.card{ margin-top: 34px;}
	.index-main .product-hot .list ul{    grid-template-columns: repeat(2, 1fr);grid-gap: 10px 20px;}
	.index-main .product-hot .list ul li{ padding: 0px 0px; }
	.index-main .tujian-book .list.no1{    padding: 20px 0px 34rem;}
	.index-main .tujian-book .list.no1 ul li{padding: 28px 8% 0px;}
	.new_list1 ul li::before{display: none;}
	.index-main .topnews .focus .swiper-pagination span{ zoom:.6;}
	.index-main .topnews .tabs .photonews .ft{display: none;}
	.index-main .topnews .tabs .photonews{ margin-bottom: 0;}
	.index-main .topnews .tabs .photonews .desc{margin-bottom: 15px;}
}

@media (max-width:640px){
	.button-more{
		zoom: .7;
	}
}
@media (max-width:450px){
	.new_list ul li{ flex-direction: column;}
	.new_list ul li .photo{ width: 100%; margin-bottom: 15px;}
	.new_list ul li{ padding: 15px;}
	.new_list ul li .box{ flex-direction: column; flex:none; width: 100%; overflow: hidden; align-items: flex-start;}
	.new_list ul li .box .content{ flex:none; margin-right: 0px; width: 100%; overflow: hidden;}
	.new_list ul li .box .more2{ margin-top: 15px;}
	.card-title .more{ font-size: 14px;}
	.card-title .more img {width: 12px;}
	.index-main .tujian-book .list.no1 ul li .lab_1{ font-size: 14px; line-height: 25px;}
	.new_top .sbtn span{    width: 28px;
		height: 6px;}
		.member_1 ul{    grid-template-columns: repeat(2, 1fr);grid-gap: 25px 15px;}

}

header{
	z-index: 600;
}

.book_list ul li.active .title:after{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	margin-top: -4px;
}

.index-main .product-new .slide-btn{
	cursor: pointer;
}

.index-main .product-new .slide-btn.swiper-button-disabled{
	pointer-events: none;
}

.index-main .product-new .btn-prev.swiper-button-disabled{
	background-position: 0 31px;
}

.index-main .product-new .btn-next.swiper-button-disabled{
	background-position: 31px 31px;
}

.friendlink .card-list .item:hover .label:before{
	background-image: url(../images/arrow-up.png);
}

.friendlink.no1 .card-list .item:hover .label:before {
    background-image: url(../images/arrow-up-blue.png);
}

.card-title .link-more{
	color: var(--green);
	font-size: 16px;
	display: flex;
	align-items: center;
	font-weight: normal;
}

.card-title .link-more::after{
	content: "";
	width: 16px;
	height: 16px;
	background: url(../images/index_60.jpg) center no-repeat;
	margin-left: 8px;
}

.tabs .tabcontent .content{
	display: none;
}

.tabs .tabcontent .content:nth-child(1){
	display: block;
}
.tabs .tabcontent{word-wrap: break-word;}

.index-main .product-hot .list .tabbtn .btn{
	margin-right: 18px;
}

.index-main .footad .container img.full{
	object-position: right center;
}

.book_list ul{
	overflow: auto;
}

.book_list ul li .box{
	display: none;
}

.book_list ul li .box.show{
	display: flex;
}

.new_top .sbtn{
	z-index: 100;
	width: unset;
	left: unset;
}

.new_top .sbtn span{
	opacity: 1;
	border-radius: 0;
}

footer .right{
	text-align: right;
}

@media (max-width:768px){
	.index-main .product-hot .list .tabbtn{
		flex-wrap: nowrap;
		overflow: auto;
		white-space: nowrap;
	}
	.friendlink .card-list .item .submenu{
		position: static;
		opacity: 1;
		visibility: visible;
		display:none;
	}
	.friendlink .card-list .item .submenu.show{
		display: block;
	}
	.friendlink .card-list .item:hover .label:before{
		background-image: url(../images/arrow-up-default.png);
	}
	.friendlink .card-list .item .label.active:before {
		background-image: url(../images/arrow-up.png);
	}
	.friendlink.no1 .card-list .item .label.active:before{
		background-image: url(../images/arrow-up-blue.png);
	}
	footer .right,
	footer .container.flex{
		display: block;
		text-align: center;
	}
}

@media (max-width:750px){
	.card-title{
		font-size: 20px;
	}
	footer{
		padding: 15px;
		font-size: 12px;
	}
}