/* Reset 样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 页面主体样式 */
body {
    font-family: PingFang SC;
    font-weight: 400;
    color: #333;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility
}

/* 添加遮罩窗口样式 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5); /* 半透明黑色背景 */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999; /* 确保遮罩在顶层显示 */
}

/* 添加二维码容器样式 */
.qr-container {
	/*background-color: #fff;
	padding: 20px;
	border-radius: 8px;*/
	max-width: 380px; /* 设置最大宽度 */
	text-align: center; /* 水平居中 */
}

/* 添加二维码图片样式 */
.qr-code {
	max-width: 100%; /* 保证图片不超过容器宽度 */
	height: auto; /* 让图片按比例缩放 */
}

/* 禁止页面滚动 */
.no-scroll {
	overflow: hidden;
}
        
/* 菜单栏 */
.root {
    position: fixed;
    top: 0;
    left: 0;
    max-height: 80px;
    width: 100%;
    height: 80px;
    opacity: 1;
    background: #FFFFFF;
    z-index: 9999; 
    box-shadow: 0px 3px 10px 0px rgba(13, 84, 209, 0.05),0px 1px 4px 0px rgba(0, 0, 0, 0.2); /* 菜单栏阴影 */
}

.root .menu {
    display: flex;
    align-items: center;
    width: 1200px;
    height: 80px;
    padding: 0px 0px; /* 上下与顶部的距离 */
    margin: 0 auto;
}

.root .menu .contact-info {
    position: relative;
    left: 200px;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    animation: zoom 0.8s infinite; /* 这里设置动画名称、持续时间和循环次数 */
}


.root .menu .contact-info img {
    width: 40px;
    height: auto;
    margin-right: 10px;
    cursor: pointer;
    
}
@keyframes zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.root .menu .contact-info span {
    opacity: 1;
	font-family: PingFang SC;
	font-size: 20px;
	font-weight: 500;
	line-height: 17px;
	letter-spacing: 0px;
	color: #F16100;
}


.root .menu .logo {
    margin-right: 10px; /* 外边距，与右侧的距离 */
    margin-top: 5px;
    cursor: pointer;
}

.root .menu .logo img {
    width: 120px;
    height: 48px;
}

.root .menu nav ul {
    list-style: none;
    display: flex;
}

.root .menu nav ul li {
    margin-left: 1px; /* 菜单之间的间距 */
}

.root .menu nav ul li a {
    text-decoration: none;
    position: relative;
    display: block;
    color: #000000;
    width: 90px;
    height: 22px;
    opacity: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0px;
}

.root .menu ul li a.white {
    color: white; /* 当滚动后链接文字颜色为白色 */
}

.root .menu nav ul li a:hover {
    color: #F16100;
}

.root .menu nav ul li a.scrolling:hover {
    color: white; 
    font-size: 17px;
}


/* 下拉菜单样式 */
.root .menu nav ul li.dropdown {
    position: relative;
}

.root .menu nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 51px; /* 修改为距离主菜单栏高度 */
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;
}

.root .menu nav ul li .dropdown-menu li {
    padding: 10px 20px;
}

.root .menu nav ul li .dropdown-menu li a {
    color: #000;
    text-decoration: none;
    display: block;
}

.root .menu nav ul li .dropdown-menu li a:hover {
    /* background: #f1f1f1; */
    color: #F16100;
}

/* 显示下拉菜单 */
.root .menu nav ul li.dropdown:hover .dropdown-menu,
.root .menu nav ul li .dropdown-menu:hover {
    display: block;
}


