@charset "utf-8";

* {

	margin: 0;

	padding: 0;

	box-sizing: border-box;

}

:root {

	--primary: #0a1628;

	--secondary: #1a3a5c;

	--accent: #f08300;

	--accent-light: #ff9413;

	--gold: #f08300;

	--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: #fff;

  padding: 12px 40px;

  border: none;

  border-radius: 40px;

  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: #383736;

  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;*/

}



/*解决方案*/
.injjfadatu{position: relative;}
.navbar_jjfa {
	width: 60%;
	margin: 0 auto;
	display: flex;
	/*background-color: #555;*/
	/*position: fixed;*/
	top: 0;
	left: 0;
	z-index: 1000;
}

.nav-item_jjfa {
	flex: 1;
	text-align: center;
	padding: 10px 0 35px;
	color: #343434;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 20px;
	letter-spacing: 1px;
	font-weight:600;
}

.nav-item_jjfa:hover {
	/*background-color: #777;*/
}

.nav-item_jjfa.active {
	/*background-color: var(--accent);*/
	color: var(--accent);
}
.injjfa_tu{height: 80px;margin-bottom: 5px;}
.injjfa_tu i{font-size: 60px;}
.injjfa_tu img{max-width: 100%;max-height: 100%;}
.injjfa_name{}

/* 内容容器 */
.content-container_jjfa {
	width: 100%;
	position: relative;
	height: 70vh;
	overflow: hidden;
}

/* 每个房间的内容面板 */
.room-panel_jjfa {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.room-panel_jjfa.active {
	opacity: 1;
	visibility: visible;
}

/* 背景图片 */
.room-panel_jjfa .bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 黑色透明蒙版 */
.overlay_jjfa {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* 文字内容 */
.text-content_jjfa {
	position: absolute;
	bottom: 30%;
	left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
	z-index: 2;
	color: #fff;
}

.text-content_jjfa h2 {
	font-size: 32px;	font-weight:600;
	margin-bottom: 15px;

	letter-spacing: 2px;
}

.text-content_jjfa_wenzi{font-size: 18px;color: #dfdfdf;
  margin-bottom: 10px;}

.detail-btn_jjfa {
	display: inline-block;
	padding: 12px 30px;
	background-color: var(--accent);
	color: #fff;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.detail-btn_jjfa:hover {
	background-color: #d4a43a;
	transform: translateY(-2px);
}
.nav-arrow-left,.nav-arrow-right{ display:none;}

.row-top_youshi {
	width: 100%;
	display: flex;
	gap: 20px;
}

.item-large_youshi {
	flex: 1;
	position: relative;
	height: 360px;
	overflow: hidden;
	border-radius: 4px;
	margin-bottom: 20px;
}

/* Row 2: Three items */
.row-bottom_youshi {
	width: 100%;
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.item-small_youshi {
	flex: 1;
	position: relative;
	height: 290px;
	overflow: hidden;
	border-radius: 4px;
}

/* Common Image Styles */
.bg-image_youshi {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.5s ease;
}

.item-large_youshi:hover .bg-image_youshi,
.item-small_youshi:hover .bg-image_youshi {
	transform: scale(1.05); /* Slight zoom effect */
}

/* Overlay and Text Styles */
.overlay_youshi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7); /* Black mask */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	color: #fff;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.overlay_youshi h3 {
	margin: 0 0 10px 0;
	font-size: 20px;
	font-weight: bold;
}

.overlay_youshi p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

/* Default Title (Bottom Center) */
.default-title_youshi {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
	transition: opacity 0.3s ease;
	z-index: 2;
}

/* Hover Logic */
.item-large_youshi:hover .overlay_youshi,
.item-small_youshi:hover .overlay_youshi {
	opacity: 1;
}

/* Hide default title on hover to let overlay_youshi take focus, 
   or keep it if you prefer. Based on prompt "Mouse off, title in bottom center",
   I will hide it on hover to clean up the UI. */
.item-large_youshi:hover .default-title_youshi,
.item-small_youshi:hover .default-title_youshi {
	opacity: 1;
}





.products-grid {

	display: grid;

	grid-template-columns: repeat(4, 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: 3/2;
	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(23, 23, 23, 0.9) 0%, rgba(255, 255, 255, 0.05) 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;
text-align: center;
        }



        .hero-text-video h1 {

            font-size: 40px;

            font-weight: 600;

            line-height: 1.2;

            margin-bottom: 30px;

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



        .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; }

        }

/*projects*/
.fenbg{ width:100%; overflow:hidden; background:rgb(246, 242, 236);}
.header-section_pj {
    max-width: 16.4rem;
    margin: 0 auto;
    padding: 50px 0px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
  }
.header-left_pj{flex: 1;}
  .header-left_pj h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 1px;
    line-height: 1.2;
  }

  .header-left_pj .subtitle_pj {
    font-size: 16px;
    /*font-weight: 300;*/
    color: rgb(101, 101, 101);
    margin-top: 12px;line-height: 26px;
    /*letter-spacing: 2px;*/
	hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  }

  .header-right_pj {
    max-width: 600px;
    flex: 1;
  }
  .iyydbt{font-size: 80px;font-weight: 500;
  color: #213864;
  border-bottom: 2px solid #E0DFDE;
  margin-bottom: 10px;}
