/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/common.css ***!
  \*****************************************************************************/
/* body,
html,
img,
li,
p,
div,
span,
ul {
  font-family: "Microsoft YaHei", "微软雅黑", "Arial", "Open Sans",
    "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", "SimSun", "sans-serif";
  padding: 0;
  margin: 0;
  list-style: none;
} */
.c-common-icon {
  background: url(./54567fed4cf94f0aa3c3.png);
  display: inline-block;
}
.c-common-btn {
  display: inline-block;
  box-sizing: border-box;
}
.c-common-btn-light,
.c-common-btn-blue {
  box-sizing: border-box;
  display: inline-block;
  height: 36px;
  line-height: 36px;
  font-size: 14px;
  border-radius: 2px;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  padding: 0 16px;
}
.c-common-large-btn {
  height: 40px;
  line-height: 40px;
}
.c-common-medium-btn {
  height: 32px;
  line-height: 32px;
}
.c-common-small-btn {
  height: 28px;
  line-height: 28px;
}
.c-common-mini-btn {
  height: 24px;
  line-height: 24px;
  font-size: 12px;
}
.c-common-btn-blue {
  background: #0076fe;
  color: #fff;
}
.c-common-btn-blue:hover {
  background: #3391fe;
}
.c-common-btn-blue.c-disabled-btn {
  cursor: not-allowed;
  background: #80bbff;
}
.c-common-btn-blue.c-disabled-btn:hover {
  cursor: not-allowed;
  background: #80bbff;
}
.c-common-input {
  -webkit-appearance: none;
  background-color: #fff;
  background-image: none;
  border-radius: 4px;
  border: 1px solid #eee;
  box-sizing: border-box;
  color: #333940;
  display: inline-block;
  font-size: inherit;
  height: 36px;
  line-height: 36px;
  outline: 0;
  padding: 0 15px;
  transition: border-color 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  width: 100%;
}
.c-common-formItem {
  margin: 24px 0;
  width: 100%;
  text-align: left;
}
.c-common-formItem.is-error .c-common-input {
  border-color: #ff5556;
}
.c-common-input:hover {
  border-color: #c0c4cc;
}
.c-common-input:focus {
  border-color: #0076fe;
  outline: 0;
}
.c-common-formItem-label {
  display: inline-block;
  height: 18px;
  color: #333940;
  line-height: 16px;
  margin-right: 8px;
}
.c-common-formItem-content {
  display: inline-block;
  position: relative;
}
.c-common-formItem-error {
  color: #ff5556;
  font-size: 12px;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
}
.c-common-help-icon {
  width: 18px;
  height: 18px;
  background-position: -8px -159px;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 4px;
}
.c-common-help-icon:hover {
  background-position: -35px -159px;
}
.common-loading-box {
  z-index: 1999;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.common-loading-box.full-screen-Loading {
  position: fixed;
}

.common-loading-tips {
  color: #0076fe;
  font-size: 12px;
}

.common-loading-centent {
  text-align: center;
}

.common-loading-circular {
  display: inline;
  height: 50px;
  width: 50px;
  animation: loading-rotate 1.4s linear infinite;
}

.common-loading-circular .common-loading-path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #0076fe;
  stroke-linecap: round;
}

