body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
select,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

address,
cite,
dfn,
em,
i,
var {
    font-style: normal;
}

small {
    font-size: 12px;
}

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

a {
    text-decoration: none;
    outline: none;
}

a:hover {
    text-decoration: none;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

button,
input,
select,
textarea {
    font-size: 100%;
    outline: none;
}

input[type="submit"],
input[type="password"],
input[type="reset"],
input[type="button"],
button {
    -webkit-appearance: none;
}

input::-ms-clear,
input::-ms-reveal {
    display: none;
}

textarea {
    resize: none;
}

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

img {
    border: none;
    vertical-align: top;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
section,
summary {
    display: block;
}

audio,
canvas,
video {
    display: inline-block;
}

body {
    height: 100%;
    width: 100%;
    margin: 0px;
    /* background: #000000; */
    overflow-y: scroll;
}

[v-cloak] {
    display: none;
}

div {
    /* user-select: none; */
}

/*常用布局 加类名 就可以   start*/

.fl {
    float: left;
}

.fr {
    float: right;
}

.clr {
    clear: both;
}

/*常用布局 加类名 就可以  end         */
/* input初始化 */
input {
    border: none;
    outline: none;
    background-color: transparent;
}

/* 定义flex布局类名 */
.flex-x-start {
    display: flex;
    justify-content: start;
    align-items: center;
}

.flex-x-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-x-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-y-start {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.flex-y-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.flex-y-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.flex-x-end {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.w100 {
    width: 100%;
    height: auto;
}

.w50 {
    width: 50%;
    height: auto;
}

.h100 {
    height: 100%;
    width: auto;
}

.wh100 {
    height: 100%;
    width: 100%;
}

/*chrome 滚动条*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background-color: black;
    border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    margin-right: 10px;
    background-color: #999;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:vertical {
    height: 6px;
}

::-webkit-scrollbar-corner {
    background-color: #F5F5F5;
}

::-webkit-scrollbar-resizer {
    background-color: #F5F5F5;
}

/* @font-face {
    font-family: 'Nebula';
    src: url('../../src/assets/font/FontsFree-Net-Nebula.ttf');
  }  */
.fNevula {
    font-family: "Nebula";
}

.GothamBook {
    font-family: GothamBook-Regular, GothamBook;
}

.cursor-p {
    cursor: pointer;
}


:root {
    /* en 1.167 */
    /* cn 1.5 */
    --l-height: 1.5;
    /* --animatio-width-te: 0px;
    --animatio-time-te: 0s; */
}

.more-btn {
    color: #111111;
    cursor: pointer;
    margin-left: 8px;
    font-family: PingFang SC;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0em;
    text-align: left;
    white-space: nowrap;
}

/*--------------------------滚动条样式 公共的start-------------------------*/

/* 表单错误提示 */

.error-text {
    height: 24px;
    font-size: 12px;
    font-family: GothamBold;
    font-weight: 400;
    color: #F35843;
    line-height: 24px;
    margin-left: 16px;
}

.btn-box-active {
    background: #fed429 !important;
    color: #111111 !important;
    cursor: pointer !important;
}


/* 清除 input text=number 是显示上下选择按钮 */
::-webkit-inner-spin-button {
    display: none;
}
