@charset "utf-8";

* {

	margin: 0;

	padding: 0;

	box-sizing: border-box;

}

:root {

	--primary: #0a1628;

	--secondary: #1a3a5c;

	--accent: #00b4d8;

	--accent-light: #48cae4;

	--gold: #f4a261;

	--white: #ffffff;

	--gray-light: #f0f4f8;

	--gray: #94a3b8;

	--dark: #0f172a;

}

body {

	/*font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;*/

	color: #fff;

	overflow-x: hidden;

}



.container {

	max-width: 16.4rem;

  /*max-width: 1400px;*/

  margin: 0 auto;

  padding: 0 40px;

}

/* Swiper 瀹瑰櫒 */

.hero-swiper {

	width: 100%;

	height: 100vh;

	min-height: 600px;

}



.swiper-slide {

	position: relative;

	overflow: hidden;

}





.timeline-section {

  /*background: var(--dark);*/

  position: relative;

}

.timeline-section::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 1px;

  /*background: linear-gradient(90deg, transparent, var(--accent), transparent);*/

}







/* 鑳屾櫙鍥剧墖 */

.slide-bg {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background-size: cover;

	background-position: center;

	transition: transform 6s ease;

}



/* 婵€娲荤姸鎬佺殑鑳屾櫙缂撴參鏀惧ぇ鏁堟灉 */

.swiper-slide-active .slide-bg {

	transform: scale(1.05);

}



/* 閬僵灞?- 璁╂枃瀛楁洿娓呮櫚 */

.slide-overlay {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);

}



/* 鍐呭鍖哄煙 */

.slide-content {

	position: relative;

	z-index: 2;

	max-width: 16.4rem;

	margin: 0 auto;

	padding: 0 60px;

	height: 100%;

	display: flex;

	flex-direction: column;

	justify-content: center;

	/*padding-top: 20%;*/

}



.slide-title {

	font-size: 48px;

	font-weight: 800;

	line-height: 1.2;

	margin-bottom: 24px;

	max-width: 750px;

	opacity: 0;

	transform: translateY(30px);

	transition: all 0.8s ease 0.2s;

}



.slide-description {

	font-size: 16px;

	line-height: 1.8;

	margin-bottom: 36px;

	max-width: 700px;

	color: rgba(255,255,255,0.85);

	opacity: 0;

	transform: translateY(30px);

	transition: all 0.8s ease 0.4s;

}



/* CTA 鎸夐挳 */

.hero-buttons{display: flex;

  gap: 20px;

  flex-wrap: wrap;

  animation: fadeInUp 1s ease 0.8s both;}

.cta-button {

	background: linear-gradient(135deg, var(--accent), var(--accent-light));

  color: var(--primary);

  padding: 16px 40px;

  border: none;

  border-radius: 8px;

  font-size: 15px;

  font-weight: 700;

  cursor: pointer;

  text-decoration: none;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  transition: all 0.3s;

  letter-spacing: 0.5px;

}



.cta-button:hover {

	background: #fff;

	color: #000;

}



/* 婵€娲荤姸鎬佺殑鏂囧瓧鍔ㄧ敾 */

.swiper-slide-active .slide-title,

.swiper-slide-active .slide-description,

.swiper-slide-active .cta-button {

	opacity: 1;

	transform: translateY(0);

}



/* Swiper 鑷畾涔夌澶?*/

.swiper-button-next,

.swiper-button-prev {

	color: #fff;

	width: 56px;

	height: 56px;

	border-radius: 50%;

	background: rgba(255,255,255,0.1);

	backdrop-filter: blur(10px);

	border: 1px solid rgba(255,255,255,0.2);

	transition: all 0.3s ease;

	text-align: center;

  line-height: 56px;

  font-size: 20px;

}



.swiper-button-next::after,

.swiper-button-prev::after {

	font-size: 20px;

	font-weight: 700;

}



.swiper-button-next:hover,