@keyframes loading-rotate {
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -40px;
  }

  to {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -120px;
  }
}
.c-common-popover {
  position: fixed;
  min-width: 100px;
  text-align: center;
  z-index: 3000; /* 设置较高的 z-index 值 */
  box-sizing: border-box;
}
.c-common-popover-mask {
  display: none;
}
.c-common-popover-content {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
}
@media (max-width: 600px) {
  .c-common-popover {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    /* background-color: rgba(0, 0, 0, 0.5); */
    z-index: 2999 !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .c-common-popover-mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .c-common-popover-content {
    width: 100%;
    max-height: 75vh;
    overflow-y: auto;
    z-index: 1;
  }
  .c-common-popover-mask {
    display: block;
  }
}
.c-common-popover .c-common-popover-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-common-popover .c-common-popover-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.c-common-popover .c-common-popover-arrow.bottom {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #eee transparent;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.c-common-popover .c-common-popover-arrow.bottom::after {
  position: absolute;
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #fff transparent;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}

.c-common-popover .c-common-popover-arrow.top {
  border-width: 10px 10px 0 10px;
  border-color: #eee transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.c-common-popover .c-common-popover-arrow.top::after {
  border-width: 8px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/createBook/css/createBook.css ***!
  \*************************************************************************************/
.common-dialog-content.c-createBook-dialog-content {
  background-image: url(./9fcd46e8ec7e835f1465.png);
  background-repeat: no-repeat;
}
.c-createBook-typeBox {
  color: #333940;
  /* margin-bottom: -8px; */
}
.c-createBook-title {
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  text-align: center;
}
.c-createBook-typeList {
  display: flex;
  justify-content: space-between;
  margin: 28px 40px 0px;
  flex-wrap: wrap;
}
.c-createBook-type-item {
  width: 206px;
  margin-bottom: 20px;
  height: 192px;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 0px rgba(37, 79, 161, 0.1);
  cursor: pointer;
  box-sizing: border-box;
  text-align: center;
  padding: 8px;
}
.c-createBook-type-item:hover {
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.09);
  outline: 1px solid #4db3ff;
}
.c-createBook-type-item:hover .c-createBook-type-btn {
  background: #3391fe;
}
.c-createBook-type-pic {
  height: 80px;
}
.c-createBook-type-btn {
  margin: 12px auto;
  width: 116px;
  cursor: pointer;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1px;
  border-radius: 4px;
  background: #0076fe;
  color: #fff;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}
.c-createBook-type-item .c-common-icon {
  width: 16px;
  height: 16px;
}

.c-createBook-icon-upload {
  background-position: -96px -253px;
}
.c-createBook-icon-picUpload {
  background-position: -40px -252px;
}
.c-createBook-icon-template {
  background-position: -68px -252px;
}
.c-createBook-icon-empty {
  background-position: -12px -252px;
}
.c-createBook-type-desc {
  font-size: 12px;
  color: #999;
  line-height: 18px;
}
.c-createBook-type-desc .c-createBook-black {
  color: #333;
}
.c-createBook-input-w,
.c-createBook-input-h {
  width: 118px;
  padding-right: 50px;
}
.c-createBook-lock {
  background-position: -8px -117px;
  width: 24px;
  height: 22px;
  vertical-align: middle;
  margin: 0 16px;
  cursor: pointer;
}
.c-createBook-lock:hover,
.is-active-lock .c-createBook-lock {
  background-position: -58px -117px;
}
.c-createBook-lock-tips {
  margin-left: 8px;
  color: #666;
  visibility: hidden;
}
.is-active-lock .c-createBook-lock-tips {
  visibility: visible;
}
.c-createBook-size-item {
  width: 132px;
  height: 166px;
  background: #f5f9ff;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
}
.c-createBook-size-item:hover {
  background: #eef7ff;
  outline: 2px solid rgba(0, 118, 254, 0.5);
}
.c-createBook-size-item.is-active-size {
  background: #eef7ff;
  outline: 2px solid #0076fe;
}
.c-createBook-sizeList {
  display: flex;
  justify-content: space-around;
  margin: 12px 0 24px;
}
.c-createBook-size-desc {
  font-size: 14px;
  font-weight: bold;
  color: #333940;
  padding: 20px 0 8px;
}
.c-createBook-size-info {
  font-size: 14px;
  color: #666666;
}
.c-createBook-size-icon {
  margin-top: 42px;
  height: 38px;
}
.c-createBook-input-size {
  position: relative;
  display: inline-block;
}
.c-createBook-input-size:after {
  content: "px";
  color: #999;
  font-size: 14px;
  position: absolute;
  right: 18px;
  top: 8px;
}
.c-createBook-bottom {
  text-align: right;
}
.c-createBook-submit-btn {
  margin-right: 10px;
  width: 80px;
}
.c-createBook-empty input::-webkit-outer-spin-button,
.c-createBook-empty input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
.c-createBook-empty input[type="number"] {
  -moz-appearance: textfield;
}
.c-createBook-guide-box {
  width: 212px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  background: #eaf0ff;
  border-radius: 24px;
  color: #7078bb;
  font-size: 12px;
  cursor: pointer;
  box-sizing: border-box;
  margin: 8px auto 0;
}
.c-createBook-guide-box:hover {
  background: #dde4f5;
}
.c-createBook-guide-box > span {
  display: inline-block;
  vertical-align: middle;
  line-height: 16px;
}
.c-createBook-guide-play-btn {
  width: 20px;
  margin-right: 8px;
}
.c-createBook-guide-arrow {
  font-weight: bold;
  display: inline-block;
  margin-left: 12px;
  vertical-align: middle;
}
.size-px-tip-popover.c-common-popover-content {
  border: 1px solid #7fbafe;
  border-radius: 4px;
  font-size: 12px;
}
.size-px-tip-popover.c-common-popover-content .c-common-popover-arrow.top {
  border-color: #7fbafe transparent transparent transparent;
}

/*!*****************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/dialog.css ***!
  \*****************************************************************************/
.common-dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  top: 0;
  left: 0;
  box-sizing: border-box;
  text-align: left;
}
.common-dialog-mask {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  /* z-index: 2000; */
  top: 0;
  left: 0;
}
.common-dialog-table {
  display: table;
  width: 100%;
  height: 100%;
}
.common-dialog-table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.common-dialog-content {
  background: #fff;
  position: relative;
  border-radius: 12px;
  margin: 0 auto;
}
.common-dialog-head {
  /* height: 68px; */
  padding: 24px 24px 0px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  min-height: 42px;
}
.common-dialog-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.common-dialog-close-box {
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 6px;
}
.common-dialog-close {
  width: 24px;
  height: 24px; 
  background-position: -233px -16px;
  cursor: pointer;
}
/* .common-dialog-close-box:hover {
  background: #E9EBEF;
} */
.common-dialog-close:hover {
  background-position: -95px -155px;
}
.common-dialog-body{
  padding: 0 24px 24px;
}
@media screen and (max-width: 600px)  {
  .common-dialog-content-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 12px 12px 0 0;
    width: 100%;
    height: 100%;
    max-height: 70%;
  }
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/createBook/css/videoGuide.css ***!
  \*************************************************************************************/
.c-video-guide-box {
  width: 982px;
  height: 552px;
  border-radius: 8px;
  position: relative;
}
.c-video-guide-video {
  width: 100%;
  height: 100%;
  background: #000;
}
.c-video-guide-iconclose {
  position: absolute;
  right: -40px;
  top: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  background-position: -148px -12px;
}
.c-video-guide-createBtn {
  box-sizing: border-box;
  position: absolute;
  bottom: -102px;
  left: calc(50% - 133px);
  width: 266px;
  text-align: center;
  height: 70px;
  line-height: 70px;
  border-radius: 36px;
  border: 2px solid #ffffff;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}
.c-common-icon-guideArrow {
  width: 22px;
  height: 16px;
  background-position: -199px -20px;
  margin-left: 10px;
}
.c-video-guide-createtext,
.c-common-icon-guideArrow {
  display: inline-block;
  /* vertical-align: middle; */
}
.c-video-guide-cover {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  cursor: pointer;
  width: 100%;
}

/*!******************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/common/css/popover.css ***!
  \******************************************************************************/

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/powerLimit/css/powerLimit.css ***!
  \*************************************************************************************/
._powerlimit_dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2999;
  top: 0;
  left: 0;
  display: none;
}

._powerlimit_dialog.show {
  visibility: visible;
}

._powerlimit_dialog ._powerlimit_dialog_bg {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

._powerlimit_dialog-table {
  display: table;
  width: 100%;
  height: 100%;
}

._powerlimit_dialog_table_cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

._powerlimit_dialog_content {
  position: relative;
  padding: 32px;
  width: max-content;
  min-width: 288px;
  border: 3px solid #eabb6a;
  background: linear-gradient(322deg, #141211 0%, #332e2c 100%);
  opacity: 1;
  border-radius: 10px;
  margin: 0 auto;
}
._powerlimit_title1,
._powerlimit_title2 {
  font-size: 24px;
  font-weight: 600;
  color: #fff0d5;
  line-height: 32px;
}
._powerlimit_dialog_content ._powerlimit_vip_type,
._powerlimit_power_desc {
  color: #efc26b;
}
._powerlimit_dialog_content ._powerlimit_title2 ._powerlimit_vip_type {
  color: #fff0d5;
}
._powerlimit_bottom_power_desc {
  color: #fff0d5cc;
  font-size: 12px;
  padding-top: 15px;
}
._powerlimit_upgrade_btn {
  display: block;
  width: 196px;
  height: 46px;
  background: linear-gradient(323deg, #dea63c 0%, #ffd88e 100%);
  border-radius: 6px;
  color: #323232;
  line-height: 46px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  margin: 24px auto 0px;
  position: relative;
  cursor: pointer;
}
._powerlimit_upgrade_btn:hover {
  background: linear-gradient(323deg, #f7b130 0%, #fddea5 100%);
}
._powerlimit_day_price {
  position: absolute;
  top: -10px;
  right: 0px;
  background: linear-gradient(338deg, #ff0000 0%, #fb9d9d 100%);
  height: 20px;
  color: #fff;
  line-height: 20px;
  padding: 0 6px;
  font-size: 12px;
  border-radius: 11px 11px 0px 11px;
}
._powerlimit_close_btn {
  width: 24px;
  height: 24px;
  background-color: #dddddd;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: calc(50% - 12px);
  bottom: -36px;
  background-position: -94px -120px;
}
._powerlimit_close_btn:hover {
  background-color: rgb(241, 240, 240);
}
._powerlimit_exceed_Desc {
  margin-top: -12px;
  margin-bottom: 18px;
  font-weight: bold;
  font-size: 18px;
  color: #fff0d5;
}
._powerlimit_service_link {
  display: inline-block;
  position: relative;
  color: #0076fe;
}
._powerlimit_service_link:hover ._powerlimit_service_qrcode {
  visibility: visible;
}
._powerlimit_service_qrcode {
  position: absolute;
  visibility: hidden;
  bottom: 22px;
  left: -20px;
  padding: 8px;
  background: #fff;
  border: 1px solid #eaeaea;
}
._powerlimit_service_qrcode img {
  width: 130px;
}
._powerlimit_bottom_freevip_link {
  color: #fff0d5cc;
  font-size: 12px;
  padding-top: 15px;
  display: block;
  text-decoration: none;
}
._powerlimit_bottom_freevip_link:hover {
  color: #fff;
  text-decoration: underline;
}

/*!*************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/compareVip/css/compareVip.css ***!
  \*************************************************************************************/
/* 新旧会员对比弹窗 */

.c-compareVip-body {
  margin-top: 28px;
}

.c-compareVip-contrast-sheet {
  box-shadow: 0px 4px 8px 1px rgba(36, 21, 6, 0.04);
  border-radius: 2px;
  overflow: hidden;
}

.c-compareVip-contrast-sheet ul {
  display: flex;
  font-size: 0;
  padding: 0;
}

.c-compareVip-contrast-sheet ul > li {
  display: inline-block;
  height: 48px;
  width: 198px;
  font-size: 14px;
  color: #333940;
  text-align: center;
  line-height: 48px;
}

.c-compareVip-contrast-sheet ul > li > div {
  color: #333940;
  font-size: 14px;
}

.c-compareVip-contrast-sheet ul > li:nth-child(1) {
  width: 120px;
  background-color: #ffffff;
}

.c-compareVip-contrast-sheet ul > li:nth-child(2) {
  background-color: #f5f5f5;
}

.c-compareVip-contrast-sheet ul > li:nth-child(3) {
  background-color: #fff9ed;
}

.c-compareVip-contrast-sheet ul > li:nth-child(4) {
  background-color: #fff9ed;
}

.c-compareVip-contrast-sheet ul > li:nth-child(5) {
  background-color: #ffeac0;
}

.c-compareVip-contrast-sheet ul > li img {
  margin: 0 13px;
}

/* 权益升级 */
.c-compareVip-contrast-sheet > .c-compareVip-power-update > li {
  height: 92px;
  line-height: 1;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(1) {
  line-height: 92px;
  background-color: #f8f5f3;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(2) {
  background-color: #edebe9;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(3) {
  background-color: #f9f1e1;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(4) {
  background-color: #ffefd0;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) {
  background-color: #f8dda9;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li span {
  display: block;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li span:nth-child(1) {
  color: #3c2003;
  margin: 12px 0 17px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span {
  line-height: 16px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span:nth-child(1) {
  margin: 12px 0 9px;
}

.c-compareVip-contrast-sheet > .c-compareVip-power-update > li:nth-child(5) > span:nth-child(2) {
  margin-bottom: 5px;
}

/* c-compareVip-qa */
.c-compareVip-qa {
  margin-top: 28px;
  font-size: 0;
}

.c-compareVip-qa-title {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
  color: #333940;
  font-weight: 700;
  text-align: left;
}

.c-compareVip-qa-item-outer {
  display: flex;
  justify-content: space-between;
}

.c-compareVip-qa-item {
  display: inline-block;
  position: relative;
  padding: 20px 16px;
  width: 208px;
  height: 190px;
  background: #f5f5f5;
  border-radius: 8px;
  box-sizing: border-box;
}

.c-compareVip-qa-item > span {
  display: block;
  color: #333940;
  font-size: 14px;
  line-height: 16px;
  text-align: left;
}

.c-compareVip-qa-item > span:nth-of-type(1) {
  margin-bottom: 24px;
}

.c-compareVip-qa-item > .c-compareVip-qa-item-button {
  display: block;
  width: 104px;
  height: 30px;
  margin: 24px auto 0;
  font-size: 12px;
  color: #3c2003;
  line-height: 30px;
  background: linear-gradient(135deg, #fdedca 0%, #e9c383 100%);
  border: 1px solid #f9e4ba;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}

.c-compareVip-qa-item > .c-compareVip-qa-item-button:hover {
  background: linear-gradient(135deg, rgba(253, 237, 202, 0.8) 0%, rgba(233, 195, 131, 0.8) 100%);
}

/* 底部的两个按钮 */
.c-compareVip-footer {
  margin-top: 45px;
  font-size: 0;
  text-align: right;
}

.c-compareVip-footer > a {
  text-decoration: none;
}

.c-compareVip-footer-button {
  display: inline-block;
  width: 92px;
  height: 36px;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  line-height: 36px;
  cursor: pointer;
}

.c-compareVip-footer > a:nth-child(1) {
  margin-right: 5px;
  border: 1px solid #0076fe;
  color: #0076fe;
  background-color: #ffffff;
}

.c-compareVip-footer > a:nth-child(1):hover {
  background-color: #e6f1ff;
  color: #0076fe;
}

.c-compareVip-footer > a:nth-child(2) {
  margin-left: 5px;
  border: 1px solid #0076fe;
  color: #ffffff;
  background-color: #0076fe;
}

.c-compareVip-footer > a:nth-child(2):hover {
  background-color: #3391fe;
  color: #ffffff;
}
/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/activePanel/css/activePanel.css ***!
  \***************************************************************************************/
#cm_activePop {
  z-index: 4000;
  position: fixed;
  cursor: pointer;
}
.cm_canvasClass {
  position: fixed;
  top: 0;
  left: 0;
}

#cm_active_mask {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2999;
}
#cm_activeBg{
  height: auto;
  width: auto;
}
.cm_left_bottom_activePop {
  bottom: 10px;
  right: 100px;
  height: 140px;
  width: 300px;
  border-radius: 4px;
  overflow: hidden;
}
.cm_left_bottom_activePop > #cm_activeBg{
  width: 100%;
}
#cm_icon {
  /* position: absolute; */
  /* top: 0;
  right: 0; */
  /* height: 22px;
  width: 21px; */
}
.cm_left_bottom_closeIcon {
  position: absolute;
  top: 0;
  right: 0;
  height: 22px;
  width: 21px;
  background-position: -125px -120px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 0 4px 0 20px;
}

.cm_tOut {
  animation: cm_zoomOut 0.35s;
  animation-fill-mode: forwards;
}

.cm_tIn {
  animation: cm_zoomIn 0.35s;
  animation-fill-mode: forwards;
}

@keyframes cm_zoomOut {
  from {
    opacity: 0;
    /* transform: translate(150px, -50px) scale(0.1, 0.2); */
    transform: translate(150px, 0) scale(0.1, 0.2);
  }

  to {
    transform: scale(1, 1);
  }
}

@keyframes cm_zoomIn {
  from {
    transform: scale(1, 1);
  }

  to {
    /* transform: translate(150px, -50px) scale(0.05, 0.1); */
    transform: translate(150px, 0) scale(0.05, 0.1);
    transform-origin: 60% 50%;
    opacity: 0.2;
  }
}

.cm_sUp {
  animation: cm_slideContentUp 0.35s;
  animation-fill-mode: forwards;
}

.cm_sDown {
  animation: cm_slideContentDown 0.35s;
  animation-fill-mode: forwards;
}

@keyframes cm_slideContentUp {
  from {
    height: 0;
    transform: scale(0.1, 0.2);
  }

  to {
    height: 140px;
    transform: scale(1, 1);
  }
}

@keyframes cm_slideContentDown {
  from {
    height: 140px;
    transform: scale(1, 1);
  }

  to {
    opacity: 0;
    height: 0;
    transform: scale(0.1, 0.1);
  }
}
.cm_activePop_centerBox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.cm_center_middle_activePop {
  z-index: 3001;
  position: fixed;
  cursor: pointer;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.cm_center_middle_closeIcon {
  opacity: 1;
  height: 40px;
  width: 40px;
  background-position: -117px -112px;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  margin-top: 30px;
}

/*!*********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/activityDialog/css/activityDialog.css ***!
  \*********************************************************************************************/
.c-activity-dialog {
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  padding-top: 36px;
}
.c-adialog-headBg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.c-adialog-title {
  position: relative;
  font-size: 22px;
  height: 30px;
  line-height: 30px;
}
.c-adialog-headBg img {
  width: 100%;
}
.c-common-icon.c-adialog-vip {
  vertical-align: middle;
  width: 28px;
  height: 25px;
  background-position: -247px -154px;
}
.c-adialog-title-bold {
  vertical-align: middle;
  font-weight: bold;
  color: #4a2b06;
}
.c-adialog-title-text {
  vertical-align: middle;
  color: #9c6615;
}

.c-adialog-qrcodeBox {
  position: relative;
  padding-bottom: 28px;
}
.c-adialog-qrcode {
  display: inline-block;
  width: 170px;
  background: #fff;
  box-shadow: 0px 4px 17px 0px rgba(4, 80, 168, 0.15);
  border-radius: 10px;
  border: 1px solid #0076fe;
  font-size: 0px;
  overflow: hidden;
  margin: 26px auto 12px;
}
.c-adialog-qrcode img {
  width: 100%;
}
.c-adialog-title-redText {
  color: #f86d41;
}
.c-adialog-qrcode-desc {
  color: #999999;
  font-size: 14px;
}
.c-adialog-privilege-head {
  padding-bottom: 12px;
}
.c-adialog-privilege-devide {
  display: inline-block;
  width: 70px;
  opacity: 1;
  border: 1px solid;
  vertical-align: middle;
}
.c-adialog-privilege-devide.c-left-devide {
  border-image: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0),
      rgba(204, 144, 59, 1)
    )
    1 1;
}
.c-adialog-privilege-devide.c-right-devide {
  border-image: linear-gradient(
      90deg,
      rgba(204, 144, 59, 1),
      rgba(255, 255, 255, 0)
    )
    1 1;
}
.c-adialog-privilege-title {
  font-size: 14px;
  font-weight: bold;
  color: #4a2b06;
  margin: 0 12px;
}
.c-adialog-privilege-item {
  display: inline-block;
  width: 84px;
  text-align: center;
  margin: 0 20px 20px;
}
.c-adialog-privilege-label {
  font-size: 12px;
  color: #333940;
}
.c-adialog-privilege-list {
  padding-bottom: 4px;
}
a.c-adialog-privilege-item {
  text-decoration: none;
}
a.c-adialog-privilege-item:hover .c-adialog-privilege-label {
  text-decoration: underline;
}
.c-adialog-privilege-item .c-adialog-privilege-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
}
.c-adialog-privilege-noAd .c-adialog-privilege-icon {
  background-position: -168px -114px;
}
.c-adialog-privilege-setLogo .c-adialog-privilege-icon {
  background-position: -207px -114px;
}
.c-adialog-privilege-addMusic .c-adialog-privilege-icon {
  background-position: -249px -114px;
}
.c-adialog-privilege-template .c-adialog-privilege-icon {
  background-position: -128px -154px;
}
.c-adialog-privilege-statistic .c-adialog-privilege-icon {
  background-position: -167px -154px;
}
.c-adialog-privilege-more .c-adialog-privilege-icon {
  background-position: -209px -154px;
}
.c-adialog-close-icon {
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -54px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-position: -148px -12px;
}

/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/buyMicroPage/css/buyMicroPage.css ***!
  \*****************************************************************************************/
.c-buyMicroPage-body {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
}
.c-buyMicroPage-power-body {
  background-color: rgb(35, 35, 35);
  background-image: url(./f4da232adc88a1d998b1.svg);
  background-repeat: no-repeat;
  width: 260px;
  border-radius: 0px;
  padding: 32px 24px 16px;
  box-sizing: border-box;
}
.c-buyMicroPage-buy-body {
  width: 540px;
}
.c-buyMicroPage-icon {
  background: url(./f9baa46ae58508863d3b.png);
  display: inline-block;
  vertical-align: middle;
}
.c-buyMicroPage-icon-vip {
  width: 36px;
  height: 36px;
  background-position: -2px -4px;
}
.c-buyMicroPage-power-title {
  color: #04bdb2;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: normal;
}
.c-buyMicroPage-power-tips {
  margin-top: 4px;
  color: #66908b;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-power-morebtn {
  display: flex;
  border-radius: 4px;
  background: rgba(4, 189, 178, 0.1);
  width: 178px;
  height: 28px;
  line-height: 28px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: rgba(122, 255, 247, 0.6);
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  margin: auto;
}
.c-buyMicroPage-power-morebtn:hover {
  background: rgba(4, 234, 220, 0.1);
}
.c-buyMicroPage-icon-right-arrow.c-buyMicroPage-icon {
  width: 6px;
  height: 8px;
  background-position: -304px -14px;
}
.c-buyMicroPage-power-list {
  text-align: left;
  margin-top: 20px;
}
.c-buyMicroPage-power-cate {
  margin-bottom: 16px;
}
.c-buyMicroPage-power-cate-title {
  color: #edf3f2;
  font-size: 13px;
  font-weight: 700;
  line-height: normal;
}
.c-buyMicroPage-power-item {
  color: #b2b2b2;
  font-size: 12px;
  font-weight: 400;
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.c-buyMicroPage-power-item .c-buyMicroPage-icon {
  width: 14px;
  height: 14px;
  margin-right: 8px;
}
.c-buyMicroPage-icon.c-buyMicroPage-icon-correct {
  background-position: -242px -13px;
}
.c-buyMicroPage-icon.c-buyMicroPage-icon-false {
  background-position: -272px -10px;
}

/* 右侧价格面板 */
.c-buyMicroPage-buy-body {
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%), #fff;
}

/* 头部会员栏 */
.c-buyMicroPage-icon.c-buyMicroPage-icon-close {
  position: absolute;
  cursor: pointer;
  right: 16px;
  top: 12px;
  width: 24px;
  height: 24px;
  background-position: -208px -6px;
}
.c-buyMicroPage-qrcode-trigger {
  color: #0076fe;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  padding-left: 8px;
}
.c-buyMicroPage-pop-qrcode {
  width: 124px;
  height: 124px;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 1px solid rgba(0, 118, 254, 0.9);
  background: #fff;
  margin: 22px auto;
}
.c-buyMicroPage-user-bar {
  height: 48px;
  display: flex;
  justify-content: left;
  align-items: center;
  background-color: #f5f7f9;
  background-image: url(./23779ec40c722f017a9f.svg);
  background-repeat: no-repeat;
  background-position-x: 100%;
  padding: 0 16px;
  box-sizing: border-box;
}
.c-buyMicroPage-user-infos {
  height: 48px;
  display: flex;
  justify-content: left;
  align-items: center;
  font-size: 12px;
}
.c-buyMicroPage-user-infos.c-buyMicroPage-user-login {
  cursor: pointer;
}
.c-buyMicroPage-uName {
  color: #1d2129;
  max-width: 66px;
  white-space: nowrap; /* 防止换行 */
  overflow: hidden; /* 隐藏超出部分 */
  text-overflow: ellipsis; /* 显示省略号 */
  margin-right: 6px;
}
.c-buyMicroPage-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid #f4f4f4;
  border-radius: 50%;
  box-sizing: border-box;
  margin-right: 4px;
  border-radius: 50%;
}
.c-buyMicroPage-utype-tip {
  color: #999;
}
.c-buyMicroPage-devide {
  height: 14px;
  display: inline-block;
  width: 1px;
  background-color: #999;
  vertical-align: middle;
  margin: 0 6px;
}
.c-buyMicroPage-iframe-box {
  display: block;
  z-index: 2099;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.c-buyMicroPage-iframe-box .c-buyMicroPage-iframe {
  width: 100%;
  height: 100%;
}

/* 会员列表 */
.c-buyMicroPage-vip-list {
  display: flex;
  gap: 21px;
}
.c-buyMicroPage-vip-item {
  cursor: pointer;
  display: flex;
  width: 150px;
  height: 147px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  outline: 1px solid #f1f1f1;
  background: #fff;
  box-shadow: 0px 0px 16px 1px rgba(10, 46, 33, 0.04);
  position: relative;
}
.c-buyMicroPage-vip-item-disabled {
  /* cursor: default;
  opacity: 0.7; */
  display: none;
}
.c-buyMicroPage-vip-item:not(.c-buyMicroPage-vip-item-disabled):hover {
  background: #f0fbfa;
}
.c-buyMicroPage-vip-item.c-buyMicroPage-vip-item-active {
  outline: 2px solid #04bdb2;
  background: linear-gradient(0deg, #f0fbfa 0%, #f0fbfa 100%), #fff;
  box-shadow: 0px 0px 16px 1px rgba(10, 46, 33, 0.12);
}
.c-buyMicroPage-icon-checked {
  position: absolute;
  visibility: hidden;
  right: 0;
  bottom: 0;
  width: 28px;
  height: 28px;
  background-position: -169px -4px;
}
.c-buyMicroPage-vip-item-active .c-buyMicroPage-vip-tag {
  left: -2px;
}
.c-buyMicroPage-vip-item-active .c-buyMicroPage-icon-checked {
  visibility: visible;
}
.c-buyMicroPage-vip-content {
  text-align: center;
}
.c-buyMicroPag-vip-name {
  color: #3b3e3e;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPag-vip-price {
  color: #1d2129;
  font-size: 12px;
  font-weight: 700;
}
.c-buyMicroPag-vip-originPrice {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  text-decoration: line-through;
  padding-bottom: 4px;
}
.c-buyMicroPag-vip-amount {
  font-family: DINOT;
  font-size: 40px;
  line-height: normal;
}
.c-buyMicroPag-vip-unit {
  font-weight: 400;
}
.c-buyMicroPage-buy-main {
  position: relative;
  box-sizing: border-box;
  padding: 46px 24px 24px;
}
.c-buyMicroPage-618-tag {
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.c-buyMicroPage-loading-gif {
  animation: rotate360 0.5s linear infinite;
  width: 36px;
  height: 36px;
}
.c-buyMicroPage-isLoading .c-buyMicroPage-loading-box {
  visibility: visible;
}
.c-buyMicroPage-loading-box {
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.6);
}
.c-buyMicroPag-vip-time {
  color: #999;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-vip-tag {
  position: absolute;
  left: -1px;
  top: -12px;
  width: 44px;
  height: 24px;
}
/* 功能图文介绍 */
.c-buyMicroPage-vip-fun {
  margin-top: 16px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 24px 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  color: #5d7c7c;
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-fun-icon {
  margin-bottom: 8px;
}
.c-buyMicroPage-fun-icon img {
  width: 44px;
  height: 44px;
}

.c-buyMicroPage-pay-box {
  margin-top: 18px;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  padding: 40px 0px;
  /* justify-content: center; */
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  background-color: #fff;
  padding-left: 84px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.c-buyMicroPage-pay-618tag {
  position: absolute;
  left: 0;
  right: 0;
  height: 22px;
  line-height: 22px;
  text-align: center;
  top: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  /* background: linear-gradient(174.5deg, #ffc85f -55.29%, #f9954d 53.91%); */
  background: linear-gradient(117.52deg, #8854F8 21.82%, #6330CE 57.66%);
}
.c-buyMicroPage-pay-tips {
  font-size: 12px;
  color: #999;
  margin-bottom: 6px;
  text-align: left;
}
.c-buyMicroPage-pay-code {
  width: 100%;
  height: 100%;
}
.c-buyMicroPage-pay-qrcode {
  width: 140px;
  height: 140px;
  border: 1px solid #ececec;
  background-color: #bdbdbd;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-buyMicroPage-pay-right {
  position: relative;
  text-align: left;
}
.c-buyMicroPage-payqr-arrow {
  position: absolute;
  top: -40px;
  left: -17px;
  width: 40px;
  height: 32px;
  background-position: -301px -54px;
}
.c-buyMicroPage-payqr-title {
  color: #3b3e3e;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 3px;
}
.c-buyMicroPage-payqr-subtitle {
  text-align: left;
  color: rgba(93, 124, 124, 0.8);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
.c-buyMicroPage-pay-type {
  color: #999;
  font-size: 12px;
  line-height: normal;
  margin: 4px 0px;
}
.c-buyMicroPage-pay-type img {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}
.c-buyMicroPage-pay-type img.c-wechat-icon {
  height: 18px;
}
.c-buyMicroPage-pay-amount {
  color: #999;
  font-size: 12px;
}
.c-buyMicroPage-pay-amount .c-amount-icon {
  color: #f75b64;
  font-family: DINOT;
  font-size: 10px;
  font-weight: 700;
  line-height: normal;
}
.c-buyMicroPage-pay-amount .c-buyMicroPage-total-amount {
  color: #f75b64;
  font-family: DINOT;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

/* 未绑定手机或微信时的提示信息模块 */
.c-buyMicroPage-bind-box {
  margin-top: 28px;
  box-sizing: border-box;
  width: 100%;
  padding: 48px 28px;
  height: 221px;
  background-color: #fff;
  text-align: left;
}
.c-buyMicroPage-bind-title {
  font-size: 14px;
  font-weight: bold;
}
.c-buyMicroPage-bind-desc {
  margin-top: 4px;
  font-size: 14px;
  line-height: 22px;
}
.c-buyMicroPage-bind-desc .c-buyMicroPage-bold {
  font-weight: bold;
  font-size: 15px;
}
.c-buyMicroPage-bind-btns {
  text-align: right;
  width: 100%;
  margin-top: 12px;
  padding-right: 24px;
  box-sizing: border-box;
}
.c-buyMicroPage-bind-btn {
  color: #fff;
  display: inline-block;
  background-color: #04bdb2;
  border-radius: 4px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  width: 100px;
  cursor: pointer;
  font-size: 14px;
}
.c-buyMicroPage-bind-btn:hover {
  background-color: #03c7ba;
}
.c-buyMicroPage-bind-link {
  color: #03c7ba;
  font-weight: bold;
  cursor: pointer;
  text-decoration: underline;
}
.bind-phone-dialog-content {
  width: 100% !important;
  height: 100%;
  background-color: unset !important;
}
.c-buyMicroPage-bind-phone-box {
  width: 100%;
  height: 100%;
}
.c-buyMicroPage-bind-phone-box > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*!***************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/buyMicroPage/css/buySuccess.css ***!
  \***************************************************************************************/
.c-buymicro-success {
  border-radius: 20px;
  background: linear-gradient(180deg, #313333 0%, #212121 100%), #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.12);
  position: relative;
  padding: 48px 0 32px;
  box-sizing: border-box;
}
.c-buymicro-success-bg {
  position: absolute;
  top: 9px;
  right: 0px;
}
.c-buymicro-success-title {
  color: #c7fff7;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  padding-left: 40px;
}
.c-buymicro-success-title .c-success-bold {
  font-weight: 700;
}
.c-buymicro-success-title .c-success-bold font {
  color: #51f7e5;
}
.c-buymicro-success-devide {
  margin-top: 40px;
  display: flex;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.c-buymicro-success-devide .c-success-devide-text {
  color: #51f7e5;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
.c-buymicro-success-devide img {
  width: 69px;
}
.c-buymicro-success .c-buyMicroPage-vip-fun {
  background: none;
  padding: 0 30px;
  margin-top: 26px;
  color: #c7fff7;
}
.c-buymicro-success-blue {
  box-sizing: border-box;
  width: 300px;
  margin: 54px auto 0;
  text-align: center;
  height: 56px;
  line-height: 56px;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(120.04deg, #2dfdd8 -9.98%, #04bdb2 57.7%);
  border-radius: 28px;
}
.c-buymicro-success-blue:hover {
  background: linear-gradient(120.04deg, #2dfdd8 -9.98%, #04bdb2 57.7%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
}

/*!***************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/login/css/login.css ***!
  \***************************************************************************/
.c-yz-login-iframe-box {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 2000;
  top: 0;
  left: 0;
  border: none;
}

/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/sharePopover/css/sharePopover.css ***!
  \*****************************************************************************************/
.c-share-popover {
  position: relative;
  padding: 10px;
}
.c-share-pop-qrcode-box {
  display: flex;
  /* justify-content: space-between; */
  justify-content: center;
  gap: 48px;
}
.c-share-pop-qr-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.c-share-pop-qr-title {
  font-size: 12px;
  color: #333940;
  line-height: 24px;
}
.c-share-pop-qr-code {
  width: 150px;
  height: 150px;
}
.c-share-pop-qr-tabs {
  display: flex;
  gap: 12px;
}
.c-share-pop-switch-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-share-pop-switch-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 24px;
  font-size: 12px;
  border: 1px solid #eee;
  cursor: pointer;
  color: #999;
}

.c-share-pop-switch-btn .c-share-pop-icon {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.c-share-pop-switch-btn.c-share-pop-left {
  border-radius: 12px 0px 0px 12px;
  border-right: none;
}

.c-share-pop-switch-btn.c-share-pop-left .c-share-pop-icon {
  background-position: -143px -252px;
}

.c-share-pop-switch-btn.c-share-pop-right {
  border-radius: 0px 12px 12px 0px;
}

.c-share-pop-switch-btn.c-share-pop-right .c-share-pop-icon {
  background-position: -185px -252px;
}

.c-share-pop-switch-btn.active,
.c-share-pop-switch-btn:hover {
  color: #333;
}

.c-share-pop-switch-btn.c-share-pop-left.active .c-share-pop-icon,
.c-share-pop-switch-btn.c-share-pop-left:hover .c-share-pop-icon {
  background-position: -120px -252px;
}

.c-share-pop-switch-btn.c-share-pop-right.active .c-share-pop-icon,
.c-share-pop-switch-btn.c-share-pop-right:hover .c-share-pop-icon {
  background-position: -166px -252px;
}
.c-share-pop-copyLinkArea {
  margin-top: 20px;
  font-size: 13px;
}

.c-share-pop-text {
  position: absolute;
  box-sizing: border-box;
  color: #666;
  background: #f7f7f9;
  border-right: none;
  height: 34px;
  line-height: 34px;
  border-radius: 4px 0 0 4px;
  text-align: center;
  width: 84px;
  left: 1px;
  top: 1px;
}

.c-share-pop-linkInput {
  position: relative;
}

.c-share-pop-input {
  border-radius: 4px;
  padding: 0 96px;
  color: #999;
  overflow: hidden;
  width: 100%;
  height: 36px;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.c-share-pop-input:focus,
.c-share-pop-input:active {
  outline: none;
  border: 1px solid #0076fe;
}

.c-share-pop-operate {
  color: #0076fe;
  position: absolute;
  height: 32px;
  line-height: 32px;
  right: 0px;
  top: 2px;
}

.c-share-pop-link {
  color: #0076fe;
  display: inline-block;
  padding: 0 8px;
  vertical-align: middle;
  text-decoration: none;
}

.c-share-pop-copyBtn {
  cursor: pointer;
  display: inline-block;
  padding: 0 8px;
  vertical-align: middle;
}

.c-share-pop-devide {
  display: inline-block;
  border-left: 1px solid #eaeaea;
  height: 20px;
  vertical-align: middle;
}
.c-share-pop-share-container {
  margin-top: 20px;
  text-align: left;
}
.c-share-pop-share-title {
  font-size: 12px;
  color: #333940;
  line-height: 24px;
}
.c-share-pop-share-wrapper {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-share-pop-share-list {
  display: flex;
  gap: 16px;
  align-items: center;
}
.c-share-pop-share-item {
  width: 32px;
  height: 32px;
}
.c-share-pop-share-item img {
  width: 100%;
  height: 100%;
}
.c-share-pop-support-popover {
  padding: 20px 0px;
}
.c-share-pop-support-step {
  display: inline-block;
  padding: 0 32px;
  vertical-align: top;
}
.c-share-pop-support-text {
  line-height: 18px;
  color: #0076fe;
  text-align: center;
}
.c-share-pop-help-trigger {
  font-size: 12px;
  color: #0076fe;
  cursor: pointer;
}

/*!*********************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/userTeam/css/userTeam.css ***!
  \*********************************************************************************/
.user-team-icon {
  background-image: url(./5b2d11b29f87efb03a21.png);
  background-repeat: no-repeat;
  display: inline-block;
}
.user-team-hidden {
  visibility: hidden;
}
.user-team-dialog {
  /* max-width: 400px; */
  overflow: hidden;
}
.user-team-dialog> div {
  box-sizing: border-box;
}
.user-team-btn {
  font-size: 14px;
  line-height: 22px;
  /* padding: 10px; */
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
}
.user-team-btn + .user-team-btn {
  margin-top: 12px;
}
.user-team-btn-blue {
  border: 1px solid #0076FE;
  background-color: #0076FE;
  color: #fff;
}
.user-team-btn-blue:hover {
  cursor: pointer;
  background-color: #3391FE;
}
.user-team-btn-blue:active {
  background-color: #006AE5;
}
.user-team-btn-blue.disabled {
  border-color: #A0CFFF;
  background-color: #A0CFFF;
  cursor: not-allowed;
}
.user-team-btn-blue.disabled:hover {
  cursor: not-allowed;
}
.user-team-btn-white {
  border: 1px solid #E5E7EB;
  background-color: #fff;
  color: #333940;
}
.user-team-btn-white:hover {
  background-color: #f5f5f7;
  cursor: pointer;
}
.user-team-body {
  /* min-height: 312px; */
}
.user-team-list-box {
  margin: 16px 0; 
  max-height: 275px;
  /* height: 100%; */
  height: 275px;
  overflow: auto;
  padding-right: 9px;      /* 补偿滚动条宽度，防止内容被遮挡 */
  margin-right: -15px;      /* 通过负边距将滚动条推出容器外 */
  scrollbar-gutter: stable;
}
/* 滚动条整体部分 */
.user-team-list-box::-webkit-scrollbar {
  width: 6px;
  background: transparent;
}
/* 滚动条滑块 */
.user-team-list-box::-webkit-scrollbar-thumb {
  background-color: #E5E7EB;
  border-radius: 3px;
}
/* 滚动条轨道 */
.user-team-list-box::-webkit-scrollbar-track {
  background-color: #fff;
  margin: 2px 0;
}
.user-team-list-item {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-team-list-item:last-child {
  margin-bottom: 0;
}
.user-team-list-item:hover {
  background: #E8F3FF;
  border: 1px solid #0076FE;
  cursor: pointer;
}
.user-team-list-item-user-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  overflow: hidden;
}
.user-team-list-item-avater {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.user-team-list-item-text-box {
  text-align: left;
  flex: 1;
  overflow: hidden;
}
.user-team-list-item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #333940;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-team-list-item-desc {
  color: #999;
  font-size: 12px;
  margin-top: 4px;
}
.user-team-list-level {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  line-height: 16px;
  margin: 2px 0 2px 4px;
  border-radius: 2px;
}
.user-team-list-level-team {
  background-color: #0076FE;
}
.user-team-list-level-0 {
  background-color: #E9F3FA;
  color: #658CB0;
}
.user-team-list-level-1 {
  background-color: #C29655;
}
.user-team-list-level-2 {
  background-color: #E49F00;
}
.user-team-list-level-3 {
  background-color: #684FDE;
}
.user-team-list-level-4 {
  background-color: #2C91FE;
}
.user-team-list-level-5 {
  background-color:#00C261;
}
/* .user-team-list-level-person {
  background-color: #2C91FE;
} */
.user-team-list-item-select {
  height: 24px;
  width: 24px;
  background-position: -34px -4px;
  flex-shrink: 0;
}
.user-team-list-item:not(.active-user-team-list-item):hover > .user-team-list-item-select {
  background-position: -34px -34px;
}
.active-user-team-list-item  {
  border: 1px solid #0076FE;
  background-color: #E8F3FF;
}
.active-user-team-list-item >.user-team-list-item-select {
  background-position: -34px -93px;
}
.user-team-create-content {
  margin-top: 32px;
  text-align: left;
}
.user-team-create-name {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 6px;
  margin-top: 16px;
  color: #333940;
}
.user-team-create-name > span {
  color: #FF5556;
}
.user-team-create-name-input-box {
  position: relative;
}
.user-team-create-name-input-error {
  color: #ff5556;
  font-size: 12px;
  position: absolute;
  left: 0;
}
.user-team-create-name-input {
  padding: 8px 14px;
  border: 1px solid #E5E7EB;
  background-color: #fff;
  border-radius: 6px;
  width: 100%;
  height: 40px;
}
.user-team-create-name-input:focus {
  border-color: #0076FE;
  outline: none;;
}
.user-team-create-name-input.input-error{
  border-color: #ff5556;
}
.user-team-upload-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  border: 1px dashed #E5E7EB;
  background: #FFFFFF;
  border-radius: 6px;
  cursor: pointer;
  overflow: hidden;
}
.user-team-upload-btn:hover {
  border-color: #0076FE;
  background: #F5F7FA;
}
.user-team-upload-btn:hover > .user-team-upload-btn-icon {
  background-position: -4px -34px;
}
.user-team-upload-btn:hover > .user-team-logo-mask {
  opacity: 1;
}
.user-team-upload-btn-icon {
  height: 24px;
  width: 24px;
  background-position: -4px -4px;
}
.user-team-upload-btn-desc {
  font-size: 12px;
  line-height: 16px;
  color: #999999;
  margin-top: 6px;
}
.create-team-btn-box{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.create-team-btn-box > .user-team-btn {
  flex: auto;
  text-align: center;
}
.create-team-btn-box > .user-team-btn + .user-team-btn {
  margin-top: 0;
}
.user-team-logo-img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
}
.user-team-default-img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
}
.user-team-logo-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.user-team-logo-mask-btn {
  height: 26px;
  width: 52px;
  border-radius: 2px;
}
.user-team-logo-mask-hidden {
  display: none;
}
@media screen and (max-width: 600px) {
  .user-team-dialog{
    /* max-width: 100%; */
    height: auto;
  }
}
/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/upgradeModal/css/upgradeModal.css ***!
  \*****************************************************************************************/
/**/
.without-margin-bottom {
  margin-bottom: 0;
}
.yz-upgrade-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.yz-upgrade-modal-panel div {
  box-sizing: border-box;
}
.yz-upgrade-modal-panel a {
  text-decoration: none;
}
/* svg {
  height: 1rem;
  width: 1rem;
} */
.yz-upgrade-common-btn {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #333940;
  box-sizing: border-box;
}
.yz-upgrade-common-btn:hover {
  background: #E9EBEF;
}
.yz-upgrade-common-btn.disabled {
  background: #F5F5F5;
  color: #999999;
  cursor: not-allowed;
}
.yz-upgrade-common-btn.disabled:hover {
  background: #F5F5F5;
}
.yz-upgrade-common-btn-blue {
  border-radius: 8px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background: #0076FE;
  box-sizing: border-box;
}
.yz-upgrade-common-btn-blue:hover {
  background: #3391FE;
}
.yz-upgrade-common-btn-blue:active {
  background: #006AE5;
}
/* 滚动条整体部分 */
.yz-upgrade-modal-panel ::-webkit-scrollbar {
  width: 6px;
  background: transparent;
  position: absolute;
  right: 0;
  top: 0;
}
/* 滚动条滑块 */
.yz-upgrade-modal-panel ::-webkit-scrollbar-thumb {
  background-color: #E5E7EB;
  border-radius: 3px;
}
/* 滚动条轨道 */
.yz-upgrade-modal-panel ::-webkit-scrollbar-track {
  background-color: #fff;
  margin: 2px 0;
}
/**/


.yz-upgrade-modal-panel {
  width: calc(100% - 40px);
  text-align: left;
  scrollbar-gutter: stable both-edges;
  min-width: 288px;
}
/* .yz-upgrade-modal-body {
  height: 100%;
} */
.yz-upgrade-modal-panel .common-loading-box {
  border-radius: 12px;
}

.yz-upgrade-modal-panel .common-dialog-body {
  padding: 0;
  color: #333940;
  text-align: left;
}
.yz-upgrade-modal .yz-upgrade-modal-head-box {
  background-image: url(./a48bcf9e5acd4063f2e8.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 101px;
  border-radius: 12px 12px 0 0;
}
.yz-upgrade-modal .yz-upgrade-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 0;
  box-sizing: border-box;
  position: relative;
}
/*head*/
.yz-upgrade-modal-head-user {
  display: flex;
  align-items: center;
}
.yz-upgrade-modal-head-user div, .yz-upgrade-modal-head-user img {
  flex-shrink: 0;
}
.yz-upgrade-modal-head-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}
.yz-upgrade-modal-head-user-level {
  display: inline-block;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  line-height: 16px;
  border-radius: 2px;
}
.user-team-list-level-0 {
  background-color: #E9F3FA;
  color: #658CB0;
}
.user-team-list-level-1 {
  background-color: #C29655;
}
.user-team-list-level-2 {
  background-color: #E49F00;
}
.user-team-list-level-3 {
  background-color: #684FDE;
}
.user-team-list-level-4 {
  background-color: #2C91FE;
}
.user-team-list-level-5 {
  background-color:#00C261;
}
.yz-upgrade-modal-head-user-name-box {
  display: flex;
  align-items: center;
}
.yz-upgrade-modal-head-user-name {
  font-size: 14px;
  margin-right: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
  display: inline-block;
}
.yz-upgrade-modal-head-user-text {
  font-size: 12px;
  color: #495E76;
  line-height: 22px;
}
.yz-upgrade-modal-head-contact {
  position: absolute;
  right: 68px;
}
.yz-upgrade-modal-head-contact, .yz-upgrade-modal-head-contact a {
  color: #495E76;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.yz-upgrade-modal-head-contact .yz-upgrade-modal-head-contact-link {
  color: #C5C5C5;
  margin: 0 8px;
  font-size: 12px;
  position: relative;
  top: -1px;
}
.yz-upgrade-modal-head-contact-service {
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.yz-upgrade-modal-head-contact-service:hover .yz-upgrade-modal-head-service-img-box {
  display: block;
}
.yz-upgrade-modal-head-service-img-box {
  height: 164px;
  width: 164px;
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
  background: #fff;
  z-index: 2;
  position: absolute;
  right: -10px;
  top: 20px;
  display: none;
  box-shadow: 0px 12px 16px -4px #10182814;

}
.yz-upgrade-modal-head-service-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yz-upgrade-modal-tab {
  background: #E1EFFE;
  height: 45px;
  line-height: 45px;
  display: flex;
  align-items: center;
  float: right;
  width: calc(100% - 240px);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  cursor: pointer;
}
.yz-upgrade-modal-tab-item {
  flex: 1;
  text-align: center;
  height: 100%;
  vertical-align: middle;
}
.yz-upgrade-modal-tab-item-member.active {
  background-image: url(./b3d285d948b709762bb5.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.yz-upgrade-modal-tab-item-coin.active {
  background-image: url(./fa1b0c3892d698b30ec0.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.yz-upgrade-modal-tab-item.active {
  color: #0076FE;
  font-weight: 700;
}

/**/

/**/
.yz-upgrade-modal-body {
  display: flex;
  height: 568px;
  color: #333940;
  border-radius:  0 0 12px 12px;
  width: 100%;
  /* overflow: hidden; */
}
.yz-upgrade-modal-body-power {
  background: #EFF6FF;
  width: 240px;
  flex-shrink: 0;
  padding: 24px 0;
  font-size: 12px;
  color: #495E76;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 0 0 0 12px;
}
.yz-upgrade-power-info-box {
  margin: 0 10px 16px;
  border-bottom: 1px dashed #E5E7EB;
  padding-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.yz-upgrade-power-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  justify-content: center;
  margin: 0 auto;
}
.yz-upgrade-power-name {
  font-size: 14px;
  color: #333940;
  margin: 6px 0;
}
.yz-upgrade-power-list {
  padding: 0 20px;
  gap: 12px;
  overflow-y: auto;
  position: relative;
  margin-bottom: 36px;
}
.yz-upgrade-power-list::-webkit-scrollbar-track {
  background: transparent;
}
.yz-upgrade-power-list::-webkit-scrollbar {
  width: 0;
}
.yz-upgrade-power-list-item {
  margin-bottom: 16px;
}
.yz-upgrade-power-list-item-desc {
  color: #7F8E9F;
}
.yz-upgrade-power-btn {
  background: #FFFFFF;
  position: absolute;
  bottom: 24px;
  left: 30px;
  width: 180px;
}
.yz-upgrade-power-btn svg {
  color: #B5B5B5;
}
svg.yz-upgrade-power-tips{
  height: 14px;
  width: 14px;
  line-height: 17px;
  flex-shrink: 0;
  margin-left: 4px;
  position: relative;
  cursor: pointer;
}

.yz-upgrade-modal-body .yz-upgrade-modal-body-price {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
}
.yz-upgrade-modal-body-price-label-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.yz-upgrade-modal-body-price-label-box .yz-upgrade-modal-body-price-label {
  margin-bottom: 0;
}
.yz-upgrade-modal-body-price-label {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 22px;
}
.yz-upgrade-modal-body-price-label-cut {
  font-size: 14px;
  color: #495E76;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: 22px;
}
.yz-upgrade-modal-body-price-label-cut:hover {
  color: #0076FE;
  cursor: pointer;
}
.yz-upgrade-modal-body-price-list {
  /* display: flex; */
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
  /* flex-wrap: wrap; */
}
.yz-upgrade-modal-body-price-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  min-width: 120px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 12px;
  cursor: pointer;
}
.yz-upgrade-modal-body-price-item.active, .yz-upgrade-modal-body-price-item:hover {
  box-shadow: 0 0 0 0.5px #0076FE inset;
  border: 1px solid #0076FE;
}
.yz-upgrade-modal-body-price-item.active, .yz-upgrade-modal-body-price-duration-item.active {
  background: #EFF6FF;
  color: #0076FE;
  border: 1px solid #0076FE;
}
.yz-upgrade-modal-body-price-item.disabled, .yz-upgrade-modal-body-price-item.disabled:hover, .yz-upgrade-modal-body-price-coupon-item.disabled, .yz-upgrade-modal-body-price-coupon-item.disabled:hover {
  background: #F8F8F8;
  color: #B5B5B5;
  cursor: not-allowed;
  border-color: #F8F8F8;
  box-shadow: none;
}
.yz-upgrade-modal-body-price-item-name {
  text-align: center;
  margin-bottom: 12px;
}
.yz-upgrade-modal-body-price-item-num {
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}
.yz-upgrade-modal-body-price-item-num span {
  font-size: 12px;
  font-weight: 400;
}
.yz-upgrade-modal-body-price-item-origin {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
  margin-top: 8px;
}
.yz-upgrade-modal-body-price-duration, .yz-upgrade-modal-body-price-give-tool, .yz-upgrade-modal-body-price-coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
}
.yz-upgrade-modal-body-price-duration-item, .yz-upgrade-modal-body-price-give-tool-item, .yz-upgrade-modal-body-price-coupon-item {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 12px 16px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
}
.yz-upgrade-modal-body-price-duration-item:hover, .yz-upgrade-modal-body-price-give-tool-item:hover, .yz-upgrade-modal-body-price-coupon-item:hover {
  border: 1px solid #0076FE;
}
.yz-upgrade-modal-body-price-give-tool, .yz-upgrade-modal-body-price-coupon {
  display: flex;
  gap: 14px;
}
.yz-upgrade-modal-body-price-give-tool-item, .yz-upgrade-modal-body-price-coupon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 220px;
  flex: 1;
  font-size: 12px;
}
.yz-upgrade-modal-body-price-give-desc {
  display: flex;
  gap: 6px;
  line-height: 18px;
  text-align: left;
}
.yz-upgrade-modal-body-price-give-tool-item.active, .yz-upgrade-modal-body-price-coupon-item.active {
  background: #EFF6FF;
  border: 1px solid #0076FE;
}
.yz-upgrade-modal-body-price-give-tool-item.active .yz-upgrade-modal-body-price-give-title {
  color: #0076FE;
}
.yz-upgrade-modal-body-price-give-desc img {
  flex-shrink: 0;
  height: 18px;
  width: 18px
}
.yz-upgrade-modal-body-price-give-tool-item .give-price-text-line {
  text-decoration: line-through;
  margin-left: 6px;
}
.yz-upgrade-modal-body-price-give-tool-item span, .coupon-discount-desc-date {
  color: #999999;
}
.yz-upgrade-modal-body-price-give-tool-item .give-price-text {
  color: #333940;
}
.yz-upgrade-modal-body-price-give-tool-item a {
  font-size: 12px;
  color: #999999;
}
.yz-upgrade-modal-body-price-give-tool-item a:hover {
  text-decoration: underline;
  color: #0076FE;
}
.yz-upgrade-modal-body-price-coupon-item {
  text-align: left;
}
.yz-upgrade-modal-body-price-coupon-item.disabled .coupon-discount-price-box, .yz-upgrade-modal-body-price-coupon-item.disabled .coupon-discount-desc-date {
  color: #B5B5B5;
}
.yz-upgrade-modal-body-price-coupon .coupon-discount-price-box {
  color: #FF5556;
}
.yz-upgrade-modal-body-price-coupon .coupon-discount-price-box span {
  font-size: 24px;
  font-weight: 700;
}


.yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode {
  width: 240px;
  border-left: 1px solid #E5E7EB;
  text-align: center;
  padding: 0 20px;
  position: relative;
  flex-shrink: 0;
}
.yz-upgrade-modal-body-price-total {
  color: #FF5556;
  margin-top: 70px;
}
.yz-upgrade-modal-body-price-total-num {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 36px;
}
.yz-upgrade-modal-body-price-total-num span {
  font-size: 18px;
  line-height: 18px;
}
.yz-upgrade-modal-body-price-total-detail{
  font-size: 12px;
  line-height: 12px;
  cursor: pointer;
  position: relative;
  justify-content: center;
  gap: 4px;
}
.yz-upgrade-modal-body-price-total-detail .detail-text {
  display: flex;
  align-items: center;
  gap: 2px;
}
.yz-upgrade-modal-body-price-total-detail svg {
  height: 12px;
  width: 12px;
  flex-shrink: 0;
}
.yz-upgrade-modal-body-price-detail-desc {
  position: absolute;
  top: 16px;
  min-width: 230px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0px 2px 12px 0px #0000001F;
  font-size: 12px;
  color: #333940;
  text-align: left;
  display: none;
  z-index: 2;
}
.yz-upgrade-modal-body-price-detail-desc.show {
  display: block;
}
.yz-price-detail-desc-item {
  margin: 8px 0;
}
.yz-price-detail-desc-item:last-child {
  margin-bottom: 0;
}
.yz-upgrade-discount-num {
  color: #FF5556;
}

.yz-upgrade-modal-body-qrcode-img-box {
  border: 1px solid #E5E7EB;
  max-width: 176px;
  max-height: 176px;
  margin: 24px auto;
  height: 100%;
  width: 100%;
  position: relative;
  padding: 12px;
}
.yz-upgrade-modal-body-qrcode-img-box img {
  width: auto;
  height: auto;
  max-width: 152px;
  max-height: 152px;
}
.yz-upgrade-modal-body-qrcode-desc {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  font-size: 12px;
  flex-wrap: wrap;
}
.yz-upgrade-modal-body-qrcode-tips {
  font-size: 12px;
  margin-top: 8px;
  color: #666666;
}
.yz-upgrade-modal-body-qrcode-tips.gray-color{
  color: #999999;
}
.yz-upgrade-modal-body-qrcode-tips a {
  color: #0076FE;
}
.yz-upgrade-modal-body-qrcode-public-transfer {
  font-size: 12px;
  color: #999999;
  margin-top: 8px;
}
.yz-upgrade-public-transfer-btn {
  font-size: 12px;
  width: 100%;
  max-width: 176px;
  position: absolute;
  bottom: 24px;
  left: calc((100% - 176px) / 2);
}
.yz-upgrade-public-transfer-btn svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  color: #b5b5b5;
  margin-left: 8px;
}

.yz-public-transfer-box {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}
.yz-public-transfer-desc {
  margin: 16px 0;
  color: #4E5969;
}
.yz-public-transfer-title {
  color: #333940;
  font-weight: 700;
}
.yz-public-transfer-table {
  margin: 16px 0;
  background: #F6F6F6;
  padding: 20px;
}
.yz-public-transfer-table-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #EEEEEE;
  padding: 16px 0;
}
.yz-public-transfer-table-item:first-child {
  padding-top: 4px;
}
.yz-public-transfer-table-item-label {
  color: #666666;
}
.yz-public-transfer-copy-btn{
  height: 40px;
}
.yz-upgrade-modal-body-qrcode-service img {
  width: 100%;
  height: auto;
  max-width: 165px;
  max-height: 165px;
  padding: 12px;
  border: 1px solid #E5E7EB;
  margin: 143px auto 12px;
  box-sizing: border-box;
}
.yz-qrcode-service-text {
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

/* 手机端 */
.yz-upgrade-modal-mobile .yz-upgrade-modal-body {
  overflow-y: auto;
}
.yz-upgrade-modal-mobile .yz-upgrade-modal-bottom-pay {
  box-shadow: 0px 1px 6px 0px #0000001A;
  border-top: 0.5px solid #E5E7EB;
  padding: 20px;
  gap: 15px;
  height: max-content;
}
.yz-upgrade-modal-mobile .yz-upgrade-modal-body-price-total {
  margin-top: 0;
  min-width: 120px;
}
.yz-upgrade-modal-mobile .yz-upgrade-modal-body-price-total-num {
  font-size: 26px;
  line-height: 26px;
  margin-bottom: 6px;
}
.yz-upgrade-modal-mobile .yz-upgrade-modal-body-price-detail-desc {
  bottom: 16px;
  top: auto;
  left: 0;
}
.yz-upgrade-modal-bottom-pay-btn {
  flex: 1;
}


/*coin*/
.yz-coin-price-input-tool {
  justify-content: flex-start;
  gap: 4px;
}
.yz-coin-price-input-tool-btn {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border-width: 1px;
  padding: 6px;
  background: #eee;
  cursor: pointer;
}
.yz-coin-price-input {
  height: 28px;
  width: 70px;
  border-radius: 4px;
} 
input.yz-coin-price-input {
  border: 1px solid #E5E7EB;
  text-align: center;
}
input.yz-coin-price-input:focus-visible {
  outline: 1px solid #0076FE;
}
.yz-coin-price-input-box {
  display: none;
}
.yz-coin-price-input-box.show {
  display: block;
}


@media screen and (max-width: 1200px) {
  .yz-upgrade-modal-body-price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列，每列占据一半的宽度 */
    gap: 14px; /* 设置列之间的间距为14px */
  }
}
@media screen and (max-width: 1000px) {
  .yz-upgrade-modal-body-power {
    display: none;
  }
  /* .yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode {
    width: 35%;
    max-width: 224px;
  } */
  .yz-upgrade-modal-tab {
    width: 100%;
    float: left;
  }
  .yz-upgrade-modal-body-price-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 两列，每列占据一半的宽度 */
    gap: 14px; /* 设置列之间的间距为14px */
  }
  .yz-upgrade-modal-body-price-item, .yz-upgrade-modal-body-price-duration-item, .yz-upgrade-modal-body-price-give-tool-item, .yz-upgrade-modal-body-price-coupon-item {
    padding: 12px;
  }
  .yz-upgrade-modal-body-price-item-num {
    font-size: 22px;
  }
  .yz-upgrade-modal-body-price-coupon-item {
    max-width: 100%;
  }
  .yz-upgrade-public-transfer-btn {
    display: none;
  }
}
@media screen and (max-width: 800px)  {
  .yz-upgrade-modal-body-price-give-link{
    display: none;
  }
  .yz-upgrade-modal-body-qrcode {
    padding: 0 12px;
  }
  .yz-upgrade-modal-body-price-total-num {
    font-size: 30px;
  }
}
@media screen and (max-width: 600px) {
  .yz-upgrade-modal-panel {
    width: 100%;
  }
  .yz-upgrade-modal  {
    height: 100%;
    display: flex;
    flex-direction: column;
    /* display: grid;
    grid-template-rows: 1fr auto 1fr; */
  }
  .yz-upgrade-modal-body-un-upgrade .yz-upgrade-modal-body-price {
    display: none;
  }
  .yz-upgrade-modal-body-un-upgrade .yz-upgrade-modal-body-qrcode {
    width: 100%;
    max-width: 100%;
    min-height: 439px;
  }
  .yz-upgrade-modal-body {
    flex-direction: column;
    /* height: auto; */
    flex: 1;
  }
  .yz-upgrade-modal-head-contact {
    display: none;
  }
  .yz-upgrade-modal-body-price-item {
    font-size: 12px;
    min-width: auto;
  }
  .yz-upgrade-modal-body-price-item-origin {
    display: none;
  }
  .yz-upgrade-modal-body-price-item-num {
    font-size: 18px;
    margin-top: 6px;
  }
  .yz-upgrade-modal-body-price-coupon .coupon-discount-price-box span {
    font-size: 16px;
  }
  .yz-upgrade-modal-body-qrcode.yz-upgrade-modal-body-qrcode-buy {
    display: none;
  }
}
/*!*****************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/upgradeModal/css/successPanel.css ***!
  \*****************************************************************************************/
.yz-upgrade-success-dialog {
  overflow: hidden;
  /* width: calc(100% - 40px); */
}
.yz-upgrade-success-box {
  height: 400px;
  padding: 30px;
  text-align: left;
  box-sizing: border-box;
  background-size: 100% 100%;
}
.yz-upgrade-success-desc-img {
  height: auto;
  width: auto;
  margin: 28px 0;
}
.yz-upgrade-success-text1 {
  font-size: 24px;
  color: #191F35;
  font-weight: 700;
  margin-top: 24px;
}
.yz-upgrade-success-text2 {
  font-weight: 700;
  font-size: 28px;
  color: #191F35;
  margin-top: 8px;
}
.yz-succee-level-icon {
  background-image: url(./3f8c08730c4f7e014db2.png);
  background-repeat: no-repeat;
  width: 103px;
  height: 35px;
  font-size: 12px;
  color: #fff;
  position: relative;
}
.yz-succee-level-name {
  position: absolute;
  top: 11px;
  left: 36px;
  font-weight: 700;
}
.yz-succee-level-1 {
  background-position: 0 0;
}
.yz-succee-level-2 {
  background-position: 0 -78px;
}
.yz-succee-level-3 {
  background-position: 0 -39px;
}
.yz-succee-level-4 {
  background-position: 0 -117px;
}
.yz-upgrade-success-btn {
  width: 100%;
  border-radius: 8px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background: #0076FE;
  box-sizing: border-box;
  font-size: 14px;
}
.yz-upgrade-success-btn:hover {
  background: #3391FE;
}
.yz-upgrade-success-btn:active {
  background: #006AE5;
}

/*!***********************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/oldUserPanelPop/css/oldUserPanelPop.css ***!
  \***********************************************************************************************/
#cm_userpanel_pop a {
  text-decoration: none;
}

#cm_userpanel_pop {
  position: fixed;
  width: fit-content;
  z-index: 9999;
  box-sizing: border-box;
}

.cm_userpanel_pop_box {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.24);
  border-radius: 4px;
  position: relative;
}

#cm_userpanel_pop .cmup_top {
  background-image: url(./13539704f096acb9cdca.png);
  width: 100%;
  height: 180px;
  padding-top: 20px;
  box-sizing: border-box;
  background-size: cover;
}

#cm_userpanel_pop .cmup_avatar {
  display: block;
  text-align: center;
  overflow: visible;
  line-height: 0;
  font-size: 0;
  border: 1px solid #f4f4f4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 0px auto 4px;
  box-sizing: border-box;
  position: relative;
}

#cm_userpanel_pop .cmup_avatar img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}

#cm_userpanel_pop .cmup_uName {
  display: flex;
  justify-content: center;
  width: 100%;
  font-weight: bold;
  text-align: center;
}
#cm_userpanel_pop .cmup_uName_cotent {
  cursor: pointer;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
#cm_userpanel_pop .cmup_uName_input {
  width: 100%;
  text-align: center;
  display: none;
  height: 21px;
}
.cmup_avatar_trigger{
    position: relative;
}
#cm_userpanel_pop .cmup_popIcon,
.cmup_avatar_trigger .cmup_popIcon {
  box-sizing: border-box;
  vertical-align: text-bottom;
  display: inline-block;
  background-image: url(./ad1ac145302c7bb474b3.png);
}

#cm_userpanel_pop .cmup_popIcon.cmup_level {
  width: 20px;
  height: 21px;
  top: 16px;
  right: 20px;
  position: absolute;
  right: -5px;
  bottom: -4px;
}
#cm_userpanel_pop .cmup_edit_icon {
  vertical-align: baseline;
  width: 20px;
  height: 21px;
  cursor: pointer;
  background-position: -140px -104px;
}

#cm_userpanel_pop .cmup_account {
  font-size: 12px;
  line-height: 16px;
  color: #999999;
  text-align: center;
}

#cm_userpanel_pop .cmup_levelInfoBox {
  box-sizing: border-box;
  margin: 10px;
  padding: 10px;
  width: 232px;
  height: 56px;
  background: linear-gradient(
    270deg,
    rgba(255, 251, 244, 0.1) 0%,
    #fff6e7 100%
  );
  border-radius: 4px;
  font-size: 12px;
  position: relative;
}

#cm_userpanel_pop .cmup_levelInfoBox .cmup_accountType {
  font-weight: bold;
  color: #6a3214;
  margin-bottom: 2px;
}

#cm_userpanel_pop .cmup_levelInfoBox .cmup_expireTime {
  color: #666666;
}

#cm_userpanel_pop .cmup_levelInfoBox .cmup_upgradeBtn {
  position: absolute;
  right: 10px;
  top: 16px;
  width: 68px;
  height: 24px;
  background: linear-gradient(90deg, #fad7aa 0%, #e6b16f 100%);
  border-radius: 12px;
  display: block;
  color: #6a3214;
  text-align: center;
  line-height: 24px;
}

#cm_userpanel_pop .cmup_levelInfoBox .cmup_upgradeBtn:hover {
  background: linear-gradient(90deg, #f8d2a0 0%, #efa446 100%);
}

#cm_userpanel_pop_menu {
  padding: 10px 6px;
  font-size: 12px;
  box-sizing: border-box;
}

#cm_userpanel_pop_menu .cmup_menuItem {
  display: inline-block;
  margin: 6px;
  width: 73px;
  height: 68px;
  background: rgba(242, 245, 250);
  border-radius: 4px;
  text-align: center;
  color: #727d88;
  box-sizing: border-box;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover {
  background: rgba(0, 118, 254);
  color: #fff;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.uPanel {
  background-position: 3px -70px;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.files {
  background-position: -33px -70px;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.bookcase {
  background-position: -69px -70px;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.statistics {
  background-position: 3px -105px;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.account {
  background-position: -33px -105px;
}

#cm_userpanel_pop_menu .cmup_menuItem:hover .cmup_popIcon.invoice {
  background-position: -70px -104px;
}

#cm_userpanel_pop_menu .cmup_menuItem .iconBox {
  margin: 12px auto 6px;
}

#cm_userpanel_pop_menu .cmup_popIcon {
  width: 22px;
  height: 22px;
}

#cm_userpanel_pop_menu .cmup_popIcon.uPanel {
  background-position: 3px 2px;
}

#cm_userpanel_pop_menu .cmup_popIcon.files {
  background-position: -33px 2px;
}