.root .menu .buttons {
    margin-left: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.root .menu .buttons .btn-register {
    font-size: 14px;
    width: 94px;
    height: 40px;
    background-image: url('../images/button.gif'); /* 替换 'your_image_url_here' 为你的图片路径 */
    background-size: cover; /* 让背景图片充满整个按钮 */
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    display: flex;
    padding: 8px 16px;
    display: inline-block;
    text-align: center;
    opacity: 1;
    font-family: PingFang SC;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: 0px;
}

.root .menu .buttons .btn-register.scrolling {
    background-image: none; /* 移除背景图片 */
    background-color: #fff;
    color: #F16100;
    border: 1px solid #fff;
}

.btn-register .arrow {
    position: absolute;
    background-image: url("../images/icon/箭头白色@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 8px;
    right: 8px;
    top: 40%;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    animation: arrow-animation-reg 0.4s infinite; /* 应用动画效果 */
}

@keyframes arrow-animation-reg {
    0% { transform: translate(2px, 0); }
    50% { transform: translate(0, 0); }
    100% { transform: translate(2px, 0); }
}

.btn-register .arrow.scrolling {
    background-image: url("../images/icon/箭头橙色@2x.png");
}

.btn-register:hover .arrow {
    transform: translateX(2px);
}

@keyframes beamMove {
    0% {
        left: -100%; 
    }
    100% {
        left: 100%; 
    }
}

.root .menu .buttons .btn-login {
    width: 68px;
    height: 40px;
   border: 1px solid #F16100;
    border-radius: 5px; /* 调整圆角大小 */
    text-decoration: none;
    padding: 8px 16px; /* 调整按钮内边距 */
    display: inline-block;
    text-align: center;
    opacity: 1;
	margin-right: 12px;
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: 500;
	line-height: 22px;
	letter-spacing: 0px;
	color: #F16100;
}


.root .menu .buttons .btn-login:hover {
    /* background: linear-gradient(to right, #F16100, #ff9e54); /* 使用 #ed6c0a 到 #ff9e54 的渐变 */
    background-color: #F16100;
    color: #fff;
}


/* banner 区域 */
.module-box-1 {
    position: relative;
    padding-top: 80px;
    max-height: 700px;
    width: 100%;
    height: 700px;
    opacity: 1;
    background: #FFFBF7;
}

.module-box-1 .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1920px;
    position: relative;
    height: 620px;
    padding: 0;
    margin: 0 auto;
    background-image: url("../images/banner@2x.png");
    background-size: cover;
    background-position: center;
}

.module-box-1 .banner-left-content {
    top: 0;
    position: absolute;
    width: 1200px;
    height: 350px;
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0 auto;
}

.module-box-1 .banner-left-content .left-content-title {
    width: 506px;
    height: 108px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 46px;
    font-weight: 600;
    line-height: 54px;
    letter-spacing: 0;
    color: #F16100;
}

.module-box-1 .banner-left-content .left-content-block {
    position: absolute;
    top: 70%;
    width: 324px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.module-box-1 .banner-left-content .left-content-block .left-content-row {
    display: flex;
    margin: 10px 0;
    left: 0;
}

.module-box-1 .banner-left-content .left-content-block .left-content-row .left-content-item {
    width: 142px;
    height: 36px;
    display: flex;
    align-items: center;
    margin: 0 10px;
    position: relative;
}

.module-box-1 .banner-left-content .left-content-block .left-content-row .left-content-item .left-content-img {
    height: 36px;
    width: 142px;
    background-image: url("../images/dec@2x.png");
    background-size: cover;
    background-position: center;
}

.module-box-1 .banner-left-content .left-content-block .left-content-row .left-content-item .left-content-img .left-content-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px; 
    font-size: 22px;
    letter-spacing: 0;
    color: #333333;
    margin: 0;
    font-family: PingFang SC;
    font-weight: normal;
    line-height: 38px;
    font-variation-settings: "opsz" auto;
}

.module-box-1 .left-content-button {
    position: absolute;
    width: 170px;
    height: 50px;
    border-radius: 40px;
    opacity: 1;
    top:400px;
    background: linear-gradient(291deg, #FD4E1F 7%, #FFA800 90%);
    color: #FFFFFF;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out; /* Add transition for smoother hover effect */
    animation: zoom 0.8s infinite;
}

/* .module-box-1 .left-content-button:hover {
    font-size: 21px;
} */


/* 第一屏 */

.module-box-2 {
    position: relative;
    width: 100%;
    height: 537px;
    opacity: 1;
    background: #FFFFFF;
    text-align: center; /* Center align the content */
    padding-bottom: 20px; /* Added for spacing */
}

.module-box-2 .question {
    display: flex;
    align-items: center;
    width: 100%; /* Adjusted to fit the container */
    padding-top: 80px; /* Added for spacing */
}

.module-box-2 .question-title {
    width: 504px;
    height: 44px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto; 
}

.module-box-2 .question-wrapper {
    width: 1200px;
    height: 300px;
    justify-content: space-around;
    /* margin-top: 20px;  */
    display: flex;
    align-items: center;
    padding: 0px 0px;
    margin: 0 auto;
}

.module-box-2 .question-wrapper .square {
    width: 280px;
    height: 173px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Added box shadow */
    padding: 10px; /* Added for spacing */
    transition: all 0.3s ease-in-out; /* 增加平滑的过渡效果 */
}

.module-box-2 .question-wrapper .square:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.module-box-2 .question-wrapper .square img {
    max-width: 70px;
    max-height: 70px;
    display: block;
    margin: 15px auto; /* Reduce the bottom margin */
}

.module-box-2 .question-wrapper .square p {
    height: 28px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0px;
    color: #333333;
    transition: color 0.3s ease; /* 添加过渡效果 */
}

.module-box-2 .question-wrapper .square:hover p {
    color: #F16100; /* 悬停时文本颜色变为 #F16100 */
    cursor: pointer;
}


.button-wrapper {
    margin-top: 0px;
}

.custom-button {
    position: relative; /* Position relative for positioning the arrow */
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    border: none;
    border-radius: 5px; /* Adjust border-radius to your preference */
    width: 336px;
    height: 60px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; /* Add transition for smoother hover effect */
    margin: 5px auto; /* Updated to include top and bottom margin */
    animation: zoom 0.8s infinite;
    
}

.custom-button .arrow {
    position: absolute;
    background-image: url("../images/icon/箭头白色@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 8px;
    right: 18px;
    top: 45%;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    animation: arrow-animation2 0.4s infinite; /* 应用动画效果 */
}

.custom-button:hover .arrow {
    transform: translateX(5px);
}


@keyframes arrow-animation2 {
    0% { transform: translate(5px, 0); }
    50% { transform: translate(0, 0); }
    100% { transform: translate(5px, 0); }
}

/* 第三屏 产品强大*/
.module-box-3 {
    position: relative;
    top: 40px;
    width: 100%;
    height: 782px;
    background: #FFFBF7;
    text-align: center;
}

.module-box-3 .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
    position: relative; /* 为了定位 custom-content */
}


.module-box-3 .product .product-title {
    width: 144px;
    height: 44px;
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto 20px;
}

.module-box-3 .button-container {
    width: 1200px;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.module-box-3 .button {
    width: 300px;
    height: 60px;
    border-radius: 30px;
    margin: 0 0px;
    text-align: center;
    line-height: 60px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: 500;
}

.module-box-3 .button.active {
    background-color: #F16100;
    color: #fff;
}

.module-box-3 .button:not(.active):hover {
    background-color: #F16100;
    color: #fff;
}


.module-box-3 .product .custom-content {
    
    position: absolute; 
    top: calc(100% + 10px); 
    width: 1200px;
    height: 500px;
    display: flex;
    align-items: center;
}

.module-box-3 .product .custom-content .left-content {
    width: 480px;
    height: 420px;
    text-align: left; /* 添加这行 */
}

.module-box-3 .product .custom-content .left-content .big-text {
    width: 480px;
    height: 57px;
    opacity: 1;
	top:0;
	left:0;
	/* PC端/一级标题 */
	font-family: PingFang SC;
	font-size: 30px;
	font-weight: 500;
	line-height: 38px;
	letter-spacing: 0px;
	text-align: left;
	color: #171C3C;
}

.module-box-3 .product .custom-content .left-content .big-text-line {
    width: 480px;
    height: 4px;
    opacity: 1;
	top:100px;
	left:0;
	/* PC端/一级标题 */
	font-family: PingFang SC;
	font-size: 30px;
	font-weight: 500;
	line-height: 38px;
	letter-spacing: 0px;
	text-align: left;
	color: #171C3C;
}

.module-box-3 .product .custom-content .left-content img {
    width: 480px;
    height: 4px;
}


.module-box-3 .product .custom-content .left-content .small-texts {
    margin-top: 30px;
}


.module-box-3 .product .custom-content .left-content .small-texts .small-text-row {
    display: flex;
    align-items: center;
    position: relative; /* 让 small-text-row 成为定位上下文 */
    /*margin-top: 20px;*/
    margin-bottom: 20px;
}

.module-box-3 .product .custom-content .left-content .small-texts .small-text-row .icon {
    width: 20px;
    height: 20px;
    position: absolute; /* 相对于 small-text-row 定位 */
    left: 0;
    top: 5px; /* 相对于 small-text-row 上边距 */
}

.module-box-3 .product .custom-content .left-content .small-texts .small-text-row .small-text {
    margin-left: 28px;
    opacity: 1;
    /* PC端/副标题/分类标题 */
    font-family: PingFang SC;
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    display: flex;
    letter-spacing: 0px;
    color: #333333;
}


.module-box-3 .product .custom-content .left-content .consult-button {
    top: 60px;
    margin-left: 0px;
    width: 214px;
    height: 60px;
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    border: none;
    border-radius: 5px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    position: relative; /* 添加相对定位 */
    left: 0; /* 左对齐 */
    animation: zoom 0.8s infinite;
    
}

.module-box-3 .product .custom-content .left-content .consult-button .arrow {
    position: absolute;
    background-image: url("../images/icon/箭头白色@2x.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 10px;
    height: 8px;
    right: 55px;
    top: 45%;
    transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    animation: arrow-animation2 0.4s infinite; /* 应用动画效果 */
}

.module-box-3 .product .custom-content .left-content .consult-button:hover .arrow {
    transform: translateX(5px);
}



.module-box-3 .product .custom-content  .right-content {
    max-width: 750px;
    width: 750px;
    height: 494px;
    position: relative; /* Ensure relative positioning for absolute child */
    object-fit: cover;
}

.module-box-3 .product .custom-content .right-content img {
    width:100%;
    height: 100%;
    
}




/* 第四屏 常用功能*/

.module-box-4 {
    position: relative;
    width: 100%;
    height: 724px; /* Changed to auto for dynamic content */
    opacity: 1;
    background: #FFFFFF;
    text-align: center; /* Center align the content */
    padding-bottom: 20px; /* Added for spacing */
}

.module-box-4 .function {
    display: flex;
    align-items: center;
    width: 100%; /* Adjusted to fit the container */
    padding-top: 80px; /* Added for spacing */
}

.module-box-4 .function-title {
    width: 504px;
    height: 44px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto; 
}

.module-box-4 .function-wrapper {
    width: 1200px;
    height: 360px;
    margin: 40px auto; /* Updated to include top and bottom margin */
    position: relative; /* Ensure relative positioning for absolute child */
}


.module-box-4 .function-img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%; /* Set image width to 100% of its container */
    height: 100%; /* Set image height to 100% of its container */
    object-fit: cover; /* Maintain aspect ratio and fill container */
}

.module-box-4 .button-wrapper {
    margin-top: 0px;
}

.module-box-4 .button-wrapper .custom-button {
    position: relative; /* Position relative for positioning the arrow */
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    border: none;
    border-radius: 5px; /* Adjust border-radius to your preference */
    width: 214px;
    height: 60px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; /* Add transition for smoother hover effect */
}

.module-box-4 .button-wrapper .custom-button .arrow {
    right: 55px;
    top: 45%;
}


/* 第5屏 价格实惠*/
.module-box-5 {
    position: relative;
    width: 100%;
    opacity: 1;
    height: 685px;
    opacity: 1;
    background: #FFFBF7;
    text-align: center;
}

.module-box-5 .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* 隐藏超出容器的部分 */
}

.module-box-5 .background-img img {
    width: 1920px;
    height: 685px;
    margin-left: 50%; /* 水平居中 */
    transform: translateX(-50%); /* 水平居中 */
}

.module-box-5 .price-div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 498px;
}


.module-box-5 .price-div .title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;

	/* PC端/大标题/默认 */
	font-family: PingFang SC;
	font-size: 36px;
	 font-weight: 600;
	line-height: 44px;
	text-align: center;
	letter-spacing: 0px;

    letter-spacing: 0px;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto;
}