.swiper-button-prev:hover {

	background: rgba(255,255,255,0.25);

	border-color: rgba(255,255,255,0.4);

}



/* Swiper 鍒嗛〉鍣?*/

.swiper-pagination {

	bottom: 40px !important;

}



.swiper-pagination-bullet {

	width: 12px;

	height: 12px;

	background: rgba(255,255,255,0.5);

	opacity: 1;

	transition: all 0.3s ease;

}



.swiper-pagination-bullet-active {

	width: 32px;

	border-radius: 6px;

	background: #fff;

}



/* 杩涘害鏉★紙鍙€夛級 */

.swiper-progress {

	position: absolute;

	bottom: 0;

	left: 0;

	height: 3px;

	background: rgba(255,255,255,0.8);

	z-index: 10;

	width: 0;

	transition: width linear;

}



/* 鍙充笅瑙掕瑷€/鍥芥棗鏍囪瘑锛堝彲閫夛級 */

.country-flag {

	position: absolute;

	bottom: 40px;

	left: 60px;

	z-index: 10;

	display: flex;

	align-items: center;

	gap: 8px;

	font-size: 14px;

	cursor: pointer;

	opacity: 0.8;

	transition: opacity 0.3s;

}



.country-flag:hover {

	opacity: 1;

}





/* Features Section */

.features {

	/*padding: 60px 0;

	background: #fff;

	margin-top: 15%;*/

	margin-top: -85px;

  z-index: 999;

  position: relative;

}

.features .container{ padding:0;}

.features-grid {

	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 40px;

}



.feature-item {

	display: flex;

	align-items: flex-start;

	gap: 15px;

	background: #0bb7da;

  border-radius: 16px;

  padding: 24px;

}



.feature-icon {

	width: 60px;

	height: 60px;

	flex-shrink: 0;

}



.feature-icon svg {

	width: 100%;

	height: 100%;

}



.feature-content h3 {

	font-size: 18px;

	font-weight: 700;

	margin-bottom: 8px;

	color: #fff;

	/*text-shadow: 2px 2px 10px rgba(0, 0, 0, .5);

	text-shadow: 1px 1px 1px #333;*/

}



.feature-content p {

	font-size: 14px;

	color: #fff;

	line-height: 1.5;

	/*text-shadow: 2px 2px 10px rgba(0, 0, 0, .5);

	text-shadow: 1px 1px 1px #333;*/

}





.products-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 24px;

}



.product-card {

	background: rgba(255, 255, 255, 0.03);

	border: 1px solid #e3e3e3;

	border-radius: 16px;

	overflow: hidden;

	transition: all 0.4s;

	cursor: pointer;

}



.product-card:hover {

	transform: translateY(-10px);

	border-color: #e3e3e3;

	box-shadow: 0 20px 60px rgba(112, 112, 112, 0.15);

}







.product-img {

	/*height: 250px;*/
aspect-ratio: 14/9;
	overflow: hidden;

	position: relative;

}



.product-img img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	transition: transform 0.6s;

}



.product-card:hover .product-img img {

	transform: scale(1.1);

}



.product-info {

	padding: 24px;

}



.product-name {

	font-size: 18px;

	font-weight: 700;

	margin-bottom: 8px;color: #000; text-align:center;

}



.product-desc {

	font-size: 14px;

	color: #929292;

	line-height: 1.6;text-align: center;

}





.product-grid-hot {

	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 24px;

}



.product-card-hot {

	background: #fff;

	border-radius: 8px;

	overflow: hidden;

	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);

	transition: box-shadow 0.3s ease, transform 0.3s ease;

}



.product-card-hot:hover {

	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

	transform: translateY(-4px);

}

