@font-face {
  font-family: TT0142M;
  src: url("../fonts/TT0142M.eot");
  src: url("../fonts/TT0142M.eot") format("embedded-opentype"),
    url("../fonts/TT0142M.woff2") format("woff2"),
    url("../fonts/TT0142M.woff") format("woff"),
    url("../fonts/TT0142M.ttf") format("truetype"),
    url("../fonts/TT0142M.svg#TT0142M") format("svg");
  font-display: swap;
}

@font-face {
  font-family: HYWenHei;
  font-display: swap;
  src: url("../fonts/汉仪文黑55W.eot");
  src: url("../fonts/汉仪文黑55W.eot") format("embedded-opentype"),
    url("../fonts/汉仪文黑55W.woff2") format("woff2"),
    url("../fonts/汉仪文黑55W.woff") format("woff"),
    url("../fonts/汉仪文黑55W.ttf") format("truetype"),
    url("../fonts/汉仪文黑55W.svg#汉仪文黑55W") format("svg");
}

/* 高亮下划线 */
.highlight {
  border-bottom: 2px dotted;
  position: relative;
  cursor: pointer;
}

.highlight:nth-child(odd) {
  border-color: yellow;
}

.highlight:nth-child(even) {
  border-color: red;
}


/* 滚动条 */
.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.scrollbar::-webkit-scrollbar-corner {
  background-color: transparent;
}

.scrollbar::-webkit-scrollbar-track {
  width: 6px;
  background: rgba(#101f1c, 0.1);
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(144, 147, 153, 0.5);
  background-clip: padding-box;
  min-height: 28px;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
  transition: background-color 0.3s;
  cursor: pointer;
}

.scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(144, 147, 153, 0.3);
}

/* modal的title */
.cp-modal-title {
  position: relative;
}

.cp-modal-title-name {
  text-align: center;
  font-size: 22px;
  margin: 0;
}


/* #region 提示横屏 */
.media-tip {
  visibility: hidden;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: fixed;
  width: 500px;
  height: 100px;
  bottom: 0px;
  /* top: 0;
  width: 100%;
  height: 100%; */
}

.media-tip-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.media-tip-text {
  margin-left: 20px;
  letter-spacing: 5px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 36px;
}

.icon-phone {
  width: 80px;
  animation: spin 3s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(90deg);
  }

  100% {
    transform: rotate(0);
  }
}

@media screen and (orientation: portrait) {
  .media-tip {
    visibility: visible;
  }
}

/* #endregion */