#cm_userpanel_pop_menu .cmup_popIcon.bookcase {
  background-position: -69px 3px;
}

#cm_userpanel_pop_menu .cmup_popIcon.statistics {
  background-position: 3px -33px;
}

#cm_userpanel_pop_menu .cmup_popIcon.account {
  background-position: -33px -34px;
}

#cm_userpanel_pop_menu .cmup_popIcon.invoice {
  background-position: -70px -32px;
}

#cm_userpanel_pop_menu .cmup_name {
  line-height: 16px;
}

#cm_userpanel_pop .cmup_bottom.cmup_logout {
  display: block;
  position: absolute;
  font-size: 12px;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(248, 248, 248);
  border-radius: 0px 0px 4px 4px;
  color: #999999;
}

#cm_userpanel_pop .cmup_bottom.cmup_logout:hover {
  background: rgba(242, 242, 242);
  color: #ff5556;
}

.cmup_uName_text {
  display: inline-block;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cmup_uName_text:hover {
  text-decoration: underline;
}

.cmup_input {
  outline-style: none;
  border: none;
  border-bottom: 1px solid #333;
}

.cmup_input:focus {
  border-bottom: 1px solid #333;
  outline: 0;
}
.cm_userpanel_userid_box {
  position: absolute;
  left: 16px;
  top: 16px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  padding: 0 6px;
  background-color: rgb(242, 245, 250);
  border-radius: 10px;
}
.cm_userpanel_userid_box {
  position: absolute;
  left: 14px;
  top: 8px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  padding: 0 8px 0 20px;
  background-color: rgb(242, 245, 250);
  border-radius: 10px;
  color: #999;
}
.cm_userpanel_userid_icon.cmup_popIcon {
  position: absolute;
  left: -6px;
  top: -1px;
  height: 22px;
  line-height: 22px;
  width: 22px;
  background-position: -1px -141px;
}
.cmup_avatar_trigger .cmup_avatar_img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
}
.cmup_avatar_trigger .cmup_popIcon {
  width: 20px;
  height: 21px;
  position: absolute;
  bottom: -4px;
  right: -5px;
}
#cm_userpanel_pop .cm_userpanel_yunbi_bar {
  box-sizing: border-box;
  width: calc(100% - 24px);
  margin: 8px 12px 0px;
  height: 56px;
  padding: 0 12px;
  border-radius: 8px 8px 0px 0px;
  background: linear-gradient(
      0deg,
      rgba(239, 246, 255, 0.1) -119.28%,
      #eff6ff 4.34%
    ),
    #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cm_userpanel_pop .cm_userpanel_yunbi_left a {
  color: #666;
  font-size: 12px;
  cursor: pointer;
}
#cm_userpanel_pop .cm_userpanel_yunbi_left a:hover {
  text-decoration: underline;
}
#cm_userpanel_pop .cm_userpanel_yunbi_balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0c2644;
  font-size: 11px;
  line-height: 22px;
}
#cm_userpanel_pop .cm_userpanel_yunbi_balance .cm_userpanel_yunbi_num {
  color: #0c2644;
  font-size: 16px;
  font-weight: 700;
}
#cm_userpanel_pop .cm_userpanel_yunbi_balance img {
  padding: 0 0 2px 2px;
}
#cm_userpanel_pop .cm_userpanel_yunbi_btn {
  width: 68px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  background: #0076fe;
}
#cm_userpanel_pop .cm_userpanel_yunbi_btn:hover {
  background: #3391fe;
}
#cm_userpanel_pop .cm_userpanel_yunbi_btn:active {
  background: #006ae5;
}
#cm_userpanel_pop a.cmup_account_bind {
  height: 22px;
  line-height: 22px;
  font-size: 12px;
  padding: 0 8px;
  border: 1px solid #eee;
  color: #666;
  cursor: pointer;
  margin-left: 2px;
  display: inline-block;
}
#cm_userpanel_pop a.cmup_account_bind:hover {
  border: 1px solid #b3d6ff;
  color: #0076fe;
}