.product-card-hot:hover .inquiry-btn{background: var(--accent);

  color: #ffffff;}



/* 鍥剧墖瀹瑰櫒 - 鐩稿瀹氫綅鐢ㄤ簬鍙犳斁涓ゅ紶鍥?*/

.product-image-hot {

	position: relative;

	width: 100%;

	aspect-ratio: 3 / 3;

	overflow: hidden;

}



.product-image-hot img {

	position: absolute;

	top: 0;

	left: 0;

	width: 100%;

	height: 100%;

	object-fit: cover;

	transition: opacity 0.4s ease;

}



/* 榛樿鍥撅細鎮仠鏃舵贰鍑?*/

.product-image-hot .hot-img-default {

	opacity: 1;

	z-index: 1;

}



.product-image-hot .hot-img-hover {

	opacity: 0;

	z-index: 2;

}



/* 榧犳爣鎮仠锛氶殣钘忛粯璁ゅ浘锛屾樉绀烘偓鍋滃浘 */

.product-card-hot:hover .hot-img-default {

	opacity: 0;

}



.product-card-hot:hover .hot-img-hover {

	opacity: 1;

}



/* 浜у搧淇℃伅 */

.product-info-hot {

	padding: 16px 14px 20px;

	text-align: center;

}



.product-title-hot {

	font-size: 16px;

	color: #333;

	line-height: 1.6;

	display: -webkit-box;

	-webkit-line-clamp: 2;

	-webkit-box-orient: vertical;

	overflow: hidden;

	text-overflow: ellipsis;

	font-weight:bold;margin-bottom: 5px;

}





/*鏂板搧涓婂競*/

.product-grid-new {

	display: grid;

	grid-template-columns: repeat(4, 1fr);

	gap: 30px;

}



.product-card-new {

	background: #ffffff;

	border-radius: 8px;

	overflow: hidden;

	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

	transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.product-card-new:hover {

	transform: translateY(-5px);

	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

}



.product-image-new {

	width: 100%;

	height: 320px;

	object-fit: cover;

	display: block;

}



.product-content-new {

	padding: 24px 20px 28px;

}



.product-title-new {

	font-size: 16px;

	font-weight: 600;

	color: #1a3a4a;

	margin-bottom: 12px;

	line-height: 1.4;

	/*min-height: 45px;*/ text-align:center;

}

.product-ptjiage-cp{color: #ff4500;font-size: 24px;font-weight: 700;margin-bottom: 20px; text-align:center;}

.prxqbt{color: #666;

  font-size: 18px;

  font-weight: 700;

  margin-right: 5px;}

.product-ptjiage-cp span{color: #868686;

  font-size: 18px;

  font-weight:normal; margin:0 4px;

  -webkit-text-decoration-line: line-through;

  text-decoration-line: line-through;

  }

.product-description-new {

	font-size: 14px;

	color: #666;

	line-height: 1.6;

	margin-bottom: 20px;

	min-height: 40px;

}



.inquiry-btn {

	display: block;

	width: 100%;

	padding: 12px 24px;

	background: #ffffff;

	border: 2px solid var(--accent);

	color: var(--accent);

	text-align: center;

	text-decoration: none;

	border-radius: 6px;

	font-size: 14px;

	font-weight: 500;

	transition: all 0.3s ease;

	cursor: pointer;

}



.inquiry-btn:hover {

	background: var(--accent);

	color: #ffffff;

}

.product-card-new:hover .inquiry-btn{background: var(--accent);

	color: #ffffff;}





.hero-section-video {

            position: relative;

            /*min-height: 100vh;*/

            display: flex;

            align-items: center;

            background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), 

                        url('../images/indexbg1.jpg') center/cover no-repeat;

            padding: 80px 5%;

			padding: 150px 0;

  background-size: cover;

  background-position: center;

  background-attachment: fixed;

        }



        .hero-content-video {

            /*max-width: 1200px;*/

			max-width: 16.4rem;

            margin: 0 auto;

            /*display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 60px;*/

            align-items: center;

        }



        .hero-text-video {

            color: white;

            animation: fadeInLeft 1s ease;

        }



        .hero-text-video h1 {

            font-size: 60px;

            font-weight: 700;

            line-height: 1.2;

            margin-bottom: 30px;

            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

        }



        .hero-text-video p {

            font-size: 18px;

            line-height: 1.8;

            margin-bottom: 40px;

            opacity: 0.95;

            /*max-width: 600px;*/

        }



        .cta-button-video {

            display: inline-block;

            padding: 18px 45px;

            background: linear-gradient(135deg, var(--accent), var(--accent-light));

            color: #000;

            text-decoration: none;

            font-size: 16px;

            font-weight: 600;

            border-radius: 5px;

            transition: all 0.3s ease;

            border: none;

            cursor: pointer;

            box-shadow: 0 4px 15px rgba(0,0,0,0.2);

        }



        .cta-button-video:hover {

            transform: translateY(-3px);

            box-shadow: 0 6px 20px rgba(0,0,0,0.3);

            background: #f8f8f8;

        }



        .hero-image-video {

            position: relative;

            animation: fadeInRight 1s ease;

        }



        .hero-image-video img {

            width: 100%;

            height: auto;

            border-radius: 10px;

            box-shadow: 0 20px 60px rgba(0,0,0,0.3);

        }



        /* Video Modal */

        .video-modal {

            display: none;

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.9);

            z-index: 10000;

            justify-content: center;

            align-items: center;

            animation: fadeIn 0.3s ease;

        }



        .video-modal.active {

            display: flex;

        }



        .video-container {

            position: relative;

            width: 90%;

            max-width: 1000px;

            aspect-ratio: 16/9;

            background: #000;

            border-radius: 10px;

            overflow: hidden;

            box-shadow: 0 10px 40px rgba(0,0,0,0.5);

        }



        .video-container iframe,

        .video-container video {

            width: 100%;

            height: 100%;

            border: none;

        }



        .close-modal {

            position: absolute;

            top: 0px;

            right: 0;

            color: #fff;

            font-size: 35px;

            font-weight: bold;

            cursor: pointer;

            transition: color 0.3s;

            background: none;

            border: none;

            padding: 5px 10px;

        }



        .close-modal:hover {

            color: #ff6b6b;

        }



        /* Animations */

        @keyframes fadeInLeft {

            from {

                opacity: 0;

                transform: translateX(-50px);

            }

            to {

                opacity: 1;

                transform: translateX(0);

            }

        }



        @keyframes fadeInRight {

            from {

                opacity: 0;

                transform: translateX(50px);

            }

            to {

                opacity: 1;

                transform: translateX(0);

            }

        }



        @keyframes fadeIn {

            from { opacity: 0; }

            to { opacity: 1; }

        }









.steps-container {

            display: flex;

            flex-direction: column;

            gap: 60px;

        }



        .steps-row {

            display: flex;

            justify-content: space-between;

            align-items: flex-start;

            gap: 40px;

        }



        .steps-row.centered {

            justify-content: center;

        }



        .step-item {

            flex: 1;

            max-width: 350px;

            text-align: center;

            position: relative;

        }



        .step-badge {

            display: inline-block;

            background-color: #000;

            color: #fff;

            padding: 8px 24px;

            border-radius: 20px;

            font-size: 12px;

            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 0.5px;

            margin-bottom: 20px;

        }



        .step-title {

            font-size: 20px;

            font-weight: 700;

            margin-bottom: 12px;

            color: #000;

        }



        .step-description {

            font-size: 14px;

            color: #666;

            line-height: 1.6;

        }



        .arrow-connector {

            display: flex;

            align-items: center;

            justify-content: center;

            width: 40px;

            height: 40px;

            background-color: #f5f5f5;

            border-radius: 50%;

            margin-top: 60px;

            flex-shrink: 0;

        }



        .arrow-connector svg {

            width: 20px;

            height: 20px;

            color: #999;

        }



/*why*/

.section-container-why {

	display: flex;

	/*max-width: 1400px;*/

	max-width: 16.4rem;

	margin: 0 auto 100px;

	background: #fff;

	/*min-height: 600px;*/

}



/* 宸︿晶鍥剧墖鍖哄煙 */

.image-side-why {

	flex: 1;

	position: relative;

	min-height: 400px;

}



.image-side-why img {

	width: 100%;

	height: 100%;

	object-fit: cover;

	display: block;

}



/* 鍙充晶鍐呭鍖哄煙 */

.content-side-why {

	flex: 1;

	padding: 80px 60px;

	display: flex;

	flex-direction: column;

	justify-content: center;

}



.content-title-why {

	font-size: 48px;

	font-weight: 800;

	margin-bottom: 24px;

	line-height: 1.2;

	color: #000;

}



.content-description-why {

	font-size: 16px;

	color: #666;

	margin-bottom: 48px;

	line-height: 1.8;

}



/* 鐗规€у垪琛?*/

.features-list-why {

	display: flex;

	flex-direction: column;

	gap: 32px;

}



.feature-item-why {

	display: flex;

	align-items: flex-start;

	gap: 20px;

}



.feature-icon-why {

	width: 48px;

	height: 48px;

	background-color: var(--accent); /* 缁胯壊鑳屾櫙 */

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

}



.feature-icon-why svg {

	width: 24px;

	height: 24px;

	fill: #fff;

}



.feature-text-why h3 {

	font-size: 20px;

	font-weight: 700;

	margin-bottom: 8px;

	color: #000;

}



.feature-text-why p {

	font-size: 14px;

	color: #666;

	line-height: 1.6;

}







/*琛屼笟*/

.hero-section-industry {

	position: relative;

	/*min-height: 100vh;*/

	display: flex;

	align-items: center;

	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), 

				url('../images/indexbg2.jpg') center/cover no-repeat;

	padding: 80px 5%;

	padding: 150px 0;

background-size: cover;

background-position: center;

background-attachment: fixed;

}



.hero-content-industry {

	/*max-width: 1200px;*/

	max-width: 16.4rem;

	margin: 0 auto;

	/*display: grid;

	grid-template-columns: 1fr 1fr;

	gap: 60px;*/

	align-items: center;

}



.hero-text-industry {

	color: white;

	animation: fadeInLeft 1s ease;

}



.hero-text-industry h1 {

	font-size: 60px;

	font-weight: 700;

	line-height: 1.2;

	margin-bottom: 30px;

	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);

	text-align:center;

}



