/*导航样式*/

.banner{
    width: 100%;;
}
.banner .phone{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    font-size: 0.36rem;
    color: #fff;
    font-weight: bold;
    line-height: 1.4;
}
.yuyue{
    background-color: #fff;
    padding: 0.6rem 0.4rem;
}

.yuyue .title{
    font-size: 0.42rem;
    font-weight: bold;
    color:#000;
    text-align: center;
}
.yuyue .input-box{
    padding-top: 0.3rem;
}
.yuyue .input-box .label{
    width: 100%;
}
.yuyue .input-box .label font{
    width: 100%;
    font-size: 0.24rem;
    color: #e6322e;
}
.yuyue .input-box .con{
    width: 100%;
    padding-top: 0.1rem;
}
.yuyue .input-box .con .input-c{
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.2rem;
    box-sizing: border-box;
    font-size: 0.28rem;
    color: #111;
}

.yuyue .agree{
    display: flex;
    align-items: center;
}

.yuyue .agree .checkbox {
  position: relative;
  width: 16px;
  height: 16px;
  -webkit-appearance: none; /* 移除默认样式 */
  appearance: none;
  border: 1px solid #e6322e;
  border-radius: 3px;
  cursor: pointer;
  outline: none;
  margin-right: 0.1rem;
}

.yuyue .agree .checkbox:checked {
  background-color: #e6322e; /* 勾选后背景色 */
  border-color: #e6322e;
}

.yuyue .agree .checkbox:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.yuyue .agree .text{
    font-size: 0.24rem;
    color: #777;
}

.yuyue .agree .text a{
    font-size: 0.24rem;
    color: #e6322e;
}


.yuyue .button-box{
    padding-top: 0.3rem;
    position: relative;
}
.yuyue .button-box .item-button{
    width: 100%;
    animation: buttonAnimate 3s infinite;
    overflow: hidden;
    transform: translateZ(0);
}

.animation-light{
    position: absolute;
    top: 0;
    width: 3rem;
    height: 1rem;
    background-image: url('../images/light_animate.png');
    background-size: 3rem 1rem;
    animation:searchLights 2s linear infinite forwards; 
    -webkit-transform-style:preserve-3d;
    -webkit-backface-visibility:hidden;
    -webkit-perspective: 1000;
    transform: translateZ(0);
}

.yuyue .button-box .button-c{
    width: 100%;
    height: 0.88rem;
    line-height: 0.88rem;
    background-color: rgb(230, 50, 46);
    border-radius: 0.88rem;
    background-image: -webkit-linear-gradient(45deg, rgb(255, 84, 112), rgb(255, 23, 23));
    background-color: #E6322E !important;
    box-shadow: 0 0 0.05rem 0 rgba(0, 0, 0, 0.05);
    cursor: pointer;
    color: #fff;
    font-size: 0.32rem;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;
}

.section{
    padding: 0.3rem 0;
}

.section .title{
    font-size: 0.52rem;
    font-weight: bold;
    color:#000;
    text-align: center;
}
.section .sub-title{
    font-size: 0.28rem;
    color:#777;
    text-align: center;
    padding: 0.05rem 0 0.2rem;
}

.case-list{
    list-style: none;
    padding: 0 0.3rem;
}
.case-list li{
    width: 50%;
    float: left;
}

.case-list li .item-pad{
    background:#fff;
    border:1px solid #e0e0e0;
    line-height: 0;
    margin: 0.15rem;
    overflow: hidden;
    border-radius: 0.1rem;
}


.case-list li img{
    width: 100%;
    height: 2.2rem;
}
.case-list li .text{
    padding: 0.1rem 0.2rem 0.13rem;
    font-size: 0.24rem;
    line-height: 1.6;
}


.question{
    padding: 0 0.3rem;
}