.module-box-5 .price-div .left-content,
.module-box-5 .price-div .right-content {
    position: absolute;
    width: 590px;
    height: 404px;
    top: 70px;
}
.module-box-5 .price-div .left-content {
     left: 0;
}
.module-box-5 .price-div .right-content {
     right: 0;
     
}

.module-box-5 .left-content .top-div,
.module-box-5 .right-content .top-div {
    border-radius:  20px 20px 0 0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    background-color: #F16100;
    height: 60px;
}

.module-box-5 .left-content .bottom-div,
.module-box-5 .right-content .bottom-div {
    border-radius: 0 0 20px 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: 364px;
}


.module-box-5 .right-content .top-div p,
.module-box-5 .left-content .top-div p {
    position: absolute; /* 使 p 元素绝对定位 */
    top:50%; /* 将 p 元素的顶部与 .top-div 元素的中心对齐 */
    left: 50%; /* 将 p 元素的左侧与 .top-div 元素的中心对齐 */
    transform: translate(-50%, -50%); /* 使用 CSS transform 属性将 p 元素在垂直和水平方向上都居中 */
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: 'opsz' auto;
    color: #FFFFFF;
}

/* 价格优惠的左侧，报价左侧的计算单元组-父 */
.module-box-5 .left-content .bottom-div .additional-divs {
    top:40px;
    position: relative;
}

