:root{
    --brand-color: rgba(246, 93, 114, 1);
    --brand-color-10: rgba(246, 93, 114, 0.1);
    --brand-color-20: rgba(246, 93, 114, 0.2);
    --brand-color-30: rgba(246, 93, 114, 0.3);
    --brand-color-40: rgba(246, 93, 114, 0.4);
    --brand-color-50: rgba(246, 93, 114, 0.5);
    --brand-color-60: rgba(246, 93, 114, 0.6);
    --brand-color-70: rgba(246, 93, 114, 0.7);
    --brand-color-80: rgba(246, 93, 114, 0.8);
    --brand-color-90: rgba(246, 93, 114, 0.9);
}
html,body{
    margin: 0;
    padding: 0;
    scrollbar-width: none; /* 隐藏滚动条 */
    background-color: #f6f7fb;
}
::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}

.container-fluid{
    padding: 0;
}
.container{
    padding: 0;
}
@media (min-width: 1200px){
    .container {
        width: 1200px;
    }
}
@media (min-width: 1400px){
    .container {
        width: 1440px;
    }
}
@media (max-width: 1400px) {
    .container-fluid{
        width: 1440px;
    }
}
a:link{text-decoration:none;   /* 指正常的未被访问过的链接*/}
a:visited{text-decoration:none; /*指已经访问过的链接*/}
a:hover{text-decoration:none;/*指鼠标在链接*/}
a:active{text-decoration:none;/* 指正在点的链接*/}

.page{
    /*padding-top: 50px;*/
    box-sizing: border-box;
    min-height: 100vh;
    position: relative;
    padding-bottom: 400px;
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus{
    outline: 0;
}
.crumbs{
    padding: 20px 0;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.1px;
    color: rgba(56, 56, 56, 1);
}
.crumbs-a, .crumbs-a:hover, .crumbs-a:focus, .crumbs-a:active{
    cursor: pointer;
    color: rgba(56, 56, 56, 1);
}
.crumbs-s{
    color: rgba(166, 166, 166, 1);
}
.header-father{
    background-color: white;
}
.header{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-left{
    display: flex;
    justify-content: center;
    align-content: center;
}
.header-left img{
    width: auto;
    height: 32px;
}
#menu{
    width: auto;
    height: 22px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
}
#menu li.menu-one{
    list-style: none;
    position: relative;
    height: 22px;
    line-height: 22px;
    box-sizing: border-box;
}
#menu li.menu-one:not(:last-child){
    margin-right: 64px;
}
#menu li.menu-one a{
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
    font-size: 18px;
}
#menu li.active a{
    color: var(--brand-color);
    position: relative;
    font-weight: 400;
    font-size: 18px;
}
#menu li.active a:after{
    content: "";
    width: 20px;
    height: 3px;
    border-radius: 2px;
    background-color: var(--brand-color);
    position: absolute;
    left: 50%;
    bottom: -15px;
    transform: translateX(-50%);
}

.footer{
    background-color: black;
    width: 100%;
    padding: 74px 0;
    height: 400px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url("../imgs/footer-bg.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.footer-one{
    width: 100%;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
}
.footer-one-left{
    display: flex;
    justify-content: space-between;
}
.footer-one-left-col{
    display: flex;
    flex-direction: column;
    margin-right: 50px;
}
.footer-one-left-col a{
    font-size: 18px;
    font-weight: 400;
    line-height: 21.1px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}
.footer-one-left-col a:not(:first-child){
    margin-top: 35px;
}
.footer-one-left-col span{
    font-size: 18px;
    font-weight: 700;
    line-height: 21.1px;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    margin-bottom: 10px;
}
.footer-one-left-col span img{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}
.footer-one-contact{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 30px;
}
.footer-one-contact-one{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-one-left-col-tel{
    margin-top: 0!important;
}
.footer-one-right{
    display: flex;
    justify-content: center;
}
.footer-one-right-col {
    width: 140px;
    display: flex;
    flex-direction: column;
}
.footer-one-right-col:last-child{
    margin-left: 30px;
}
.footer-one-right-col .qrcode_img{
    width: 132px;
    height: 132px;
}
.footer-one-right-col p{
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    margin-top: 10px;
    color: rgba(0,0,0,0.3);
}
.footer-desc {
    box-sizing: border-box;
    position: relative;
    margin-top: 63px;
}
.footer-desc-inner{
    display: flex;
    justify-content: flex-start;
    align-content: center;
}
.footer-desc a{
    font-size: 14px;
    font-weight: 400;
    line-height: 16.41px;
    color: rgba(166, 166, 166, 1);
}
