@charset "utf-8";
* {
    /* border: 0; */
    font-style: normal;
    font-size: 100%;
    list-style: none;
    margin: 0;
    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, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    /* border: 0; */
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
    letter-spacing: .03em;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

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

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

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

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

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
}

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

  /* 应用淡入动画 */
.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
  }

  /* 定义从下向上渐入动画 不带opacity*/
@keyframes slideUpNoOpac {
  from {
    transform: translateY(50%);
  }
  to {
    transform: translateY(0);
  }
}
/* 定义从下向上渐入动画 */
@keyframes slideUp {
    from {
      transform: translateY(50%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
/* 应用从下向上渐入动画 */
  .slide-up {
    animation: slideUp 1s linear forwards;
  }
  .slide-up-no-opac {
    animation: slideUpNoOpac 1s linear forwards;
  }
  .slide-up3 {
    animation: slideUp 3s linear forwards;
  }
  .slide-up5 {
    animation: slideUp 5s linear forwards;
  }
  .slide-up7 {
    animation: slideUp 7s linear forwards;
  }

  @keyframes slideFromLeft {
    from {
      transform: translateX(-100%); /* 元素从屏幕左侧开始 */
      opacity: 0; /* 完全透明 */
    }
    to {
      transform: translateX(0); /* 元素移动到初始位置 */
      opacity: 1; /* 完全不透明 */
    }
  }
  @keyframes slideFromRight {
    from {
      transform: translateX(100%); /* 从右边界外开始 */
      opacity: 0; /* 初始透明度为0 */
    }
    to {
      transform: translateX(0); /* 移动到初始位置 */
      opacity: 1; /* 完全不透明 */
    }
  }
  .slide-from-left{
    animation: slideFromLeft 2s ease-out forwards; /* 应用动画 */
  }
  .slide-from-right{
    animation: slideFromRight 2s ease-out forwards; /* 应用动画 */
  }

html{font-size: 19.53px;}
@media screen and (min-width: 1920px) {
  html {
      font-size:100px
  }
}
@media screen and (min-width: 1440px) and (max-width:1919px) {
  html {
      font-size:75px
  }
}
@media screen and (min-width: 1280px) and (max-width:1939px) {
  html {
      font-size:66.67px
  }
}
@media screen and (min-width: 980px) and (max-width:1279px) {
  html {
      font-size:53.33px
  }
}
@media screen and (min-width: 768px)and (max-width:979px) {
  html {
      font-size:40px
  }
}
@media screen and (max-width: 767px) {
  html {
      font-size:33.23px
  }
}
/* 
@media screen and (max-width: 414px) {
  html {
      font-size:20.7
  }
} */
@media screen and (max-width: 375px) {
  html {
      font-size:19.53px
  }
}

@media screen and (max-width: 375px) {
  html {
      font-size:18.75px
  }
}

@media screen and (max-width: 320px) {
  html {
      font-size:16px
  }
}


@media (min-width: 1025px) {
    * {
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
}