:root {
	/* 品牌色 */
	--brand-blue: #007bff;
	--brand-dark: #1a237e;

	/* 辅助色 */
	--accent-teal: #20c997;
	--accent-purple: #6f42c1;

	/* 中性色 */
	--white: #ffffff;
	--gray-100: #f8f9fa;
	--gray-500: #adb5bd;
	--black: #000000;

	/* 功能色 */
	--error: #ff4444;
	--success: #16b777;
	--warning: #ffbb33;
	--info: #33b5e5;

	/* 页面头部 */
	--menu-background: transparent;
	--menu-text: #fff;
	--menu-hover: #faad06;
	--menu-hover-background: #ccc;
	--menu-hover-text: #faad06;
	--menu-active: #faad06;
	--menu-active-background: #e9ecef;

	/* 页面主体 */
	--content-background: #ffffff;
	--content-text: #333;
	--content-link: #007bff;

	/* 页面底部 */
	--footer-background: #0D0D0E;
	--footer-text: #ccc;
	--footer-link: #fff;

	/* 页面遮罩 */
	--shade-background: rgba(0, 0, 0, 0.5);
	--shade-text: #fff;
	/* 底部TAB*/
	--tab-background: rgba(255, 255, 255, 0.96);
	--tab-text: #666;
	--tab-hover: #007bff;
	/* 图片*/
	--img-background: #fafafa;
	--img-border: #ccc;
	--swiper-navigation-color: #fff;
}
.gt_lang_en{
	font-family: Georgia, serif;
    text-transform: capitalize;
}
.gt_header+div {
	padding-top: 0px;
}

.layui-header {
	background-color: transparent;
}

.layui-nav {
	background-color: transparent;
}

.layui-nav .layui-nav-item a {
	color: #fff;
}

.layui-nav .layui-nav-item a:hover,
.tabCon .tab-this,
.tabCon .tabItem:hover {
	color: #000;
	background-color: transparent;
}

.gt_menu .gt_nav_child {
	background-color: rgba(255, 255, 255, 0.96);
	border: 0;
}
.navLang .layui-nav-child .gt_nav_child_item_link{
	color: #000 !important;
}
.navLang .layui-nav-child .layui-this .gt_nav_child_item_link,.navLang .layui-nav-child .gt_nav_child_item_link:hover{
	color: #faad06 !important;
}
.gt_nav_lang .layui-nav-more{
	right: 29px;
}

.ws-container {
	padding-top: 0px;
}

.layui-header .layui-nav .layui-this,
.layui-header .layui-nav-item:hover {
	background: transparent;
}

.layui-nav .layui-this:after,
.layui-nav-bar {
	background: transparent;
}

.gt_menu .gt_nav_item a{
	padding: 0 25px;
}

.card_style_zhenghuan>.layui-container {
	width: 100% !important;
}

.index {
	background-color: #fff;
}

.fullMain {
	margin-left: 0;
	margin-right: 0;
}

#banner {
	height: 1080px;
	max-height: 955px;
	background: transparent;
}

/* 工具导航容器 */
.gt_toolbar {
	height: 20px;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1001;
	padding: 5px 10px;
}