.hero-text-industry p {

	font-size: 18px;

	line-height: 1.8;

	margin-bottom: 40px;

	opacity: 0.95;

	/*max-width: 600px;*/

	text-align:center;

}



.cta-button-industry {

	display: block;

	margin:0 auto;

	padding: 18px 45px;

	background: linear-gradient(135deg, var(--accent), var(--accent-light));

	color: #000;

	text-decoration: none;

	font-size: 16px;

	font-weight: 600;

	border-radius: 5px;

	transition: all 0.3s ease;

	border: none;

	cursor: pointer;

	box-shadow: 0 4px 15px rgba(0,0,0,0.2);

}



.cta-button-industry:hover {

	transform: translateY(-3px);

	box-shadow: 0 6px 20px rgba(0,0,0,0.3);

	background: #f8f8f8;

}







/*service*/

.services-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 40px;

}



.service-item {

	display: flex;

	align-items: flex-start;

}



.check-icon {

	width: 28px;

	height: 28px;

	background-color: var(--accent); /* Green color from image */

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	flex-shrink: 0;

	margin-right: 15px;

	margin-top: 3px; /* Align with title text */

}



.check-icon svg {

	width: 16px;

	height: 16px;

	fill: #ffffff;

}



.service-content h3 {

	font-size: 18px;

	font-weight: 700;

	margin-bottom: 10px;

	color: #000;

	line-height: 1.3;

}