.iyydbt span{font-size: 16px;}
  .header-right_pj p {
    font-size: 18px;
  line-height: 1.8;
  color: rgb(101, 101, 101);
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  font-weight: 500;
  }

  /* ========== SLIDER SECTION ========== */
  .slider-section_pj {
    max-width: 16.4rem;
    margin: 20px auto 40px;
    padding: 0 30px;
  }

  .slider-container_pj {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    position: relative;
  }

  /* Top Navigation Bar with Arrows */
  .slider-nav_pj {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    /*background: #fff;*/
    position: absolute;
  top: 42%;
  z-index: 100;
  width: 100%;
  }

  .slider-arrow_pj {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1a1a1a;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .slider-arrow_pj:hover {
    background: var(--accent);
    transform: scale(1.1);
  }

  .slider-arrow_pj:active {
    transform: scale(0.95);
  }

  /* Slider Track */
  .slider-track_pj {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
  }

  .slide_pj {
    min-width: 100%;
    display: flex;
    flex-direction: row;
  }

  /* Image side */
  .slide-image_pj {
    flex: 1 1 60%;
    position: relative;
    overflow: hidden;
    min-height: 450px;
  }

  .slide-image_pj img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }

  .slider-container_pj:hover .slide_pj.active .slide-image_pj img {
    transform: scale(1.03);
  }

  /* Content side */
  .slide-content_pj {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 40px;
    min-height: 450px;
  }

  .slide-content_pj h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    line-height: 1.3;
  }

  .slide-content_pj p {
    font-size: 15px;
    line-height: 1.85;
    color: #555;
    margin-bottom: 36px;
	hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  }

  .btn-read-more_pj {
    display: inline-block;
    padding: 14px 36px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
  }

  .btn-read-more_pj:hover {
    background: var(--accent);
    transform: translateY(-1px);
  }

  /* ========== DOTS ========== */
  .dots-container_pj {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 24px 0 30px;
  }

  .dot_pj {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
  }

  .dot_pj.active {
    background: var(--accent);
    transform: scale(1.3);
  }

  .dot_pj:hover:not(.active) {
    background: #999;
  }

.inabout-section {
	display: flex;
	align-items: center;
	gap: 60px;
	margin-bottom: 80px;
}

/* 左侧图片区域 */
.image-wrapper_inab {
	flex: 1;
	position: relative;
	border-radius: 4px;
	overflow: hidden;
	text-align: center;
	/*box-shadow: 0 10px 30px rgba(0,0,0,0.1);*/
}

.image-wrapper_inab img {
	/*width: 100%;*/
	height: auto;
	display: block;
	transition: transform 0.5s ease;
	margin: 0 auto;
}

.image-wrapper_inab:hover img {
	transform: scale(1.02);
}

/* 播放按钮样式 */
.play-btn_inab {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer; /* 虽然不加动作，但保持pointer样式更符合UI直觉 */
	transition: background-color 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.8);
}

