@charset 'UTF-8';

.global-html-page {
  width: calc(100vw - 50px);
  height: calc(100vh - 200px);

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial,
    sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";

  /* PingFang SC, HarmonyOS_Regular, Helvetica Neue, Microsoft YaHei, sans-serif !important; */

  font-size: 14px;
  color: #fff;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.svgIcon {
  display: inline-block;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.iconSpin {
  display: inline-block;
  -webkit-animation: loadingCircle 1s infinite linear;
  animation: loadingCircle 1s infinite linear;
}

.iconImg {
  max-width: 12px;
  vertical-align: -0.2em;
  margin-right: 4px;
}

.iconSpinImg {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: -0.2em;
  margin-right: 4px;
}
.iconSpinImg img {
  max-width: 100%;
}

@-webkit-keyframes loadingCircle {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loadingCircle {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.toast-container {
  min-width: 180px;
  z-index: 9999;
  position: absolute;
	transition: all 0.2s;
	margin-top: 0px;
}

.toast-container.moveToTop{
	margin-top: -16px;
}

.toast-item {
  height: auto;
  border-radius: 4px;
  color: #fff;
  padding: 10px 20px;
  font-size: 14px;
  display: block;
  position: relative;
  margin: 0 0 12px 0;
  text-align: center;
  background-color: rgba(1, 33, 67, 0.7);
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.4);
}



.toast-item-image {
  width: 16px;
  height: 16px;
  background-size: contain;
  display: inline-block;
  margin-right: 4px;
  vertical-align: -0.2em;
}

.toast-item-image-notice {
  background-image: url(../assets/icon-error.svg);
}

.toast-item-image-success {
  background-image: url(../assets/icon-success.svg);
}

.toast-item-image-warning {
  background-image: url(../assets/icon-error.svg);
}

.toast-item-image-error {
  background-image: url(../assets/icon-error.svg);
}

.toast-type-notice {
  color: white;
}

.toast-type-success {
  color: white;
}

.toast-type-warning {
  color: white;
  border-color: #fcbd57;
}

.toast-type-error {
  color: white;
  border-color: #b32b2b;
}

.toast-position-top-center {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.toast-position-middle-center {
  position: fixed;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}

.global-html-page .bottomBar {
  text-align: center;
  padding: 10px 20px 30px 20px;
  line-height: 20px;
}

.global-html-page .btnLoading {
  display: inline-block;
  padding: 8px 60px;
  color: rgba(255, 255, 255, 0.8);
}

.global-html-page .btnLoading .svgIcon {
  display: inline-block;
  margin-right: 4px;
}

.global-html-page .btnBlue {
  display: inline-block;
  cursor: pointer;
  padding: 8px 40px;
  line-height: 20px;
  border-radius: 18px;
  background: #3d97e0;
  background: linear-gradient(180deg, #3d97e0, #1e75bc);
  border: 1px #41a0ec solid;
  box-shadow: 0 1px 1px #173f75;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.global-html-page .btnBlue:hover {
  opacity: 0.8;
  box-shadow: 0 1px 2px #173f75;
}

.global-html-page .btnLink {
  display: inline-block;
  cursor: pointer;
  padding: 2px 10px;
  line-height: 20px;
  transition: all 0.3s;
  color: #8ec5f4;
}

.global-html-page .btnLink:hover {
  color: #fff;
}

.global-html-page .btnLarge {
  padding: 6px 24px;
  border-radius: 16px;
}

.global-html-page .btnMed {
  padding: 4px 32px;
  border-radius: 16px;
}

.globalBtnIcon {
  color: #fff;
  display: inline-block;
  cursor: pointer;
  font-size: 32px;
  line-height: 42px;
  width: 42px;
  height: 42px;
  text-align: center;
  border-radius: 50%;
  background: #3d97e0;
  background: linear-gradient(180deg, #3d97e0, #1e75bc);
  border: 1px #41a0ec solid;
  box-shadow: 0 1px 1px #173f75;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.global-html-page .avatar {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
}

.global-html-page .avatar img {
  width: 100%;
  height: auto;
}

.global-html-page .avatar.med {
  width: 32px;
  height: 32px;
}

.global-html-page .avatar.small {
  width: 24px;
  height: 24px;
}

.global-html-page .grey2 {
  font-size: 12px;
  color: #94aec5;
}

.global-html-page .countTextarea {
  position: relative;
}

.global-html-page .countTextarea .count {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #666;
  font-size: 12px;
  padding: 0 12px 2px 0;
}

.global-html-page .countTextarea .count.error {
  color: #f5222d;
}

.global-html-page .page-pagination {
  position: absolute;
  min-width: 150px;
  bottom: -42px;
  right: 50px;
}

.global-html-page .page-pagination .pageNumber {
  padding: 0 52px;
  box-sizing: border-box;
}

.global-html-page .page-pagination .page {
  position: absolute;
  z-index: 2;
  top: 0;
}

.global-html-page .page-pagination .page.prev {
  left: 0;
}

.global-html-page .page-pagination .page.next {
  right: 0;
}

.itemControl {
  position: relative;
}

.itemControl:hover .controlPanel {
  display: block;
}

.itemControl .btnActionMore {
  font-size: 20px;
  padding: 2px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
}

.itemControl:hover .btnActionMore {
  background-color: rgba(255, 255, 255, 0.1);
  color: #9cfeff;
}

.itemControl .controlPanel {
  position: absolute;
  display: none;
  right: 0;
  top: 24px;
  padding: 10px 0;
  color: #333;
  width: 120px;
  text-align: right;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.8);
}

.itemControl .controlPanel .controlItem {
  cursor: pointer;
  padding: 2px 16px;
  transition: all 0.3s;
}

.itemControl .controlPanel .controlItem:hover {
  color: #0086e0;
}

.shareLink .share-link {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  background-color: #19609d;
  color: #d0e5f7;
  padding: 4px 9px;
  border-radius: 16px;
  margin-top: 4px;
  line-height: 14px;
  font-size: 12px;
  transition: all 0.2s;
}

.shareLink .share-link img {
  width: 14px;
  margin-right: 4px;
  vertical-align: -0.2em;
  display: inline-block;
}

.shareLink .share-link:hover {
  color: #fff;
  background-color: rgba(43, 138, 218, 0.6);
}

.emptyInfo {
  text-align: center;
  padding: 20px;
}

.btnRectMain {
  position: relative;
  padding: 0 16px;
  height: 58px;
  line-height: 58px;
  display: inline-block;
  cursor: pointer;
  color: #fff;
}
.btnRectMain .inner {
  height: 100%;
  padding: 0 16px;
  display: block;
  background-image: url("./btnRectMainMid.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.btnRectMain:before,
.btnRectMain:after {
  display: block;
  width: 16px;
  height: 100%;
  z-index: 2;
  top: 0;
  position: absolute;
  content: "";
  background-image: url("./btnRectMain.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.btnRectMain:before {
  left: 0;
  background-position: left center;
}

.btnRectMain:after {
  right: 0;
  background-position: right center;
}

.hintBox {
  width: 120px;
  height: 120px;
}
.hintBox .hintBoxBg {
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-image: url("../assets/series/helper.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hintBox .hintBoxInfo {
  background-color: rgba(9, 143, 204, 0.5);
  border: 1px #64daf1 solid;
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  position: absolute;
  bottom: 100%;
  left: 0%;
  width: 240px;
  font-size: 14px;
  display: none;
}
.hintBox .hintBoxInfo ul {
  padding-left: 10px;
}
.hintBox .hintBoxInfo ul li {
  margin-bottom: 4px;
  list-style: disc;
}

.hintBox:hover .hintBoxBg {
  background-image: url("../assets/series/helper-hover.png");
}

.hintBox:hover .hintBoxInfo {
  display: block;
}

.hintBox .hintBoxInfo:after {
  position: absolute;
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  top: 100%;
  left: 30%;
  background-image: url("../assets/helperPointRight.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
}
/* ---- */

.btnNormal {
  display: inline-block;
  cursor: pointer;
  padding: 8px 16px;
  line-height: 20px;
  border-radius: 12px;
  background: #3d97e0;
  box-sizing: border-box;
  color: #fff;
  text-align: center;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnNormal:hover {
  opacity: 0.8;
}

.btnLoading {
  opacity: 0.8;
  cursor: default;
}

.btnMagic {
  background: linear-gradient(95deg, #49e8d3 5%, #4582fc 94%);
}
.btnBluePrimary {
  background: linear-gradient(180deg, #3d97e0, #1e75bc);
}

.btnSubPrimary {
  background: linear-gradient(180deg, #5695da 0%, #3f79bc 100%);
}

.btnLink {
  display: inline-block;
  cursor: pointer;
  padding: 2px 10px;
  line-height: 20px;
  transition: all 0.3s;
  color: #8ec5f4;
}
.btnLink .svgIcon{
margin-right: 4px;
}

.btnLink:hover {
  color: #fff;
}

.btnLinkDander:hover{
  color: red;
}
.btnCancel {
  color: #22c6fb;
  background: linear-gradient(
    180deg,
    rgba(86, 149, 218, 0.2) 0%,
    rgba(63, 121, 188, 0.2) 100%
  );
}

.btnBlockLarge {
	width: 100%;
  min-width: 120px;
  max-width: 280px;
	padding: 8px 20px;
	font-weight: bold;
	font-size: 16px;
}
.btnBlockLarge i{
	margin-right: 8px;
}
.btnCore {
  display: inline-block;
  cursor: pointer;
  background: #3d97e0;
  box-sizing: border-box;
  color: #fff;
  text-align: center;

  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btnCore:hover {
  opacity: 0.8;
}

.btnCube {
  font-family: auto;
}

.btnCube.btnSmall {
  width: 24px;
  height: 24px;
  line-height: 22px;
  border-radius: 4px;
  font-size: 18px;
}

.btnNum {
  height: 32px;
  line-height: 24px;
  padding: 0 4px;
  border-radius: 6px;
  box-sizing: border-box;
  max-width: 120px;
  background: rgba(34, 198, 251, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  transition: all 0.3s;
}

.btnNum:hover {
  background: rgba(34, 198, 251, 0.3);
}
.btnNum .btnCube {
  font-weight: bold;
}
.btnNum .num {
  background-color: transparent;
  height: 100%;
  flex: 1;
  color: #fff;
  text-align: center;
  width: 50px;
  font-weight: bold;
  cursor: default;
}
