

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  text-align: left;
  background-color: #fff;
}


html,
body,
ul,
li,
ol,
dl,
dd,
dt,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
legend,
dl,
dt,
dd,
blockquote,
dfn,
img {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}

fieldset,
img {
  vertical-align: middle;
  border-style: none;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

ul,
ol {
  list-style: none;
}

li {
  list-style-type: none;
}

input {
  padding-top: 0;
  padding-bottom: 0;
  line-height: normal;
  font-family: Microsoft YaHei, Arial, sans-serif;
}

select,
input {
  /*vertical-align: middle;*/
}

select,
input,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input[type="text"],
input[type="password"],
textarea {
  outline-style: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

a {
  color: inherit;
  text-decoration: none;
  outline: 0;
}

i,
em {
  font-style: normal;
}

b,
strong {
  font-weight: bold;
}

button {
  overflow: visible;
  border: 0;
  background: none;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

label {
  display: inline-block;
}


.dib{
    display: inline-block;
}
.db{
    display: block;
}


.df{
    display: flex;
}
.justify-center{
    justify-content: center;
}
.justify-start{
    justify-content: flex-start;
}
.justify-end{
    justify-content: flex-end;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.align-center{
    align-items: center;
}
.align-start{
  align-items: flex-start;
}
.align-end{
  align-items: flex-end;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-column{
  flex-direction: column;
}


.text-center{
  text-align: center;
}


.c-pointer {
  cursor: pointer;
}

.c-not-allowed {
  cursor: not-allowed;
}


.text-ellipse{
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;

}

.container-inner::-webkit-scrollbar{
  /*滚动条整体样式*/
  width: 4px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.container-inner::-webkit-scrollbar-thumb{
  /*滚动条方块*/
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 5px #b1afaf;
  background: rgba(175, 175, 175, 0.5);
}

.container-inner::-webkit-scrollbar-track{
  /*滚动条里面轨道*/
  /* -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2); */
  /* border-radius: 10px; */
  /* background: #EDEDED; */
  border: none;
  background: none;
}

.no-repeat-size{
  background-repeat: no-repeat;
  background-size: cover;
}