.service-content p {

	font-size: 14px;

	color: #666;

	line-height: 1.6;

}







/*who*/

.hero-section-who {

	position: relative;

	/*min-height: 100vh;*/

	display: flex;

	align-items: center;

	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), 

				url('../images/indexbg3.jpg') center/cover no-repeat;

	padding: 80px 5%;

	padding: 150px 0;

background-size: cover;

background-position: center;

background-attachment: fixed;

}

.cards-grid-who {

            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 24px;

        }



        .card-who {

            background: #fff;

            border-radius: 12px;

            padding: 36px 24px 32px;

            text-align: center;

            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);

            transition: transform 0.3s ease, box-shadow 0.3s ease;

        }



        .card-who:hover {

            transform: translateY(-4px);

            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);

        }



        .card-who-icon {

            width: 56px;

            height: 56px;

            margin: 0 auto 20px;

        }



        .card-who-icon svg {

            width: 100%;

            height: 100%;

            stroke: #333;

            stroke-width: 1.8;

            fill: none;

            stroke-linecap: round;

            stroke-linejoin: round;

        }



        .card-who-title {

            font-size: 17px;

            font-weight: 700;

            margin-bottom: 12px;

            color: #000;

        }



        .card-who-description {

            font-size: 13px;

            color: #666;

            line-height: 1.65;

        }





