.index_project_container { 
	background: linear-gradient(135deg, #f5f7fa, #e4e7eb);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	padding: 20px;
	color: #333;
}

.index_header {
	text-align: center;
	margin-bottom: 30px;
}

.layout-title {
	font-size: 42px;
	font-weight: 700;
	color: #a59a00;
	margin-bottom: 10px;
}

.layout-description {
	font-size:18px;
    color: #a59a00;
	max-width: 600px;
}

/* 主容器，使用 Grid 布局，严格 2行3列 */
.photo-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	gap: 15px;

	padding: 15px;

}


/* 图片容器基础样式 */
.photo-container {
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: #fff;
	transition: all 0.3s ease;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
	position: relative;
}

/* 悬停效果 */
.photo-container:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	z-index: 5;
}

/* 为每个图片容器定义不同的背景色和内部文本 */
.photo-1 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;
}

.photo-1 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

.photo-2 {
	grid-column: 2 / 4;
	grid-row: 1 / 3;
}

.photo-2 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

.photo-3 {
	grid-column: 4 / 5;
	grid-row: 1 / 3;
}

.photo-3 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

.photo-4 {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	grid-column: 1 / 3;
	grid-row: 3 / 5;
}

.photo-4 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

.photo-5 {
	grid-column: 3 / 4;
	grid-row: 3 / 5;
}

.photo-5 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

.photo-6 {
	grid-column: 4 / 5;
	grid-row: 3 / 5;
}

.photo-6 img {
	background-size: cover;
	width: 100%;
	height: 100%;
}

/* 底部说明 */
.footer-note {
	margin-top: 30px;
	font-size: 0.9rem;
	color: #95a5a6;
	text-align: center;
}


.index_news {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	margin: 20px 0;
}

.index_news h1 {
     color: #a59a00;
	font-size: 42px;
	margin-top: 50px;
}

.news_content {
	flex-wrap: wrap;
	margin-top: 50px;
	display: flex;

}

figure.snip0016 { 
	color: #fff;
	position: relative;
	overflow: hidden;
	margin: 10px;
	height: 100%;
	width: 23%;	
	background: #000000;
	text-align: left;
}

figure.snip0016 * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

