*{
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    list-style: none;
    font-family: PingFangSC, PingFang SC;
}
#header-container{
    width: 100%;
    height: 220px;
    position: absolute;
    z-index: 10;
}
#header{
    width: 100%;
    /* height: 64px; */
    background: #FFFFFF;
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
}
.header-top{
    width: 100%;
    height: 2px;
    background: #3677F9;
}
.header-box{ 
    width: 1200px;
    /* height: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}
.logo-img{
    width: 96px;
    height: 76px;
    display: block;
    /* margin-right: 44px; */
}
.menu{
    width: 812px;
    padding-top: 23px;
    padding-bottom: 21px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    z-index: 105;
    position: relative;
}
.menu-item{
    position: relative;
    cursor: pointer;
}
.icon-active{
    width: 14px;
    height: 6px;
    position: absolute;
    bottom: -29px;
    left: 50%;
    transform: translateX(-50%);
}
.menu a{
    font-family: PingFangSC, PingFang SC;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-decoration: none !important;
}
.menu .active{
    color: #2E6BF6;
    font-weight: bold;
}
.header-right{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 36px;
    padding-top: 23px;
    padding-bottom: 19px;
    box-sizing: border-box;
}
.search-box{
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
    color: #2C78F6;
}
.search{
    display: flex;
    align-items: center;
    justify-content: center;   
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #2C78F6;
    margin-right: 7px;   
}
.icon-search{
    width: 12px;
    height: 12px;
}
.verline{
    width: 1px;
    height: 10px;
    background: #5E5E5E;
    border-radius: 1px;
    opacity: 0.5;
}
.login-box{
    position: relative;
    cursor: pointer;
    z-index: 110; 
}
.login-box a,.login-box span{
    font-family: PingFangSC, PingFang SC;
    font-size: 14px;
    color: #666666;
    line-height: 24px;
    text-decoration: none !important;
}
.person{
    width: 100px;
    padding: 10px 20px;
    position: absolute;
    top: 30px;
    left: -50px;
    background: #fff;
    text-align: center;
    color: #333;
    border-radius: 5px;
    z-index: 99999;
    display: none;
}
.login-box:hover .person{
    display: block;
}
.person:hover{
    display: block;
}
.login_imgs{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0;
    margin-top: 5px;
}

.person li{
    height: 30px;
}
.phone_number{
    font-size: 14px;
    color: #333;
    height: 30px;
    border-bottom: 1px solid #D3D3D3;
}
.real_name{
    font-size: 14px;
    color: red;
    margin-top: 10px;
}
.person li a{
    color: #333;
}
.banner-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 68px !important;
    /* position: absolute;
    top: 220px; */

}
.banner-container .banner-img{
    width: 100%;
    height: auto;
}
.second-menu-container{
    width: 1200px;    
    height: 98px;
    position: relative;
}
.second-menu{
    width: 1200px;    
    height: 98px;
    padding-left: 200px;
    box-sizing: border-box;
    margin-top: -68px;
    overflow-x: auto;  /* 横向滚动 */
    white-space: nowrap;  /* 不换行 */
    /* overflow: hidden; */
    display: flex;
    justify-content: flex-end;
}
/* 隐藏滚动条 */
.second-menu::-webkit-scrollbar{
    display: none;
}
.second-menu .second-menu-list{ 

    display: flex;
    transition: transform 0.3s ease;  /* ✅ 滚动动画 */
}
.second-menu li{
    height: 98px;
    padding: 0 20px;
    box-sizing: border-box;
    font-family: PingFangSC, PingFang SC;
    font-size: 22px;
    color: #FFFFFF;
    line-height: 30px;
    margin-left: 44px;
    border-radius: 0px 0px 12px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 17px;
    cursor: pointer;
    flex-shrink: 0;  /* 防止压缩 */
    white-space: nowrap;  /* 文本不换行 */
}
.second-menu .active{
    font-weight: bold;    
    background-color: #2E6BF6;   
}
.second-menu .active.red{
    background: linear-gradient( 180deg, #E64000 0%, #C81E00 100%);
    opacity: 0.9;   
}

.second-menu .icon-down{
    width: 20px;
    height: 10px;
    
}

/* 滚动按钮样式 */
.menu-scroll-btn{
    position: absolute;
    right: -57px;
    top: -40px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.menu-scroll-btn img{
    width: 10px;
    height: 20px;
}


.content-container{
    width: 1200px;
    margin: 64px auto 80px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content-container.big{
    width: 100%;
}
.content-img{
    width: 100%;
    height: auto;
    display: block;
}

/**************************底部 s***************************/
#footer-container{
    width: 100%;
    height: 380px;

}
.footer{ 
    width: 100%;
    height: 380px;
    background: #222222;
    box-shadow: inset 0px 1px 0px 0px rgba(0,0,0,0.08);
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    color: #FFFFFF;
}
.footer-service{
    width: 100%;
    height: 82px;
    background: rgba(244,244,244,0.1);
    box-shadow: inset 0px 1px 0px 0px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center; 
}
.footer-service-box{
    width: 1200px;
    display: flex; 
    align-items: center;
}
.footer-logo{
    width: 163px;
    height: 34px;   
    margin-right: 336px;
}
.icon-service{
    width: 32px;
    height: 33px;
}
.footer-tel{
    display: flex;
    align-items: center;    
}
.hn-tel{
    margin-left: 153px;    
}
.qg-tel{
    margin-left: 159px;
}
.hn-tel,.qg-tel{
    display: flex;
    flex-direction: column;
}
.hn-tel span,.qg-tel span{
    font-size: 10px;
    color: #FFFFFF;
    line-height: 14px;
    margin-bottom: 4px;
}
.hn-tel img,.qg-tel img{
    width: 146px;
    height: 18px;
}

.footer-main{ 
    width: 1200px;
    padding-top: 28px;
    padding-bottom: 25px;
    box-sizing: border-box;
    display: flex;
}
.footer-left{
    width: 500px;    
}
.footer-qrcode{
    display: flex;
    gap: 30px;
}
.footer-qrcode img{ 
    width: 104px;
    height: 104px;
}
.footer-qrcode li{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
}
.footer-qrcode li span{
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
}
.footer-right{
    flex:1;
    display: flex;
    flex-direction: row;
    gap: 56px;
}
.footer-menu h4{
    font-weight: bold;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 20px;
}
.footer-menu-line{
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.1;
    margin-top: 11px;
    margin-bottom: 8px;
}
.footer-menu-group{
    display: flex;
    gap: 24px;
}
.footer-menu ul{
    list-style: none;
}
.footer-menu ul li{
    margin-bottom: 9px;
}
.footer-menu ul li a{
    font-size: 12px;
    color: #FFFFFF;
    line-height: 17px;
}
.footer-line{
    width: 1200px;
    height: 1px;
    background: #FFFFFF;
    opacity: 0.1;
}
.footer-bottom{
    width: 1200px;
    margin-top: 22px;
    font-size: 12px;
    color: #FFFFFF;
    line-height: 20px;
    display: flex;
}
.footer-bottom .copyright{ 
    width: 500px;  
}
.footer-bottom .address{
    flex: 1;
}
