@charset "utf-8";
* {
    /* border: 0; */
    font-style: normal;
    font-size: 100%;
    list-style: none;
   
    padding: 0;
    quotes: none;
    text-decoration: none;
    vertical-align: baseline;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

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

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption {
    margin: 0;
    padding: 0;
    border: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

body {
    font: 16px Space Grotesk, -apple-system, linkMacSystemFont, Helvetica Neue, Segoe UI, Roboto, Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
body::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 7px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

body::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    -webkit-box-shadow: inset 1 1 2px rgba(0, 0, 0, 0.2);
    background-color: #a8a8a8;
}

body::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    -webkit-box-shadow: inset 1 1 2px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #f3f3f3;
}

p {
	word-wrap: break-word
}

em,
i {
	font-style: normal
}

li {
	list-style: none
}

img {
    height: auto;
    max-width: 100%;
	border: 0;
	vertical-align: middle
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 100
}

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

a:hover {
	color: #fff;
	text-decoration: none
}
/* td{padding: 10px;} */

/* 定义淡入动画 */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /* 应用淡入动画 */
.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
  }
@media (min-width: 1025px) {
    * {
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}