:root {
    --normal-bg: #ffffff;
}

@font-face {
    font-family: PingFangSC-Bold;
    src: url(../font/PingFang-Bold.ttf) format("truetype");
}

@font-face {
    font-family: PingFangSC-Medium;
    src: url(../font/PingFang-Medium.ttf) format("truetype");
}

@font-face {
    font-family: PingFangSC-Regular;
    src: url(../font/PingFang-Regular.ttf) format("truetype");
}



body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
form,
div,
article,
dialog,
dl,
dd {
    padding: 0;
    margin: 0;
    word-wrap: break-word;
    word-break: normal;
}

body {
    font-size: 16px;
    color: #000000;
    font-family: PingFangSC-Regular, PingFang SC, sans-serif;
    background-color: var(--normal-bg);
    min-width: 1650px;
}

ul,
ol {
    list-style-type: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
    margin: 0;
}

i,
b {
    font-style: normal;
    font-weight: normal;
}

em {
    font-style: oblique;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    text-decoration: none;
}

a img,
img {
    border: 0;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

a:hover {
    color: #1890FF;
}

img {
    padding: 0;
    margin: 0;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
    vertical-align: middle;
    object-fit: cover;
    user-select: none;
}

video {
    outline: 0;
}

textarea:focus {
    border: 1px solid #108ee9;
}

/*去除在Chrome中type=number的input输入框中的上下小箭头*/
input[type=number] {
    -moz-appearance: textfield
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

input,
textarea,
input:focus-visible,
textarea:focus-visible {
    outline: none;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

input {
    padding-left: 15px;
}

textarea {
    padding: 15px;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: PingFangSC-Bold;
} */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.mb-70 {
    margin-bottom: 70px !important;
}