/* 价格优惠的左侧，报价左侧的计算单元组-子 */
.module-box-5 .left-content .bottom-div .additional-div {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* 下边距 */
}

.module-box-5 .left-content .bottom-div .right-text {
    width: 300px;
    height: 38px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    /* 聚能播品牌色 */
    color: #F16100;
}

.module-box-5 .left-content .bottom-div .additional-div .text {
    margin-right: 10px;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    margin-left:50px;
    color: #333333;
}

.module-box-5 .left-content .bottom-div .additional-div .text-tips {
    width: 496px;
    height: 44px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 14px;
    font-weight: normal;
    line-height: 22px;
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    color: #969696;
    margin-left:50px;
    margin-top:20px;
    text-align: left; /* 添加这行 */
}


.module-box-5 .left-content .bottom-div .additional-div .rectangle-box {
    display: flex;
}

/* 价格优惠的左侧，计算输入框的左侧框 */
.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .left-rectangle {
    width: 200px;
    height: 34px;
    border-radius: 4px 0px 0px 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid  #FFCCA9;
    display: flex;
    align-items: center;
    padding-left: 10px; /* 文本与左边框的距离 */
}

/* 下拉选择框的包裹容器 */
.select-wrapper {
    width: 296px;
    height: 34px;
    border-radius: 4px 4px 4px 4px;
    opacity: 1;
    background: #FFFFFF;
    box-sizing: border-box;
    border: 1px solid #FFCCA9;
    display: flex;
    align-items: center;
   
}