/*!*************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/userPanelPopover/css/userPanelPopover.css ***!
  \*************************************************************************************************/
.c-user-panel-popover {
  text-align: left;
}
.c-common-popover-content.user-panel-popover {
  padding: 16px;
}
.c-user-panel-avatar-trigger {
  border-radius: 50%;
  border: 1px solid #f4f4f4;
  font-size: 0;
  position: relative;
  cursor: pointer;
}
.c-user-panel-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.c-user-panel-icon {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  vertical-align: text-bottom;
  display: inline-block;
  background-image: url(./ad1ac145302c7bb474b3.png);
}
.c-user-panel-icon.c-user-panel-icon-level {
  width: 20px;
  height: 21px;
  top: 16px;
  right: 20px;
  position: absolute;
  right: -6px;
  bottom: -3px;
}

.c-user-panel-basic-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.c-user-panel-basic-info-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.c-user-panel-basic-info-content {
  width: calc(100% - 46px);
}
.c-user-panel-basic-info-name {
  font-size: 14px;
  font-weight: 600;
  color: #333940;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-break: break-all;
}

.c-user-panel-basic-info-id {
  font-size: 12px;
  color: #999999;
  display: flex;
  align-items: center;
}

.c-user-panel-copy-btn {
  cursor: pointer;
  width: 14px;
  height: 14px;
}

