/* 字体引用 */
@font-face {
    font-family: 'Roboto-Thin';
    src: url('../../font/Roboto-Thin.ttf');
    font-weight: 300;
    font-style: normal;
} 
@font-face {
    font-family: 'Roboto-Regular';
    src: url('../../font/Roboto-Regular.ttf');
    font-weight: 400;
    font-style: normal;
} 
@font-face {
    font-family: 'Roboto-Bold';
    src: url('../../font/Roboto-Bold.ttf');
    font-weight: 600;
    font-style: normal;
} 
@font-face {
    font-family: 'Montserrat-Light';
    src: url('../../font/Montserrat-Light.otf');
    font-weight: 300;
    font-style: normal;
} 
@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../../font/Montserrat-Regular.otf');
    font-weight: 400;
    font-style: normal;
} 
@font-face {
    font-family: 'SourceHanSansCN-Medium';
    src: url('../../font/SourceHanSansCN-Medium.otf');
    font-weight: 500;
    font-style: normal;
}   
@font-face {
    font-family: 'SourceHanSansCN-Bold';
    src: url('../../font/SourceHanSansCN-Bold.otf');
    font-weight: 600;
    font-style: normal;
} 

/* 字体引用结束 */

/* 默认样式 */
* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    font-size: inherit;
    box-sizing: border-box;
} 

a {
    color: inherit;
    text-decoration: none;
    font-size: inherit;
    font-weight: inherit;
    font-family: inherit;
    line-height: inherit;
}

hr {
    border: 0;
    display: block;
}
 
i {
    font-style: normal;
}

input,
textarea {
    font-size: inherit;
    font-family: inherit;
    background: transparent;
}

input:focus-visible,
textarea:focus-visible,
input:focus,
textarea:focus {
    background: transparent;
    outline: none;
}

input:-webkit-autofill {
    box-shadow: none;
    background-color: transparent !important;
    -webkit-text-fill-color: #313336;
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    outline: none;
    -webkit-text-fill-color: #313336;
    transition: background-color 5000s ease-out 0.5s;
}


select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    outline: none;
    border: none;
    /* background: url(../images/icon_down.png) no-repeat calc(100%) center; */
    padding-right: 1.4rem;
    background-size: 0.8rem auto;
    font-size: inherit;
}

select::-ms-expand {
    display: none;
}

body *::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

body *::-webkit-scrollbar-thumb {
    width: 3px;
    border-radius: 1px;
    background: #ddd;
}

body *::-webkit-scrollbar-track {
    width: 3px;
    border-radius: 1px;
    background: transparent;
}

html,
body {
    -webkit-text-size-adjust:none;
    width: 100%;
    position: relative;
    overflow-x: hidden;
    font-weight: 400;
    font-family:Roboto-Regular,Montserrat-Regular ; 
}

.pc {
    display: block;
}

.wap {
    display: none !important;
}
.content{
    overflow-x: hidden;
    width: 100%;
}
.bg {
    width: 100%;
    display: block;
    transform: scale(1);
    transition: all 0.5s ease 0s;
}
.wpl{
    padding-left: 10.94vw;
    box-sizing: border-box;
}
.wpr{
    padding-right: 10.94vw;
    box-sizing: border-box;
}
.wml{
    margin-left: 10.94vw; 
}
.wmr{
    margin-right: 10.94vw; 
}

/* 提示信息 */
#toastbody {
    position: fixed;
    z-index: 100;
    top: 12vh; 
    left: 0;
    width: 100%;
    transition: opacity 1.5s ease 0s;
    text-align: center;
}
#toast {
    box-sizing: border-box; 
    max-width: 90vw;
    display: inline-block;
    text-align: center;
    background: #313336;
    box-shadow: 0px 0.8rem 1rem 0px rgba(49, 51, 54, 0.1200);
    border-radius: 0.4rem;
    line-height: 22px;
    /* margin: 0 auto; */
    padding: 8px 2rem;
    font-size: 16px;
    color: #FFFFFF;  
}
@keyframes slideToRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(2rem);
    }
    100% {
        transform: translateX(0);
    }
} 
/* 移动端兼容 */
@media screen and (max-width:750px) {
 
    .pc {
        display: none !important;
    }

    .wap {
        display: block !important;
    } 
    .wpl{
        padding-left: 4vw;
        box-sizing: border-box;
    }
    .wpr{
        padding-right: 4vw;
        box-sizing: border-box;
    }
    .wml{
        margin-left: 4vw; 
    }
    .wmr{
        margin-right: 4vw; 
    }
    
    #toast {
        padding: 8px 16px;
        font-size: 1.3rem;  
    }
}