/*
Theme Name: Male
Version: 1.0
Description:
Author:
*/
@charset "utf-8";

:root {
	--i_color: #F7B014;
	--i_color2: #2A2A2A;
	--header_height: 1rem;
	--boxShadow: 0 2px 10px rgb(108 200 193 / 20%);
	--border_color: #E6E6E6;
}
@media screen and (max-width:1024px) {
	:root {
		--header_height: .6rem;
	}
}



.wrap {
	width: 90%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width:1024px) {
	.wrap{width: 94%;}
}
.wrap2{width: 94%;margin-left: auto;margin-right: auto;}




/* header */
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: var(--i_color2);
	box-shadow: var(--boxShadow);
	z-index: 2014;
}

@media screen and (max-width:1024px) {}


.top{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;}


/* logo */
.logo {
	padding-right: 2%;
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: var(--header_height);
	border-right: 1px solid rgb(255 255 255 / 30%);
}
.logo a {
	display: -webkit-flex;
	display: flex;
	align-items: center;
	height: 100%;
}
.logo img {max-height: 75%;}
@media screen and (max-width:1440px) {
	.logo img {max-height: 65%;}
}






/* 导航 */
@media screen and (min-width:1025px) {
	.i_nav {
		margin-left: 1rem;
		margin-right: auto;
		display: -webkit-flex;
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		gap: 0 1rem;
		position: relative;
		z-index: 2014;
	}

	.i_nav>li {position: relative;}
	.i_nav>li::before{content: ''; position: absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 0;height: 2px;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
	.i_nav>li::after{opacity: 0; content: '';position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width:0; height:0; border-left:8px solid transparent; border-right:8px solid transparent; border-bottom:0 solid var(--i_color); -webkit-transition:all .5s ease; transition:all .5s ease;}

	.i_nav>li>a {
		display: block;
		font-size: .2rem;
		color: #FFF;
		line-height: var(--header_height);
		white-space: nowrap;
		position: relative;
	}

	.i_nav>.current-menu-item::before,
	.i_nav>.current-category-ancestor::before,
	.i_nav>.current-post-ancestor::before,
	.i_nav>.current-menu-ancestor::before,
	.i_nav>.current-menu-parent::before,
	.i_nav>li:hover::before{width: 100%;}
	.i_nav>.current-menu-item::after,
	.i_nav>.current-category-ancestor::after,
	.i_nav>.current-post-ancestor::after,
	.i_nav>.current-menu-ancestor::after,
	.i_nav>.current-menu-parent::after,
	.i_nav>li:hover::after{opacity: 1; border-bottom:8px solid var(--i_color);}
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a,
	.i_nav>li:hover>a{color: var(--i_color);}

	.i_nav .sub-menu {
		display: none;
		position: absolute;
		left:50%; transform:translate(-50%,0);
		top: var(--header_height);
		min-width: 1.4rem;
		background: #FFF;
		overflow: hidden;
		box-shadow: 0 .06rem .1rem rgb(0 0 0 / 8%);
		font-size: 0;
		text-align: center;
	}

	.i_nav .sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child):before {content: '';position:absolute; bottom: 0; left:50%; transform:translate(-50%,0);width: 90%;height: 1px;background: #EEE;}
	.i_nav .sub-menu a {
		display: block;
		padding: 0 .2rem;
		font-size: 0.15rem;
		color: #666;
		line-height: 0.4rem;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		position: relative;
	}

	.i_nav .sub-menu .current-menu-item::before,
	.i_nav .sub-menu .current-category-ancestor::before,
	.i_nav .sub-menu .current-post-ancestor::before,
	.i_nav .sub-menu .current-menu-ancestor::before,
	.i_nav .sub-menu .current-menu-parent::before,
	.i_nav .sub-menu li:hover::before{
		width: 100%;
	}

	.i_nav .sub-menu li:hover a {
		color: var(--i_color);
	}
}
@media screen and (max-width:1440px) {
	.i_nav{gap: 0 .44rem;}
}
@media screen and (max-width:1200px) {
	.i_nav{margin-left: 0.6rem;gap: 0 .36rem;}
	.i_nav>li>a{font-size: 0.18rem;}
}








@media screen and (max-width:1024px) {
	.i_nav {
		opacity: 0;
		position: fixed;
		top: var(--header_height);
		left: 101%;
		margin: 0 0;
		width: 100%;
		width: 100vw;
		height: calc(100vh - var(--header_height));
		background: #FFF;
		overflow-y: auto;
		-webkit-transition:all .5s ease; transition:all .5s ease;
		z-index: 9999
	}
	.i_nav.active{opacity: 1; left: 0;}
	/*滚动条*/
	.i_nav::-webkit-scrollbar {
		width: 3px;
		height: 8px
	}
	.i_nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		background: #555
	}
	.i_nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
		border-radius: 0;
		background: #F1F1F1
	}

	.i_nav>li {
		margin: 0 0 !important;
		border-bottom: 1px solid var(--border_color);
		position: relative
	}
	.i_nav>.menu-item-has-children span {
		display: block;
		position: absolute;
		top: 8px;
		right: 20px;
		width: 30px;
		height: 30px;
		box-sizing: border-box;
		border: 1px solid #CCC;
		-webkit-border-radius:50%; border-radius:50%;
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}
	.i_nav>.menu-item-has-children span.on {
		background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="%23555" d="M19 12.998H5v-2h14z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
		background-size: 20px;
	}

	.i_nav>li>a {
		padding: 0 20px;
		font-size: 16px;
		color: #222;
		line-height: 44px;
		text-transform: uppercase;
	}
	.i_nav>.current-menu-item>a,
	.i_nav>.current-category-ancestor>a,
	.i_nav>.current-post-ancestor>a,
	.i_nav>.current-menu-ancestor>a,
	.i_nav>.current-menu-parent>a{
		color: var(--i_color) !important;
	}

	.i_nav>li>.sub-menu {
		display: none
	}
	.i_nav>li>.sub-menu li {
		position: relative;
	}
	.i_nav .sub-menu a {
		padding: 0 40px;
		font-size: 15px;
		color: #555;
		line-height: 40px;
		position: relative;
	}
	.i_nav .sub-menu li:not(:last-child) {
		border-bottom: 1px solid var(--border_color)
	}

	.i_nav>li>.sub-menu b {
		position: absolute;
		top: 0;
		right: 0;
		width: 40px;
		height: 40px;
		background: url(static/images/public/arrow_down_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}
	.i_nav>li>.sub-menu b.on {
		background: url(static/images/public/arrow_up_hollow_hei.svg) no-repeat center;
		background-size: 16px;
	}

	.i_nav .sub-menu .sub-menu {
		display: none;
	}

	.i_nav .sub-menu .sub-menu a {
		padding: 0 60px;
		font-size: 13px;
		color: #888;
		line-height: 36px;
		position: relative;
	}

	.i_nav a {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis
	}
}