/* 导航项容器 */
.gt_toolbar .gt_nav {
	display: flex;
	gap: 5px;
	justify-content: flex-end;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* 单个导航项 */
.gt_toolbar .gt_nav_item {
	position: relative;
	line-height: 1;
}

/* 导航链接样式 */
.gt_toolbar .gt_nav_item_link {
	color: #666;
	font-size: 12px;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
	padding: 2px 5px;
}

.gt_toolbar .gt_nav_item_link:hover {
	color: var(--menu-hover);
}

/*标签基本样式——开始*/
body {
	background-color: #F7F7F9;
	overflow-x: hidden;
}

a:hover {
	color: #ffbb33;
}

/*标签基本样式--结束*/

.indexindex{
	background-color: #fff;
}



/* 自定义滚动条 ---开始*/
::-webkit-scrollbar {
	width: 5px;
	/* 滚动条宽度 */
}

::-webkit-scrollbar-track {
	background: #f1f1f1;
	/* 滚动条轨道颜色 */
	border-radius: 10px;
	/* 轨道圆角 */
}

::-webkit-scrollbar-thumb {
	background: #888;
	/* 滚动条颜色 */
	border-radius: 10px;
	/* 滚动条圆角 */
}

::-webkit-scrollbar-thumb:hover {
	background: #555;
	/* 鼠标悬停时的颜色 */
}

/* 自定义滚动条 ---结束*/



/*flex布局 --开始*/
/*子元素水平排列，两端元素贴边，中间元素间距相等，所有子元素垂直居中，高度一致（若未设置固定高度则等高）‌*/
/*常用于导航栏、卡片操作栏等需分散对齐且垂直居中的场景‌*/
.displayAB {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/*
水平排列‌：子元素从左到右排列，首尾贴边，中间等间距（如导航栏、多按钮操作栏）。
‌垂直方向‌：‌默认拉伸‌（未设置 align-items，子元素高度默认占满容器高度）‌
需要子元素水平分散对齐且默认垂直填满容器（如双栏布局、页脚版权和链接分列两侧）
*/
.displayB {
	display: flex;
	justify-content: space-between;
}

/*
‌完全居中布局‌：子元素在水平和垂直方向均居中（若容器有固定宽高，则为典型“绝对居中”效果）。
‌子元素排列‌：默认水平排列，不分散（对比 .displayAB 的 space-between，此处无间距自动分配）。
需要完全居中的内容（如弹窗提示、页面加载动画）
*/
.displayC {
	display: flex;
	align-items: center;
	justify-content: center;
}

/*
‌水平排列‌：子元素从左到右紧密排列，无自动间距（对比 justify-content: space-between）。
‌垂直居中对齐。
*/
.displayA {
	display: flex;
	align-items: center;
}

/*
自适应换行‌：子元素宽度总和超过容器宽度时自动换行（如标签组、卡片布局）。
‌垂直居中‌：每行子元素在垂直方向居中对齐（对比 align-items: flex-start 顶部对齐）。
‌默认左对齐‌：换行后的多行内容整体左对齐（需 justify-content: center 实现整体水平居中）。
适用：响应式卡片布局，图文混排行内元素需垂直居中
*/
.displayW {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/*‌自适应换行‌：子元素按内容宽度自动换行，每行居中排列（对比 justify-content: flex-start 左对齐）。
‌垂直居中‌：所有子元素在行内垂直居中（行高度自适应）。
‌整体居中趋势‌：若容器有额外空间，多行内容整体在容器内居中（需结合容器高度和 align-content 调整）。
适用：相册缩略图列表，商品卡片
*/
.displayCW {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

/*
自适应换行‌：子元素根据容器宽度自动换行。
‌行内两端对齐‌：每行内容严格贴左右边缘，元素间距均分（对比 justify-content: space-around 左右留空隙）。
‌潜在问题‌：
最后一行若元素不足，可能单独左对齐（需占位元素填充或调整逻辑）。
行高度由该行最高子元素决定，垂直方向默认拉伸对齐（未设置 align-items）*/
.displayBW {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

/*flex布局 --结束*/

/*flex布局子元素 --开始*/

.flex1 {
	flex: 1;
}

.flexitem {
	flex: 1;
	/* 均分剩余空间 */
	min-width: 0;
	/* 允许内容收缩 */
	min-height: 0;
	/* 允许内容收缩 */
	max-width: 100%;
	/* 最大宽度限制 */
	max-height: 100%;
	/* 最大高度限制 */
}

.flexitem_2_1 {
	flex: 0 0 50%;
	/* 均分剩余空间 */
	min-width: 0;
	/* 允许内容收缩 */
	min-height: 0;
	/* 允许内容收缩 */
	max-width: 100%;
	/* 最大宽度限制 */
	max-height: 100%;
	/* 最大高度限制 */
}

.flexitem.left2 {
	flex: 0 0 20%;
}

.flexitem.left25 {
	flex: 0 0 25%;
}

.flexitem.left3 {
	flex: 0 0 30%;
}

.flexitem.left4 {
	flex: 0 0 40%;
}

.flexitem.left5 {
	flex: 0 0 calc(50% - 40px);
}

.flexitem.left6 {
	flex: 0 0 60%;
}

.flexitem.left7 {
	flex: 0 0 70%;
}

.flexitem.left8 {
	flex: 0 0 80%;
}

.flexitem.right2 {
	flex: 0 0 20%;
}

.flexitem.right3 {
	flex: 0 0 30%;
}


.flexitem.right4 {
	flex: 0 0 40%;
}

.flexitem.right6 {
	flex: 0 0 60%;
}

.flexitem.right7 {
	flex: 0 0 70%;
}

.flexitem.right8 {
	flex: 0 0 80%;
}

.flexitem img {
	max-width: 100%;
}

.flexitem h3,
.flexitem h4 {
	text-align: center;
}

.flexitem p.center {
	text-align: center;
}

.flexitem .layui-text {
	padding: 0 20px;
}

/*flex布局子元素 --结束*/
.layui-text a:not(.layui-btn),
.layui-text h1,
.layui-text h2,
.layui-text h3,
.layui-text h4,
.layui-text h5,
.layui-text h6 {
	color: inherit;
}

/* 滚动后的样式 */
#mainHeader.scrolled,
.product #mainHeader {
	background: rgba(0, 0, 0, 0.98);
	/* 半透明白色 */
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}


.beautiful_form {
	width: 1330px;
	margin: 0 auto;
	padding: 30px 0;
}

.beautiful_form fieldset {
	width: 60%;
}


.layui-header-menu .layui-nav .layui-this a,
.layui-header-menu .layui-nav-item a:hover {
	color: #faad06;
}

.ws-footer {
	background: rgba(13, 13, 14, 0.9);
	/* background:#131415; */
}

.gt_widget .gt_widget_title h2 {
	color: #717881;
	background: #fff;
}

.gt_breadcrumb {
	padding: 0 20px
}
#smallbanner{
	height: 500px;
	max-height: 500px;
}
@media screen and (max-width: 991.98px) {

	.marginb30 {
		margin-bottom: 20px;
	}

	.marginb60,
	.marginb40 {
		margin-bottom: 30px;
	}

	#banner {
		height: 360px;
	}

	#smallbanner {
		height: 210px;
	}

	.beautiful_form {
		width: 100%;
	}

	.beautiful_form fieldset {
		width: 100%;
	}
}


/* aboutus页面 start */
.aboutusTagBox {
	font-weight: bold;
	padding: 30px 10px;
	background: url(/web/images/ZHuan/aboutus/ccc.png) no-repeat left bottom;
	background-size: 95%;
	width: 100%;
	box-sizing: border-box;
}

.lineTitleBox {
	font-weight: bold;
	padding: 10px;
	background: url(/web/images/ZHuan/aboutus/cccd.png) no-repeat left bottom;
	background-size: auto;
	width: fit-content;
}

.z_aboutusWrapper .aboutusItem {
	width: 48%;
}

.z_aboutusWrapper .aboutusItemCon {
	padding: 15px 10px;
	line-height: 28px;
}

.z_aboutusWrapper .aboutusImgs {
	padding: 10px 20px;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

.z_aboutusWrapper .aboutusImgs img {
	width: 30%;
}

.z_aboutusWrapper .qualityConBox {
	display: flex;
	justify-content: space-between;
	padding: 30px 40px;
	background: #FAFAFA;
	border-radius: 30px;
	width: 100%;
	box-sizing: border-box;
}

.z_aboutusWrapper .qualityConBox .qualityItemBox {
	width: 20%;
	text-align: center;
	line-height: 30px;
}

.z_aboutusWrapper .qualityConBox .qualityItemBox img {
	margin-bottom: 20px;
	width: 60px;
	height: 60px;
}

.aboutusAdr {
	margin-left: 30px;
	width: 58%;
}

/* aboutus页面 end */

/* 案例 article页面 end */
.z_tabWrapper .layui-tab-title {
	border: none;
	margin-bottom: 15px;
}

.z_tabWrapper .layui-tab-title li {
	color: #717881;
}

.z_tabWrapper .layui-tab-title .layui-this {
	color: #262A2F;
}

.z_tabWrapper .layui-tab-more li.layui-this:after,
.z_tabWrapper .layui-tab-title .layui-this:after {
	border-bottom: none;
}

/* .z_tabWrapper .layui-tab-content{
	background-color: #F8F8F8;
} */

.z_pdlist .z_pdItem {
	width: calc(25% - 20px);
	margin: 10px;
	padding: 10px;
	font-size: 16px;
	border: 1px solid #E8E8E8;
	box-sizing: border-box;
}
.z_pdlist .z_pdItem img{
	aspect-ratio: 1 / 1;
}

.z_swiperSlide .swiper-slide:hover {
	transform: scale(1.05) translateY(-4px);
	filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
}

.z_pdlist .z_pdItem .displayAB {
	padding: 10px;
}

.z_titleBox {
	text-align: center;
	margin: 30px auto 60px;
	line-height: 40px;
}
.z_titleBox h1,.gt_widget .gt_widget_title h2{
	position: relative;
	color: #000;
	letter-spacing: 5px;
	font-size: 25px;
}
.z_titleBox h1::after,.title h2::after{
	content: '';
	position: absolute;
	width: 30px;
	height: 1px;
	background-color: #000;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.gt_widget_title .title h2::after{
	bottom: 18px;
}

.z_swiperSlide {
	width: 100%;
	/* height: 360px; */
	margin: 30px auto;
	overflow: hidden;
}

.z_swiperSlide .pdImgBox {
	position: relative;
	color: #fff;
	height: 100%;
	border-right: 1px solid #999999;
}
.z_swiperSlide .pdImgBox img{
	aspect-ratio:1 / 1;
}
.z_swiperSlide .imgTitle {
	position: absolute;
	left: 10px;
	bottom: 20px;
	line-height: 25px;
}

.z_swiperSlide .ellipseTag {
	width: 20px;
	height: 10px;
	border-radius: 5px 5px 5px 0px;
	border: 1px solid #FFFFFF;
}

.z_arrowsBox .swiperPrev {
	text-align: right;
	margin-right: 30px;
}

.z_arrowsBox .arrowsImg {
	margin-top: -10px;
}

.z_ProjectCaseColla {
	color: #fff;
	display: flex;
	/* height: 690px; */
	min-height: 180px;
	width: 100%;
	aspect-ratio: 1920 / 700;
}

.z_ProjectCaseColla .collaItem {
	/* flex: 1; */
	height: 100%;
	display: flex;
	/* width: 25%; */
}

.z_ProjectCaseColla .bigImgBox {
	position: relative;
	height: 100%;
	color: #fff;
	width: 0;
}

#company_info {
	padding-top: 60px;
}

.z_ProjectCaseColla .showThis {
	width: 90%;
	will-change: transform;
	animation: collaAni 0.1s linear;
}

.z_ProjectCaseColla .showThis .bigImgBox {
	width: 100%;
}

.z_ProjectCaseColla .collaItem .hideThis {
	display: none;
}

.z_ProjectCaseColla .collaItem .bigImg {
	height: 100%;
	width: 100%;
}

.z_ProjectCaseColla .imgTitle {
	position: absolute;
	left: 20px;
	bottom: 10px;
	line-height: 25px;
}

.z_ProjectCaseColla .collaItem .imgTitle .arrowsImg {
	margin-top: -10px;
	width: 60%;
}

.yellowF {
	color: #C2B793;
}

.whiteF {
	color: #FFF;
}

.whiteBG {
	background: #FFF;
}

#projectcase .morelink {
	display: none;
}
.contact-card{
	padding: 20px;
	box-sizing: border-box;
}
#projectcase {
	margin-top: -60px;
	width: calc(100vw - 40px);
	/* 撑满视口宽度 */
	position: relative;
	left: 50%;
	padding: 20px;
	transform: translateX(-50%);
}
.gt_solid .smallImgBox {
	/* width: 200px; */
	background-repeat: no-repeat;
	background-position: left top;
	background-size: auto 100%;
	position: relative;
	aspect-ratio: 200 / 700;
	background-color: #000;
	transition: opacity 0.5s ease;
	/* 添加过渡动画 */
	cursor: pointer;
}

