/* style.css */
body {
	margin: 0;
	padding: 0;

	font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
	margin: 0 auto;
	line-height: 1.6;

}

.banenr {
	overflow: hidden;
	position: relative;
	text-align: center;
}

.banenr img {
	width: 100%;
}

.section {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 40px 5%;
	margin: 0 auto;
	max-width: 1200px;
}

.section img {
	max-width: 100%;
	height: auto;
	display: block;
}

.section-content {
	flex: 1 1 50%;
	padding: 20px;
	box-sizing: border-box;
}

.section-image {
	flex: 1 1 50%;
	padding: 20px;
	box-sizing: border-box;
}

.section h2 {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	text-transform: uppercase;
}

.section h3 {
	font-size: 32px;
	font-weight: bold;
	margin: 5px 0 15px;
	text-transform: uppercase;
}

.section p {
	font-size: 14px;
	margin-bottom: 15px;
}

.section strong {
	font-weight: bold;
}

/* 第二个模块背景色 */
.gray-bg {}

.bgbox {
	background: #f5f5f5;
}

/* 底部统计 */
.stats {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-wrap: wrap;
	background: #00b09b;
	color: white;
	max-width: 1200px;
	margin: 0 auto;
}

.stat-box h1 {
	line-height: 1rem;
	margin-top: 20px;
	display: block;
}

.stat-box {
	flex: 1 1 33%;
	padding: 10px 0;
	margin: 20px 0;
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
	border-right: 1px #f5f5f5 solid;
}

/* 自适应样式 */
@media (max-width: 768px) {
	.section {
		flex-direction: column;
		padding: 20px;
	}

	.section-content,
	.section-image {
		flex: 1 1 100%;
		padding: 10px 0;
	}

	.section h2 {
		font-size: 18px;
		text-transform: uppercase;
	}

	.section h3 {
		font-size: 24px;
		text-transform: uppercase;
	}

	.section p {
		font-size: 14px;
	}

	.stat-box {
		flex: 1 1 100%;
		font-size: 20px;
	}
}

.case-slider-container {
	position: relative;
	overflow: hidden;
	max-width: 100%;
}

.case-slider-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.case-slide {
	flex: 0 0 100%;
	box-sizing: border-box;
	text-align: center;
	padding: 60px 20px;
}

.case-slide ul li {
	width: 31.33%;
	float: left;
	margin: 1%;
	border: 1px #00b09b solid;
}

/* 左右切换按钮 */
.case-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: white;
	border: none;
	padding: 10px 17px;
	cursor: pointer;
	z-index: 10;
	border-radius: 50%;
}

.case-slider-btn:hover {
	background: rgba(0, 0, 0, 0.6);
}

.case-prev-btn {
	left: 10px;
}

.case-next-btn {
	right: 10px;
}

/* 底部小圆点 */
.case-dots {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
}

.case-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	cursor: pointer;
}

.case-dot.active {
	background: white;
}

/* 手机端优化 */
@media (max-width: 768px) {
	.case-slide {
		padding: 40px 10px;
	}
}

.section-top {
        background-color: #2eaba4;
        padding: 40px 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: auto;
    }
    .section-top-left {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex: 1 1 250px;
    }
    .section-top-left div {
        border: 1px solid #fff;
        color: #fff;
        padding: 12px;
        font-size: 16px;
        max-width: 500px;
    }
    .section-top-right {
        flex: 1 1 250px;
        color: white;
        text-align: left;
        max-width: 400px;
    }
    .section-top-right h2 {
        font-size: 18px;
        margin: 0;
    }
    .section-top-right h3 {
        font-size: 28px;
        margin: 8px 0;
        color: #ffe45c;
        font-weight: bold;
    }
    .section-top-right p {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 10px;
    }
    .pricing-table {
        max-width: 1000px;
        margin: 50px auto;
        padding: 0 20px;
    }
    .pricing-table h2 {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
    }
    .pricing-table table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    .pricing-table th {
        background-color: #d0e9e9;
        padding: 12px;
        text-align: left;
        font-weight: bold;
    }
    .pricing-table td {
        padding: 12px;
        border-bottom: 1px solid #ddd;
    }
    .pricing-table tr:nth-child(even) {
        background-color: #f5f5f5;
    }
    .contact-section {
        background-color: #2c2c2c;
        color: white;
        padding: 40px 20px;
    }
    .contact-section h2 {
        text-align: center;
        margin-bottom: 20px;
        font-size: 20px;
    }
    .contact-form {
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .contact-form input {
        padding: 10px;
        border: none;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-form button {
        padding: 10px;
        background-color: #2eaba4;
        color: white;
        border: none;
        cursor: pointer;
        font-size: 16px;
    }
    @media (max-width: 768px) {
        .section-top {
            flex-direction: column;
            align-items: flex-start;
        }
        .section-top-left div {
            max-width: 100%;
        }
    }
	.section-top-bg{
		background: #2eaba4;
	}