@charset "utf-8";

/*reset*/

body,
html {
    padding: 0;
    margin: 0;
    min-width: 1080px;
    width: 100%;
    height: 100%;
}

img {
    border: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
hr,
blockquote,
form,
ul,
ol,
li,
p,
pre,
dl,
dt,
dd,
fieldset,
legend,
button,
input,
textarea,
th,
td,
figure {
    padding: 0;
    margin: 0;
}

ul,
ol,
li {
    list-style: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset {
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

textarea {
    resize: none;
}

select {
    line-height: 22px;
    line-height: 18px;
    padding: 2px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
}

input::-ms-clear {
    display: none;
}

input {
    outline: none;
}

a {
    text-decoration: none;
    color: initial;
}


/*滚动条样式*/

::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

::-webkit-scrollbar-track {
    background-color: inherit;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background-color: #E6E6E6;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}


/* @font-face {
  font-family: "OPPOSans-B";
  src: url("../fonts/OPPOSans-B.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: "SourceHanSerifCN-Bold";
    src: url("../fonts/SourceHanSerifCN-Bold.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "SourceHanSerifCN-Heavy";
    src: url("../fonts/SourceHanSerifCN-Heavy.otf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: "SourceHanSerifCN-SemiBold";
  src: url("../fonts/SourceHanSerifCN-SemiBold.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SourceHanSerifCN-Medium";
  src: url("../fonts/SourceHanSerifCN-Medium.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SourceHanSerifCN-Regular";
  src: url("../fonts/SourceHanSerifCN-Regular.otf");
  font-weight: normal;
  font-style: normal;
} */

.fixed-aside {
    position: fixed;
    right: 74px;
    bottom: 300px;
    z-index: 999;
}

.fixed-xs-icon {
    cursor: pointer;
    width: 122px;
    height: 120px;
    background-image: url('../images/fixed-xs-icon.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

#toastTip {
    display: none;
    position: fixed;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.1rem .16rem;
    min-width: 18%;
    max-width: 80%;
    /* 这里最大宽度可能不生效，内容过多展示宽度50%会折行 */
    line-height: 0.4rem;
    font-size: 0.28rem;
    text-align: center;
    color: #ffffff;
    background-color: rgba(0, 0, 0, .7);
    border-radius: 0.1rem;
    z-index: 100;
}