.gt_solid .smallImgBox:hover {
	opacity: 0.95;
	background-color: #fff;
}

.gt_solid .smallImgBox .plusImg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	cursor: pointer;
}

.gt_solid .smallImgBox .imgTitle {
	left: 0;
	right: 0;
	bottom: 32px;
	text-align: center;
}

@keyframes collaAni {
	0% {
		width: 0%;
	}

	100% {
		width: 70%;
	}
}

.aboutUsWrapper {
	height: 500px;
	display: flex;
}

.aboutUsWrapper .aboutBgConBox {
	background: #1F1E1D;
	padding: 30px;
	box-sizing: border-box;
	color: #fff;
	height: 100%;
}

.aboutUsWrapper .aboutBgCon {
	width: 75%;
	line-height: 25px;
}

.aboutUsWrapper>.flex1 {
	width: 50%;
	height: 100%;
}

.aboutUsWrapper .aboutBgCon .aboutBgImgBox {
	position: relative;
}

.aboutUsWrapper .aboutBgCon .aboutBgImgBox .aboutBgImg {
	position: absolute;
	bottom: -30px;
	left: -30px;
	/* width: 120px; */
}

.zhcategory .displayA {
	gap: 20px;
	padding: 20px;
}

.zhcategory .layui-card {
	flex: 1 1 calc(33.333% - 20px);
	/* Adjust the percentage for more/fewer cards per row */
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
	background-color: #fff;
	transition: transform 0.3s ease;

}