/* 下拉选择框样式 */
.select-wrapper select {
    width: 100%;
    height: 100%;
    border: none; /* 移除默认边框 */
    outline: none; /* 移除默认外观 */
    font-family: inherit; /* 继承父元素字体 */
    font-size: inherit; /* 继承父元素字体大小 */
    line-height: inherit; /* 继承父元素行高 */
    background: transparent; /* 透明背景 */
    cursor: pointer; /* 鼠标指针样式 */
}


.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .left-rectangle input[type="text"] {
    /* PC端/三级标题/常规体 */
    font-family: PingFang SC;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    color: rgba(179, 72, 0, 0.8);
    border: none; /* 移除默认边框 */
    outline: none; /* 移除默认外观 */
    width: 100%; /* 填充整个宽度 */
    box-sizing: border-box; /* 计算宽度包含边框和填充 */
    text-align: left; /* 文本左对齐 */
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .left-rectangle input[type="text"]::placeholder {
    color: rgba(179, 72, 0, 0.8); /* 占位符文本颜色 */
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .left-rectangle input[type="text"]:focus {
    outline: none; /* 移除默认焦点样式 */
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box {
    display: flex;
    align-items: center;
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box input[type="text"] {
    font-family: PingFang SC;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
    color: rgba(179, 72, 0, 0.8);
    border: 1px solid #FFCCA9;
    border-radius: 4px;
    padding: 0 10px; /* 添加内边距 */
    height: 34px;
    box-sizing: border-box; /* 计算宽度包含边框和填充 */
    border-radius: 4px 0px 0px 4px;
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box input[type="text"]::placeholder {
    color: rgba(179, 72, 0, 0.8);
}



/* 价格优惠的左侧，计算输入框的右侧框 */
.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .right-rectangle {
    width: 70px;
    height: 34px;
    border-radius: 0px 4px 4px 0px;
    opacity: 1;
    background: #FFCCA9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-box-5 .left-content .bottom-div .additional-div .rectangle-box .right-rectangle p {
    /* PC端/三级标题/常规体 */
    font-family: PingFang SC;
    font-size: 18px;
    font-weight: normal;
    line-height: 26px;
    display: flex;
    align-items: center;
    letter-spacing: 0px;
    color: rgba(179, 72, 0, 0.8);
    margin: 0; /* 确保没有额外的边距 */
}






/* 价格优惠的右边区域 */
.module-box-5 .right-content .bottom-div p {
    position: absolute; /* 使 p 元素绝对定位 */
    top:110px; /* 将 p 元素的顶部与 .top-div 元素的中心对齐 */
    left: 50%; /* 将 p 元素的左侧与 .top-div 元素的中心对齐 */
    transform: translate(-50%, -50%); /* 使用 CSS transform 属性将 p 元素在垂直和水平方向上都居中 */
    width: 200px;
	height: 28px;
	opacity: 1;

	/* PC端/二级标题/未选中 */
	font-family: PingFangSC;
	font-size: 20px;
	font-weight: normal;
	line-height: 28px;
	display: flex;
	align-items: center;
	letter-spacing: 0px;

	/* 正文文字 */
	color: #333333;
}
.module-box-5 .right-content .bottom-div .box-container {
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.module-box-5 .right-content .bottom-div .box {
    width: 160px;
    height: 144px;
    border-radius: 10px;
    opacity: 1;
    background: #FFFFFF;
    box-shadow: 1px 1px 20px 0px rgba(228, 207, 197, 0.2702);
    border: 1px solid #F16100;
    margin-left: 2px; /* 左间距 */
    margin-right: 2px; /* 右间距 */
    cursor: pointer;
}

.module-box-5 .right-content .bottom-div .box img {
    width: 160px;
    height: 144px;
}

.module-box-5 .right-content .bottom-div .box:hover{
   background: rgba(255, 225, 128, 0.2);
}

.module-box-5 .right-content .bottom-div .custom-button {
    position: absolute;
    top: 310px;
    left: 130px;
    transform: translateX(-50%);
    width: 336px;
    height: 60px;
    opacity: 1;
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: 'opsz' auto;
    color: #FFFFFF;
    cursor: pointer;
}

.module-box-5 .right-content .bottom-div .custom-button .arrow {

    right: 55px;
    top: 45%;

}

.module-box-5 .right-content .bottom-div .custom-button:hover .arrow {
    transform: translateX(5px);
}



/* 第六屏 服务周到*/
.module-box-6 {
    position: relative;
    width: 100%;
    opacity: 1;
    height: 646px;
    opacity: 1;
    background: #ffffff;
    text-align: center;
}

.module-box-6 .sevice {
    display: flex;
    flex-direction: column; /* Align children in a column */
    align-items: center; /* Center align horizontally */
    padding-top: 80px;
}

.module-box-6 .sevice .sevice-title {
    width: 144px;
    height: 44px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto 20px; /* Add margin-bottom to create space below */
}

.module-box-6 .sevice .sevice-title-dec {
    width: 100%;
    height: 28px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0px;
    color: #0F132C;
    display: flex; /* Use flexbox for positioning */
    justify-content: center; /* Center align horizontally */
    align-items: center; /* Center align vertically */
}

.module-box-6 .sevice .additional-text {
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    color: #F16100;
}

.module-box-6 .sevice-wrapper {
    width: 1200px;
    height: 320px;
    justify-content: space-around;
    /* margin-top: 20px;  */
    display: flex;
    align-items: center;
    padding: 0px 0px;
    margin: 0 auto;
}

.module-box-6 .sevice-wrapper .sevice-wrapper-square {
    width: 380px;
    height: 234px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); /* Added box shadow */
    padding: 10px; /* Added for spacing */
    transition: all 0.3s ease-in-out; /* 增加平滑的过渡效果 */
}

.module-box-6 .sevice-wrapper .sevice-wrapper-square:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.module-box-6 .sevice-wrapper .sevice-wrapper-square img {
    width: 100px;
    height: 100px;
    display: block;
    margin: 15px auto; /* Reduce the bottom margin */
}

.module-box-6 .sevice-wrapper .sevice-wrapper-square p {
    height: 28px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;
    letter-spacing: 0px;
    color: #333333;
    transition: color 0.3s ease; /* 添加过渡效果 */
}

.module-box-6 .sevice-wrapper .sevice-wrapper-square:hover p {
    color: #F16100; /* 悬停时文本颜色变为 #F16100 */
    cursor: pointer;
    /* font-size: 22px; */
}

.button-wrapper {
    margin-top: 0px;
}

.module-box-6 .button-wrapper .custom-button {
    position: relative; /* Position relative for positioning the arrow */
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    border: none;
    border-radius: 5px; /* Adjust border-radius to your preference */
    width: 214px;
    height: 60px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; /* Add transition for smoother hover effect */
    animation: zoom 0.8s infinite;
}

.module-box-6 .button-wrapper .custom-button .arrow {

    right: 55px;
    top: 45%;

}

.module-box-6 .button-wrapper .custom-button:hover .arrow {
    transform: translateX(5px);
}


/* 第七屏 客户案例*/
.module-box-7 {
    position: relative;
    width: 100%;
    opacity: 1;
    height: 544px;
    opacity: 1;
    background: #FFFBF7;
    text-align: center;
}

.module-box-7 .case {
    display: flex;
    flex-direction: column; /* Align children in a column */
    align-items: center; /* Center align horizontally */
    padding-top: 80px;
}

.module-box-7 .case .case-title {
    width: 1200px;
    height: 44px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    letter-spacing: 0px;
    color: rgba(17, 17, 17, 0.88);
    margin: 0 auto 20px; /* Add margin-bottom to create space below */
}

.button-wrapper {
    margin-top: 0px;
}


.module-box-7 .button-wrapper .custom-button {
    position: relative; /* Position relative for positioning the arrow */
    background: linear-gradient(283deg, #FD4E1F 7%, #FFA800 89%);
    border: none;
    border-radius: 5px; /* Adjust border-radius to your preference */
    width: 214px;
    height: 60px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    color: #FFFFFF;
    cursor: pointer;
    overflow: hidden; 
    transition: transform 0.3s ease-in-out; /* Add transition for smoother hover effect */
    animation: zoom 0.8s infinite;
}

.module-box-7 .button-wrapper .custom-button .arrow {

    right: 55px;
    top: 45%;

}


.module-box-7 .case-wrapper {
    width: 1200px;
    height: 280px;
    display: flex;
    align-items: flex-start;
    padding: 20px 0; /* 上下边距 20px */
    margin: 0px auto; /* 上下边距 20px，左右自动居中 */
    justify-content: space-between;
    flex-wrap: wrap;
}


.module-box-7 .case-wrapper .case-wrapper-square {
    width: 284px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1); /* Added box shadow */
    padding: 10px; /* Added for spacing */
    transition: all 0.3s ease-in-out; /* 增加平滑的过渡效果 */
    display: flex; /* 使用 Flexbox */
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
}

.module-box-7 .case-wrapper .case-wrapper-square img {
    width: 150px;
    height: 65px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 添加过渡效果 */
    transform-origin: center; /* 设置变换原点为中心 */
}

.module-box-7 .case-wrapper .case-wrapper-square:hover img {
    transform: scale(1.2); /* 将图片放大1.2倍 */
    cursor: pointer;
}

/* .module-box-7 .case-wrapper .case-wrapper-square:hover {
    transform: translateY(-10px);
    cursor: pointer;
} */


 /* 第八屏 slogan*/
 .module-box-8 {
    position: relative;
    width: 100%;
    height: 336px;
    text-align: center;
}

.module-box-8 .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.module-box-8 .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.module-box-8 .content {
    position: absolute;
    left: 50%;
    top:30%;
    transform: translateX(-50%);
    width: 1200px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.module-box-8 .content .text {
    text-align: left;
    margin-bottom: 20px;
    opacity: 1;
    font-family: PingFang SC;
    font-size: 30px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0px;
    color: #FFFFFF;
}

.module-box-8 .button-consult {

    border: none;
    border-radius: 2px; 
    padding: 15px 30px;
    opacity: 1;
    background: #FFFFFF;
    cursor: pointer;
    width: 214px;
    height: 60px;
    border-radius: 6px;
    opacity: 1;
    
    transition: transform 0.3s ease-in-out; 
    position: relative; /* 添加相对定位，以便相对于按钮定位箭头图标 */
}

.module-box-8 .button-consult .text {
    color: #F16100;
    font-family: PingFang SC;
    font-size: 20px;
    font-weight: normal;
    line-height: 28px;
    letter-spacing: 0px;
    font-variation-settings: "opsz" auto;
    display: inline-block; /* 设置为内联块元素，以便应用transform属性 */
    animation: text-animation 0.8s infinite; /* 应用动画效果 */
}

@keyframes text-animation {
    0% { transform: scale(1); }
    50% { transform: scale(0.95); }
    100% { transform: scale(1); }
}


.module-box-8 .button-consult .arrow-icon {
    position: absolute; /* 绝对定位箭头图标 */
    top: 50%; /* 将箭头图标垂直居中 */
    right: 55px; /* 距离按钮文字右侧 5px */
    transform: translateY(-50%); /* 调整垂直居中 */
    transition: transform 0.3s ease-in-out; /* 添加过渡效果 */
    width: 10px;
    height: 8px;
    /* 其他样式 */
    animation: arrow-animation 0.4s infinite; /* 应用动画效果 */
}

.module-box-8 .button-consult:hover .arrow-icon {
    /* transform: translate(5px, -50%); */
    /* 其他样式 */
    /* animation: none; 悬停时停止原有的动画 */
}

@keyframes arrow-animation {
    0% { transform: translate(5px, -50%); }
    50% { transform: translate(0, -50%); }
    100% { transform: translate(5px, -50%); }
}


 /* 页脚*/
 .footer {
    position: relative;
    width: 100%;
    height: 362px;
    text-align: center;
    background: #F7F9FD;
}

 .footer .footer-box {
	display: flex;
    align-items: center;
	width: 1200px;
	margin: 0 auto;
	position: relative;
    height: 362px;
    padding: 0px 0px;
    margin: 0 auto;
}
 .footer .footer-box .left-content, .right-qr {
	width: 600px;
	height: 258px;
	position: absolute;
	top: 0;
}
 .footer .footer-box .left-content {
	left: 0;
}
 .footer .footer-box .right-qr {
	left: 600px; /* 让 right-qr 在 left-content 右侧 */
}

 .left-content img {
	position: absolute;
	top: 40px;
	left:0;
}

.left-content .left-content-text {
	position: absolute;
	top: 164px;
	left: 0;
	width: 350px;
	height: 44px;
	opacity: 1;
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	letter-spacing: 0px;
	color: #4B5463;
	text-align: left;
}

.footer .footer-box .line {
    width: 1200px;
    height: 0;
    opacity: 0.8;
    /* border: 1px solid #A1A1A1;*/
    border: 1px solid #D9D9D9;
    position: absolute; /* 将其设置为绝对定位 */
    top: 258px; /* 定位到父元素的顶部 */
    left: 50%; /* 将其左侧与父元素中心对齐 */
    transform: translateX(-50%); /* 将其左侧移动到父元素中心 */
}

.footer .footer-box .footer-text {
    margin-top: 220px; /* 与 .line 之间的距离 */
    opacity: 1;
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	line-height: 22px;
	letter-spacing: 0px;
	font-variation-settings: "opsz" auto;
	color: #696969;
    text-align: left;
    width: 917px;
	height: 44px;
}


 .footer .footer-box .right-qr .right-qr-wrapper {
	right: 0;
    top: 40px;
    height: 177px;
    position: absolute;
    align-items: flex-start;
    margin: 0px auto;
    justify-content: space-between;
    flex-wrap: wrap;

}

 .footer .footer-box .right-qr .right-qr-wrapper .qr-code {
	display: inline-block;
	width: 140px;
	height: 140px;
	margin-right: 50px;
	padding:6px;
	background:white;
}
 .footer .footer-box .right-qr .right-qr-wrapper .qr-code img {
	width: 100%;
	height: 100%;
}
 .footer .footer-box .right-qr .right-qr-wrapper .qr-description {
	margin-top:10px;
	opacity: 1;
	font-family: PingFang SC;
	font-size: 14px;
	font-weight: normal;
	line-height: 28px;
	text-align: center;
	letter-spacing: 0px;
	color: #4B5463;
}


