/*banner*/
.banner_content{
    background: url("/assets/img/bn1.jpg") no-repeat center;
    padding: 60px 0;
    background-size: cover;
    
}
.banner_main{
    display: flex;
    justify-content: space-between;
    position: relative;
}
.left_content{
    display: flex;
    flex-direction: column;
    margin-right: 80px;
    
}

.left_content h1{
    font-weight: 700;
    font-size: 60px;
    color: #f7e3ac;
    line-height: 76px;
    letter-spacing: 5px;
    margin: 16px 0 40px 0;
    animation: moveToBottom 1s ease-out forwards; 
}
.fun_item{
    display: flex;
    align-items: center;
    animation: moveToRight 1s ease-out forwards;
}
.fun_item p{
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    line-height: 45px;
    text-align: left;
}

.support_content{
    margin-top: 72px;
    display: flex;
    margin-bottom: 69px;
    animation: moveToLeft 1s ease-out forwards;
}
.support_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 36px;
}
.support_item img{}
.support_item span{
    color: #fff;
    margin-top: 8px;
}
.support_item img{
    width: 74px;
    height: 74px;
}

/*动画样式*/
@keyframes moveToRight {  
  from {  
    transform: translateX(-80px); /* 初始位置，即元素当前位置 */  
  }  
  to {  
    transform: translateX(0px); /* 目标位置，向右移动300px */  
  }  
}
@keyframes moveToLeft {  
  from {  
    transform: translateX(80px); /* 初始位置，即元素当前位置 */  
  }  
  to {  
    transform: translateX(0px); /* 目标位置，向右移动300px */  
  }  
}
@keyframes moveToBottom {  
  from {  
    transform: translateY(-80px); /* 初始位置，即元素当前位置 */  
  }  
  to {  
    transform: translateX(0px); /* 目标位置，向右移动300px */  
  }  
}
.right_content{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btm_tab{
    position: absolute;
    display: flex;
    justify-content:space-around;
    bottom: -115px;
    left: 0;
    width: 100%;
    height: 108px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 1.103px 3.845px 16px 0px rgba(81, 82, 85, 0.12);
}
.btm_tab_title{
    display: flex;
    align-items: center;
    position: relative;
}
.btm_tab_item{
    display: flex;
    align-items: center;
}
.btm_tab_title span{
    font-weight: bold;
    color: #333333;
    font-size: 20px;
}


/*为什么选择我们*/
.why_sele_content{
    background-color:#f8f9fa ;
    padding: 60px 0 60px 0;
}
.top_title_content p{
    color: #666;
    text-align: center;
}
.why_card_content{
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}
.why_card_item{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 370px;
    height: 310px;
    border-radius: 19px;
    background: #fff;
    box-shadow: 0px 0px 16.5px 0px rgba(55, 77, 116, 0.08);
    margin-bottom: 94px;
    background-color: #f7fafd;
    padding: 36px 20px 20px 30px;
    margin-right: 60px;
    animation:none;
}



.why_card_item:nth-child(3n){
    margin-right: 0px !important;
}

.why_card_item:hover {  
  animation: slideUp 0.5s ease forwards; /* 触发动画，执行完成后保持最后一帧状态 */  
}

@keyframes slideUp {  
  from {  
    transform: translateY(0);  
    opacity: 1;  
  }  
  to {  
    transform: translateY(-20px);  
    opacity: 0.8;  
  }  
}

.why_card_item img{
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
}

.show_module{
    margin-top: 18px;
}
.why_card_item h4{
    font-weight: 400;
    font-size: 22px;
    color: #3086ff;
    line-height: 28px;
}
.show_module span{
    position: relative;
    color: #666;
    display: block;
    margin-bottom: 8px;
}
.show_module span::after{
    content: "";
    position: absolute;
    top: 8px;
    left: -16px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background-color: #3086ff;
}
.why_more{
    color: #3086ff !important;
} 

/*用户评价*/
.user_eval_content{
    background-color: #f2f2f2;
    padding: 60px 0;
}
.user_img{
    width: 80px !important;
    height: 80px !important;
}
.swiper_content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 110px;
}
.head_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.starbox{
    display: flex;
}
.starbox img{
    width: 12px;
    height: 12px;
}
.swiper_content span{
    margin: 16px 0;
}

.eval_title{
    position: relative;
    width: 80% !important;
    align-self: start;
}
.eval_title::after{
    content: "";
    position: absolute;
    top: -68px;
    left: -67px;
    background: url("/assets/img/sm1.png") no-repeat center;
    background-size: 60px;
    width: 60px;
    height: 60px;
}
.el-carousel__item{
    background-color: #fff !important;
}
/*公共样式*/
.center_style{
    position: relative;
    width: 65%;
    height: 100%;
    margin: 0 auto;
}
.el-icon-success:before {
    content: "\e720";
    color:#008fff ;
    margin-right: 16px;
    font-size: 16px;
}
.wh100{
    width: 100%;
    height: 100%;
}
.core_title{
    margin-bottom: 20px;
    text-align: center;
    font-size: 32px;
    font-weight: 400px;
    color: #fff;
}
.core_title::after{
    position: relative;
    top: 0px;
    left: 12px;
    content: '';
    display: inline-block;
    width: 40px;
    border-top: 1px solid #fff;
    vertical-align: middle;
}
.core_title::before{
    position: relative;
    top: 0px;
    right: 12px;
    content: '';
    display: inline-block;
    width: 40px;
    border-top: 1px solid #fff;
    vertical-align: middle;
}
.title_style{
    margin-bottom: 43px;
    text-align: center;
    font-size: 32px;
    font-weight: 400px;
    color: #111;
}
.title_style::after{
    position: relative;
    top: 0px;
    left: 12px;
    content: '';
    display: inline-block;
    width: 40px;
    border-top: 1px solid #111;
    vertical-align: middle;
}
.title_style::before{
    position: relative;
    top: 0px;
    right: 12px;
    content: '';
    display: inline-block;
    width: 40px;
    border-top: 1px solid #111;
    vertical-align: middle;
}
.pd{
    padding: 20px 20px 20px 20px;
}
.bd{
    border: 1px solid red;
}
.top_title{
    margin-bottom: 60px;
}
/*底部区域*/
.footer_content{
    background-color: #111;
    padding: 50px 0 17px;
}
.footer_main{
    display: flex;
    flex-direction: column;
}
.first_row{
    display: flex;
}
.first_row_item{
    display: flex;
    flex-direction: column;
    margin-right: 76px;
}
.first_row_item:last-child{
   margin-right: 0px !important;
   
}
.first_row_item span{
    margin-bottom: 20px;
}
.first_row_item span,
.tag_item{
    color: #aeaeae;
    padding-right: 40px;
    display: inline-block;
    font-size: 12px;    
}

.tag_content{
    display: flex;
}
.tag_content .tag_item{
    margin-right: 34px;
}
.tag_content .tag_item:last-child{
    margin-right: 0px !important;
    margin-left: 27px;
}
.two_row{
    display: flex;
}
.two_row_item{
    width: 33%;
    margin-top: 50px;
    color: #aeaeae ;
}