.zhcategory .layui-card:hover {
	transform: translateY(-10px);
}

.zhcategory .layui-card a {
	text-decoration: none;
	color: #333;
	display: block;
}

.zhcategory .layui-card img {
	width: 100%;
	height: auto;
	display: block;
}

.zhcategory h3 {
	margin: 0 0 10px;
	font-size: 1.25em;
}

.zhcategory h5 {
	margin: 0;
	font-size: 0.875em;
	color: #666;
}

.catalogueview .main,
.vinassemble .main {
	margin: 0 auto;
}

.gt_more_btn {
	color: #ccc;
}

.gt_footer_tabbox .gt_tabitem{
	display: block;
	line-height: 23px;
}
.gt_footer_tabbox .gt_tabitem .layui-icon{
	font-size: 25px;
}
.gt_widget .gt_flex_container{
	justify-content: flex-start;
}
.gt_widget .gt_flex_container .gt_flex_41 a{
	padding: 0;
}
.gt_catalist1 .gt_flex h3{
	text-align: center;
	margin: 10px 5px 20px;
}
.gt_catalist1 .gt_flex .newsimg{
	aspect-ratio: 570 / 337;
	object-fit: contain;
}

.isMobile{
	display: none;
}





/* Responsive adjustments */
@media (max-width: 1024px) {
	.zhcategory .card {
		flex: 1 1 calc(50% - 20px);
	}
}

