/* banner s*/
.gog-banner-slider {
	position: relative;
	min-width: 100%;
	overflow: hidden;
	margin-block-end：0;
}

/* 幻灯片容器 */
.gog-slides-container {
	position: relative;
	width: 100%;
	min-height: 850px;
}

/* 单个slide */
.gog-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.gog-slide.active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

/* 内容区域 - 基础样式 */
.gog-slide-content {
	position: relative;
	z-index: 2;
	max-width: 1380px;
	margin: 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* 第一、三、四张：居中偏上，文字居中 */
.gog-slide-center-top {
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	padding-top: 10vh;
}

/* 第二张：靠左垂直居中 ———— 优化版 */
.gog-slide-left {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
	/* padding-left: 8%; */
	padding-right: 8%;
	box-sizing: border-box;
	padding-top: 18vh;
}

.gog-slide-left .gog-slide-center-top {
	display: flex;
	/* align-items: flex-start;
	justify-content: flex-start; */
	text-align: left;
}

/* 靠左幻灯片的内容宽度 ———— 更美观、不溢出 */
.gog-slide-left .gog-slide-content-inner {
	max-width: 100%;
	width: 100%;
	margin: 0;
}

/* 第二张：居中垂直居中 ————  */
.gog-slide2-center-top .gog-slide-center-top h2.gog-slide-heading {
	color: #ffffff;
}

.gog-slide2-center-top .gog-slide-heading span {
	padding: 8px 20px;
	border-radius: 50px;
	background-color: var(--theme-color);
}

.gog-slide2-center-top .gog-slide-button-wrapper {
	text-align: center;
}

.gog-slide3-center-top {
	text-align: right;
}

.gog-slide3-center-top .gog-slide-center-top {
	align-items: flex-end;
	text-align: right
}

.gog-slide3-center-top .gog-slide-center-top h2.gog-slide-heading {
	color: #ffffff;
	font-size: 120px;
	font-weight: 1000;
}

.gog-slide3-center-top p {
	display: block;
	margin-bottom: 2vw;
	font-size: 45px;
	color: #ffffff;
	line-height: 1;
	font-weight: 400;
}

.gog-slide3-center-top .gog-slide-content {
	max-width: 1600px;
}

.gog-slide3-center-top .gog-slide-content-inner span {
	display: block;
	margin-bottom: 3vw;
	color: #ffffff;
	line-height: 1.5;
	letter-spacing: 1px;
	font-weight: 300;
}

.gog-slide3-center-top .gog-slide-content-inner .gog-slide-button-wrapper {
	align-items: flex-end;
	text-align: right
}

/* 靠右的内容块靠右对齐 */
.gog-slide-right .gog-slide-content-inner {
	margin-left: auto;
	margin-right: 0;
}

.gog-slide-heading {
	margin: 0 0 30px 0;
}

.gog-slide-heading h2 {
	font-size: 120px;
	font-weight: 700;
	color: var(--theme-palette-color-1);
	text-transform: uppercase;
	margin-bottom: 10px;
}

.gog-slide-heading span {
	color: #ffffff;
	font-size: 32px;
	line-height: 1.5;
	font-weight: 300;
	text-transform: capitalize;
}

.gog-slide:not(.active) .gog-slide-button-wrapper {
	display: none !important;
	visibility: hidden !important;
}

.gog-slide:not(.active) {
	visibility: hidden !important;
	opacity: 0 !important;
}

/* .gog-slider-footer {
	display: none !important;
} */

/* .gog-banner-slider.has-multiple .gog-slider-footer {
	display: flex !important;
} */

.gog-slide:not(.active) .gog-slide-button-wrapper {
	display: none !important;
	visibility: hidden !important;
}

.gog-slide:not(.active) {
	visibility: hidden !important;
	opacity: 0 !important;
}

/* 底部控制区 - 分页器红色调 */
.gog-slider-footer {
	position: absolute;
	bottom: 30px;
	left: 0;
	right: 0;
	z-index: 3;
	pointer-events: none;
}

.gog-slider-footer-content {
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	pointer-events: auto;
}

.gog-slider-pagination {
	display: flex;
	align-items: center;
	gap: 30px;
}

.gog-slider-progress {
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.6875em;
}

.gog-slider-progress .current {
	font-weight: 600;
}

.gog-slider-dots {
	display: flex;
	gap: 15px;
}

.gog-slider-dot {
	width: 48px;
	height: 4px;
	background: transparent;
	border-bottom: 2px solid rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: border-color 0.3s, border-width 0.2s;
}

.gog-slider-dot.active {
	border-bottom: 4px solid var(--theme-palette-color-1);
}

.gog-slider-nav {
	display: flex;
	gap: 12px;
}

.gog-slider-nav button {
	width: 48px;
	height: 48px;
	background-color: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	pointer-events: auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gog-slider-nav button:hover {
	background-color: var(--theme-palette-color-1);
}

.gog-slider-nav button svg {
	width: 24px;
	height: 24px;
	stroke: #333;
	stroke-width: 2;
	fill: none;
}

.gog-slider-nav button:hover svg {
	stroke: #fff;
}

/* banner e*/
/* 首页新闻 s*/
.stk-be70983 {}

.flexy-container {}

.flexy {}

.flexy-view {}

.flexy-item {}

.flexy-view .flexy-item .ct-media-container {
	border-radius: 20px;
}

.flexy-view .flexy-item .ct-media-container img {
	overflow: hidden;
	transition: all .3s;
}

.flexy-view .flexy-item:hover .ct-media-container img {
	transform: scale(1.05);
}

.flexy .flexy-view .flexy-item .entry-title {
	margin-bottom: 1vw;
}

.flexy .flexy-view .flexy-item .entry-title a {
	color: #000;
	font-size: 20px;
	font-weight: 500;
	height: 1.3em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}

.flexy .flexy-view .flexy-item:hover .entry-title a {
	color: var(--theme-palette-color-1);
}

.entry-excerpt {}

.entry-excerpt p {}

.entry-meta {
	display: none;
}

/* 首页新闻 e*/
.ct-footer {
	background-color: #f3eced !important;
}


.ct-footer .ct-widget h3 {
	font-size: 26px;
}

.ct-footer .widget_nav_menu ul {}

.ct-footer .widget_nav_menu ul li {}

.ct-footer .widget_nav_menu ul li a {
	padding: 0;
	border: 0;
	background-color: transparent;
}

.ct-footer .widget_nav_menu ul li a:hover {
	color: var(--theme-palette-color-1);
}

/* 内页样式 */
/* 产品 */
[data-products] .product {
	transition: all .3s;
}

[data-products] .product:hover {
	border-color: var(--theme-color);
}

[data-products] .woocommerce-loop-product__title,
[data-products] .woocommerce-loop-category__title {
	margin-bottom: 1vw;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
}

[data-products] .woocommerce-loop-product__title a,
[data-products] .woocommerce-loop-category__title a {
	color: #353535;
}

[data-products] .product:hover .woocommerce-loop-product__title a {
	color: var(--theme-color)
}


[data-products=type-2] .ct-woo-card-actions .button {
	font-size: 18px;
}

.ct-sidebar .widget-title {
	font-size: 26px;
	color: var(--theme-color);
	text-transform: uppercase;
}

.ct-sidebar .menu-productr-center-container .widget-menu li a {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
}

.product_list_widget .product-title {
	color: #353535;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.product_list_widget li:hover a.product-title {
	color: var(--theme-color);
}

.product_list_widget li a.ct-media-container {
	transition: all .3s;
}

.product_list_widget li:hover a.ct-media-container {
	transform: scale(1.1);
}

/* 产品详情 s*/
.entry-summary .entry-title {
	font-size: 30px !important;
}

.single-product article>:where(.related, .up-sells) .ct-module-title {
	font-size: 32px;
	color: var(--theme-color);
	text-transform: capitalize;
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li a {
	color: #ffffff;
	font-size: 16px;
	background-color: var(--theme-color);
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li.reviews_tab{
	display:none;
}

.woocommerce div.product div.woocommerce-tabs ul.tabs li.active a {
	color: #ffffff;
}

.woocommerce-tabs.wc-tabs-wrapper article td,
.woocommerce-tabs.wc-tabs-wrapper article th {
	padding: 15px 12px;
	border: 1px solid #dadbdd !important;
	vertical-align: middle;
	font-size: 16px;
	color: #353535;
	text-align: center;
	/* white-space: nowrap;
	overflow-x: auto; */
}

.woocommerce-tabs.wc-tabs-wrapper article td p,
.woocommerce-tabs.wc-tabs-wrapper article th p {
	padding-bottom: 0;
	margin-bottom: 0 !important;
}

.woocommerce-tabs.wc-tabs-wrapper article table {
	display: block;
	border-collapse: collapse;
	border-right: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	width: 100% !important;
	height: auto !important;
	overflow-x: auto;
	white-space: nowrap
}

.woocommerce-tabs.wc-tabs-wrapper article table tr:first-child {
	background-color: var(--theme-color);
}

.woocommerce-tabs.wc-tabs-wrapper article table tr:first-child td {
	color: #ffffff;
	text-transform: capitalize;
}

.woocommerce-tabs.wc-tabs-wrapper article table td {
	border-left: 1px solid #ededed;
	border-top: 1px solid #ededed !important;
}

.woocommerce-tabs.wc-tabs-wrapper article {
	font-size: 16px;
	color: #353535;
	line-height: 30px;
	margin-bottom: 30px;
}

.woocommerce-tabs.wc-tabs-wrapper article p,
.woocommerce-tabs.wc-tabs-wrapper article span {
	font-size: 16px;
	color: #353535;
	line-height: 28px;
}

.woocommerce-tabs.wc-tabs-wrapper article strong {
	font-weight: bold;
}

.woocommerce-tabs.wc-tabs-wrapper article img {
	width: 100%;
	max-width: 100%;
}

.woocommerce-tabs.wc-tabs-wrapper article a {
	color: #353535;
}

.woocommerce-tabs.wc-tabs-wrapper article h1,
.woocommerce-tabs.wc-tabs-wrapper article h2,
.woocommerce-tabs.wc-tabs-wrapper article h3,
.woocommerce-tabs.wc-tabs-wrapper article h4,
.woocommerce-tabs.wc-tabs-wrapper article h5 {
	font-weight: bold;
}

.woocommerce-tabs.wc-tabs-wrapper article h1 {
	font-size: 36px;
	margin-bottom: 20px
}

.woocommerce-tabs.wc-tabs-wrapper article h2 {
	font-size: 30px;
	margin-bottom: 15px;
	color: var(--theme-color);
	text-transform: capitalize;
}

.woocommerce-tabs.wc-tabs-wrapper article h3 {
	font-size: 24px;
	margin-bottom: 30px;
	font-weight: normal;
	color: #353535;
}

.woocommerce-tabs.wc-tabs-wrapper article h4 {
	font-size: 18px;
	margin-bottom: 15px
}

.woocommerce-tabs.wc-tabs-wrapper article h5 {
	font-size: 14px;
	margin-bottom: 10px
}

.woocommerce-tabs.wc-tabs-wrapper article h6 {
	font-size: 12px;
	margin-bottom: 10px
}

.woocommerce-tabs.wc-tabs-wrapper article ul li,
.woocommerce-tabs.wc-tabs-wrapper article ol li {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
	list-style: inherit !important;
}

.woocommerce-tabs.wc-tabs-wrapper article ul li p,
.woocommerce-tabs.wc-tabs-wrapper article ol li p {
	padding-bottom: 0;
	margin-bottom: 3px !important;
}

.woocommerce-tabs.wc-tabs-wrapper article ul,
.woocommerce-tabs.wc-tabs-wrapper article ol {
	margin-bottom: 15px;
}

.woocommerce-tabs.wc-tabs-wrapper article sub {
	vertical-align: sub;
	font-size: smaller;
}

.woocommerce-tabs.wc-tabs-wrapper article sup {
	vertical-align: super;
	font-size: smaller;
}

.woocommerce-tabs.wc-tabs-wrapper article img {
	display: inline-block;
	margin: 20px 0;
}

@media (max-width: 1000px) {

	.woocommerce-tabs.wc-tabs-wrapper article table,
	.woocommerce div.product div.woocommerce-tabs div.woocommerce-Tabs-panel.panel {
		overflow: hidden;
		overflow-x: auto;
	}

	.woocommerce-tabs.wc-tabs-wrapper article table {
		/* min-width: 990px; */
	}

}

@media (max-width: 768px) {

	.woocommerce-tabs.wc-tabs-wrapper article td,
	.woocommerce-tabs.wc-tabs-wrapper article th {
		padding: 6px 5px !important;
		line-height: 20px
	}

	.woocommerce-tabs.wc-tabs-wrapper article p,
	.woocommerce-tabs.wc-tabs-wrapper article span {
		font-size: 13px !important;
		line-height: 24px !important;
	}

	.woocommerce-tabs.wc-tabs-wrapper article img {
		display: inline-block;
		margin: 12px 0;
	}
}

/* 产品详情 e */

/* 新闻 */
.entry-header .page-title {
	font-size: 56px;
	color: #ffffff !important;
}

[data-prefix="single_blog_post"] .page-title {
	color: #353535 !important;
	font-size: 42px;
}

.hero-section[data-type=type-2]>figure {
	margin: 0;
}

[data-prefix="blog"] .entry-card .entry-title,
[data-prefix="categories"] .entry-card .entry-title {
	font-size: 20px;
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

[data-prefix="blog"] .entry-card .entry-title a,
[data-prefix="categories"] .entry-card .entry-title a,
[data-prefix="single_blog_post"] .ct-related-posts .related-entry-title a {
	color: #353535;
}

[data-prefix="blog"] .entry-card:hover .entry-title a,
[data-prefix="categories"] .entry-card:hover .entry-title a,
[data-prefix="single_blog_post"] .ct-related-posts .ct-related-posts-items article:hover .related-entry-title a {
	color: var(--theme-color);
}

[data-prefix="categories"] .entry-card .entry-excerpt {
	height: 3.5em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.hero-section[data-type=type-2] .ct-title-label {
	display: none;
}

[data-prefix="single_blog_post"] .ct-related-posts .related-entry-title {
	font-size: 20px;
	font-weight: 500;
}

/* 内页样式 */
/* 关于我们 s*/
.ny_ab_tit .sub-title {
	padding-left: 25px;
}

.ny_ab_tit h2 {}

.ny_ab_tit .sub-title .double-line:before,
.ny_ab_tit .sub-title .double-line:after {
	left: 15px;
}


.stk-82e4fe0 {
	background-color: #f3eced !important
}

.team-area-1 .title-area {
	margin-bottom: 0;
}

.ny_ab_huanjing {
	padding-bottom: 0 !important;
}

/* parent */
.ny_ab_parent {
	padding: 4vw 0;
	background: transparent url('/wp-content/uploads/2026/04/cdhj-news-bg.webp') no-repeat top;
	background-size: 100%;
	text-align: center;
}

.ny_ab_parent .container {
	padding-left: 0;
	padding-right: 0;
	max-width: var(--theme-normal-container-max-width);
}

.part_list ul.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.part_list ul.f-jsb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.part_list ul.f-warp {
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

.part_list ul li {
	width: 16%;
	margin-bottom: 1%;
	border: 3px solid #f3eced;
	list-style: none;
	transition: all .3s;
}

.part_list ul li:hover {
	border-color: var(--theme-palette-color-1);
}

.part_list ul li .par_img {
	overflow: hidden;
}

.part_list ul li .par_img img {
	display: inline-block;
	width: 60%;
	transition: all .3s;
}

.part_list ul li:hover .par_img img {
	transform: scale(1.05);
}

/* 关于我们 e*/
/* 新闻 s*/
.stk-9ea2127 .stk-block-posts__item .stk-block-posts__title a {
	line-height: 1.3;
	height: 2.6em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.stk-9ea2127 .stk-block-posts__item:hover .stk-block-posts__title a,
.stk-9ea2127 .stk-block-posts__item:hover .stk-block-posts__readmore {
	color: var(--wp--preset--color--palette-color-1) !important
}

/* 新闻 e*/
/* 案例 s*/
.stk-962e4df {}

.ny_case .sub-title {
	font-size: 56px;
}

.stk-962e4df .stk-block-card__content .stk-block-heading--v2 {
	/* overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical; */
}

.stk-962e4df .stk-block-card__content .stk-block-text__text {
	/* height: 5.25em;
	overflow: hidden;
	display: -webkit-box;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical; */
}

.stk-962e4df .wp-block-stackable-button-group {
	display: none;
}

/* 案例 e*/

/* 侧栏 s*/
.md-sideBar {
	position: fixed;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	z-index: 200;
}

.md-sideBar .side_item {
	display: block;
	width: auto;
	position: relative;
	cursor: pointer;
	zoom: 1;
}

.md-sideBar .side_item:hover .bd {
	right: 100%;
	opacity: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	width: auto;
}

.md-sideBar .side_item .hd {
	width: 60px;
	height: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid #ececec;
	position: relative;
	z-index: 202;
	background-color: var(--theme-palette-color-1);
}

.md-sideBar .side_item .hd img {
	width: 30px;
	height: 30px;
}

.md-sideBar .side_item .bd {
	color: #ffffff;
	position: absolute;
	right: 100%;
	top: 0;
	background-color: var(--theme-palette-color-1);
	padding: 0 18px;
	white-space: nowrap;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	opacity: 0;
	right: 0;
	width: 0;
	overflow: hidden;
	font-size: 18px;
	line-height: 60px;
	z-index: 201;
}
/* 侧栏 e*/

.logo-icon-wrap .logo-icon{
	line-height: 70px !important;
}

/* —————————————————— 响应式统一优化 —————————————————— */
@media (max-width: 1599px) {
	.gog-slide-heading h2 {
		font-size: 70px;
	}

	.gog-slide-heading span {
		font-size: 36px;
	}

	.gog-slide-content-inner {
		max-width: 50%;
	}

	.gog-slide-center-top {
		padding-top: 15vh;
	}

	.gog-slide-center-top .gog-slide-content-inner {
		max-width: 90%;
		margin: 0 auto;
	}

	.gog-slides-container {
		min-height: 720px;
	}
	
	.gog-slide2-center-top .gog-slide-center-top {
		padding-top: 10vh;
	}

	.gog-slide3-center-top .gog-slide-content-inner {
		margin: 0;
		padding-right: 4%;
	}
}

@media (max-width: 1200px) {
	.gog-slide-heading h2 {
		font-size: 42px;
	}

	.gog-slide-heading span {
		font-size: 22px;
	}

	.gog-slide-content-inner {
		max-width: 44%;
	}

	.gog-slide-center-top .gog-slide-content-inner {
		max-width: 60%;
		margin: 0 auto;
	}

	.gog-slide-left .gog-slide-content-inner {
		max-width: 500px;
	}

	.gog-slides-container {
		min-height: 700px;
	}
}

@media (max-width: 1020px) {
	.gog-slide-content-inner {
		max-width: 48%;
	}

	.gog-slide-center-top .gog-slide-content-inner {
		max-width: 70%;
		margin: 0 auto;
	}

	.gog-slide-left .gog-slide-content-inner {
		max-width: 450px;
	}

	.gog-slide-heading h2 {
		font-size: 32px;
	}

	.gog-slide-heading span {
		font-size: 16px;
	}
}

@media (max-width: 840px) {
	.gog-slide-heading h2 {
		font-size: 26px;
	}
}

/* —————————— 手机端（≤660px）：不占满屏 + 居中优化 —————————— */
@media (max-width: 660px) {

	/* 手机轮播高度：设为 70vh 左右（不占满屏），可自己调 65/70/75vh */
	.gog-slides-container {
		min-height: 70vh !important;
		max-height: 70vh !important;
		height: 70vh !important;
	}

	/* 所有幻灯片统一：垂直居中 + 水平居中 + 安全边距 */
	.gog-slide-center-top,
	.gog-slide-left,
	.gog-slide-right {
		justify-content: center;
		align-items: center;
		text-align: center;
		padding: 0 20px;
	}

	/* 内容块统一宽度、居中 */
	.gog-slide-content-inner,
	.gog-slide-center-top .gog-slide-content-inner,
	.gog-slide-left .gog-slide-content-inner {
		max-width: 85% !important;
		margin: 0 auto !important;
	}

	.gog-slide-heading {
		font-size: 24px;
		margin-bottom: 20px;
	}
	
	.gog-slide2-center-top .gog-slide-heading {
		font-size: 18px;
	}

	.gog-slide2-center-top .gog-slide-center-top {
		padding-top: 0;
	}

	.gog-slide2-center-top .gog-slide-center-top .gog-slide-content-inner {
		max-width: 100% !important;
	}

	.gog-slide2-center-top .gog-slide-heading span {
		display: block;
		margin-top: 5vw;
	}

	.gog-slide3-center-top .gog-slide-center-top h2.gog-slide-heading {
		font-size: 35px;
	}

	.gog-slide3-center-top p {
		font-size: 16px;
	}

	.gog-slide3-center-top .gog-slide-content-inner span {
		font-size: 12px;
		letter-spacing: 0;
	}

	/* 底部控制栏居中 */
	.gog-slider-footer-content {
		justify-content: center;
		flex-wrap: wrap;
		bottom: 15px;
	}

	.gog-slider-nav button {
		width: 40px;
		height: 40px;
	}

	.gog-slider-dot {
		width: 32px;
	}
}

@media (max-width: 540px) {
	/* 
	.gog-slide {
		background-size: contain;
	} */

	.gog-slide-heading h2 {
		font-size: 35px;
	}

	.gog-slide-heading span {
		font-size: 16px;
	}

	/* 更小手机：再收一点高度（可选） */
	.gog-slides-container {
		min-height: 60vh !important;
		max-height: 60vh !important;
		height: 60vh !important;
	}

	.gog-slide-button-wrapper .th-btn {
		padding: 12px 15px !important;
	}

	.gog-slide-button-wrapper .btn-circle {
		width: 40px !important;
		height: 40px !important;
	}

	/* 首页关于 */
	.choose-sec {
		padding-top: 0 !important;
	}

	.choose-sec .row .col-lg-5 {
		width: 100% !important;
	}

	.choose-content .logo-icon-wrap {
		position: absolute !important;
	}

	/* 首页数字 */
	.counter-sec1 .counter-card {
		-webkit-box-flex: 50%;
		-ms-flex: 50%;
		flex: 50%;
	}

	.counter-sec1 .counter-card-wrap {
		padding-left: 0;
		padding-right: 0;
	}

	.counter-sec1 .counter-card .box-number {
		font-size: 25px;
	}

	/* 首页为什么 */
	.about-3.space .container>div .col-lg-6 {
		width: 100%;
	}

	/* 底部 */
	.stk-8606941 .stk-img-wrapper img {
		width: 50% !important;
	}

	/* 内页 */
	/* 关于 */
	.stk-5007beb-inner-blocks .about-6-counter-wrap {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 20px;
	}

	.stk-5007beb-inner-blocks .about-6-counter-wrap .counter-box {
		padding: 25px;
		border-radius: 12px;
	}

	.stk-5007beb-inner-blocks .col-xl-12 {
		padding-left: 0;
		padding-right: 0;
	}

	.stk-5007beb-inner-blocks .about-6-counter-wrap .counter-box .counter-number {
		font-size: 25px
	}

	.stk-5007beb-inner-blocks .about-6-counter-wrap .counter-box .box-text,
	.stk-5007beb-inner-blocks .about-6-counter-wrap .counter-box .box-number {
		font-size: 16px;
	}

	/* 合作伙伴 */
	.part_list ul {
		padding: 0 5vw;
	}

	.part_list ul li {
		width: 31.3333%;
		margin-right: 2vw;
	}

	.part_list ul li:nth-child(3n) {
		margin-right: 0;
	}

	/* 案例 */
	.ny_case .sub-title {
		font-size: 20px;
	}
}