.c-user-panel-copy-btn:hover {
  opacity: 0.8;
}

.c-user-panel-basic-info-id span {
  padding: 2px 4px;
  border-radius: 2px;
}
.c-user-panel-basic-info-id span.selected {
  background-color: #e8f0fe;
  color: #1a73e8;
}
.c-user-panel-bar {
  box-sizing: border-box;
  padding: 12px;
  width: 100%;
  height: 66px;
  border-radius: 8px;
  font-size: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.c-user-panel-vip-info {
  background: #fff3df;
}

.c-user-panel-vip-info-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
  color: #6a3214;
  font-size: 14px;
  margin-bottom: 6px;
}

.c-user-panel-vip-info-expire {
  color: #666666;
}

.c-user-panel-info-bar-btn {
  width: 72px;
  height: 30px;
  border-radius: 15px;
  display: block;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.c-user-panel-vip-info-upgrade {
  background: linear-gradient(90deg, #fad7aa 0%, #e6b16f 100%);
  color: #6a3214;
}

.c-user-panel-vip-info-upgrade:hover {
  background: linear-gradient(90deg, #f8d2a0 0%, #efa446 100%);
}

.c-user-panel-yunbi-info {
  background: #eff6ff;
}
.c-user-panel-vip-yunbi-btn {
  background: #0076fe;
  color: #fff;
}
.c-user-panel-vip-yunbi-btn:hover {
  background: #0076fe;
  opacity: 0.8;
}

.c-user-panel-yunbi-left a {
  color: #666;
  font-size: 12px;
  cursor: pointer;
  text-decoration: none;
}
.c-user-panel-yunbi-left a:hover {
  text-decoration: underline;
}
.c-user-panel-yunbi-balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0c2644;
  font-size: 11px;
  line-height: 22px;
}
.c-user-panel-yunbi-balance .c-user-panel-yunbi-num {
  color: #0c2644;
  font-size: 16px;
  font-weight: 700;
}
.c-user-panel-yunbi-balance img {
  padding: 0 0 2px 2px;
}
.c-user-panel-menu-item {
  display: block;
  text-decoration: none;
  color: #333940;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border-radius: 6px;
  cursor: pointer;
}
.c-user-panel-menu-item:hover {
  background-color: #f5f5f7;
}

/*!**************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./src/commonRightPanel/css/index.css ***!
  \**************************************************************************************/
.fixed-right-panel {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  row-gap: 12px;
  position: fixed;
  right: 23px;
  bottom: 16px;
  z-index: 10;
}
.fixed-right-panel * {
  box-sizing: border-box;
}
@media (max-width: 600px) {
  .fixed-right-panel {
    display: none;
  }
}
.fixed-right-panel-item.top {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  cursor: pointer;
  opacity: 0;
}
.fixed-right-panel-item.top.show-item {
  opacity: 1;
}
.fixed-right-panel-item.top:hover {
  background-color: #f5f5f7;
}
.fixed-right-panel-item.help-menu-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background-color: #0076fe;
  border-radius: 50%;
  cursor: pointer;
}
.fixed-right-panel-item.help-menu-button.hover-button {
  background-color: #3391fe;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  bottom: calc(100% + 8px);
  right: calc(100% - 48px);
  width: 176px;
  height: 176px;
  padding: 8px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu.show-menu {
  display: flex;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item {
  position: relative;
  display: flex;
  align-items: center;
  height: 40px;
  padding: 8px 12px;
  border-radius: 6px;
  column-gap: 11px;
  text-decoration: none;
  cursor: pointer;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item:hover {
  background-color: #f5f5f7;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item .help-menu-item-text {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #333940;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item-qrcode-box {
  position: absolute;
  right: calc(100% + 4px);
  bottom: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  width: 156px;
  height: 186px;
  border-radius: 6px;
  padding: 12px 8px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item-qrcode-box.show-box {
  display: flex;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item-qrcode-box .help-menu-item-qrcode-text {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: center;
  color: #666666;
}
.fixed-right-panel-item.help-menu-button .fixed-right-help-menu .help-menu-item-qrcode-box .help-menu-item-qrcode {
  width: 140px;
  height: 140px;
}
.fixed-right-panel-item .help-menu-button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.intelligent-customer-service-popup {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 134px;
  width: 440px;
  max-width: 640px;
  height: 650px;
  max-height: 720px;
  border: 1px solid #e5e7eb;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  transform: scale(0);
  transform-origin: right bottom;
  transition: width 200ms, height 200ms, max-height 200ms, transform 350ms cubic-bezier(0, 1.2, 1, 1), opacity 350ms ease-out;
  z-index: -99;
}
.intelligent-customer-service-popup.show-popup {
  opacity: 1;
  z-index: 99;
  transform: scale(1);
}
.intelligent-customer-service-popup.show-filter .filter {
  display: block;
}
.intelligent-customer-service-popup .filter {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 56px;
  cursor: default;
  z-index: 5;
}
.intelligent-customer-service-popup iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}
.intelligent-customer-service-popup .popup-close-button {
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  z-index: 10;
}