@media (max-width: 768px) {
	.isMobile{
		display: block;
	}
	.zhcategory .card {
		flex: 1 1 100%;
	}

	.layui-header-menu .layui-nav {
		background: rgba(0, 0, 0, 0.6)
	}

	.scrolled .gt_more_btn {
		color: #fff;
	}
}


@media screen and (max-width: 991.98px) {
	.gt_main{
		padding: 10px;
	}
	.gt_widget .gt_widget_title h2{
		margin: 25px auto 0;
		width: 100%;
		height: auto;
	}
	.ws-footer{
		padding-bottom: 95px;
	}
	
	
	.z_swiperSlide {
		width: 100%;
		padding: 0;
		box-sizing: border-box;
	}

	.z_swiperSlide .swiper-wrapper {
		display: block;
	}

	.z_swiperSlide .pdImgBox {
		width: 100% !important;
		border-right: none;
		margin-bottom: 30px;
	}

	.z_swiperSlide .imgTitle {
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(0deg, #FFFFFF 0, rgba(255, 255, 255, 0.8) 100%);
		color: #000;
		padding: 10px 10px 0;
		font-size: 16px;
	}
	.z_swiperSlide .imgTitle .displayA{
		align-items: center;
	}
	.z_swiperSlide .imgTitle p {
		color: #999999;
		font-size: 14px;
	}

	.z_swiperSlide .ellipseTag {
		width: 20px;
		height: 1px;
		background-color: #000;
		border: none
	}

	.z_arrowsBox {
		display: none;
	}
	
	#projectcase{
		padding: 0;
		width: 100vw;
		/* width: calc(100vw + 5px);
		margin-top: 0px;
		margin-left: -5px; */
	}
	.gt_solid .showThis{
		width: calc(100% - 32px - 32px - 33px - 33px);
	}
	
	#projectcase.imgTitle {
		bottom: 6px;
	}

	#projectcase .smallImgBox {
		width: 32px;
		background-size: auto;
		background-position: center;
	}

	#projectcase .smallImgBox .plusImg {
		width: 20px;
		top: 20%;
	}

	#projectcase .smallImgBox .imgTitle {
		font-size: 11px;
		left: 50%;
		transform: translateX(-50%);
		bottom: 10px;
		writing-mode: vertical-rl;
		/* 从右到左的垂直排列 */
		text-orientation: upright;
		/* 文本保持直立，不倾斜 */
	}

	.aboutus .contact-card{
		padding: 5px;
	}
	.aboutUsWrapper {
		display: block;
		height: auto;
	}

	.aboutUsWrapper>.flex1 {
		width: 100%;
	}

	.aboutUsWrapper .aboutBgConBox {
		padding: 60px 25px 30px;
	}

	.aboutUsWrapper .aboutBgCon {
		width: 100%;
		line-height: 25px;
	}

	.aboutUsWrapper .aboutBgCon h1 {
		font-size: 24px;
		font-weight: 400;
	}

	.aboutUsWrapper .aboutBgCon .aboutBgImgBox {
		position: relative;
	}

	.aboutUsWrapper .aboutBgCon .aboutBgImgBox .aboutBgImg {
		position: absolute;
		bottom: -18px;
		left: -10px;
		width: 80px;
	}

	/* aboutus页面 start */
	.z_titleBox .layui-font-22 {
		font-size: 18px !important;
	}

	.z_aboutusWrapper .aboutusConBox .displayB {
		display: block;
		margin-bottom: 0;
	}

	.lineTitleBox {
		font-size: 20px;
	}

	.z_aboutusWrapper {
		font-size: 14px;
	}

	.z_aboutusWrapper .aboutusItem {
		width: 100%;
	}

	.z_aboutusWrapper .aboutusItemCon .displayA {
		align-items: baseline;
	}
	
	.z_aboutusWrapper .aboutusItem .lineTitleBox{
		font-size: 18px;
	}
	
	.z_aboutusWrapper .aboutusImgs img {
		width: 100%;
		display: none;
	}

	.z_aboutusWrapper .aboutusImgs img:first-child {
		display: block;
	}

	.z_aboutusWrapper .qualityConBox {
		padding: 10px;
		background: #fff;
		flex-wrap: wrap;
	}

	.z_aboutusWrapper .qualityConBox .qualityItemBox {
		width: 45%;
		line-height: 20px;
		margin-bottom: 20px;
	}

	.z_aboutusWrapper .qualityConBox .qualityItemBox img {
		margin-bottom: 25px;
	}

	.aboutusAdrBox .displayB {
		display: block;
		padding: 10px;
	}

	.aboutusAdr {
		margin-left: 0px;
		width: 100%;
		margin-top: 20px;
	}

	/* aboutus页面 end */
	.z_tabWrapper .layui-tab-title {
		margin-bottom: 0;
	}

	.z_tabWrapper .layui-tab-title li {
		padding: 0 6px;
	}

	.z_pdlist .z_pdItem {
		width: calc(50% - 20px);
		margin: 10px;
		font-size: 12px;
	}
	
	.z_titleBox {
		text-align: center;
		margin: 30px auto;
		line-height: 40px;
	}
	.z_titleBox h1,.gt_widget .gt_widget_title h2{
		letter-spacing: 2px;
		font-size: 18px;
	}
	.gt_widget_title .title h2::after{
		bottom: -2px;
	}
	.zhcategory .layui-card{
		flex: 1 1 calc(50% - 20px);
	}
	.zhcategory h3,.gt_widget .gt_flex h3{
		font-size: 1em;
	}
}