/* ---------------清除默认样式---------------- */

html {
  /* cursor: none; */
  /* overflow-x: hidden; */
  
   -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE */
  user-select: none; /* 其他浏览器 */
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
  outline: none;
  -webkit-overflow-scrolling: touch;
  /* display: none; */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

input,
text-area,
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

ol,
ul {
  list-style: none;
}

hr {
  border: none;
  height: 1px;
}

img {
  line-height: 0;
}

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

body > div {
  position: relative;
}

button,
input,
textarea {
  outline: none;
}

a {
  /* display: block; */
  text-decoration: none;
  transition: color 0.3s;
}

/* a:hover {
  cursor: unset;
} */

/* ----------------------通用样式---------------------- */

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.15em;
  fill: currentColor;
  overflow: hidden;
}

/* #data-container-for-search {
    position: fixed;
    max-width: 100vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 10vh;
    overflow: hidden;
    z-index: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
} */

#data-container-for-search {
  position: relative;
  height: 0;
  z-index: 1;
}

#app {
  z-index: 2;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.body-100vh {
  height: 100vh;
  overflow: hidden;
}

img.bg-img,
div.bg-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url() no-repeat center center;
  background-size: cover;
  object-fit: cover;
}

.bg-img-container {
  position: relative;
  width: 100%;
}

.absolute-row-center {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}

.absolute-col-center {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.rotate-180deg {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

.rotate-90deg {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.rotate-45deg {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.hidden {
  display: none !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.only-1-row {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.only-2-row {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.only-3-row {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.only-4-row {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

/* 设定rem大小 */

html {
  font-size: 100px;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--background-color);
  font-size: 16px;
  line-height: 1.6;
  font-family: sans-serif !important;
}

@media only screen and (min-width: 1921px) {
  html {
    font-size: 133px;
  }
  body {
    line-height: 1.6;
    font-size: 20px;
  }
}
.phoneshow {
  display: none;
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 80px;
  }
}

@media only screen and (max-width: 1400px) {
  html {
    font-size: 75px;
  }
}

@media only screen and (max-width: 1200px) {
  html {
    font-size: 60px;
  }
}

@media only screen and (max-width: 1024px) {
  html {
    font-size: 55px;
  }
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 40px;
  }
  .phoneshow {
    display: block;
  }
  .pcshow {
    display: none !important;
  }
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

.text-container {
  text-align: justify;
}

.text-container.center {
  text-align: center;
}

.text-container a {
  display: inline;
}

.text-container img {
  max-width: 100%;
}

/* 设定默认颜色、尺寸、字体 */

:root {
  --outer-padding: 0;
  --background-color: #000115;
  --text-color: #0b1b20;
  --side-width: 60px;
  --color: #0777ff;
  --color1: #813c69;
  --color2: #038995;
  --color3: #35354d;
  --color4: #afd0ff;
  --color5: rgba(255, 255, 255, 0.6);
  --color6: #00bfa5;
  --color7: #035dc0;
  --color8: rgb(30, 44, 121);
  --color9: #121212;
  --color10: rgba(255, 255, 255, 0.75);
  --color11: #a3a3a3;
  --color12: rgba(255, 255, 255, 0.2);
  --color13: #888;
  --color14: #1b1b21;
  --color15: #49494d;
  --color16: rgba(255, 255, 255, 0.5);
  --color17: #00dffa;
  --color18: #009d88;
}

::selection {
  background: var(--color);
  color: #fff;
}

.outer-content {
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--outer-padding);
  padding-right: var(--outer-padding);
  width: 100%;
  max-width: 72.9166666666666666666vw;
}

@media only screen and (max-width: 1444px) {
  :root {
    --outer-padding: 22px;
  }
}

@media only screen and (max-width: 1024px) {
  :root {
    --side-width: 22px;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    --outer-padding: 22px;
    --side-width: 22px;
  }
}
@media only screen and (max-width: 639px) {
  :root {
    --outer-padding: 18px;
    --side-width: 18px;
  }
}

#app {
  background: #fff;
}

#app,
a {
  color: var(--text-color);
}

hr {
  background: var(--hr-color);
  opacity: 0.15;
}

/* 去除分享的默认图标 */

.bdsharebuttonbox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@font-face {
  font-family: "PxGrotesk";
  src: url("/phone/fonts/PxGrotesk-Screen.ttf");
}

.point {
  font-family: "PxGrotesk";
  line-height: 1.4;
}

.container1 {
  width: 100%;
  max-width: 75vw;
  padding: 0 var(--side-width);
  margin: 0 auto;
}
.footer .container1 {
  padding: 0;
  width: 94%;
}

.container2 {
  width: 100%;
  max-width: 89.0625vw;
  padding: 0 var(--side-width);
  margin: 0 auto;
}

.contaienr1 {
  position: relative;
  padding: 0 var(--outer-padding) 2.24rem;
  max-width: 84.375vw;
  margin: 0 auto;
}

.max998 {
  margin: 0 auto;
  max-width: 998px;
}

.max1460 {
  margin: 0 auto;
  max-width: 76.041666666666vw;
}

.max1540 {
  margin: 0 auto;
  max-width: 80.208333333vw;
}

.max1620 {
  margin: 0 auto;
  max-width: 84.375vw;
}

@media (max-width: 1680px) {
  .contaienr1,
  .max1540,
  .max1620 {
    max-width: unset;
  }
}

@media (max-width: 1600px) {
  .max1460 {
    max-width: unset;
  }
}