.scroll-line {
    width: 100%;           /* 容器宽度 */
    overflow: hidden;       /* 隐藏溢出内容 */
    white-space: nowrap;    /* 不换行 */
    margin-bottom: 0.15rem;
    position: relative;
    height: 1rem;
}
.scroll-line .content {
    display: inline-block;
    white-space: nowrap;
}
.scroll-line .item-one {
    display: inline-block;
    user-select: none;
    margin-right: 0.3rem;
}

.scroll-line .item-one .item-pad{
    display: flex;
    align-items: center;
    color:#fff;
    padding: 0.15rem 0.2rem;
    background-color: #f88b39;
    font-weight: bold;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    cursor: pointer;
    font-size: 0.26rem;
}
.scroll-line .item-one:nth-child(2n) .item-pad{
    background-color: #e6322e;
}

.scroll-line .item-one img{
    width: 0.28rem;
    height: 0.28rem;
    margin-right: 0.15rem;
}


.about-box{
    background-color: #fff;
    margin: 0.15rem;
    position: relative;
}
.about-box .img{
    width: 70%;
    line-height: 0;
}
.about-box .img img{
    width: 100%;
    height: auto;
}
.about-box .introduce{
    background-color: #e6322e;
    padding: 0.3rem;
    font-size: 0.28rem;
    line-height: 1.8;
    width: 70%;
    position: absolute;
    right: 0;
    top: 20%;
    z-index: 1;
    color: #fff;
}



.copyright {
    width:100%;
    padding:0.3rem 0.1rem 1.5rem;
    font-size: 0.24rem;
    text-align: center;
    color: #555;
}

.footer{
    box-sizing: border-box;
    background-color: #fd2245;
    display: flex;
    align-items: center;
    padding:0.15rem 0.3rem;
    background-image: linear-gradient(90deg, #ff9233, #fe5136 31%, #fd2245 64%, #fd227a);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.footer .weixin{
    color: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 0.2rem;
    margin-left: 0.1rem;
    margin-right: 0.4rem;
}
.footer .weixin img{
    width: 0.4rem;
    height: 0.4rem;
    margin-bottom: 0.1rem;
}
.footer .call-phone{
    flex: 1;
    width: 100%;
    position: relative;
    border-radius:0.8rem;
    background-color: rgb(255, 231, 162);
    background-image: linear-gradient(90deg, rgb(255, 243, 218) 4%, rgb(255, 231, 162) 96%);
    animation: scale 4s linear infinite;
}
.footer .call-phone a{
    display: block;
    color: rgb(250, 24, 24);
    font-size: 0.36rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0;
}


.alert_box{
	width:80%;
	position: fixed;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%,-50%);
	transform:translate(-50%,-50%);
	background: #fff;
	box-sizing: border-box;
	border-radius: 12px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	z-index: 999999;
	display: none;
}
.alert_box_pad{
	padding:20px;
	flex-direction:column;
	display: flex;
	justify-content: center; /* 水平居中 */
	  align-items: center;     /* 垂直居中 */
	  font-size:14px;
}
  
.alert_box_tit{
	display: flex;
	justify-content: center; /* 水平居中 */
	  align-items: center;     /* 垂直居中 */
	  color:#333;
	  font-size:16px;
	  font-weight: bold;
	  margin-bottom: 10px;
}
.alert_box_tit img{
	width:24px;
	height:24px;
	margin-right:10px;
}
.alert_box_btn{
	margin-top:12px;
	padding:5px 15px;
	border-radius: 30px;
	color:#fff;
	font-size:15px;
	background: #28c347;
	cursor: pointer;
}


.yinsi-page{
    padding: 0.2rem 0.3rem;
    line-height: 1.8;
    font-size: 0.28rem;
}
.yinsi-page .title{
    padding-bottom: 0.3rem;
    font-size: .44rem;
    font-weight: bold;
    text-align: center;
}

.yinsi-page .ys-content{
    font-size: .32rem;
    line-height: 1.8;
    color: #111;
}