/* 字体引用 */
@font-face {
    font-family: 'DIN Alternate-Bold';
    src: url('../font/D-DIN-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}


/* 字体引用结束 */

/* 默认样式 */
* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    font-size: inherit;
} 

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-family: PingFang SC, '微软雅黑' ; 
}

.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; 
}

@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; 
    }
}