/* 移动端导航按钮 */
.nav_menu {
	/* position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%); */
	position: relative;
	width: 22px;
	height: 16px;
	display: none;
	cursor: pointer
}
.nav_menu i {
	display: block;
	width: 100%;
	height: 3px;
	position: absolute;
	top: 50%;
	margin-top: -2px;
	background: var(--i_color);
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before,
.nav_menu::after {
	content: "";
	width: 100%;
	height: 3px;
	background: var(--i_color);
	position: absolute;
	left: 0;
	border-radius: .1rem;
	transition: 0.5s
}
.nav_menu::before {
	top: 0;
}
.nav_menu::after {
	bottom: 0;
}


.nav_menu.on i {
	opacity: 0
}

.nav_menu.on::before {
	transform: rotate(45deg);
	top: 50%;
	margin-top: -2px
}

.nav_menu.on::after {
	transform: rotate(-45deg);
	top: 50%;
	margin-top: -2px
}

@media screen and (max-width:1024px) {
	.nav_menu {
		display: block !important;
		margin-left: 0.2rem;
	}
}





.top_r{--size:.36rem}
.top_r {
	display: -webkit-flex;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0 .2rem;
	padding-left: 2%;
	border-left: 1px solid rgb(255 255 255 / 30%);
}
@media screen and (max-width:1024px) {
	.top_r{--size:.3rem}
	.top_r{padding: 0 0; border: none; margin-left: auto; gap: 0 14px; margin-right: 14px;}
}



.top_search_ico{position: relative;font-size: 0; box-sizing: border-box; padding: 0 .1rem; height: var(--size); border: 1px solid rgb(255 255 255 / 30%); display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; cursor: pointer;}
.top_search_ico iconify-icon{font-size: .26rem;color: #FFF;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_search_ico.on{border-color: var(--i_color);}
.top_search_ico.on iconify-icon{color: var(--i_color);}
@media screen and (max-width:1024px) {
	.top_search_ico{padding: 0 6px;}
	.top_search_ico iconify-icon{font-size: 20px;}
}



.top_language{position: relative;}
.top_language_btn{height: var(--header_height);display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; cursor: pointer;}
.top_language_btn span{display: block; padding: 0 .2rem; height: var(--size);background: var(--i_color);}
.top_language_btn p{padding-right: 0.2rem; font-size: 15px;color: #FFF; line-height: var(--size); position: relative;}
.top_language_btn p::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0;width:0; height:0; border-left:6px solid transparent; border-right:6px solid transparent; border-top:6px solid #FFF;}
@media screen and (max-width:1200px) {
	.top_language_btn p{font-size: 13px;}
}
@media screen and (max-width:1024px) {
	.top_language_btn span{padding: 0 10px;}
}





.top_language_list {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: calc(100% + .16rem);
	right: 0;
	min-width: 1.6rem;
	background: #FFF;
	box-sizing: border-box;
	box-shadow: var(--boxShadow);
	padding: .1rem .18rem .1rem;
	z-index: 2;
	-webkit-transition: all .3s ease;
	transition: all .3s ease
}
.top_language_list.on {
	visibility: visible;
	opacity: 1;
	top: 100%;
}

.top_language_list ul {overflow: hidden;}
.top_language_list li{position: relative;left: 0;-webkit-transition:all .5s ease; transition:all .5s ease;}
.top_language_list a>span {
	display:-webkit-flex; display:flex; flex-wrap:nowrap;align-items: center;gap: 0 8px;
	box-sizing: border-box;
	overflow: hidden
}
.top_language_list .trp-ls-language-name{font-size: 15px; color: #666;line-height: .3rem;}

.top_language_list li:hover{left: 4px;}
.top_language_list li:hover .trp-ls-language-name{color: var(--i_color);}






/* search */
.top_search {
	--search_height: .38rem
}
.top_search {
	visibility: hidden;
	opacity: 0;
	position: fixed;
	top: calc(var(--header_height) + .3rem);
	left: 0;
	width: 100%;
	padding: .16rem 0;
	border-top: 1px solid rgb(0 0 0 / 10%);
	background: #FFF;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
	z-index: 99;
}
.top_search.on {
	visibility: visible;
	opacity: 1;
	top: var(--header_height);
	box-shadow: var(--boxShadow);
}
.top_search form {
	width: 80%;
	margin: 0 auto;
	max-width: 5rem;
	display: -webkit-flex;
	display: flex;
	flex-wrap: nowrap;
	box-sizing: border-box;
	border: 1px solid var(--i_color);
	overflow: hidden;
}
.top_search_ipt {
	width: 100%;
	height: var(--search_height);
	box-sizing: border-box;
	padding: 0 .12rem;
}
.top_search_btn {
	flex-shrink: 0;
	font-size: 0;
	color: #FFF;
	width: calc(var(--search_height) * 1.5);
	height: var(--search_height);
	background:var(--i_color) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23FFF' stroke-linejoin='round' stroke-width='4'%3E%3Cpath d='M21 38c9.389 0 17-7.611 17-17S30.389 4 21 4S4 11.611 4 21s7.611 17 17 17Z'/%3E%3Cpath stroke-linecap='round' d='M26.657 14.343A7.98 7.98 0 0 0 21 12a7.98 7.98 0 0 0-5.657 2.343m17.879 18.879l8.485 8.485'/%3E%3C/g%3E%3C/svg%3E") no-repeat center;
	background-size: .2rem;
	cursor: pointer;
}

@media screen and (max-width:768px) {
	.top_search {
		--search_height: 34px
	}
	.top_search {
		padding: 12px 0;
	}
}
@media screen and (max-width:560px) {
	.top_search form {
		width: 94%;
	}
}



.full_header_height{height: var(--header_height);}





/* banner */
.banner {
	width: 100%;
	font-size: 0;
	overflow: hidden;
	position: relative;
}
.banner .swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}
.banner .swiper-wrapper {
	display: flex;
	position: relative;
	width: 100%;
	z-index: 1
}
.banner .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-shrink: 0;
	height: 0;
	padding-bottom: 39.185%;
	position: relative;
	overflow: hidden
}
.banner .swiper-slide>img,
.banner .swiper-slide>a>img {
	position:absolute; top:0; left:0; width:100vw; height:100%; object-fit: cover;
}

.banner-button{position:absolute; top:50%; transform:translate(0,-50%); width: 0.6rem;height: 0.6rem;box-sizing: border-box;cursor: pointer; z-index: 3;-webkit-transition:all .5s ease; transition:all .5s ease;}
.banner-button-prev{left: -1rem}
.banner-button-next{right: -1rem;}
.banner-button iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.5rem;color:#FFF;}
.banner:hover .banner-button-prev{left: .1rem;}
.banner:hover .banner-button-next{right: .1rem;}

.banner-pagination{position: absolute;left: 0;width: 100%;bottom: .36rem; display:-webkit-flex; display:flex; flex-wrap:wrap; justify-content: center; gap: 0 .16rem; z-index: 3;}
.banner-pagination .swiper-pagination-bullet{width:.1rem; height:.1rem; display:inline-block; background:rgb(255 255 255 / 60%); -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer; position: relative;}
.banner-pagination .swiper-pagination-bullet::before{opacity: 0; content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:.2rem;height:.2rem;background: rgb(255 255 255 / 30%); -webkit-border-radius:50%; border-radius:50%;}
.banner-pagination .swiper-pagination-bullet-active{background:#FFF}
.banner-pagination .swiper-pagination-bullet-active::before{opacity: 1;}

@media screen and (max-width:1024px) {
	.banner .swiper-slide{padding-bottom: 46%;}
	.banner-button-prev,.banner-button-next{display: none;}
}
@media screen and (max-width:560px) {
	.banner-pagination{bottom: 20px; gap: 0 14px;}
	.banner-pagination .swiper-pagination-bullet{width: 8px;height: 8px;}
	.banner-pagination .swiper-pagination-bullet::before{width: 16px;height: 16px;}
}







/* Main */
main{position: relative;overflow: hidden;}
.mainBg{background: #F6F6F6;}




.i_tit{}
.i_tit h3{padding: .5rem 0 .4rem; display: table; font-weight: bold; line-height: 1.3; position: relative;}
.i_tit h3::before{content: '';top: 0; position:absolute; left:50%; transform:translate(-50%,0); width: 1rem;height: 0.5rem;background:url(static/images/title_icon1.webp) no-repeat center;background-size: contain;}
.i_tit h3::after{content: '';position:absolute; left:42%; transform:translate(-50%,0); bottom: 0; width: 1rem;height: 0.5rem;background:url(static/images/title_icon2.webp) no-repeat center;background-size: contain;}

.i_tit h4{font-weight: bold;}

.i_tit h6{}

.i_tit.center{text-align: center;}
.i_tit.center h3{margin-left: auto;margin-right: auto;}

@media screen and (max-width:1440px) {
	.i_tit h3{padding: .3rem 0 .3rem;}
	.i_tit h3::before, .i_tit h3::after{height: 0.3rem;}
}
@media screen and (max-width:1024px) {
	.i_tit h3{padding: 20px 0 20px;}
	.i_tit h3::before, .i_tit h3::after{height: 20px;}
	.i_tit h6{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.i_tit h3{padding: 15px 0 14px;}
	.i_tit h3::before, .i_tit h3::after{height: 14px;}
	.i_tit h6{font-size: 14px;}
}





.i_more{display: table; padding: .12rem .24rem; box-sizing: border-box; border: 1px solid var(--i_color2)}
.i_more span{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; justify-content: center; gap: 0 .2rem;}
.i_more b{font-size: 0.17rem; font-weight: bold; color: var(--i_color2);}
.i_more iconify-icon{width: 0.24rem;height: 0.24rem; font-size: 0.24rem; color: var(--i_color2);}

.i_more.white{border-color: #FFF;}
.i_more.white b,.i_more.white iconify-icon{color: #FFF;}

.i_more.center{margin-left: auto;margin-right: auto;}

.i_more:hover{border-color: var(--i_color); background: var(--i_color); -webkit-transform:translate(0,-6px); transform:translate(0,-6px); box-shadow: 0 8px 10px rgb(0 0 0 / 20%);}
.i_more:hover b,.i_more:hover iconify-icon{color: #FFF;}
.i_more,.i_more b,.i_more iconify-icon{-webkit-transition:all .5s ease; transition:all .5s ease;}

@media screen and (max-width:1440px) {
	.i_more{padding: .1rem .2rem;}
	.i_more span{gap: 0 .1rem;}
	.i_more b{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.i_more{padding: 8px 10px;}
	.i_more b{font-size: 14px;}
	.i_more iconify-icon{margin-bottom: 2px; width: 18px;height: 18px; font-size: 18px;}
}
@media screen and (max-width:560px) {
	.i_more b{font-size: 12px;}
	.i_more iconify-icon{width: 16px;height: 16px; font-size: 16px;}
}






.secTitle{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 6%; align-items: flex-end;}
.secTitle .i_more{flex-shrink: 0; margin-left: auto;}

@media screen and (max-width:768px) {
	.secTitle{flex-wrap: wrap; gap: 20px 0;}
	.secTitle .i_tit, .secTitle>h3{width: 100%;}
	.secTitle .i_more{margin: 0 0;}
}






.pItem{display: block; background: #FFF; box-sizing: border-box; border: 1px solid #E2E2E2; padding-bottom: 0.2rem;}
.pItem .coverPic{width:100%; position:relative; overflow:hidden}
.pItem .coverPic::before{content:""; display:block; padding-bottom:100%}
.pItem .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.pItem .text{width: calc(100% - .4rem); box-sizing: border-box; padding: 0.16rem 0; margin-left: auto;margin-right: auto; margin-bottom: 0.14rem; border-top: 1px solid #E2E2E2; border-bottom: 1px solid #E2E2E2;}
.pItem .text h5{font-size: 0.2rem;font-weight: bold; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.pItem dl{}
.pItem dt{padding-left: 0.14rem; margin: .12rem 0; font-size: 0.16rem;color: #666; line-height: 1.5; position: relative; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
.pItem dt::before{content: '';position:absolute; top: 8px; left: 3px;width: 6px;height: 6px;background: var(--i_color); -webkit-transform:rotate(-45deg); transform:rotate(-45deg);}

.pItem .i_more{width: 90%; margin: 0 auto; border-color: transparent;}

.pItem:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.pItem:hover h5{color: var(--i_color);}
.pItem:hover .i_more{border-color: var(--i_color); background: var(--i_color); -webkit-transform:none; transform:none; box-shadow: 0 8px 10px rgb(0 0 0 / 20%);}
.pItem:hover .i_more b,.pItem:hover .i_more iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.pItem{padding-bottom: 0;}
	.pItem .text h5{font-size: 17px;}
	.pItem dt{margin: 8px 0; font-size: 14px;}
	.pItem .text{border-bottom: none; margin-bottom:0}
	.pItem .i_more{display: none;}
}
@media screen and (max-width:768px) {
	.pItem .text h5{font-size: 16px;}
	.pItem dt{font-size: 13px;}
}
@media screen and (max-width:560px) {
	.pItem .text{width: calc(100% - 20px);}
	.pItem .text h5{margin-bottom: 10px; font-size: 15px;}
	.pItem dt{margin: 2px 0}
}







.homeCat{background: #F4F8F9;}

.homeCat_list{display:-webkit-flex; display:flex; flex-wrap:nowrap; background:#FFF url(static/images/homeCat-bg.webp) no-repeat center;background-size: cover; box-sizing: border-box; border: 1px solid #EEE;}
.homeCat_list li{width: 100%;text-align: center;position: relative;}
.homeCat_list li::before{content: '';position:absolute; top:50%; transform:translate(0,-50%);right: 0;width: 2px;height: 50%;background: #989898;}
.homeCat_list li:last-child::before{display: none;}
.homeCat_list a{display: block; padding: .3rem 15%;}

.homeCat_list .coverPic{width:100%; position:relative; overflow:hidden}
.homeCat_list .coverPic::before{content:""; display:block; padding-bottom:50%}
.homeCat_list .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: contain;-webkit-transition:all .5s ease; transition:all .5s ease;}

.homeCat_list .title{margin-top: 0.2rem;}
.homeCat_list .title p{font-size: 0.24rem;font-weight: bold;}

.homeCat_list li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.homeCat_list li:hover p{color: var(--i_color);}
.homeCat_list li:hover .i_more{border-color: var(--i_color); background: var(--i_color); -webkit-transform:none; transform:none; box-shadow: 0 8px 10px rgb(0 0 0 / 20%);}
.homeCat_list li:hover .i_more b,.homeCat_list li:hover .i_more iconify-icon{color: #FFF;}

@media screen and (max-width:1200px) {
	.homeCat_list .title p{font-size: 0.2rem;}
}
@media screen and (max-width:1024px) {
	.homeCat_list .title p{font-size: 18px;}
	.homeCat_list li::before{width: 1px;background: #CCC;}
}
@media screen and (max-width:768px) {
	.homeCat_list li::before{height: 60%;}
	.homeCat_list .title p{font-size: 16px;}
	.homeCat_list .i_more{margin-top: 20px;}
}
@media screen and (max-width:560px) {
	.homeCat_list a{padding: 30px 10%;}
	.homeCat_list .title p{font-size: 14px;}
	.homeCat_list .i_more{display: none;}
}






.likeProduct{
	background:url(static/images/likeProduct-bg.webp) no-repeat center;
	background-size: cover;
}

.likeProduct_list{position:relative; overflow:hidden}
.likeProduct_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.likeProduct_list .swiper-slide{flex-shrink:0; position:relative}

.likeProduct-navigation{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: center; gap: 0 .3rem;}
.likeProduct-navigation>div{width:.46rem; height:.46rem; box-sizing: border-box; border: 1px solid #DDD; background: #F1F1F1; cursor:pointer; outline:none; -webkit-user-select:none; user-select:none; position: relative;}
.likeProduct-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.22rem;}
.likeProduct-navigation .swiper-button-disabled{opacity: .3; cursor:not-allowed}
.likeProduct-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.likeProduct-navigation>div:hover iconify-icon{color: #FFF;}

.likeProduct-pagination{display: none;}

@media screen and (max-width:1024px) {
	.likeProduct-navigation{display: none;}

	.likeProduct-pagination{display:block; margin-top:0.3rem; text-align:center}
	.likeProduct-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer;}
	.likeProduct-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}







.homeNews{background:url(static/images/homeNews-bg.webp) no-repeat center;background-size: cover;background-attachment: fixed;}
.homeNews .secTitle h3{color: #FFF;font-weight: bold;}

.homeNews_list{}

@media screen and (min-width:1025px) {
	.homeNews_list{width: 100%;overflow: hidden;position: relative;}
	.homeNews_list::before{content: '';display: block;padding-bottom: 44.6875%;}

	.homeNews_list ul{
		position: absolute;left: 0;top: 0;
		width: 100%;height: 100%;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(5, 1fr);
		gap: .26rem;
	}
	.homeNews_list li{grid-row:span 2; background: #FFF; position: relative; overflow: hidden;}
	.homeNews_list .coverPic{overflow: hidden;}
	.homeNews_list .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}
	.homeNews_list .text{}
	.homeNews_list .text i{font-size: 15px;color: var(--i_color);}
	.homeNews_list .text p{width:100%; margin: 8px 0 .2rem; font-size: 0.2rem; line-height: 1.4;}
	.homeNews_list .text h6{font-size: 0.16rem;color: #888;line-height: 1.4;}
	.homeNews_list .text p,.homeNews_list .text h6{overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}

	.homeNews_list li:nth-child(1){grid-column: span 2;}
	.homeNews_list li:nth-child(1),.homeNews_list li:nth-child(2){grid-row:span 3}
	.homeNews_list li:nth-child(1) a,.homeNews_list li:nth-child(2) a{padding: 0 0;}

	.homeNews_list li:nth-child(1) .coverPic{position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
	.homeNews_list li:nth-child(1) .text{position: absolute;left: 0;bottom: 0;width: 100%;box-sizing: border-box; padding: .2rem .26rem; z-index: 2;}
	.homeNews_list li:nth-child(1) .text p{margin-bottom: 0; color: #FFF;}

	.homeNews_list li:nth-child(1) h6,.homeNews_list li:nth-child(2) h6{display: none;}

	.homeNews_list li:nth-child(2) .coverPic{position: relative; width: 100%; height: 60%;}
	.homeNews_list li:nth-child(2) .text{padding: .2rem .26rem 0;display:-webkit-flex; display:flex; flex-wrap:wrap;}
	.homeNews_list li:nth-child(2) .text p{margin: 0 0 .16rem; order: -1;}

	.homeNews_list li:nth-child(n+3) a{display: block; box-sizing: border-box; padding: .26rem;}
	.homeNews_list li:nth-child(n+3) .coverPic{display: none;}
}

.homeNews_list li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.homeNews_list li:hover p{color: var(--i_color);}

@media screen and (max-width:1440px) {
	.homeNews_list .text p,.homeNews_list .text h6{-webkit-line-clamp:2;}
}
@media screen and (max-width:1200px) {
	.homeNews_list .text i{font-size: 14px;}
}
@media screen and (max-width:1024px) {
	.homeNews_list{}
	.homeNews_list li{margin-bottom: 24px; background: #FFF;}
	.homeNews_list a{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center;}
	.homeNews_list .coverPic{flex-shrink: 0; width:30%; position:relative; overflow:hidden}
	.homeNews_list .coverPic::before{content:""; display:block; padding-bottom:75%}
	.homeNews_list .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

	.homeNews_list .text{width: 100%; box-sizing: border-box; padding: 0 .3rem;}
	.homeNews_list .text i{font-size: 14px; color: var(--i_color);}
	.homeNews_list .text p{margin: 10px 0 18px; font-size: 16px; line-height: 1.4;}
	.homeNews_list .text h6{font-size: 14px;color: #999; line-height: 1.4;}
	.homeNews_list .text p,.homeNews_list .text h6{overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
}
@media screen and (max-width:768px) {
	.homeNews_list .text p{margin-bottom: 0;}
	.homeNews_list .text h6{display: none;}
}
@media screen and (max-width:560px) {
	.homeNews_list li{margin-bottom: 16px;}
	.homeNews_list .coverPic{width: 40%;}
	.homeNews_list .text{padding: 0 20px;}
	.homeNews_list .text p{font-size: 14px;}
}







.homeAbout{
	background:url(static/images/homeAbout-bg.webp) no-repeat top center;
	background-size: 100%;
}

.homeAbout_cont{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 4%;}

.homeAbout_cont .pic{flex-shrink: 0; width: 50%; position: relative;}
.homeAbout_cont .pic img{width: 100%;}

.vBtn{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); cursor: pointer;}
.vBtn span{position: relative;}
.vBtn span::before,.vBtn span::after{content: '';position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); box-sizing: border-box;border: 1px solid rgb(255 255 255 / 60%); -webkit-border-radius:50%; border-radius:50%;}
.vBtn span::before{width: 82%;height: 82%; -webkit-animation:diffuse 2s infinite linear; animation:diffuse 2s infinite linear}
.vBtn span::after{width: 100%;height: 100%; -webkit-animation:diffuse 2s infinite linear; animation:diffuse 2s infinite linear}
@keyframes diffuse{
	0% {
		opacity: 0
	}
	5% {
		opacity: 1
	}
	80% {
		opacity: 0
	}
	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1.8);
		-ms-transform: translate(-50%, -50%) scale(1.8);
		-o-transform: translate(-50%, -50%) scale(1.8);
		-webkit-transform: translate(-50%, -50%) scale(1.8);
		-moz-transform: translate(-50%, -50%) scale(1.8)
	}
}
.vBtn i{display: block;width: 0.8rem;height: 0.8rem; background: #FFF; -webkit-border-radius:50%; border-radius:50%; position: relative;}
.vBtn iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.4rem;color: var(--i_color);}

.homeAbout_cont .txt{width: 100%;}
.homeAbout_cont .txt h5{font-weight: bold;}
.homeAbout_num{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .5rem 4%;}
.homeAbout_num dt{width: 48%;}
.homeAbout_num span{margin-bottom: 0.14rem; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;gap: 0 .1rem;}
.homeAbout_num iconify-icon{font-size: 0.32rem;color: var(--i_color);}
.homeAbout_num h6{padding-top: 4px; font-size: 0.34rem;color: var(--i_color);font-weight: bold;}
.homeAbout_num i{font-size: 0.2rem;font-weight: bold;}
.homeAbout_num p{font-size: 0.16rem;}

@media screen and (max-width:1024px) {
	.homeAbout_cont{flex-wrap: wrap;gap: 34px 0;}
	.homeAbout_cont .pic{width: 100%;}
	.homeAbout_cont .txt article{font-size: 15px;}

	.vBtn i{width: 60px;height: 60px;}
	.vBtn iconify-icon{font-size: 34px;}
}
@media screen and (max-width:768px) {
	.homeAbout_num h6{font-size: 28px;}
	.homeAbout_num i{font-size: 18px;}
	.homeAbout_num p{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.homeAbout_num iconify-icon{margin-bottom: 0.1rem; flex-basis:100%}
	.homeAbout_num h6{font-size: 26px;}
	.homeAbout_num i{font-size: 15px;}

	.vBtn i{width: 50px;height: 50px;}
	.vBtn iconify-icon{font-size: 30px;}
}






.homeForm{background:url(static/images/homeForm-bg.webp) no-repeat top center;background-size: cover;}

#wpforms-96{
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-96{margin:0;padding:0;}
#wpforms-form-96{width:100%;position:relative;}

#wpforms-96 .wpforms-field-container{}
#wpforms-96 .wpforms-field-container>.wpforms-field{position: relative; width: 100%;padding: 0 1px 20px;margin: 0 0 10px;overflow-x:initial !important}

#wpforms-96 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-96 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;}

#wpforms-96 .wpforms-field-container .wpforms-field>input{height: 0.5rem;}
#wpforms-96 .wpforms-field-container .wpforms-field>input,
#wpforms-96 .wpforms-field-container textarea
{border: none; border-bottom: 1px solid #CCC}
#wpforms-96 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px;}

#wpforms-96 .wpforms-field-container .wpforms-field>input,
#wpforms-96 .wpforms-field-container textarea,
#wpforms-96 .wpforms-field-container select,
#wpforms-96 .wpforms-field-container .choices
{width: 100%;max-width: 100%; box-sizing: border-box; margin: 0 0;}
#wpforms-96 .wpforms-field-container .wpforms-field>input,
#wpforms-96 .wpforms-field-container textarea,
#wpforms-96 .wpforms-field-container select
{padding-left: 14px;padding-right: 14px;}
#wpforms-96 .wpforms-field-container textarea{height: 1rem; padding-top: 10px;padding-bottom: 10px;}
#wpforms-96 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-96 .wpforms-field-container select{cursor: pointer;}
#wpforms-96 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-96 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-96 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-96 .wpforms-field-container em.wpforms-error,#wpforms-96 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; bottom: -2px;}

/* #wpforms-96 input::placeholder, #wpforms-96 textarea::placeholder{color:#333;font-size:16px} */

#wpforms-96 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-96-field_1-container,
#wpforms-96-field_2-container,
#wpforms-96-field_3-container
{width: 32% !important;}

#wpforms-96 .wpforms-submit-container{margin-top: 0.1rem; width: 260px;margin-left: auto;margin-right: auto; padding:0 0; box-sizing: border-box; border: 1px solid var(--i_color2);}
#wpforms-96 .wpforms-submit-container button{width: 100%;height:.48rem; font-size: 15px; color: #333; font-weight: bold; background: none;}
#wpforms-96 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-96 .wpforms-submit-container button:hover{background: var(--i_color2); color: #FFF;}

@media screen and (max-width:1024px) {
	#wpforms-96 .wpforms-submit-container{width: 200px;}
	#wpforms-96 .wpforms-submit-container button{height: 40px;}
}
@media screen and (max-width:768px) {
	#wpforms-96 .wpforms-field-container>.wpforms-field{width: 100% !important}
}
@media screen and (max-width:560px) {
	#wpforms-96 .wpforms-submit-container button{font-size: 14px;}
}







/* footer */
footer {background:url(static/images/footer-bg.webp) no-repeat center;background-size:cover;}

.f_slogan {padding-bottom:0.1rem;border-bottom:1px solid rgb(255 255 255 / 10%);display:-webkit-flex;display:flex;flex-wrap:nowrap;position:relative;gap:0 .16rem;}
.f_slogan::before {content:'';position:absolute;left:50%;transform:translate(-50%,0);bottom:0;width:100%;height:100%;background:url(static/images/footer-makewed.webp) no-repeat center;background-size:contain;}
.f_slogan h2 {font-size:1.55vw;color:rgb(255 255 255 / 60%);font-weight: bold; line-height: 1.6; position:relative;text-transform:capitalize;}
.f_qr {flex-shrink: 0; margin-left:auto;display:-webkit-flex;display:flex;flex-wrap:wrap;gap:0 .3rem;position:relative;}
.f_qr p {margin-bottom:4px;font-size:14px;color:#FFF;}
.f_qr img {height:1rem;}

.f_cont {display:-webkit-flex;display:flex;flex-wrap:nowrap; align-items: flex-start; gap:0 6%;}
.f_contact {flex-shrink: 0; width:26%;}
.f_logo {}
.f_logo img {max-height:1.2rem;}

.f_ct {margin-top:0.2rem;}
.f_ct li {margin-bottom:.1rem;}
.f_ct a,.f_ct p {font-size:.16rem;color:#999;line-height:1.5;}
.f_ct a:hover{color: var(--i_color);}

.f_tit {font-size:0.2rem;font-weight: bold; color:#FFF;}

.f_navBox {width: 100%;}
.f_navBox:hover .f_tit{color: var(--i_color);}
.f_nav {}
.f_nav li {margin-bottom:0.2rem;}
.f_nav a {font-size:0.16rem;color:#999;-webkit-transition:all .7s ease;transition:all .7s ease;position:relative;}
.f_nav a::before {opacity: 0; content: '';position:absolute; top: 5px; left: 3px;width: 6px;height: 6px;background: var(--i_color); -webkit-transform:rotate(-45deg); transform:rotate(-45deg);-webkit-transition:all .7s ease; transition:all .7s ease;}
.f_nav a:hover {padding-left:0.16rem;}
.f_nav a:hover::before {opacity:1;}

.f_media {margin-top:-.2rem;display:-webkit-flex;display:flex;flex-wrap:wrap;justify-content:flex-end;gap:0 .26rem;}
.f_media li {}
.f_media a {display:block;width:0.5rem;height:0.5rem;background:rgb(255 255 255 / 10%);position:relative;}
.f_media iconify-icon {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:0.24rem;color:#FFF;}
.f_media a:hover {background:var(--i_color);}

.f_cr {border-top:1px solid rgb(255 255 255 / 10%);}
.f_cr p,.f_cr a {font-size:.16rem;color:#999; line-height: 1.4;}
.f_cr a:hover {color:var(--i_color);}

@media screen and (max-width:1024px) {
	.f_slogan{padding-bottom: 20px; flex-wrap: wrap;gap: 20px 0;}
	.f_slogan h2{width: 100%; font-size: 18px;}
	.f_qr{margin: 0 0;}

	.f_contact {width:100%;}
	.f_logo img{max-height: 70px;}
	.f_navBox {display:none;}
	.f_media {margin:18px 0 0;justify-content:flex-start}
	.f_media a {width:40px;height:40px;}
	.f_media iconify-icon {font-size:20px;}
}
@media screen and (max-width:768px) {
	.f_slogan h2 {font-size:16px;}
	.f_slogan::before {height:60%;}
}
@media screen and (max-width:560px) {
	.f_slogan h2 {font-size:3.4vw;}
	.f_slogan::before {max-height:38%;}
	.f_cont {padding-top:26px;}
	.f_logo img {max-height:50px;}
	.f_ct a,.f_ct p {font-size:15px;}
	.f_media {margin-top:10px;}
	.f_media a {width:30px;height:30px;}
	.f_media iconify-icon {font-size:16px;}
	.f_cr p,.f_cr a {font-size:13px;}
}







/* ========================================================== */

/* Breadcrumb */
.in_position{padding:.2rem 0;background:#F4F4F4;position:relative;}
.in_position .wrap{display:-webkit-flex;display:flex;flex-wrap:wrap;align-items:center;}
.in_position a{display:block;font-size:15px;color:#333;position:relative;line-height:20px;}
.in_position a:first-child{padding-left: 0.26rem;}
.in_position a:first-child::before{
	content: '';
	position:absolute; top:50%; transform:translate(0,-50%);left: 0;
	width: 18px;height: 18px;
	background:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="80" height="80" viewBox="0 0 2048 2048"%3E%3Cpath fill="currentColor" d="m1024 165l941 942l-90 90l-83-82v805h-640v-640H896v640H256v-805l-83 82l-90-90l941-942zm640 1627V987l-640-640l-640 640v805h384v-640h512v640h384z"%2F%3E%3C%2Fsvg%3E') no-repeat center;
	background-size: contain;
}
.in_position a:not(:last-child):after {content:">";margin:0 4px;color:#555}
.in_position a:last-child {color:var(--i_color) !important}
.in_position a:hover {color:var(--i_color)}
@media screen and (max-width:1024px) {
	.in_position {padding:.16rem 0;}
	.in_position a {font-size:14px}
}
@media screen and (max-width:560px) {
	.in_position {padding:.12rem 0;}
	.in_position a {font-size:13px}
}





.navLine{position: relative; overflow: hidden;}
.navLine::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 1px;background: #DEDEDE;}
.navLine ul{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: center;}

.navLine li{position: relative;}
.navLine li::before{content: ''; position: absolute; bottom: 0; left:50%; transform:translate(-50%,0); width: 0;height: 2px;background: var(--i_color);-webkit-transition:all .5s ease; transition:all .5s ease;}
.navLine li::after{opacity: 0; content: '';position:absolute; left:50%; transform:translate(-50%,0); bottom: 0; width:0; height:0; border-left:8px solid transparent; border-right:8px solid transparent; border-bottom:0px solid var(--i_color); -webkit-transition:all .5s ease; transition:all .5s ease;}
.navLine a{display: block; padding: .2rem .4rem; font-size: 0.2rem;font-weight: bold;}

.navLine li:hover::before, .navLine li.active::before{width: 100%;}
.navLine li:hover::after, .navLine li.active::after{opacity: 1; border-bottom:8px solid var(--i_color);}
.navLine li.active a{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.navLine a{padding: 20px 20px; font-size: 16px;}
}
@media screen and (max-width:560px) {
	.navLine ul{gap: 4px 0;}
	.navLine a{padding: 14px 10px; font-size: 15px;}
}





.productList{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .3rem 1.5%;}
.productList li{width: 23.875%;}
@media screen and (max-width:1440px) {}
@media screen and (max-width:1366px) {}
@media screen and (max-width:1200px) {}
@media screen and (max-width:1024px) {}
@media screen and (max-width:768px) {
	.productList{gap: 30px 3%;}
	.productList li{width: 48.5%;}
}
@media screen and (max-width:560px) {
	.productList{gap: 14px 3%;}
}




/* Paging */
.in_paging{
	--size:30px;
}
.in_paging ul{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content:center;align-items:center;text-align: center;}
.in_paging li{min-width: var(--size);margin: 0 4px;}
.in_paging a,.in_paging span {display:block;padding: 0 10px; height: var(--size); line-height:calc(var(--size) - 2px);font-size:14px;color:#666;background:#F1F1F1;box-sizing: border-box; overflow:hidden;}
.in_paging i {margin-top:14px;width:100%;font-size:13px;color:#888;}
.in_paging a:hover,.in_paging .curr_page a,.in_paging .curr_page span {border-color:var(--i_color) !important;background:var(--i_color);color:#FFF !important}







.p_data{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 4%;}

/* atlas */
.p_atlas {flex-shrink: 0; width:40%; box-sizing: border-box; position: relative;}
.p_atlas_list {width: 100%; margin-left: auto; margin-right: auto; position:relative;overflow:hidden}
.p_atlas_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_atlas_list .swiper-slide {flex-shrink:0;position:relative;overflow:hidden;}
.p_atlas_list .swiper-slide::before {content:'';display:block;padding-bottom:100%;}
.p_atlas_list .swiper-slide img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}

/* thumbnail */
.p_thumbnail_list {width:calc(100% - .4rem);margin:.2rem auto 0;box-sizing:border-box;position:relative;overflow:hidden}
.p_thumbnail_list .swiper-wrapper {display:-webkit-flex;display:flex;position:relative;width:100%}
.p_thumbnail_list .swiper-slide {flex-shrink:0;position:relative;overflow:hidden;cursor:pointer;}
.p_thumbnail_list figure {width:100%;position:relative;overflow:hidden;}
.p_thumbnail_list figure::before {content:'';display:block;padding-bottom:100%;}
.p_thumbnail_list figure img {position:absolute;top:0;left:0;width:100%;height:100%;object-fit:cover;}
.p_thumbnail_list .swiper-slide-thumb-active figure::after {content:'';position:absolute;left:0;top:0;width:100%;height:100%;box-sizing:border-box;border:2px solid var(--i_color);}

.thumbnail-prev,.thumbnail-next {position:absolute;top:50%;transform:translate(0,-50%);width:.4rem;height:.4rem; box-sizing: border-box; border: 1px solid var(--i_color2); z-index:3;cursor:pointer;outline:none;-webkit-user-select:none;user-select:none;-webkit-transition:all .5s ease;transition:all .5s ease;z-index:3;}
.thumbnail-prev {left:0;}
.thumbnail-next {right:0;}
.thumbnail-prev iconify-icon,.thumbnail-next iconify-icon {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:0.2rem;color:var(--i_color2)}
.thumbnail-prev:hover, .thumbnail-next:hover{background: var(--i_color); border-color: var(--i_color);}
.thumbnail-prev:hover iconify-icon, .thumbnail-next:hover iconify-icon{color: #FFF;}
.p_atlas .swiper-button-disabled{cursor:not-allowed;}

.thumbnail-pagination {position:absolute;top:.1rem;right:.1rem;text-align:center;padding: 2px 6px; z-index:2;}
.thumbnail-pagination,.thumbnail-pagination span{font-size: 14px; color: #666;}
.thumbnail-pagination .swiper-pagination-current{font-size: 0.22rem;color: var(--i_color);}

@media screen and (max-width:1024px) {
	.p_data{flex-wrap: wrap;}

	.p_atlas{width: 100%; max-width: 6rem; margin: 0 auto .46rem;}
	.p_thumbnail_list{width: 100%;}
	.thumbnail-prev, .thumbnail-next{display: none;}
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:560px) {
	.p_atlas_list{width: 100%;}
	.thumbnail-prev iconify-icon, .thumbnail-next iconify-icon{font-size: 30px;}
}






.p_title{margin-left: auto;width: 100%;}

.pCat_name{margin: .1rem 0; font-size: 0.18rem;}
.p_title h1{margin-top: 0.22rem; padding-bottom: 0.22rem; border-bottom: 1px solid #DDD; color: var(--i_color2); font-weight: bold; line-height: 1.4;}

.p_des{}
.p_des>h5{margin-bottom: 0.2rem; font-size: 0.22rem; color: #666;}
.p_des article{}

.p_btn{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 0 .3rem;}
.p_btn a:first-child{border-color: var(--i_color);}
.p_btn a:first-child b,.p_btn a:first-child iconify-icon{color: var(--i_color);}
.p_btn a:first-child:hover b,.p_btn a:first-child:hover iconify-icon{color: #FFF;}

.p_share{border-top: 1px solid #DDD; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center;gap: 0 .1rem;}
.p_share>p{font-size: 0.2rem;font-weight: bold;}
.p_share dl{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center;gap: 0 .2rem;}
.p_share dt a{display:block;width:0.4rem;height:0.4rem;background:rgb(0 0 0 / 10%);position:relative;}
.p_share dt iconify-icon {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:0.18rem;color:var(--i_color2);}

.p_share dt:hover a{background:var(--i_color);}
.p_share dt:hover iconify-icon{color: #FFF;}

@media screen and (max-width:1024px) {
	.pCat_name{font-size: 14px;}
	.p_des>h5{font-size: 18px;}

	.p_share>p{font-size: 16px;}
	.p_share dt a{width: 34px;height: 34px;}
	.p_share dt iconify-icon{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.p_des>h5{font-size: 16px;}

	.p_share dl{gap: 0 14px;}
	.p_share dt a{width: 28px;height: 28px;}
	.p_share dt iconify-icon{font-size: 14px;}
}





.pContent_box{background: #FFF;}
.pContent_box .wrap{display:-webkit-flex; display:flex; flex-wrap:wrap;}

.pContent{width: 66%;}
.pContent_tit{position: relative;}
.pContent_tit::before,.pContent_tit::after{content: '';position: absolute;left: 0;bottom: 0;}
.pContent_tit::before{width: 100%;height: 1px;background: #DDD;}
.pContent_tit::after{width: 1.4rem;height: 3px;background: var(--i_color);}
.pContent_tit h4{padding-bottom: 0.16rem; font-size: 0.28rem;font-weight: bold;}

@media screen and (max-width:1024px) {
	.pContent{width: 100%;}
	.pContent_tit h4{font-size: 22px;}
}
@media screen and (max-width:768px) {
	.pContent_tit h4{font-size: 20px;}
}
@media screen and (max-width:560px) {
	.pContent_tit::after{width: 100px;}
	.pContent_tit h4{font-size: 18px;}
}





.p_tags{padding-bottom: 0.2rem; border-bottom: 1px solid #DDD;display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: baseline; gap: .06rem 0;}
.p_tags>p{margin-right: 6px; font-size: 0.18rem;font-weight: bold;}
.p_tags a{margin: 2px 0.3rem 0 0; font-size: 0.16rem;}
.p_tags a:hover{text-decoration: underline;color: var(--i_color);}

.p_view_other{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: space-between; align-items: center; gap: 0 4%;}
.p_view_other li{max-width: 46%; display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 .14rem; align-items:center}
.p_view_other a{font-size: 0.18rem;}

.p_view_other span{flex-shrink: 0;}
.p_view_other span iconify-icon{font-size: .2rem; color: var(--i_color2);}

.p_view_other .next{text-align: right;}

.p_view_other a:hover{color: var(--i_color);}
.p_view_other li:hover iconify-icon{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.p_view_other a{font-size: 16px;}
}
@media screen and (max-width:768px) {
	.p_tags>p{font-size: 16px;}
	.p_tags a{font-size: 15px;}

	.p_view_other{flex-wrap: wrap;gap: 20px 0;}
	.p_view_other li{max-width: 100%; width: 100%;}
	.p_view_other span{order: -1;}
	.p_view_other a{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.p_tags a{font-size: 14px;}
	.p_view_other{gap: 10px 0;}
	.p_view_other a{font-size: 14px;}
}





.pAside{margin-left: auto; width: 26%;}
.pAside_tit{background: var(--i_color2);}
.pAside_tit p{padding: .26rem .16rem; font-size: 0.22rem;color: #FFF; font-weight: bold;}
@media screen and (max-width:1024px) {
	.pAside{margin: 50px 0 0; width: 100%;}
	.pAside_tit p{padding: 20px 20px; font-size: 18px;}
}
@media screen and (max-width:560px) {
	.pAside_tit p{font-size: 17px;}
}





.pAside_nav{background: #F3F3F3;}
.pAside_nav ul{padding:0 .2rem .3rem;}
.pAside_nav li{border-bottom: 1px solid #DDD;}
.pAside_nav li a{padding: .3rem 0; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; gap: 0 .14rem;}
.pAside_nav li i{display: block; width: 0.2rem;height: 0.2rem;box-sizing: border-box; border: 1px solid #CCC; position: relative;}
.pAside_nav li iconify-icon{opacity: 0; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.14rem; color: #FFF;}

.pAside_nav li p{font-size: 0.18rem;font-weight: bold;}

.pAside_nav li.active i{background: var(--i_color); border-color: var(--i_color);}
.pAside_nav li.active iconify-icon{opacity: 1;}
@media screen and (max-width:1024px) {
	.pAside_nav{display: none;}
}




.pAside_related{}
.pAside_related ul{width: 100%; box-sizing: border-box; padding: .2rem; border: 1px solid #DDD;}
.pAside_related li{border-bottom: 1px solid #DDD;}
.pAside_related li:last-child{border-bottom: none;}
.pAside_related a{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .2rem;}

.pAside_related .coverPic{flex-shrink: 0; width:35%; position:relative; overflow:hidden}
.pAside_related .coverPic::before{content:""; display:block; padding-bottom:100%}
.pAside_related .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.pAside_related li p{font-size: 0.17rem; line-height: 1.6;}

.pAside_related li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.pAside_related li:hover p{color: var(--i_color);}

@media screen and (max-width:560px) {
	.pAside_related .coverPic{width: 30%;}
	.pAside_related li p{font-size: 15px; line-height: 1.4;}
}







.about__{background:url(static/images/about__bg.webp) no-repeat bottom center; background-size: cover;}

.about__cont{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 5%;}
.about__cont>h3{flex-shrink: 0; width: 28%; font-weight: bold;}

.about__cont .t{width: 100%;}
.about__cont article{font-size: 0.18rem; line-height: 1.6; border-top: 1px solid #888; border-bottom: 1px solid #888;}

.v_btn{padding: .12rem .2rem; display:inline-flex; flex-wrap:wrap; align-items: center; gap: 0 .1rem; background: rgb(255 255 255 / 60%); cursor: pointer;}
.v_btn p{font-size: 0.18rem;color: var(--i_color);}
.v_btn iconify-icon{font-size: 0.3rem;color: var(--i_color);}

@media screen and (max-width:1200px) {
	.about__cont article{font-size: 0.16rem;}
}
@media screen and (max-width:1024px) {
	.about__cont{flex-wrap: wrap; gap: 24px 0;}
	.about__cont>h3{width: 100%;}
	.about__cont article{padding: 20px 0; font-size: 15px;}

	.v_btn{padding: 8px 18px;}
	.v_btn p{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.about__cont article{padding: 10px 0; font-size: 14px;}

	.v_btn{padding: 6px 16px;}
	.v_btn p{font-size: 14px;}
}





.vd_full {display:none;position:fixed;top:0;left:0;width:100%;height:100%;background:rgb(255 255 255 / 80%);z-index:99999;}
.vd_box {position:absolute;top:52%;left:50%;transform:translate(-50%,-50%);width:60%;z-index:2;}
.vd_box::before {content:'';display:block;padding-bottom:56.25%;}
.close_v {position:absolute;top:-.2rem;right:-.2rem;width:0.4rem;height:0.4rem;background:var(--i_color);z-index:2;-webkit-border-radius:50%;border-radius:50%;cursor:pointer;}
.close_v::before {content:'+';position:absolute;top:50%;left:50%;font-size:0.44rem;color:#FFF;-webkit-transform:translate(-50%,-50%) rotate(45deg);transform:translate(-50%,-50%) rotate(45deg)}
.vd_box iframe {position:absolute;top:0;right:0;width:100%;height:100%;background:#000;object-fit:contain;}
@media screen and (max-width:1024px) {
	.vd_box {width:80%;}
	.close_v::before {font-size:0.4rem;}
}
@media screen and (max-width:768px) {
	.vd_box {width:88%;}
	.close_v {top:-.15rem;right:-.15rem;width:0.3rem;height:0.3rem;}
	.close_v::before {font-size:0.3rem;}
}





.about__num{display:-webkit-flex; display:flex; flex-wrap:nowrap;gap: 0 4%;}
.about__num dt{width: 100%;}
.about__num iconify-icon{font-size: 0.32rem;color: var(--i_color);}
.about__num p{margin: .1rem 0 .26rem; font-size: 0.16rem;}
.about__num span{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: baseline;gap: 0 .1rem;}
.about__num h6{font-size: 3vw;font-weight: bold;}
.about__num i{font-size: 0.22rem;font-weight: bold;}

@media screen and (max-width:1024px) {
	.about__num{flex-wrap: wrap; gap: 28px 4%;}
	.about__num dt{width: 48%;}
	.about__num p{font-size: 14px;}
	.about__num h6{font-size: 30px;}
	.about__num i{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.about__num iconify-icon{font-size: 26px;}
	.about__num span{gap: 0 5px;}
	.about__num h6{font-size: 24px;}
	.about__num i{font-size: 15px;}
}







.aboutGallery{}

.aboutGallery_list{position:relative; overflow:hidden}
.aboutGallery_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.aboutGallery_list .swiper-slide{flex-shrink:0; box-sizing: border-box; padding: .1rem; background: #F6F6F6; position:relative;}

.aboutGallery_list .swiper-slide span{display:block; width:100%; position:relative; overflow:hidden}
.aboutGallery_list .swiper-slide span::before{content:""; display:block; padding-bottom:75%}
.aboutGallery_list .swiper-slide span img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.aboutGallery_list .swiper-slide p{padding: .16rem 0 .1rem; font-size: 0.18rem; text-align: center; line-height: 1.4; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}

.aboutGallery-pagination{display:block; margin-top:0.5rem; text-align:center}
.aboutGallery-pagination .swiper-pagination-bullet{width:.38rem; height:2px; display:inline-block; margin:0 4px; background:#CCC; outline:none; cursor:pointer;}
.aboutGallery-pagination .swiper-pagination-bullet-active{background:var(--i_color)}

@media screen and (max-width:1024px) {
	.aboutGallery_list .swiper-slide p{padding: 12px 0 6px; font-size: 15px;}
	.aboutGallery-pagination{margin-top: 30px;}
}
@media screen and (max-width:560px) {
	.aboutGallery_list .swiper-slide{padding: 0 0;background: none;}
	.aboutGallery_list .swiper-slide p{font-size: 13px;}
}







.organization{
	background:url(static/images/organization_bg.webp) no-repeat top center;
	background-size: 100%;
	position: relative;
}
.organization::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%;height: 100%;background:url(static/images/organization_bg2.webp) no-repeat bottom center;background-size: 100%;}

.organization_show{width: 100%;height: 60vh; box-sizing: border-box; padding:.3rem .2rem; border: 6px solid var(--i_color);}

.organization_show>span{display: block; width: 100%; height: 100%; overflow-y: auto;}
.organization_show>span::-webkit-scrollbar{width:2px;}

.organizationPic{display: block;margin: 0 auto; max-width: 60%; position: relative; cursor: pointer;}

@media screen and (max-width:768px) {
	.organization_show{height: auto; padding: 0 0; border: none;}
	.organizationPic{max-width: 100%;}
}






.pLine_list{display:-webkit-flex; display:flex; flex-wrap:wrap; gap: .4rem 2.5%;}
.pLine_list li{width: 31.66%; background: #FFF; padding: .2rem; box-sizing: border-box; -webkit-border-radius:.2rem; border-radius:.2rem;  position: relative; text-align: center; overflow: hidden;}

.pLine_list span{display: block; height: 100%; background: var(--i_color); -webkit-border-radius:.14rem; border-radius:.14rem; overflow: hidden;}

.pLine_list i{display: block; width:100%; position:relative; overflow:hidden}
.pLine_list i::before{content:""; display:block; padding-bottom:63.47%}
.pLine_list i img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.pLine_list p{padding: .12rem .2rem; font-size: 0.16rem;color: #FFF; line-height: 1.3;}

@media screen and (max-width:1024px) {
	.pLine_list{gap: 26px 2.5%;}
	.pLine_list li{padding: 14px;}
	.pLine_list p{font-size: 14px;}
}
@media screen and (max-width:768px) {
	.pLine_list{gap: 30px 3%;}
	.pLine_list li{width: 48.5%;}
}
@media screen and (max-width:560px) {
	.pLine_list{gap: 20px 4%;}
	.pLine_list li{width: 48%; padding: 0 0; -webkit-border-radius:10px; border-radius:10px;}
	.pLine_list span{-webkit-border-radius:0; border-radius:0;}
	.pLine_list p{padding: 6px 10px; font-size: 12px;}
}







.pInspection{display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: flex-start; gap: 0 6%;}

.pInspection .tit{width: 100%; position: relative;}
.pInspection .tit h3{display: table; padding-bottom: 0.1rem; font-weight: bold; position: relative;}
.pInspection .tit h3::before{content: '';position: absolute;left: 0;bottom: 0;width: 100%; height: 3px;background: var(--i_color);}
.pInspection .tit>i{opacity: .1; position: absolute;right: 16%;bottom: 0;font-size: 3vw;color: var(--i_color);font-weight: bold; font-style: italic;}
.pInspection .tit>i b{font-family: Arial; margin-left: .08rem;}

.pInspection_t{flex-shrink: 0; margin-left: auto; width: 48%; display:-webkit-flex; display:flex; flex-wrap:wrap;gap: 10px 4%;}
.pInspection_t dt{width: 48%; box-sizing: border-box; padding-left: 0.26rem; font-size: 0.18rem;font-weight: bold; line-height: 1.4; position: relative;}
.pInspection_t dt::before{content: '';position:absolute; top: 6px; left: 3px;width: 8px;height: 8px;background: var(--i_color); -webkit-transform:rotate(-45deg); transform:rotate(-45deg);}

@media screen and (max-width:1024px) {
	.pInspection{flex-wrap: wrap;gap: 34px 0;}
	.pInspection .tit>i{right: 0; font-size: 5vw;}
	.pInspection_t{width: 100%;}
	.pInspection_t dt{font-size: 16px;}
}
@media screen and (max-width:560px) {
	.pInspection .tit h3{font-size: 16px;}
	.pInspection .tit>i{font-size: 7vw;}
	.pInspection_t dt{font-size: 14px;}
}






.pInspection_list{position:relative; overflow:hidden}
.pInspection_list .swiper-wrapper{display:-webkit-flex; display:flex; position:relative; width:100%}
.pInspection_list .swiper-slide{flex-shrink:0; position:relative; overflow: hidden;}
.pInspection_list .swiper-slide::before{content: '';display: block;padding-bottom: 100%;}
.pInspection_list .swiper-slide img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}

.pInspection-navigation{display:-webkit-flex; display:flex; flex-wrap:nowrap; justify-content: center; gap: 0 .3rem;}
.pInspection-navigation>div{width:.46rem; height:.46rem; box-sizing: border-box; border: 1px solid #DDD; background: #F1F1F1; cursor:pointer; outline:none; -webkit-user-select:none; user-select:none; position: relative;}
.pInspection-navigation iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:0.22rem;}
.pInspection-navigation .swiper-button-disabled{opacity: .3; cursor:not-allowed}
.pInspection-navigation>div:hover{background: var(--i_color); border-color: var(--i_color);}
.pInspection-navigation>div:hover iconify-icon{color: #FFF;}

.pInspection-pagination{display: none;}

@media screen and (max-width:1024px) {
	.pInspection-navigation{display: none;}

	.pInspection-pagination{display:block; margin-top:0.3rem; text-align:center}
	.pInspection-pagination .swiper-pagination-bullet{width:.08rem; height:.08rem; display:inline-block; margin:0 6px; background:#CCC; -webkit-border-radius:50%; border-radius:50%; outline:none; cursor:pointer;}
	.pInspection-pagination .swiper-pagination-bullet-active{background:var(--i_color)}
}






.newsList{}
.newsList li{padding-bottom: 0.5rem; margin-bottom: 0.5rem; border-bottom: 1px solid #DDD;}
.newsList a{display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 8%;}

.newsList .info{width: 100%;}
.newsList .info h5{width: 80%; font-size: 0.26rem; line-height: 1.4; font-weight: bold; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2;}
.newsList .info p{margin: .16rem 0 .26rem; font-size: 0.16rem;line-height: 1.5; color: #666; overflow:hidden; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:3;}

.newsList .coverPic{width: 60%; position: relative; overflow: hidden;}
.newsList .coverPic::before{content: '';display: block;padding-bottom: 52.5%;}
.newsList .coverPic img{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;-webkit-transition:all .5s ease; transition:all .5s ease;}

.newsList .date{flex-shrink: 0;}
.newsList .date i{font-size: 0.5rem;font-weight: bold;}
.newsList .date p{margin-top: 6px; font-size: 0.44rem;}

.newsList li:hover img{-webkit-transform: scale(1.05, 1.05); transform: scale(1.05, 1.05);}
.newsList li:hover .info h5{color: var(--i_color);}
.newsList li:hover .date i,.newsList li:hover .date p{color: var(--i_color);}

@media screen and (max-width:1024px) {
	.newsList .info h5{font-size: 20px;}
	.newsList .info p{font-size: 14px; -webkit-line-clamp:2}
	.newsList .date i{font-size: 34px;}
	.newsList .date p{font-size: 30px;}
}
@media screen and (max-width:768px) {
	.newsList li{padding-bottom: 40px; margin-bottom: 40px;}
	.newsList .info h5{width: 100%; font-size: 18px;}
	.newsList .i_more{display: none;}
	.newsList .date i{font-size: 26px;}
	.newsList .date p{font-size: 23px;}
}
@media screen and (max-width:560px) {
	.newsList li{padding-bottom: 30px; margin-bottom: 30px;}
	.newsList a{flex-wrap: wrap; gap: 10px 0;}
	.newsList .info h5{font-size: 16px;}
	.newsList .info p{margin: 10px 0 14px; font-size: 13px;}
	.newsList .date{order: -1; display:-webkit-flex; display:flex; flex-wrap:wrap; align-items: center; gap: 0 6px;}
	.newsList .date i,.newsList .date p{font-size:15px; margin: 0 0; font-style: italic;}
	.newsList .coverPic{width: 100%;}
}







.contact__{}

.logoContact{margin-bottom: -.4rem; width: 100%;}

.contact__list{display:-webkit-flex; display:flex; flex-wrap:wrap;gap: .44rem 3%;}
.contact__list li{width: 48.5%;box-sizing: border-box;padding: .3rem; box-shadow: 0 0 .1rem rgb(0 0 0 / 10%);display:-webkit-flex; display:flex; flex-wrap:nowrap; align-items: center; gap: 0 .44rem; position: relative;}
.contact__list li::before{content: '';position: absolute;top: 0;left: 0;width: 3px;height: 100%;background: var(--i_color);}

.contact__list .icon{flex-shrink: 0; position: relative;}
.contact__list .icon::before{opacity: 0; content: ''; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width: 126%;height: 126%;background: #000; -webkit-border-radius:50%; border-radius:50%; background:-webkit-linear-gradient(top, rgb(255 255 255 / 30%), transparent); background:linear-gradient(to bottom, rgb(255 255 255 / 30%), transparent);}
.contact__list .icon i{display: block; width: 0.9rem;height: 0.9rem;-webkit-border-radius:50%; border-radius:50%; position: relative;}
.contact__list .icon i::before{opacity: 0; content: '';position:absolute; top: 0; left: 0;width: 100%;height: 100%;background: #FFF;  -webkit-border-radius:50%; border-radius:50%;}
.contact__list .icon iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.5rem;color: var(--i_color);}

.contact__list span{width: 100%;}
.contact__list a,.contact__list p{font-size: 0.2rem; line-height: 1.4;}

.contact__list h4{padding-top: 0.16rem;margin-top: 0.16rem;border-top: 1px solid #EEE; font-size: 0.18rem;color: #888;}

.contact__list li:hover{background: var(--i_color);}
.contact__list li:hover .icon::before{opacity: 1;}
.contact__list li:hover .icon i::before{opacity: 1;}
.contact__list li:hover .icon iconify-icon{color: var(--i_color);}
.contact__list li:hover h4{border-top-color: rgb(255 255 255 / 20%);}
.contact__list li:hover a,.contact__list li:hover p,.contact__list li:hover h4{color: #FFF;}

.contact__list .icon::before,.contact__list .icon i::before,.contact__list .icon iconify-icon{-webkit-transition:all .5s ease; transition:all .5s ease;}

@media screen and (max-width:1024px) {
	.contact__ .wrap>img{margin-bottom: -8%;}

	.contact__list{gap: 30px 0;}
	.contact__list li{width: 100%; padding: 24px 30px; gap: 0 30px;}
	.contact__list .icon::before{opacity: 1;}
	.contact__list .icon i{width: 60px;height: 60px;}
	.contact__list .icon i::before{opacity: 1; background: var(--i_color);}
	.contact__list .icon iconify-icon{font-size: 26px; color: #FFF;}
	.contact__list li:hover .icon iconify-icon{color: #FFF;}

	.contact__list a, .contact__list p{font-size: 17px;}
	.contact__list h4{font-size: 15px;}
}
@media screen and (max-width:560px) {
	.contact__list{gap: 20px 0;}
	.contact__list li{padding: 20px 30px;}
	.contact__list .icon i{width: 44px;height: 44px;}
	.contact__list .icon iconify-icon{font-size: 22px;}

	.contact__list a, .contact__list p{font-size: 15px;}
	.contact__list h4{padding-top: 10px;margin-top: 10px; font-size: 14px;}
}






.map{width: 100%; position: relative;overflow: hidden;}
.map::before{content: '';display: block;padding-bottom: 38%;}
.map iframe{position:absolute; top:0; left:0; width:100%; height:100%; object-fit: cover;}
@media screen and (max-width:1024px) {
	.map::before{padding-bottom: 50%;}
}
@media screen and (max-width:768px) {
	.map::before{padding-bottom: 60%;}
}
@media screen and (max-width:560px) {
	.map::before{padding-bottom: 90%;}
}





.contactForm{background:url(static/images/contactForm_bg.webp) no-repeat bottom center; background-size: 100%;}

.contactForm .wrap{box-shadow: 0 2px .14rem rgb(0 0 0 / 10%); box-sizing: border-box; padding: .7rem .6rem; display:-webkit-flex; display:flex; flex-wrap:nowrap; gap: 0 8%;position: relative; background: #FFF;}

.contactForm .topIcon{position: absolute;top: 0; width: 0.56rem;height: 0.56rem;background: var(--i_color);z-index: 2;}
.contactForm .topIcon iconify-icon{position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);font-size: 0.3rem;color: #FFF;}

.contactForm_t{flex-shrink: 0; width: 42%; margin-top: 0.3rem;}
.contactForm_t h5{font-weight: bold;}
.contactForm_t span p{margin-top: 0.2rem; color: #777;}

.contactForm_t .tips{}
.contactForm_t .tips dt{display: table; padding: 8px .14rem; background: #F6F6F6;}
.contactForm_t .tips span{display:-webkit-flex; display:flex; flex-wrap:wrap;align-items: center; gap: 0 10px;}
.contactForm_t .tips iconify-icon{font-size: 0.18rem; color: #777;}
.contactForm_t .tips b{font-size: 15px; color: #777;}


#wpforms-87{
	--wpforms-field-border-size:0;
	--wpforms-button-background-color:var(--i_color);
	--wpforms-button-border-color:var(--i_color);
	--wpforms-page-break-color:var(--i_color);
	--wpforms-label-error-color:#d63637;
}
#wpforms-87{margin:0;padding:0;width: 100%;}
#wpforms-form-87{width:100%;position:relative;}

#wpforms-87 .wpforms-field-container{}
#wpforms-87 .wpforms-field-container>.wpforms-field{width: 100%;padding: 0 1px 20px;margin: 0 0 10px;overflow-x:initial !important; position: relative;}

#wpforms-87 .wpforms-field-container .wpforms-field-label{height: 0; font-size: 0;margin: 0 0;}
#wpforms-87 .wpforms-field-container .wpforms-required-label{position: absolute;top: 4px; left: 4px; font-size: 15px;color: #F00;font-weight: bold;}

#wpforms-87 .wpforms-field-container .wpforms-field>input{height: 0.46rem;}
#wpforms-87 .wpforms-field-container .wpforms-field>input,
#wpforms-87 .wpforms-field-container textarea
{border:none;border-bottom:  1px solid #CCC;}
#wpforms-87 .wpforms-form label.wpforms-error{position: absolute;left: 0;bottom: 0;font-size: 13px; color: #F00;}

#wpforms-87 .wpforms-field-container .wpforms-field>input,
#wpforms-87 .wpforms-field-container textarea,
#wpforms-87 .wpforms-field-container select,
#wpforms-87 .wpforms-field-container .choices
{width: 100%;max-width: 100%; box-sizing: border-box; margin: 0 0;}
#wpforms-87 .wpforms-field-container .wpforms-field>input,
#wpforms-87 .wpforms-field-container textarea,
#wpforms-87 .wpforms-field-container select
{padding-left: 14px;padding-right: 14px;}
#wpforms-87 .wpforms-field-container textarea{height: 1rem; padding-top: 10px;padding-bottom: 10px;}
#wpforms-87 .wpforms-field-container fieldset ul{padding: 0 2px; display:-webkit-flex; display:flex; flex-wrap:wrap;}
#wpforms-87 .wpforms-field-container select{cursor: pointer;}
#wpforms-87 .wpforms-field-container .wpforms-datepicker-wrap{width: 310px;}
#wpforms-87 .wpforms-field-container .wpforms-datepicker-wrap input{width: 100%;max-width: 100%;}
#wpforms-87 .wpforms-field-container .wpforms-datepicker-clear{right: 10px;}
#wpforms-87 .wpforms-field-container em.wpforms-error,#wpforms-87 .wpforms-field-container .mailcheck-error{position: absolute; margin: 0 0; bottom: -2px;}

/* #wpforms-87 input::placeholder, #wpforms-87 textarea::placeholder{color:#333;font-size:16px} */

#wpforms-87 .wpforms-field-container{display:-webkit-flex; display:flex; flex-wrap:wrap;justify-content: space-between;}
#wpforms-87-field_1-container,
#wpforms-87-field_2-container
{width: 48% !important;}

#wpforms-87 .wpforms-submit-container{width: 260px;padding:0 0}
#wpforms-87 .wpforms-submit-container button{width: 100%;height:.44rem; font-size: 15px; color: #FFF; background: var(--i_color);}
#wpforms-87 .wpforms-submit-container img{position:absolute;top:50%;transform:translate(0,-50%);right:4px;z-index:2}
#wpforms-87 .wpforms-submit-container button:hover{background: var(--i_color2) !important;}

@media screen and (max-width:768px) {
	.contactForm .wrap{padding: 70px 30px 40px; flex-wrap: wrap;gap: 30px 0;}

	.contactForm_t{width: 100%;margin: 0 0;}
	.contactForm_t .tips b{font-size: 14px;}
}
@media screen and (max-width:560px) {
	.contactForm .topIcon{width: 44px;height: 44px;}
	.contactForm .topIcon iconify-icon{font-size: 24px;}

	#wpforms-87 .wpforms-field-container>.wpforms-field{width: 100% !important;}
	#wpforms-87 .wpforms-submit-container{margin: 0 auto;}
}





