figure.snip0016 img {
	max-width: 100%;
	opacity: 1;
	width: 100%;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

figure.snip0016 figcaption {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 30px 3em;
	width: 100%;
	height: 100%;
}

figure.snip0016 figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 100%;
	border-left: 4px solid rgba(255, 255, 255, 0.8);
	content: '';
	opacity: 0;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

figure.snip0016 h2,
figure.snip0016 p {
	margin: 0 0 5px;
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s, transform 0.35s;
}

figure.snip0016 h2 {
	word-spacing: -4px;
	font-size: 24px;
	font-weight: 300;
	text-transform: uppercase;
	-webkit-transform: translate3d(30%, 0%, 0);
	transform: translate3d(30%, 0%, 0);
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

figure.snip0016 p {
	margin-top: 20px;
	font-size: 18px;
	font-weight: 200;
	-webkit-transform: translate3d(0%, 30%, 0);
	transform: translate3d(0%, 30%, 0);
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

figure.snip0016 a {
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: absolute;
	color: #ffffff;
}

figure.snip0016:hover img {
	opacity: 0.3;
}

figure.snip0016:hover figcaption h2 {
	opacity: 1;
	-webkit-transform: translate3d(0%, 0%, 0);
	transform: translate3d(0%, 0%, 0);
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

figure.snip0016:hover figcaption p {
	opacity: 0.9;
	-webkit-transform: translate3d(0%, 0%, 0);
	transform: translate3d(0%, 0%, 0);
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

figure.snip0016:hover figcaption::before {
	background: rgba(255, 255, 255, 0);
	left: 30px;
	opacity: 1;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.arabic-exclusive .qiaoxin8379 .more_btn {
	text-align: right;
}

.arabic-exclusive .qiaoxin8379 .more_btn>div {
	margin-right: 20px;
}

.qiaoxin8379 {
	width: 100%;
	margin: 80px 0;
	height: 658px;
	position: relative;
}

.qiaoxin8379 .backstage-blocksEditor-wrap .backstage-blocksEditor-wrap-text .backstage-widgetsettings-tools-zindex {
	top: 15px;
}

.qiaoxin8379 .pro {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.qiaoxin8379 .pro li {
	height: 155px;
	position: relative;

}

.qiaoxin8379 .pro li .linkw {
	position: absolute;
	top: 33%;
	width: 42px;
	height: 42px;
	z-index: 1;
	right: -90px;
}

.qiaoxin8379 .pro li:before {
	content: "";
	width: 1px;
	height: 70px;
	display: block;
	position: absolute;
	 right: 350px;
	bottom: 42px;
	background: rgba(250, 250, 250, 0.5);
}

.arabic-exclusive .qiaoxin8379 .pro li:before {
	right: 130px
}

.qiaoxin8379 .pro li .list_hover {
	width: 0;
	height: 100%;
	background-color: #0a1c2f;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: block;
	transition: 600ms;
	-webkit-transition: 600ms;
	opacity: 0.85;
}

.qiaoxin8379 .pro li .list_box {
	width: 450px;
	position: absolute;
	top: 15px;
	right: 0;
	color: #fff;
	/* z-index: 2; */
	padding: 2% 0 0;
}

.arabic-exclusive .qiaoxin8379 .pro li .list_box {
	padding-right: 10px;
	display: flex;
	flex-direction: row-reverse;
}

.qiaoxin8379 .pro li .list_box:before {
	width: 1px;
	height: 42px;
	margin-top: 0;
	right: -70px;
}

.qiaoxin8379 .pro li .list_box:after {
	width: 42px;
	height: 1px;
	right: -120px;
}

.qiaoxin8379 .pro li .list_box:after,
.qiaoxin8379 .pro li .list_box:before {
	content: "";
	
	display: block;
	top: 54%;
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: 300ms;
	-webkit-transition: 300ms;
}

.qiaoxin8379 .pro li .list_ico {
	width: 90px;
	height: 90px;
	display: block;
}

.qiaoxin8379 .pro li .list_ico img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.qiaoxin8379 .pro li .list_text {
	padding: 3% 0 0 7%;
	position: absolute;
	left: 90px;
	top: 10px;
}

.arabic-exclusive .qiaoxin8379 .pro li .list_text {
	padding: 3% 7% 0 0;
	text-align: right;
	left: unset;
	right: 125px;
}

.qiaoxin8379 .pro li .l {
	float: left;
}

.qiaoxin8379 .pro li .list_text .list_hd {
	font-size: 18px; 
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	word-break: break-word;
}

.qiaoxin8379 .pro li .list_text .list_bd {
	margin-top: 10px;
	font-size: 13px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.qiaoxin8379 .pro li:hover .list_hover {
	width: 118%;
}

.qiaoxin8379 .pro li:hover .list_box:before {
	margin-top: -21px;
}

.qiaoxin8379 .pro li:hover .list_box:after {
	right: -90px;
}

.qiaoxin8379 .pro li:hover .list_box:after,
.qiaoxin8379 .pro li:hover .list_box:before {
	transition: 300ms ease-in 600ms;
	-webkit-transition: 300ms ease-in 600ms;
	visibility: visible;
	opacity: 1;
}

.qiaoxin8379 .more_btn {
	display: block;
	height: 38px;
	line-height: 38px;
	background: #ED8707;
	color: #fff;
	text-align: center;
	font-size: 14px;
	position: absolute;
	width: 50%;
	bottom: 0;
	left: 0;
}

.qiaoxin8379 .more_btn a {
	color: inherit;
}


.campany-size {
	background:#fff;
	color: white;

	display: flex;
	align-items: center;
}

.campany-size-container {

	margin: 0 auto;

}

/* Counter Section */
.counter-section {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.counter-item {

	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	min-width: 200px;
	transition: all 0.3s ease;

}

.counter-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	border-color: rgba(255, 255, 255, 0.4);
}

.icon img {
	width: 60px;
	height: 60px;
	margin-bottom: 20px; 
}

.count {
	font-size: 40px;
	font-weight: 800;
	color: #a59a00;
	margin-bottom: 10px; 
}

.label {
	font-size: 18px;
	color: #a59a00;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Main Content Section */
.campany-size-needToTransition {
    max-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	opacity: 0;
	transform: translateY(30px);
	animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

/* Pricing Section */
.pricing-section {
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 40px;
	transition: all 0.3s ease;
}

.pricing-section:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-section h2 {
	font-size: 35px;
	margin-bottom: 20px;
	color: #a59a00;
	line-height: 1.3;
}

.pricing-section p {
	font-size: 18px;
	line-height: 1.8;
	color: #a59a00;
	margin-bottom: 30px;
}

.contact-button {
	background: linear-gradient(45deg, #ffb700, #a59a00);
	color: white;
	border: none;
	padding: 15px 30px;
	font-size: 18px;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	box-shadow: 0 4px 15px rgb(255 235 0 / 54%);
}

.contact-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgb(255 235 0 / 54%);
	background: linear-gradient(45deg, #a59a00, #ffb700);
}

/* Features Section */
	.pricing-section,
	.features-section {
		flex: 1;
	}
 

.features-section {
	display: flex; 
	gap: 30px;
}


.feature-item {
	background: rgb(255 255 255 / 25%);
	backdrop-filter: blur(10px);
	border-radius: 20px;
	padding: 35px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	flex: 1;
}

.feature-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-header span {
	background: linear-gradient(45deg, #e4d073, #a59a00);
	color: white;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 0.9em;
	font-weight: 600;
	display: inline-block;
	margin-bottom: 15px;
}

.feature-header h3 {
	font-size: 1.8em;
	color: #a59a00;
	margin: 10px 0 20px 0;
}

.feature-item p {
	font-size: 1.1em;
	line-height: 1.8;
	color: #a59a00;
	margin-bottom: 25px;
}

.feature-item ul {
	list-style: none;
	margin-bottom: 25px;
}

.feature-item li {
	color: #a59a00;
	margin-bottom: 12px;
	padding-left: 25px;
	position: relative;
	font-size: 16px;
}

.feature-item li::before {
	content: "✓";
	color: #a59a00;
	position: absolute;
	left: 0;
	font-weight: bold;
}

.view-more-button,
.customization-options-button {
	background: linear-gradient(45deg, #eae066, #a59a00);
	color: white;
	border: none;
	padding: 12px 25px;
	font-size: 1.05em;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.customization-options-button {
	background:linear-gradient(45deg, #eae066,#a59a00);
	box-shadow: 0 4px 15px rgba(118, 75, 162, 0.3);
}

.view-more-button:hover,
.customization-options-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px #a59a00;
}

/* Animations */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.index_contact {
	background-color: #fff;
	margin: 0 auto;
	padding: 20px;
}

/* 顶部横幅区域 */
.top-section {
	margin-bottom: 30px;
}

.banner-section {
	background-size: cover;
	background-position: center;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.banner-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	z-index: 1;
}

.banner-section>* {
	z-index: 2;
}

.banner-section h2 {
	color: #a59a00;
	font-size: 62px;
	margin-bottom: 15px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-section p {
	color: #a59a00;
	font-size: 18px;
	margin-bottom: 25px;
	max-width: 600px;
}

.top-banner-button {
	display: inline-block;
	background: #a59a00;
	color: white;
	padding: 12px 30px;
	text-decoration: none;
	border-radius: 30px;
	font-weight: bold;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.top-banner-button:hover {
	background: transparent;
	border-color: white;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* 修改：将 contact-section 改为 flex 布局实现左右排列 */
.contact-section {
	display: flex;
	gap: 30px;
	/* 在小屏幕上改为垂直堆叠 */
	flex-wrap: wrap;
}

/* 丝材比较区域 - 设置为占据一半宽度 */
.filament-section {
	flex: 1;
	min-width: 300px;
}

.filament-content {
	background-size: cover;
	background-position: center;
	height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: white;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}

.filament-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background:linear-gradient(135deg, rgb(221 221 221 / 80%), rgb(210 210 210 / 70%));
	z-index: 1;
}

.filament-content>* {
	z-index: 2;
}

.filament-content h3 {
	font-size: 35px;
	margin-bottom: 12px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.filament-content p {
	font-size: 18px;
	margin-bottom: 20px;
	max-width: 500px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.filament-button {
	display: inline-block;
	background: white;
	color: #a59a00;
	padding: 10px 25px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.filament-button:hover {
	background: #8d8400;
	color: white;
	transform: scale(1.05);
}

.help-section {
	flex: 1;
	min-width: 300px;
	display: flex;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-content {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.help-content h3 {
	font-size: 32px;
	color: #a59a00;
	margin-bottom: 15px;
}

.help-content p {
	font-size: 18px;
	margin-bottom: 25px;
	color: #555;
}

.help-button {
	display: inline-block;
	background: #a59a00;
	color: white;
	padding: 12px 28px;
	text-decoration: none;
	border-radius: 25px;
	font-weight: 600;
	align-self: flex-start;
	transition: all 0.3s ease;
}

.help-button:hover {
    color: white;
	background: #a59a00;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.right-image {
	flex: 1;
	height: 400px;
	object-fit: cover;
	object-position: center;
}


        /* Neon Button */
        .neon {
            text-align: center;
        }

        .neon-btn {
            position: relative;
            display: inline-block;
            padding: 25px 30px;
            color: #a59a00;
            text-decoration: none;
            text-transform: uppercase;
            transition: 0.5s;
            letter-spacing: 4px;
            overflow: hidden;
            cursor: pointer;
            z-index: 2;
        }

        .neon-btn:hover {
            background: #a59a00;
            color: #fff;
            box-shadow: 
                0 0 5px #a59a00, 
                0 0 25px #a59a00, 
                0 0 50px #a59a00, 
                0 0 200px #a59a00;
            -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
        }

        .neon-btn span {
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            background: #a59a00;
            opacity: 0.5;
        }

        .neon-btn span:nth-child(1) {
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #a59a00);
            animation: animate1 1s linear infinite;
        }

        .neon-btn span:nth-child(2) {
            top: -100%;
            right: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #a59a00);
            animation: animate2 1s linear infinite;
            animation-delay: 0.25s;
        }

        .neon-btn span:nth-child(3) {
            bottom: 0;
            right: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(270deg, transparent, #a59a00);
            animation: animate3 1s linear infinite;
            animation-delay: 0.5s;
        }

        .neon-btn span:nth-child(4) {
            bottom: -100%;
            left: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(360deg, transparent, #a59a00);
            animation: animate4 1s linear infinite;
            animation-delay: 0.75s;
        }

        @keyframes animate1 {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }
        @keyframes animate2 {
            0% { top: -100%; }
            50%, 100% { top: 100%; }
        }
        @keyframes animate3 {
            0% { right: -100%; }
            50%, 100% { right: 100%; }
        }
        @keyframes animate4 {
            0% { bottom: -100%; }
            50%, 100% { bottom: 100%; }
        }

			/* 弹窗遮罩层 */
			.modal {
				display: none;
				position: fixed;
				z-index: 1000;
				left: 0;
				top: 0;
				width: 100%;
				height: 100%;
				overflow: auto;
				background-color: rgba(0, 0, 0, 0.5);
				animation: fadeIn 0.3s ease-in-out;
			}

			/* 弹窗内容区域 */
			.modal-content {
				background-color: #fff;
				margin: 5% auto;
				padding: 30px;
				border-radius: 10px;
				width: 90%;
				max-width: 700px;
				box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
				animation: slideIn 0.3s ease-out;
			}

			/* 关闭按钮 */
			.close {
				color: #aaa;
				float: right;
				font-size: 28px;
				font-weight: bold;
				line-height: 1;
				cursor: pointer;
				transition: color 0.3s;
			}

			.close:hover,
			.close:focus {
				color: #000;
				text-decoration: none;
			}

			/* 表单标题 */
			.modal-content h3 {
				text-align: center;
				margin-bottom: 20px;
				color: #333;
			}

			/* 表单行容器 - 用于两列布局 */
			.form-row {
				display: flex;
				gap: 20px;
				margin-bottom: 18px;
				flex-wrap: wrap;
				/* 移动端自适应 */
			}

			/* 表单组通用样式 */
			.form-group {
				flex: 1;
				min-width: 200px;
				/* 移动端最小宽度 */
			}

			.form-group label {
				display: block;
				margin-bottom: 6px;
				font-weight: bold;
				color: #333;
			}

			.form-group input[type="text"],
			.form-group input[type="email"],
			.form-group input[type="tel"],
			.form-group input[type="number"],
			.form-group select,
			.form-group textarea {
				width: 100%;
				padding: 10px;
				border: 1px solid #ccc;
				border-radius: 4px;
				font-size: 14px;
				box-sizing: border-box;
			}

			.form-group textarea {
				resize: vertical;
				min-height: 80px;
			}

			/* 复选框样式 */
			.checkbox-group {
				display: flex;
				align-items: center;
				margin: 18px 0;
			}

			.checkbox-group input[type="checkbox"] {
				margin-right: 8px;
				transform: scale(1.1);
			}

			.checkbox-group label {
				font-size: 14px;
				color: #555;
			}

			/* 按钮组 */
			.button-group {
				display: flex;
				justify-content: flex-end;
				gap: 12px;
				margin-top: 20px;
			}

			.cancel-btn,
			.submit-btn {
				padding: 10px 20px;
				border: none;
				border-radius: 4px;
				cursor: pointer;
				font-size: 14px;
				font-weight: bold;
			}

			.cancel-btn {
				background-color: #e7e7e7;
				color: #333;
			}

			.cancel-btn:hover {
				background-color: #ccc;
			}

			.submit-btn {
				background-color: #a59a00;
				color: white;
			}

			.submit-btn:hover {
				background-color: #beb42e;
			}

			/* 全宽字段：独占一行 */
			.form-group.full-width {
				flex: 100%;
				margin-bottom: 18px;
			}

			/* 动画效果 */
			@keyframes fadeIn {
				from {
					opacity: 0;
				}

				to {
					opacity: 1;
				}
			}

			@keyframes slideIn {
				from {
					transform: translateY(-50px);
					opacity: 0;
				}

				to {
					transform: translateY(0);
					opacity: 1;
				}
			}
/* 响应式设计 */
@media (max-width: 992px) {
	.contact-section {
		flex-direction: column;
	}

	.help-section {
		flex-direction: column;
	}

	.right-image {
		height: 200px;
	}
}

@media (max-width: 768px) {
	.banner-section h2 {
		font-size: 2.2rem;
	}

	.filament-content h3 {
		font-size: 1.8rem;
	}
}

@media (max-width: 480px) {
	.banner-section h2 {
		font-size: 1.8rem;
	}

	.filament-content h3 {
		font-size: 1.6rem;
	}

	.help-content {
		padding: 30px 20px;
	}
}

/* 按钮通用样式 */
a {
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
	text-decoration: none;
}


/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

/* 响应式设计 */
@media screen and (max-width:1200px) {
	.qiaoxin8379 .pro li:hover .list_hover {
		width: 100%;
	}

	.qiaoxin8379 .pro li .list_box {
		right: unset;
		left: 20px;
		/* left: 10px; */
	}

	.qiaoxin8379 .more_btn {
		width: 100%;
	}

	.qiaoxin8379 .pro li:before {
		left: 120px;
		right: unset;
	}

	.arabic-exclusive .qiaoxin8379 .pro li:before {
		left: 498px;
		right: unset;
	}

	.qiaoxin8379 .pro {
		width: 100%;
	}

	.qiaoxin8379 .pro li:hover .list_box:after,
	.qiaoxin8379 .pro li:hover .list_box:before {
		opacity: 1;
	}


	.qiaoxin8379 .pro li .list_box:before {
		right: -270px;
	}

	.qiaoxin8379 .pro li:hover .list_box:after {
		right: -290px;
	}

	.qiaoxin8379 .pro li .linkw {
		right: 107px;
	}
}

@media screen and (max-width:900px) {
	.qiaoxin8379 .pro li:hover .list_box:after {
		right: -170px;
	}

	.qiaoxin8379 .pro li .list_box:before {
		right: -150px;
	}

	.qiaoxin8379 .pro li .linkw {
		right: 28px;
	}
	figure.snip0016 {
		height: 100%;
		width: 100%;
		
	}
	   	.campany-size-needToTransition {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.pricing-section,
	.features-section {
		flex: 1;
	}

	.features-section {
		display: flex;
		flex-direction: column;
	}

	.features-section {
		flex-direction: row;
		align-items: stretch;
		gap: 40px;
	}
	.count {
    font-size: 40px;
    font-weight: 800;
    color: #a59a00;
    margin-bottom: 10px; 
}
}


@media (max-width: 768px) {
	.qiaoxin8379 .pro li:hover .list_box:after {
		right: -130px;
	}

	.qiaoxin8379 .pro li .list_box:before {
		right: -110px;
	}

	.arabic-exclusive .qiaoxin8379 .pro li:hover .list_box:after {
		right: -65px
	}

	.arabic-exclusive .qiaoxin8379 .pro li .list_box:before {
		right: -45px;
	}

	.qiaoxin8379 .pro li .linkw {
		right: 103px;
	}

	.photo-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, minmax(100px, auto));
		height: auto;
		gap: 10px;
		padding: 10px;
	}

	.layout-title {
		font-size: 1.8rem;
	}

	/* 移动端所有项垂直堆叠 */
	.photo-container {
		grid-column: 1 !important;
		grid-row: auto !important;

	}
	figure.snip0016 {
		height: 100%;
		width: calc(100% - 10px);
		
		
	}
 
	.pricing-section,
	.features-section {
		flex: 1;
	}

	.features-section {
		display: flex;
		flex-direction: column;
	}
 

	.feature-item {
		flex: 1;
		min-width: 0;
		/* 允许弹性收缩 */
	}
}
@media screen and (max-width: 650px) {
    .qiaoxin8379 .pro li .list_box {
        width: calc(100% - 40px);
        /* width: calc(100% - 20px); */
    }

    .arabic-exclusive .qiaoxin8379 .pro li:before {
        left: unset;
        right: 23%;
    }
}

@media screen and (max-width: 590px) {
    .arabic-exclusive .qiaoxin8379 .pro li:before {
        left: unset;
        right: 25%;
    }
}

@media screen and (max-width: 540px) {
    .arabic-exclusive .qiaoxin8379 .pro li:before {
        left: unset;
        right: 27%;
    }
}

@media screen and (max-width:510px) {
    .arabic-exclusive .qiaoxin8379 .pro li .list_text {
        top: -9px;
        padding: 3% 0 0 0;
        right: 100px;
    }

    /* .qiaoxin8379 .pro li .list_box {
        width: 338px;
    } */

    .qiaoxin8379 .pro li {
        height: 130px;
        /* padding: 10px 0; */
    }

    .qiaoxin8379 .pro li:before {
        left: 90px;
    }

    .qiaoxin8379 .fa {
        font-size: 60px ! important;
    }

    .qiaoxin8379 .pro li .list_ico {
        width: 60px;
        height: 60px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }


    .qiaoxin8379 .pro li {
        height: 110px;
    }

    .qiaoxin8379 .pro li:before {
        bottom: 18px;
    }

    .qiaoxin8379 {
        height: 478px;
    }

    .qiaoxin8379 .pro li:hover .list_box:after,
    .qiaoxin8379 .pro li:hover .list_box:before {
        opacity: 0;
    }

    .qiaoxin8379 .pro li .linkw {
        display: none;
    }

    .qiaoxin8379 .pro li .list_box:after,
    .qiaoxin8379 .pro li .list_box:before {
        display: none;
    }

    .qiaoxin8379 .pro li .list_box {
        width: calc(100% - 74px);
        position: relative;
        /* top: auto; */
        top: 50%;
        transform: translateY(-50%);
    }

    .arabic-exclusive .qiaoxin8379 .pro li .list_box {
        width: calc(100% - 20px);
        left: unset;

    }

    .arabic-exclusive .qiaoxin8379 .pro li:before {
        right: 100px;
    }

    .qiaoxin8379 .pro li .list_text {
        padding: 1% 0 0 7%;
        left: 36px;
        top: -4px;
        position: relative;
        right: initial;
        float: unset;
    }

    .qiaoxin8379 .pro li .list_text .list_bd {
        margin-left: 39px;
    }

    .arabic-exclusive .qiaoxin8379 .pro li .list_text .list_bd {
        width: 360px;
    }

    .qiaoxin8379 .pro li .list_text .list_hd {
        margin-left: 39px;
    }
}

@media screen and (max-width:380px) {
    .arabic-exclusive .qiaoxin8379 .pro li .list_text .list_bd {
        width: 244px;
    }
}