/*瀹㈡埛璇勪环*/

.testimonial-container {

	/*max-width: 1100px;*/

	max-width: 16.4rem;

	width: 100%;

	position: relative;

	display: flex;

	align-items: flex-start;

	justify-content: space-between;

	min-height: 200px;

	margin: 0 auto;

	overflow: revert;

}



/* 宸︿晶鍐呭鍖哄煙 */

.content-left-kehu {

	flex: 1;

	padding-right: 60px;margin-right: 40px;

	position: relative;

}



/* 鍒嗛殧绾?*/

.divider {

	position: absolute;

	right: 0;

	top: 5px;

	bottom: 5px;

	width: 1px;

	background-color: #e0e0e0;

}



/* 鏍囬 - 鍥哄畾涓嶅姩 */

.section-title-kehu {

	font-size: 32px;

	font-weight: 800;

	margin-bottom: 30px;

	color: #000;

	line-height: 1.2;

}



/* 寮曠敤鏂囨湰 */

.quote-text-kehu {

	font-size: 16px;

	color: #666;

	margin-bottom: 30px;

	line-height: 1.8;

	transition: opacity 0.3s ease;

	min-height: 80px;

}



.fade-out-kehu {

	opacity: 0;

}



/* 浣滆€呬俊鎭?*/

.kehu-author-info {

	display: flex;

	align-items: center;

	gap: 15px;

	transition: opacity 0.3s ease;

}



.kehu-author-avatar {

	width: 40px;

	height: 40px;

	/*border-radius: 50%;*/

	object-fit: cover;

	/*background-color: #eee;*/

}



.kehu-author-name {

	font-weight: 700;

	font-size: 16px;

	color: #000;

}



.kehu-author-location {

	font-weight: 400;

	font-size: 16px;

	color: #000;

}

.kehuyoutu{position: absolute;

  bottom: 0;

  right: 0;

  top: 280px;

  z-index: 999;}

.kehuyoutu img{ height: 240px;}

/* 鍙充晶瀵艰埅鍖哄煙 */

.nav-arrows-kehu {

	display: flex;

	gap: 12px;

	padding-top: 15px;

}



.arrow-btn-kehu {

	width: 36px;

	height: 36px;

	border: 1px solid #ddd;

	border-radius: 50%;

	display: flex;

	align-items: center;

	justify-content: center;

	cursor: pointer;

	background: #fff;

	transition: all 0.2s;

}



.arrow-btn-kehu:hover {

	border-color: #333;

	background: #f9f9f9;

}