.play-btn_inab:hover {
	background-color: rgba(0, 0, 0, 0.6);
}

.play-icon_inab {
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 20px solid #fff;
	margin-left: 5px; /* 视觉修正，让三角形居中 */
}

.indaboutbg{
background: url('../images/indabout.webp') no-repeat center;
background-size: cover; 
    padding-bottom: 21vw;
    padding-top: 0vw;}
.indaboutbg .section-desc{ color:#000;}

/* 右侧文字区域 */
.text-content_inab {
	flex: 1;
}

.section-title_inab {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 25px;
	color: #222;
}

.highlight_inab {
	color: var(--accent); /* 金色/橙色 */
	font-weight: 600;
}

.description_inab {
	color: #666;
	font-size: 16px;
	margin-bottom: 20px;
line-height: 33px;
	hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  word-break: break-word;
  /*text-align: justify;*/
}
.inwzhang{font-size: 20px; color:#000;}
.read-more-btn_inab {
	display: inline-block;
	margin-top: 20px;
	padding: 12px 35px;
	background-color: var(--accent);
	color: #fff;
	text-decoration: none;
	border-radius: 30px;
	font-size: 14px;
	letter-spacing: 1px;
	transition: background-color 0.3s;
}

.read-more-btn_inab:hover {
	background-color: var(--accent-light);
}

/* 底部数据统计区域 */
.stats-section_inab {
	display: flex;
	justify-content: space-around;
	text-align: center;
	/*padding: 40px 0;
	border-top: 1px solid #f0f0f0;*/
}

.stat-item_inab {
	flex: 1;
}

.stat-number_inab {
	font-size: 42px;
	font-weight: 600;
	color: var(--accent); /* 金色 */
	margin-bottom: 10px;
	font-family: 'Arial', sans-serif; /* 数字用无衬线字体更好看 */
}

.stat-label_inab {
	font-size: 16px;
	color: #000;
}

/* ========== 轮播组件 1 的样式 ========== */
        .carousel-container-1 {
            width: 100%;
            max-width: 16.4rem;
            position: relative;
            /*background: #fff;*/
            /*padding: 40px 0;*/
			overflow: hidden;
        }

        .swiper-1 {
            width: 100%;
            /*padding-bottom: 50px;*/
        }

        .swiper-slide-1 {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            height: auto;
        }

        .img-wrapper-1 {
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .img-wrapper-1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
			transition: transform 0.5s ease;
        }
		.swiper-slide-1:hover .img-wrapper-1 img{transform: scale(1.05);}

        .content-1 {
            padding: 0 20px;
            max-width: 500px;
        }

        .content-1 h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .content-1 p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
        }
		.swiper-slide-2:hover .img-wrapper-1 img{transform: scale(1.05);}
        .swiper-button-next-1, .swiper-button-prev-1 {
            color: #fff;
            background: rgba(0,0,0,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-button-next-1:after, .swiper-button-prev-1:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-pagination-1 .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ccc;
            opacity: 1;
            transition: all 0.3s;
        }

        .swiper-pagination-1 .swiper-pagination-bullet-active {
            background: #2c3e50;
            transform: scale(1.2);
        }


/* ========== 轮播组件2 的样式 ========== */
        .carousel-container-2 {
            width: 100%;
            max-width: 16.4rem;
            position: relative;
            /*background: #fff;*/
            /*padding: 40px 0;*/
			overflow: hidden;
        }

        .swiper-2 {
            width: 100%;
            padding-bottom: 50px;
        }

        .swiper-slide-2 {
            display: flex;
            flex-direction: column;
            align-items: center;
            /*text-align: center;*/
            height: auto;
        }

        .img-wrapper-2 {
            width: 100%;
            height: 400px;
            overflow: hidden;
            margin-bottom: 20px;
            position: relative;
        }

        .img-wrapper-2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .content-2 {
            padding: 0 20px;
            max-width: 500px;
        }

        .content-2 h3 {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .content-2 p {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
			margin-bottom: 5px;
        }

        .swiper-button-next-2, .swiper-button-prev-2 {
            color: #fff;
            background: rgba(0,0,0,0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .swiper-button-next-2:after, .swiper-button-prev-2:after {
            font-size: 20px;
            font-weight: bold;
        }

        .swiper-pagination-2 .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
            background: #ccc;
            opacity: 1;
            transition: all 0.3s;
        }

        .swiper-pagination-2 .swiper-pagination-bullet-active {
            background: #2c3e50;
            transform: scale(1.2);
        }



/* ========== 轮播组件 4 的样式 ========== */
        
        /* Swiper 全屏容器 4 */
        .swiper-4 {
            width: 100%;
  height: 60vh;
        }

        .swiper-slide-4 {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            /*background: #fff;*/
        }

        /* ==========================================
           布局核心：复刻图片中的拼贴效果
           ========================================== */
        
        .layout-container-4 {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* 图片通用样式 4 */
        .img-box-4 {
            position: absolute;
            overflow: hidden;
            background: #eee;
        }
        
        .img-box-4 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* 1. 中间主图 (最大) 4 */
        .main-img-4 {
            width: 100%;
            
            z-index: 1;
        }

       

        /* 5. 底部文字 4 */
        .caption-text-4 {
            position: absolute;
            bottom: 5%;
            left: 50%;
            transform: translateX(-50%);
            z-index: 20;
            color: #fff;
            font-size: 24px;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
            /*background: rgba(0,0,0,0.4); */
            padding: 10px 20px;
            border-radius: 4px;
            white-space: nowrap;
        }

        /* 导航箭头样式优化 4 */
        .swiper-button-next-4, .swiper-button-prev-4 {
            color: #fff;
            background: rgba(0,0,0,0.3);
            
        }
        .swiper-button-next-4:after, .swiper-button-prev-4:after {
            font-size: 24px;
            font-weight: bold;
        }




.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(4, 1fr);

	gap: 40px;

}



.service-item {

	display: flex;

	align-items: flex-start;

}



.check-icon {

	width: 120px;

	height: 120px;

	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;

	overflow: hidden;

}
.check-icon img{transition: transform 0.5s ease;}


.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;
margin-top: 30px;
}



.service-content p {

	font-size: 14px;

	color: #666;

	line-height: 1.6;

}
.service-item:hover .service-content h3{color: var(--accent);}
.service-item:hover .check-icon img{transform: scale(1.03);}





/*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:rgb(246, 242, 236);}

.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);

            }





}


.shoujinone{}
.diannaonone{ display:none !important;}
@media (max-width: 768px) {
	.shoujinone{ display:none !important;}
	.diannaonone{ display:block !important;}
.row-top_youshi{display: block;}
.item-large_youshi{height: 24vh;width: 100%; margin:10px 0;}
.row-bottom_youshi{display: block;}
.item-small_youshi{height: 24vh;width: 100%; margin:10px 0;}
.default-title_youshi{opacity: 1;font-size: 16px;text-align: center;}
.overlay_youshi{opacity: 1;}

.injjfa_tu{height: 70px;}

.img-wrapper-1 {
	height: 250px;
}
.swiper-button-next-1, .swiper-button-prev-1 {
	display: none;
}

.img-wrapper-2 {
	height: 250px;
}
.swiper-button-next-2, .swiper-button-prev-2 {
	display: none;
}

.main-img-4 {
	width: 100%; 
}
.caption-text-4 {
	font-size: 16px;
	bottom: 10%;
}
.indaboutbg{background-size: contain;
  background-position: bottom center;}
  
.swiper-4{height: 16vh;}  

.section-title_inab {font-size: 28px;}
.inabout-section{margin-bottom: 30px;}

.header-section_pj {
      padding: 30px 20px 16px;
      flex-direction: column;
    }

    .slider-section_pj {
      padding: 0 10px;
    }

    .slider-nav_pj {
      padding: 15px 20px;top: 20%;
    }

    .slider-arrow_pj {
      width: 38px;
      height: 38px;
      font-size: 16px;
    }

    .slide-image_pj {
      min-height: 220px;
    }

    .slide-content_pj {
      padding: 24px 20px 32px;min-height: 260px;
    }

    .slide-content_pj h2 {
      font-size: 18px;
    }

    .slide-content_pj p {
      font-size: 14px;
    }

.inabout-section {
	flex-direction: column;
	gap: 30px;
}

.image-wrapper_inab {
	width: 100%;
}

.text-content_inab {
	width: 100%;
	text-align: center;
}

.description_inab {
	text-align: left; /* 移动端保持左对齐阅读体验更好，或者center也可以 */
}

.stats-section_inab {
	flex-direction: column;
	gap: 40px;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.slide_pj{display: block;}

.stat-number_inab {
	font-size: 36px;
}

		
	.hero-swiper {

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

	}

	.bannerVideo2{height: 50vh;}

	.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(2, 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: 26px;

}



.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;
hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    word-break: break-word;
}



.services-grid {

	grid-template-columns: repeat(2, 1fr);
gap: 20px;
}
.check-icon{width: 60px;height: 60px;}
.service-content h3{font-size: 16px;margin-top: 2px;}
.service-content p {
  font-size: 14px;
  line-height: 18px;
}

.hero-section-visit{padding: 80px 0;}

.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;

}
.navbar_jjfa {
	/*background-color: #999;*/
	/*height: 50px;*/
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
	/*position: fixed;*/
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	/*padding: 0 40px;*/
	width: 100%;
}

.navbar_jjfa::-webkit-scrollbar {
	display: none;
}

.nav-item_jjfa {
	flex: 0 0 auto;
	min-width: 100px;
	padding: 15px 20px;
	font-size: 14px;
	b/*ackground-color: #555;*/
	color: #505050;
	position: relative;
}

.nav-item_jjfa.active {
	background-color: var(--accent);
	color: #fff;
}

/* 浮动箭头样式 */
.nav-arrow-left,
.nav-arrow-right {
	position: absolute;
	top: 55px;
	transform: translateY(-50%);
	z-index: 1001;
	font-size: 28px;
	font-weight: bold;
	color: #000;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	/*background: rgba(0, 0, 0, 0.3);*/
	border-radius: 50%;
	pointer-events: none; /* 禁用点击 */
}

.nav-arrow-left {
	left: 5px;
}

.nav-arrow-right {
	right: 5px;
}

/* 内容容器移动端调整 */
.content-container_jjfa {
	height: 35vh;
}

/* 背景图片优化 */
.room-panel_jjfa .bg-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* 文字内容移动端优化 */
.text-content_jjfa {
	bottom: -12%;
	/*left: 5%;
	right: 5%;*/
	padding: 0 10px;
	width: 96%;
}
.text-content_jjfa_wenzi{font-size: 14px;}
.text-content_jjfa h2 {
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 12px;
	font-weight: 600;
	letter-spacing: 0.5px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* 按钮移动端优化 */
.detail-btn_jjfa {
	padding: 10px 25px;
	font-size: 13px;
	border-radius: 20px;
	background-color: var(--accent);
	color: #fff;
	display: inline-block;
	-webkit-tap-highlight-color: transparent;
}

.detail-btn_jjfa:active {
	background-color: #d4a43a;
	transform: scale(0.98);
}




}

/* 小屏幕手机优化 */
@media screen and (max-width: 480px) {
.nav-item_jjfa {
	min-width: 85px;
	padding: 15px 15px;
	font-size: 13px;
}

.text-content_jjfa h2 {
	font-size: 20px;
}

.detail-btn_jjfa {
	padding: 8px 20px;
	font-size: 12px;
}

.nav-arrow-left,
.nav-arrow-right {
	font-size: 40px;
	width: 35px;
	height: 35px;
}
}

/* 横屏优化 */
@media screen and (max-height: 500px) and (orientation: landscape) {
.content-container_jjfa {
	height: calc(100vh - 50px);
}

.text-content_jjfa {
	bottom: 10%;
}

.text-content_jjfa h2 {
	font-size: 20px;
	margin-bottom: 8px;
}
}