.arrow-btn-kehu svg {

	width: 14px;

	height: 14px;

	fill: #333;

}



/* 馃敼 闅愯棌鐨勬暟鎹鍣?- 涓嶆樉绀轰絾鍙JS璇诲彇 */

#testimonials-data {

	display: none;

}



.testimonial-item {

	/* 姣忎釜璇勪环浣滀负涓€涓嫭绔嬪潡 */

}







/*case*/

.huibg{ width:100%; overflow:hidden; background:#f8f8fa;}

.inthzppul{ overflow:hidden;}

.inthzppul li{ overflow:hidden; float:left;width: calc( 100% / 4 - 40px); margin:10px 20px;background: #fff;}

.inthzpptu{ width:100%; overflow:hidden; text-align:center;}

.inthzpptu img{ max-width:100%;object-fit: cover;transition: all 0.6s;height: 16vh;}

.inthzppul li:hover .inthzpptu img{transform: scale(1.1,1.1);transition: all 0.6s;}







/* 鏂囩珷缃戞牸甯冨眬 */

.articles-grid-news {

	display: grid;

	grid-template-columns: repeat(4, 1fr); /* 榛樿4鍒?*/

	gap: 30px; /* 鍗＄墖涔嬮棿鐨勯棿璺?*/

}



/* 鍗曚釜鍗＄墖鏍峰紡 */

.article-card-news {

	background-color: #fff;

	display: flex;

	flex-direction: column;

	/* 鍙€夛細娣诲姞闃村奖澧炲姞灞傛鎰燂紝鍘熷浘鐪嬭捣鏉ユ瘮杈冩墎骞筹紝杩欓噷淇濇寔鎵佸钩 */

	/* box-shadow: 0 4px 12px rgba(0,0,0,0.05); */ 

}



/* 鍥剧墖鍖哄煙 */

.card-image-news {

	width: 100%;

	/*height: 300px;*/ /* 鍥哄畾楂樺害锛屼繚鎸佹暣榻?*/

	overflow: hidden;

	background-color: #f0f0f0;

}



.card-image-news img {

	width: 100%;

	height: 100%;

	object-fit: cover; /* 淇濊瘉鍥剧墖濉弧涓斾笉鍙樺舰 */

	transition: transform 0.3s ease;aspect-ratio: 3/2;

}



/* 榧犳爣鎮仠鍥剧墖寰斁澶ф晥鏋?(鍙€? */

.article-card-news:hover .card-image-news img {

	transform: scale(1.05);

}





/* 鍐呭鍖哄煙 (榛戣壊鑳屾櫙) */

.card-content-news {

	background-color: #000000;

	color: #ffffff;

	padding: 20px;

	flex-grow: 1;

	display: flex;

	flex-direction: column;

	justify-content: space-between;

}



.card-title-news {

	font-size: 18px;

	font-weight: 700;

	margin-bottom: 15px;

	line-height: 1.4;

	text-align: center;

}



.card-excerpt-news {

	font-size: 14px;

	color: #cccccc; /* 鎽樿鏂囧瓧棰滆壊绋嶆祬 */

	margin-bottom: 20px;

	line-height: 1.6;

}



.card-date-news {

	font-size: 13px;

	font-weight: 600;

	color: #ffffff;

	margin-top: auto; /* 纭繚鏃ユ湡鍦ㄥ簳閮?*/

	text-align: right;

}

.article-card-news:hover .card-content-news{background-color:var(--accent);}

.article-card-news:hover .card-excerpt-news{color:#fff;}



.hero-section-visit {

	position: relative;

	/*min-height: 100vh;*/

	display: flex;

	align-items: center;

	background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 100%), 

				url('../images/indexbg4.jpg') center/cover no-repeat;

	padding: 80px 5%;

	padding: 150px 0;

background-size: cover;

background-position: center;

background-attachment: fixed;

}























/* 鍝嶅簲寮?*/

@media (max-width: 1024px) {

	.slide-title {

		font-size: 36px;

	}

	

	.slide-description {

		font-size: 14px;

	}

	

	.slide-content {

		padding: 0 40px;

	}

	.features-grid {

                grid-template-columns: repeat(2, 1fr);

            }



.steps-row {

                flex-direction: column;

                align-items: center;

                gap: 40px;

            }



            .step-item {

                max-width: 400px;

            }



            .arrow-connector {

                margin-top: 20px;

                margin-bottom: 20px;

                transform: rotate(90deg);

            }





}



@media (max-width: 768px) {

	.hero-swiper {

		min-height: 500px;margin-top: 60px;

	}

	

	.slide-title {

		font-size: 28px;

	}

	

.slide-description {

	font-size: 13px;

}



.slide-content {

	padding: 0 20px;

}



.swiper-button-next,

.swiper-button-prev {

	width: 40px;

	height: 40px;

	display: none; /* 绉诲姩绔殣钘忕澶达紝鏀圭敤婊戝姩 */

}

.inquiry-btn{padding: 10px 20px;font-size: 12px;}

.kehuyoutu{top: 360px;}

.kehuyoutu img{height: 190px;}

.products-grid{grid-template-columns: repeat(1, 1fr);}

.inthzppul li{width: calc( 100% / 2 - 20px);

  margin: 10px 10px;}

  .inthzpptu img{height: 9vh;

  aspect-ratio: 3/2;

  width: 100%;}

.cta-button {

	padding: 14px 32px;

	font-size: 14px;

}

.features-grid {

	grid-template-columns: 1fr;

}

.product-grid-hot {

	grid-template-columns: repeat(2, 1fr);

}

.product-title-hot {

	font-size: 14px;

}

.product-grid-new {

	grid-template-columns: repeat(2, 1fr);

}

.product-image-new {

	height: auto;

    aspect-ratio: 9/9;

}

.container{max-width: 92%;

  margin: 0 auto;

  padding: 0;}



.hero-content-video {

	grid-template-columns: 1fr;

	text-align: center;width: 92%;

}

.hero-section-video{padding: 60px 0;}

.hero-text-video h1 {

	font-size: 30px;

}



.hero-text-video p {

	margin: 0 auto 30px;font-size: 16px;

  line-height: 1.6;

}



.hero-image-video {

	display: none;

}



.step-title {

                font-size: 18px;

            }



            .step-description {

                font-size: 13px;

            }



.section-container-why {

	flex-direction: column;

}



.image-side-why {

	min-height: 300px;

}



.content-side-why {

	padding: 60px 30px;

}



.content-title-why {

	font-size: 36px;

}

.hero-section-industry{padding: 60px 0;}

.hero-content-industry {

	grid-template-columns: 1fr;

	text-align: center;width: 92%;

}



.hero-text-industry h1 {

	font-size: 30px;

}



.hero-text-industry p {

	margin: 0 auto 30px;font-size: 16px;

  line-height: 1.6;

}



.services-grid {

	grid-template-columns: repeat(2, 1fr);

}

.hero-section-who{padding: 60px 0;}

.cards-grid-who {

	grid-template-columns: repeat(2, 1fr);

}

.card-who {

	padding: 28px 20px 24px;

}



.testimonial-container {

	flex-direction: column;width: 92%;

}



.content-left-kehu {

	padding-right: 0;

	padding-bottom: 30px;

	margin-bottom: 30px;margin-right: 0;

}

.section-title-kehu {font-size: 30px;}

.quote-text-kehu{font-size: 16px;line-height: 1.6;}

.divider {

	display: none;

}



.nav-arrows-kehu {

	justify-content: flex-start;

}

.articles-grid-news {

	grid-template-columns: repeat(2, 1fr); /* 骞虫澘鏄剧ず2鍒?*/

}

.card-image-news {

	height: auto;

    aspect-ratio: 3/2;

}





}

