.lf-loading-box {
  z-index: 1999;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  border-radius:12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

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

.lf-loading-tips {
  color: #4c4cef;
  font-size: 12px;
}

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

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

.lf-loading-circular .lf-loading-path {
  animation: loading-dash 1.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: #4c4cef;
  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;
  }
}

.lf-common-popover {
  position: fixed;
  min-width: 100px;
  text-align: center;
  z-index: 3000; /* 设置较高的 z-index 值 */
  box-sizing: border-box;
  max-height: 100%;
  overflow: auto;
  border-radius: 12px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.12), 0px 0px 24px rgba(0, 0, 0, 0.08);
}
.lf-common-popover-mask {
  display: none;
}
.lf-common-popover-content {
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.09);
  overflow: auto;
}
@media (max-width: 600px) {
  .lf-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;
    max-height: unset;
    border-radius: 0;
  }
  .lf-common-popover-mask {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .lf-common-popover-content {
    width: 100%;
    max-height: 85%;
    overflow-y: auto;
    z-index: 1;
    border-radius: 12px 12px 0 0;
  }
  .lf-common-popover-mask {
    display: block;
  }
}
.lf-common-popover .lf-common-popover-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.lf-common-popover .lf-common-popover-arrow::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
}
.lf-common-popover .lf-common-popover-arrow.bottom {
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #eee transparent;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.lf-common-popover .lf-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%);
}

.lf-common-popover .lf-common-popover-arrow.top {
  border-width: 10px 10px 0 10px;
  border-color: #eee transparent transparent transparent;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.lf-common-popover .lf-common-popover-arrow.top::after {
  border-width: 8px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.lf-common-btn-default {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #333940;
  box-sizing: border-box;
  padding: 0 12px;
  font-size: 14px;
  background: #fff;
}
.lf-common-btn-primary {
  border-radius: 8px;
  height: 40px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: #fff;
  background: #4c4cee;
  box-sizing: border-box;
  padding: 0 12px;
}
.lf-common-btn-primary:active {
  background: #6161f3;
}
.lf-common-btn-primary.disabled {
  background: #8282fa;
  cursor: not-allowed;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .lf-common-btn-primary:hover {
    background: #6161f3;
  }
  .lf-common-btn-default:hover {
    background: #e9ebef;
  }
}

.lf-upgrade-modal {
  border-radius: 12px;
}
.lf-upgrade-modal-panel a {
  text-decoration: none;
}
.lf-upgrade-modal-panel > *{
  margin: 0;
  padding: 0;
}
.lf-upgrade-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lf-upgrade-modal .lf-upgrade-modal-head-box {
  background-image: url(./f3c314c6ed2261041edf.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 66px;
  border-radius: 16px 16px 0 0;
}
.lf-upgrade-modal .lf-upgrade-modal-head {
  display: flex;
  padding: 12px 24px 0;
  align-items: center;
  box-sizing: border-box;
}
.yzlf-dialog-close-box {
  color: #666;
}
/*head*/
.lf-upgrade-modal-head-user {
  display: flex;
  align-items: center;
}
.lf-upgrade-modal-head-user div,
.lf-upgrade-modal-head-user img {
  flex-shrink: 0;
}
.lf-upgrade-modal-head-avatar {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}
.lf-upgrade-modal-head-user-level {
  display: inline-block;
  padding: 2px 4px;
  font-size: 12px;
  line-height: 16px;
  border-radius: 18px;
  box-sizing: border-box;
}
.lf-upgrade-modal-head-user-level-0 {
  color: #658CB0;
  background-color: #E9F3FA;
}
.lf-upgrade-modal-head-user-level-1 {
  color: #684FDE;
  background: linear-gradient(90deg, #F0F0FC -14.42%, #E8D6FE 82.5%, #ABC3FF 147.12%);
}
.lf-upgrade-modal-head-user-level-5 {
  color: #1c1c1c;
  background: linear-gradient(142.68deg, #fffbf0 -0.98%, #ffd6a8 99.02%);
}
.lf-upgrade-modal-head-user-name-box {
  display: flex;
  align-items: center;
}
.lf-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;
}
.lf-upgrade-modal-head-user-text {
  font-size: 12px;
  color: #495E76;
  line-height: 22px;
}
.lf-upgrade-qrcode-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #495E76;
  cursor: pointer;
  margin-left: auto;
  margin-right: 12px;
}
.lf-upgrade-qrcode-trigger:hover {
  color: #4c4cef;
}
.lf-upgrade-pop-qrcode {
  box-sizing: border-box;
  background: #fff;
  width: 100%;
}
.lf-common-dialog-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #999;
  flex-shrink: 0;
}
.lf-common-dialog-close svg {
  width: 24px;
  height: 24px;
}

.lf-upgrade-modal-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 0;
  color: #333940;
  width: 860px;
  height: 508px;
  padding: 20px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-sizing: border-box;
}
.lf-upgrade-modal-body-power {
  background: #f4f5fa;
  width: 220px;
  padding: 28px 24px;
  font-size: 12px;
  color: #495E76;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  grid-row: 1 / 3;
  min-height: 468px;
  box-sizing: border-box;
}
.lf-upgrade-power-info-box {
  margin: 0 0 16px 0;
  border-bottom: 1px solid #e7e8f0;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.lf-upgrade-power-icon {
  width: 24px;
  height: 24px;
  background: none;
  display: flex;
  align-items: center;
}
.lf-upgrade-power-name {
  font-size: 14px;
  font-weight: 500;
  color: #160211;
  line-height: 14px;
}
.lf-upgrade-power-list {
  box-sizing: border-box;
  /* gap: 12px; */
  overflow-y: auto;
  position: relative;
  margin-top: 10px;
  margin-bottom: 36px;
  flex: 1;
}
.lf-upgrade-power-list::-webkit-scrollbar-track {
  background: transparent;
}
.lf-upgrade-power-list::-webkit-scrollbar {
  width: 0;
}
.lf-upgrade-power-list-item {
  margin-bottom: 12px;
}
.lf-upgrade-power-list-item-desc {
  color: #495E76;
}
.lf-upgrade-power-list-item-desc-value {
  color: #262626;
}
.lf-upgrade-power-exchange-link {
  display: flex;
  align-items: center;
  color: #495e76;
}
.lf-upgrade-power-exchange-link:hover {
  color: #0076fe;
}
.lf-upgrade-power-btn {
  background: #ffffff;
  width: 180px;
  height: 36px;
  font-size: 12px;
  align-self: center;
  margin-top: auto;
}
.lf-upgrade-power-btn svg {
  color: #b5b5b5;
}
.lf-upgrade-power-product-desc {
  text-align: left;
  line-height: 150%;
  margin-bottom: 4px;
}

/* 价格模块 */
.lf-upgrade-modal-body .lf-upgrade-modal-body-price {
  grid-column: 2;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
}
.lf-upgrade-modal-body-price-list {
  /* display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr)); */
  display: flex;
  gap: 14px;
  width: 100%;
  margin-bottom: 16px;
}
.lf-upgrade-modal-body-price-item {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  min-width: 120px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 12px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  height: 150px;
}
.lf-upgrade-modal-body-price-item.lf-upgrade-modal-body-price-item-active {
  box-shadow: 0 0 0 0.5px #4c4cee inset;
  border: 1px solid #4c4cee;
}
.lf-upgrade-modal-body-price-item.lf-upgrade-modal-body-price-item-active,
.lf-upgrade-modal-body-price-duration-item.active {
  /* background: #eff6ff; */
  color: #4c4cee;
  border: 1px solid #4c4cee;
  background: linear-gradient(348.99deg, #DFD8FF -2.66%, #F5F9FF 37.29%);

}
.lf-upgrade-modal-body-price-item.lf-upgrade-modal-body-price-item-disabled {
  background: #f8f8f8;
  color: #b5b5b5;
  cursor: not-allowed;
  border-color: #f8f8f8;
  box-shadow: none;
}
.lf-upgrade-modal-body-price-item-name {
  text-align: center;
  margin-bottom: 12px;
  font-size: 15px;
}
.lf-upgrade-modal-body-price-item-num {
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
}
.lf-upgrade-modal-body-price-item-num-price {
  font-size: 32px;
  line-height: 100%;
  font-weight: bold;
}
.lf-upgrade-modal-body-price-item-num span {
  font-size: 12px;
  font-weight: 400;
}
.lf-upgrade-modal-body-price-active-level-label {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 14px;
  align-items: center;
  display: none;
}

.lf-upgrade-modal-body-price-active-level-label span {
  color: #495E76CC;
  font-size: 12px;
  line-height: 20px;
  margin-left: 8px;
}
.lf-upgrade-modal-body-price-label {
  font-size: 14px;
  margin-bottom: 12px;
  line-height: 22px;
  text-align: left;
  font-weight: 500;
  color: #160211;
}

/* 购买、续费时长选择列表 */
.lf-upgrade-modal-body-price-duration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  width: 100%;
  margin-bottom: 20px;
}
.lf-upgrade-modal-body-price-duration-item {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 29px;
  padding: 12px 16px;
  box-sizing: border-box;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  font-size: 13px;
  line-height: 17px;
}
.lf-upgrade-modal-body-price-duration-item {
  position: relative;
}

/* 总价模块 */
/* .lf-upgrade-modal-body-price-total{

} */
.lf-upgrade-modal-body-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 0 44px;
  box-sizing: border-box;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  max-height: 202px;
}
.lf-upgrade-modal-body-price-amount {
  color: #ff5556;
  display: flex;
  align-items: center;
}
.lf-upgrade-modal-body-price-total-num {
  font-size: 36px;
  font-weight: 700;
  /* line-height: 36px; */
}
.lf-upgrade-modal-body-price-total-detail {
  font-size: 12px;
  line-height: 12px;
  cursor: pointer;
  position: relative;
  justify-content: center;
  gap: 4px;
}
.lf-upgrade-modal-body-price-total-detail .detail-text {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lf-upgrade-modal-body-price-total-detail svg {
  height: 10px;
  width: 10px;
  flex-shrink: 0;
}
.lf-upgrade-modal-body-price-pay-tips {
  text-align: left;
}
.lf-upgrade-modal-body-price-detail-desc {
  position: absolute;
  top: 26px;
  right: -60px;
  min-width: 230px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  box-sizing: border-box;
  box-shadow: 0px 2px 12px 0px #0000001f;
  font-size: 12px;
  color: #333940;
  text-align: left;
  display: none;
  z-index: 2;
  line-height: 18px;
}
.lf-upgrade-modal-body-price-detail-desc.show {
  display: block;
}

.lf-upgrade-modal-body-qrcode-desc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  flex-wrap: wrap;
}
.lf-upgrade-modal-body-qrcode-tips {
  font-size: 12px;
  margin-top: 8px;
  color: #666666;
}
.lf-upgrade-modal-body-qrcode-tips.gray-color {
  color: #999999;
}
.lf-upgrade-modal-body-qrcode-tips a {
  color: #0076fe;
}

.lf-upgrade-modal-body-qrcode-img-box {
  /* border: 1px solid #e5e7eb; */
  width: 154px;
  height: 154px;
  position: relative;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #F4F5FA;
  overflow: hidden;
}
.lf-upgrade-modal-body-qrcode-img-box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

/*对公转账 */
.lf-upgrade-public-transfer-btn {
  font-size: 12px;
  width: 100%;
  max-width: 156px;
  /* margin: 0 auto; */
  height: 36px;
  margin-top: 10px;
  border-radius: 20px;
}
.lf-upgrade-public-transfer-btn svg {
  height: 20px;
  width: 20px;
  flex-shrink: 0;
  color: #b5b5b5;
  margin-left: 8px;
}
.lf-public-transfer-box {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}
.lf-public-transfer-desc {
  margin: 16px 0;
  color: #4e5969;
}
.lf-public-transfer-title {
  color: #333940;
  font-weight: 700;
}
.lf-public-transfer-table {
  margin: 16px 0;
  background: #f6f6f6;
  padding: 20px;
  box-sizing: border-box;
}
.lf-public-transfer-table-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eeeeee;
  padding: 16px 0;
  box-sizing: border-box;
  color: #333940;
}
.lf-public-transfer-table-item:first-child {
  padding-top: 4px;
}
.lf-public-transfer-table-item-label {
  color: #666666;
}
.lf-public-transfer-copy-btn {
  border-radius: 20px;
}
.lf-public-service-wechat {
  color: #0076fe;
  cursor: pointer;
}
.lf-public-service-popover {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.lf-public-service-wechat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) and (any-pointer: fine) {
  .lf-common-dialog-close:hover {
    color: #4c4cef;
  }
  .lf-upgrade-modal-body-price-duration-item:hover {
    border: 1px solid #4c4cef;
  }
}
@media screen and (max-width: 1000px) {
  .lf-upgrade-modal-body {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .lf-upgrade-modal-body .lf-upgrade-modal-body-price {
    grid-column: 1;
  }
  .lf-upgrade-modal-body-price-item,
  .lf-upgrade-modal-body-price-duration-item {
    padding: 12px;
  }
  .lf-upgrade-modal-body-power {
    display: none;
  }
 
  .lf-upgrade-modal-body-price-total-detail {
    width: 100%;
  }
  .lf-upgrade-modal-body-price-detail-desc {
    right: 0;
  }
  .lf-public-service-wechat-img {
    width: 140px;
    height: 140px;
  }
  .lf-upgrade-pop-qrcode {
    width: 140px;
    height: 140px;
  }
}
@media screen and (max-width: 500px) {
  .lf-upgrade-modal-body-qrcode-img-box {
    width: clamp(120px, 30vw, 176px);
    height: clamp(120px, 30vw, 176px);
     left:10px;
  }
  .lf-upgrade-modal-body-qrcode-img-box img {
    width: 100%;
    height: 100%;
  }
  .lf-upgrade-modal-body-pay {
    gap: clamp(12px, 5vw, 24px);
    padding: clamp(16px, 7vw, 36px) 0 clamp(20px, 9vw, 44px);
  }
}
@media screen and (max-width: 600px) {
  .lf-public-service-popover {
    height: 20%;
  }
}

@media screen and (max-width: 400px) {
  .lf-public-service-popover {
    height: 25%;
  }
}


.hidden-overflow {
  overflow: hidden;
}
.yz-upgrade-text-align-center {
  text-align: center;
}
/**/
@media screen and (max-width: 600px)  {
  .yz-upgrade-modal .yz-upgrade-modal-head {
    padding: 12px 12px 0;
  }
  .yz-upgrade-modal-head-contact {
    display: none;
  }
  .yz-upgrade-modal-close {
    margin-left: auto;
  }
  .yz-upgrade-modal-panel.common-dialog-content-mobile {
    height: 100%;
    max-height: 85%;
  }
}

.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;
}
.yz-upgrade-hidden {
  visibility: hidden;
}
/* 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.disabled {
  background: #F5F5F5;
  color: #999999;
  cursor: not-allowed;
}
.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:active {
  background: #006AE5;
}
.yz-upgrade-common-btn-blue.disabled {
  background: #80bbff;
  cursor: not-allowed;
}
/* 滚动条整体部分 */
.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(./f3c314c6ed2261041edf.png);
  background-size: cover;
  background-repeat: no-repeat;
  height: 66px;
  border-radius: 12px 12px 0 0;
}
.yz-upgrade-modal .yz-upgrade-modal-head {
  display: flex;
  align-items: center;
  padding: 12px 24px 0;
  box-sizing: border-box;
}
/*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: 12px;
  line-height: 16px;
  border-radius: 18px;
  box-sizing: border-box;
}
.yz-upgrade-modal-head-user-level-0 {
  color: #658CB0;
  background-color: #E9F3FA;
}
.yz-upgrade-modal-head-user-level-1 {
  color: #684FDE;
  background: linear-gradient(90deg, #F0F0FC -14.42%, #E8D6FE 82.5%, #ABC3FF 147.12%);
}
.yz-upgrade-modal-head-user-level-5 {
  color: #1c1c1c;
  background: linear-gradient(142.68deg, #fffbf0 -0.98%, #ffd6a8 99.02%);
}
.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 {
  margin-left: auto;
  margin-right: 12px;
}
.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 a:hover {
  color: #4c4cef;
  text-decoration: underline;
}
.yz-upgrade-modal-head-contact .yz-upgrade-modal-head-contact-link {
  color: #495E76;
  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 {
  color: #4c4cef;
}
.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-basic.active {
  background-image: url(./b3d285d948b709762bb5.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.yz-upgrade-modal-tab-item-hypermedia.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: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 0;
  color: #333940;
  width: 860px;
  min-height: 508px;
  padding: 20px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-sizing: border-box;
}
.yz-upgrade-modal-body.yz-upgrade-modal-body-coin {
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 0;
  padding: 20px;
  height: 520px;
}
.yz-upgrade-modal-body-power {
  background: #f4f5fa;
  width: 220px;
  flex-shrink: 0;
  padding: 28px 24px;
  font-size: 12px;
  color: #495E76;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 12px;
  grid-row: 1 / 3;
  min-height: 468px;
}
.yz-upgrade-power-info-box {
  margin: 0 0 16px 0;
  border-bottom: 1px solid #e7e8f0;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.yz-upgrade-power-icon {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: none;
  justify-content: center;
  align-items: center;
  display: flex;
}
.yz-upgrade-power-name {
  font-size: 14px;
  font-weight: 500;
  color: #160211;
  line-height: 14px;
}
.yz-upgrade-power-list {
  padding: 0;
  gap: 23px;
  overflow-y: auto;
  position: relative;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.yz-upgrade-power-list::-webkit-scrollbar-track {
  background: transparent;
}
.yz-upgrade-power-list::-webkit-scrollbar {
  width: 0;
}
.yz-upgrade-power-list-item {
  font-size: 14px;
  color: #160211;
  line-height: 14px;
  margin-bottom: 0;
}
.yz-upgrade-power-list-item-desc {
  font-size: 14px;
  color: #6e6a7c;
  line-height: 14px;
}
.yz-upgrade-power-exchange-link {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6e6a7c;
  line-height: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.yz-upgrade-modal-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
  color: #999;
  flex-shrink: 0;
}
.yz-upgrade-modal-close svg {
  width: 24px;
  height: 24px;
}
.yz-upgrade-modal-close:hover {
  color: #4c4cef;
}
.yz-upgrade-power-exchange-link:hover{
  color: #0076FE;
}
.yz-upgrade-power-btn {
  background: #FFFFFF;
  width: 180px;
  align-self: center;
  margin-top: auto;
}
.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 {
  grid-column: 2;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: 512px;
  height: 282px;
  justify-self: center;
}
.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-month-card-tips {
  font-size: 12px;
  color: #999999;
  margin-left: 6px;
}
.yz-upgrade-modal-body-price-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-bottom: 20px;
}
.yz-upgrade-modal-body-price-item {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  width: 250px;
  height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 12px;
  cursor: pointer;
  position: relative;
  box-sizing: border-box;
}
.yz-upgrade-modal-body-price-item.active {
  border: 1px solid #4c4cee;
  background: #f0f1ff;
  color: #6033E1;
}
.yz-upgrade-modal-body-price-item.active .yz-upgrade-modal-body-price-item-name,
.yz-upgrade-modal-body-price-item.active .yz-upgrade-modal-body-price-item-num {
  color: #6033E1;
}
.yz-upgrade-modal-body-price-item.disabled, .yz-upgrade-modal-body-price-coupon-item.disabled {
  background: #F8F8F8;
  color: #B5B5B5;
  cursor: not-allowed;
  border-color: #F8F8F8;
  box-shadow: none;
}
.yz-upgrade-modal-body-price-item-name {
  text-align: center;
  font-size: 16px;
  color: inherit;
}
.yz-upgrade-modal-body-price-item-num {
  font-weight: 400;
  white-space: nowrap;
  display: flex;
  align-items: flex-end;
  flex-wrap: nowrap;
  color: inherit;
  margin-top: 12px;
}
.yz-upgrade-modal-body-price-item-num-price {
  font-size: 32px;
  line-height: 100%;
}
.yz-upgrade-modal-body-price-item-num span {
  font-size: 12px;
}
.yz-upgrade-modal-body-price-item-num-price-origin {
  font-size: 13px;
  line-height: 18px;
  color: #B5B5B5;
  text-decoration: line-through;
  margin-top: 12px;
}
.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, .yz-upgrade-modal-body-price-duration-month-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  {
  position: relative;
}
.yz-upgrade-modal-body-price-duration-item-discount, .yz-upgrade-modal-discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #0076FE;
  color: #fff;
  border-radius: 0 6px 0 6px;
  background: linear-gradient(180deg, #FE6063 -5.95%, #FF3C46 108.33%);
  width: 36px;
  height: 22px;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yz-upgrade-modal-body-price-duration-month .yz-upgrade-modal-body-price-duration-month-item {
  display: block;
}
.yz-upgrade-modal-body-price-duration-month-item, .yz-upgrade-modal-body-price-duration-month > .yz-upgrade-modal-body-price-duration-item {
  display: none;
}
.yz-upgrade-modal-body-price-duration-month-item {
  max-width: 175px;
}
.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-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-price-bind-account-desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 22px;
  display: none;
  color: #FF5556;
  font-weight: 700;
}
.yz-price-bind-account-desc a {
  color: #0076FE;
}


.yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode {
  grid-column: 2;
  width: 370px;
  justify-self: center;
  box-sizing: border-box;
  padding-top: 35px;
}
.yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode::after {
  content: '';
  display: table;
  clear: both;
}
.yz-upgrade-modal-body-price-total {
  color: #FF5556;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: flex-end;
}
.yz-upgrade-modal-body-price-total-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 35px;
  display: flex;
  align-items: flex-end;
}
.yz-upgrade-modal-body-price-total-num span {
  font-size: 18px;
  line-height: 24px;
}
.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 {
  position: relative;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  width: 154px;
  height: 154px;
  padding: 12px;
  float: left;
  margin-right: 24px;
  box-sizing: border-box;
}
.yz-upgrade-modal-body-qrcode-img-box img {
  width: 130px;
  height: 130px;
}
.yz-upgrade-modal-body-qrcode-desc {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  margin-bottom: 8px;
}
.yz-upgrade-modal-body-qrcode-desc svg {
  vertical-align: middle;
  margin-right: 4px;
}
.yz-upgrade-modal-body-qrcode-tips {
  font-size: 12px;
  color: #666666;
  line-height: 16px;
  margin-bottom: 8px;
}
.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-public-service-wechat{
  color: #0076FE;
  cursor: pointer;
}
.yz-public-service-popover {
  width: 100%;
  height: 100%;
}
.yz-public-service-wechat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.yz-upgrade-modal-body-qrcode-service img, .yz-upgrade-modal-body-qrcode-unable 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-body-qrcode-bind-account {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #FF5556;
  font-weight: bold;
  background-image: url(./2ae59ade1f138b07817d.png);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 12px;
}

.yz-upgrade-modal-body-qrcode-bind-account,
.yz-upgrade-modal-body-qrcode-bind-account-desc {
  max-width: 100%;
  box-sizing: border-box;
}

.yz-upgrade-modal-body-qrcode-bind-account {
  overflow: visible;
}

.yz-upgrade-modal-body-qrcode-bind-account-desc {
  font-size: 13px;
  margin-bottom: 10px;
  word-break: break-all;
  overflow-wrap: break-word;
}

/* 确保 body 不会横向裁剪 bind-account 内容 */
.yz-upgrade-modal-body {
  overflow-x: visible;
  overflow-y: auto;
}

.yz-upgrade-modal-body-qrcode-bind-account a {
  width: 94px;
  margin: 0 auto;
}
.yz-upgrade-modal-body-unable-month-text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 22px;
  color: #666666;
  max-width: 182px;
} 

/* 手机端 */
.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;
  height: 40px;
}
.yz-upgrade-modal-mobile .yz-price-bind-account-desc {
  display: block;
}
/*横向滑动样式-月卡*/
.yz-upgrade-modal-body-price-month-item-tag {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  padding: 2px 5px;
  border-radius: 0 8px 0 8px;
  background: linear-gradient(74.3deg, #FF318A -7.06%, #FF3C1A 47.36%);

}
.yz-upgrade-modal-body-price-scorll {
  width: 0;  /*需要设置为0才能正常自适应*/
  position: relative;
}
.yz-upgrade-modal-body-price-scorll .yz-upgrade-modal-body-price-list {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.yz-upgrade-modal-body-price-scorll .yz-upgrade-modal-body-price-item {
  flex: 0 0 auto;
  min-width: 175px;
}
.yz-upgrade-price-pager {
  display: flex;
  justify-content: center; 
  gap: 16px;
  position: absolute;
  right: 0;
  top: 68px;
  z-index: 1;
}
.yz-upgrade-scroll-btn {
  width: 32px; 
  height: 32px;
  border: 1px solid #E5E7EB;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0px 2.67px 10.67px 0px #00000017;
  position: absolute;
  right: 0;
  top: 90px;
  z-index: 1;
}
.yz-upgrade-scroll-btn svg {
  width: 11px;
  height: 12px;
}
.yz-upgrade-scroll-btn:hover{
  border-color: #0076FE;
  color: #0076FE;
  cursor: pointer;
}
.yz-upgrade-scroll-left-btn {
  left: 0;
}
/*横向滑动样式*/

/* .yz-upgrade-modal-body-price-promotion {
  background-image: url('../img/upgradeModal/activity-banner.png');
  width: 100%;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
} */

/*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: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
  }
}
@media screen and (max-width: 1000px) {
  .yz-upgrade-modal-body,
  .yz-upgrade-modal-body.yz-upgrade-modal-body-coin {
    grid-template-columns: 1fr;
    width: 100%;

  }
  .yz-upgrade-modal-body .yz-upgrade-modal-body-price {
    grid-column: 1;
    width: 100%;
    height: auto;
  }
  .yz-upgrade-modal-body-price-list {
    width: 100%;
  }
  .yz-upgrade-modal-body-price-item {
    width: clamp(100px, calc(50% - 6px), 750px);
    height: auto;
    min-height: 120px;
  }
  .yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode {
    grid-column: 1;
    padding-top: 0px;
  }
  .yz-upgrade-modal-body-power {
    display: none;
  }
  .yz-upgrade-modal-tab {
    width: 100%;
    float: left;
  }
  .yz-upgrade-modal-body-price-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
  }
  .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;
    width: clamp(100px, calc(50% - 6px), 450px);
  }
  .yz-upgrade-modal-body-price-item-num-price {
    font-size: 22px;
  }
  .yz-upgrade-modal-body-price-coupon-item {
    max-width: 100%;
  }
  .yz-upgrade-public-transfer-btn {
    display: none;
  }
  .yz-upgrade-modal .yz-upgrade-modal-head-box {
    height: auto;
  }
  .yz-upgrade-modal .yz-upgrade-modal-head, .yz-upgrade-modal-body .yz-upgrade-modal-body-price {
    padding: 16px;
  }
  .yz-upgrade-modal-body-price-scorll .yz-upgrade-scroll-btn {
    top: 68px;
  }
}
@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;
  }
  /* .yz-upgrade-modal-body-price-promotion {
    background-image: url('../img/upgradeModal/h5-activity-banner.png');
    height: 72px;
  } */
}
@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;
    flex: 1;
    grid-template-rows: auto;
  }
  .yz-upgrade-modal-body.yz-upgrade-modal-body-coin {
    grid-template-rows: auto;
    height: auto;
    min-height: 360px;
  }
  .yz-upgrade-modal-body .yz-upgrade-modal-body-qrcode {
    display: none;
  }
  .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-price {
    font-size: 18px;
  }
  .yz-upgrade-modal-body-price-item-num-price-origin {
    font-size: 12px;
    line-height: 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;
  }
  .yz-upgrade-modal-body-price-duration-item-discount, .yz-upgrade-modal-discount {
    display: none;
  }
}

@media (any-hover: hover) and (any-pointer: fine) {
  .yz-upgrade-common-btn:hover {
    background: #E9EBEF;
  }
  .yz-upgrade-common-btn.disabled:hover {
    background: #F5F5F5;
  }
  .yz-upgrade-common-btn-blue:hover {
    background: #3391FE;
  }
  .yz-upgrade-modal-body-price-label-cut:hover {
    color: #0076FE;
    cursor: pointer;
  }
  .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.disabled:hover, .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-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-item a:hover {
    text-decoration: underline;
    color: #0076FE;
  }
@media screen and (max-width: 500px) {
  .yz-upgrade-modal-body-qrcode-img-box {
    width: clamp(120px, 30vw, 154px);
    height: clamp(120px, 30vw, 154px);
  }
  .yz-upgrade-modal-body-qrcode-img-box img {
    width: 100%;
    height: 100%;
  }

}
}
.yzlf-dialog {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 3000;
  top: 0;
  left: 0;
  box-sizing: border-box;
  text-align: left;
}
.yzlf-dialog-mask {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
  /* z-index: 2000; */
  top: 0;
  left: 0;
}
.yzlf-dialog-table {
  display: table;
  width: 100%;
  height: 100%;
}
.yzlf-dialog-table-cell {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}
.yzlf-dialog-content {
  background: #fff;
  position: relative;
  border-radius: 24px;
  margin: 0 auto;
}
.yzlf-dialog-head {
  /* height: 68px; */
  padding: 24px 24px 0px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  min-height: 42px;
}
.yzlf-dialog-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
}
.yzlf-dialog-close-box {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.yzlf-dialog-close-box svg {
  width: 24px;
  height: 24px;
}
.yzlf-dialog-body {
  padding: 0 24px 24px;
}
@media screen and (max-width: 600px) {
  .yzlf-dialog-content-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    border-radius: 12px 12px 0 0;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 16px);
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  .yzlf-dialog-close-box:hover {
    color: #4c4cef;
  }
}


.yz-upgrade-success-dialog {
  overflow: hidden;
  width: 360px;
  height: 400px;
  border-radius: 24px;
}
.yz-upgrade-success-box {
  min-height: 400px;
  padding: 30px;
  text-align: left;
  box-sizing: border-box;
  background-size: 100% 100%;
  border-radius: 24px;
}
.yz-upgrade-success-desc-img {
  height: auto;
  width: auto;
  margin: 28px auto;
  display: block;
}
.yz-upgrade-success-text1 {
  font-size: 24px;
  color: #191F35;
  font-weight: 700;
  margin-top: 24px;
}
.yz-upgrade-success-text2 {
  font-weight: 700;
  font-size: 27px;
  color: #191F35;
  margin-top: 8px;
}
.yz-succee-level-icon {
  /* background-image: url('/src/common/img/upgradeModal/level-icon.png'); */
  /* background-repeat: no-repeat; */
  /* width: 103px;
  height: 35px; */
  font-size: 12px;
  line-height: 14px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}

.yz-succee-level-icon img {
  width: auto;
  height: 35px;
  position: relative;
}
.yz-succee-level-icon .yz-succee-level-icon-box {
  width: 29px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.yz-succee-level-icon .yz-succee-level-name {
  border: 1px solid #FFFFFFE5;
  border-radius: 4px;
  position: relative;
  left: -20px;
  padding: 5px 7px 5px 25px;
}
.yz-succee-level-1 .yz-succee-level-icon-box{
  background-image: url(./dddc716733b28538c990.png);
  background-repeat: no-repeat;
}
.yz-succee-level-1 .yz-succee-level-name {
  background: linear-gradient(134.81deg, #EB9F42 1.16%, #C27214 89.06%);
}
.yz-succee-level-2 .yz-succee-level-icon-box{
  background-image: url(./c3df09ee09cc7cb58340.png);
  background-repeat: no-repeat;
}
.yz-succee-level-2 .yz-succee-level-name {
  background: linear-gradient(102.83deg, #FFFFE2 -28.87%, #FF8627 68.38%, #EDBE55 165.62%);
}
.yz-succee-level-3 .yz-succee-level-icon-box{
  background-image: url(./2836cab970835ba4d45d.png);
  background-repeat: no-repeat;
}
.yz-succee-level-3 .yz-succee-level-name {
  background:linear-gradient(130.58deg, #9A89FF 9.13%, #4136F9 90.51%);
}
.yz-succee-level-4 .yz-succee-level-icon-box{
  background-image: url(./91054f09368dc0b02402.png);
  background-repeat: no-repeat;
}
.yz-succee-level-4 .yz-succee-level-name {
  background: linear-gradient(130.58deg, #228EFB 9.13%, #0C70FB 90.51%);
}
/* .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-box{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.yz-upgrade-success-btn {
  width: 146px;
  border-radius: 20px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 22px;
}
.yz-upgrade-success-invoice-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #333940;
}
.yz-upgrade-success-invoice-btn:hover {
  background: #f5f5f5;
}
.yz-upgrade-success-know-btn {
  background: #6033E1;
  color: #fff;
}
.yz-upgrade-success-know-btn:hover {
  opacity: 0.85;
}
.yz-upgrade-success-btn-box a {
  text-decoration: none;
}

.c-user-panel-popover {
  text-align: left;
}
.c-common-popover-content.user-panel-popover {
  padding: 16px;
  max-height: calc(100vh - 80px);
  overflow: auto;
}
@media (max-width: 600px) {
  .c-common-popover-content.user-panel-popover {
    max-height: unset;
  }
}
.pb-head-right {
  right: 20px;
}
#pb-head-avatar-trigger.c-user-panel-dashboard-trigger {
  border-radius: 20px;
  border: none;
  font-size: 0;
  position: relative;
  cursor: pointer;
  width: 66px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 6px;
}
#pb-head-avatar-trigger.c-user-panel-dashboard-trigger
  .c-user-panel-avatar-img {
  border: 1px solid #f4f4f4;
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
}
#pb-head-avatar-trigger.c-user-panel-dashboard-trigger
  .c-user-panel-avatar-arrow {
  width: 10px;
}
.c-user-panel-dashboard-trigger .c-user-panel-avatar-arrow {
  transition: transform 0.3s ease-in-out;
}
.c-user-panel-dashboard-trigger.c-user-is-active-arrow
  .c-user-panel-avatar-arrow {
  transform: rotate(-180deg);
}
.c-user-panel-basic-info-wrapper {
  display: flex;
  align-items: center;
}
.c-user-panel-basic-info-middle {
  height: 12px;
  border-right: 1px solid #c5c5c5;
  margin: 0 4px;
}
.c-user-panel-basic-info {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}

.c-user-panel-basic-info-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.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-item {
  font-size: 12px;
  color: #999999;
  display: flex;
  align-items: center;
}
a.c-user-panel-basic-info-item {
  text-decoration: none;
}

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

.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: 72px;
  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-type {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 2px;
}
.c-user-panel-vip-info-type span {
  line-height: 24px;
}

.c-user-panel-vip-info-expire {
  font-size: 14px;
  line-height: 22px;
}

.c-user-panel-info-bar-btn {
  height: 30px;
  border-radius: 8px;
  padding: 0 12px;
  display: block;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}
.c-user-panel-menu-item {
  display: block;
  text-decoration: none;
  color: #333940;
  font-size: 14px;
  height: 36px;
  line-height: 36px;
  padding: 0 12px;
  border-radius: 6px;
  cursor: pointer;
}
.c-user-panel-yunbi-info {
  background: #f4f2ff;
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 8px;
}
.c-user-panel-yunbi-left {
  flex: 1;
  min-width: 0;
}
.c-user-panel-yunbi-row {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #6033E1;
  font-size: 16px;
  line-height: 24px;
}
.c-user-panel-yunbi-row .c-user-panel-yunbi-num {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  background: linear-gradient(180deg, #6033e1 40%, #a78bfa 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.c-user-panel-yunbi-link {
  color: #6e6a7c;
  font-size: 13px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.c-user-panel-vip-yunbi-btn {
  background: #8d55fe;
  color: #fff;
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
[data-yz-trace-name="profile_notice"] {
  display: none;
}
@media screen and (max-width: 600px) {
  [data-yz-trace-name="profile_notice"] {
    display: block;
  }
}
@media (any-hover: hover) and (any-pointer: fine) {
  .c-user-panel-dashboard-trigger:hover {
    background-color: #ffffff;
  }
  a.c-user-panel-basic-info-item:hover {
    color: #0076fe;
  }
  .c-user-panel-copy-btn:hover {
    opacity: 0.8;
  }
  .c-user-panel-vip-info-upgrade:hover {
    opacity: 0.8;
  }
  .c-user-panel-vip-yunbi-btn:hover {
    opacity: 0.85;
  }
  .c-user-panel-yunbi-link:hover {
    text-decoration: underline;
  }
  .c-user-panel-menu-item:hover {
    background-color: #f5f5f7;
  }
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lifang-common-right-panel {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
  position: fixed;
  right: 28px;
  bottom: 16px;
  z-index: 20;
}
.lifang-common-right-panel .right-panel-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
}
.free-coin-item {
  margin-bottom: 10px;
}
.free-coin-item img {
  width: 158%;
  height: 158%;
}
.to-top-item {
  display: none !important;
  border: 2px solid #4c4cef;
  background-color: #ffffff;
}
.to-top-item.show-item {
  display: flex !important;
}
.customer-service-item {
  position: relative;
  background-image: linear-gradient(144.27deg, #8056ff 0%, #4c4cef 99.13%);
}
.customer-service-item:hover .customer-service-item-qrcode {
  display: flex;
}
.customer-service-item .customer-service-item-qrcode {
  position: absolute;
  right: calc(100% + 8px);
  bottom: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
.customer-service-item .customer-service-item-qrcode img {
  width: 154px;
  height: 154px;
}
.customer-service-item .customer-service-item-qrcode span {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #363f57;
}

/* 响应式等比缩放 */
@media (max-width: 750px) {
  .lifang-common-right-panel {
    right: 20px;
    bottom: 12px;
    row-gap: 10px;
  }
  .lifang-common-right-panel .right-panel-item {
    width: 44px;
    height: 44px;
  }
}
@media (max-width: 500px) {
  .lifang-common-right-panel {
    right: 12px;
    bottom: 8px;
    row-gap: 8px;
  }
  .lifang-common-right-panel .right-panel-item {
    width: 36px;
    height: 36px;
  }
}

/* 小屏时半透明，hover 恢复（600px ~ 1500px） */
@media (min-width: 601px) and (max-width: 1500px) {
  .lifang-common-right-panel {
    opacity: 0.5;
    transition: opacity 0.2s ease;
  }
  .lifang-common-right-panel:hover {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .lifang-common-right-panel {
    opacity: 1;
    bottom: 70px;
  }
}

/* 覆盖 Dialog 默认白色背景 */
.get-coin-dialog-panel {
  background: transparent !important;
}

/* 手机端水平+垂直居中，覆盖 Dialog 底部弹出样式 */
@media screen and (max-width: 600px) {
  .get-coin-dialog-panel {
    position: absolute !important;
    top: 50% !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    max-width: 312px !important;
    border-radius: 12px !important;
  }
}

/* 外层容器，用于放置溢出边界的关闭按钮 */
.get-coin-dialog-wrapper {
  position: relative;
  width: 312px;
}

.get-coin-dialog {
  position: relative;
  width: 312px;
  height: 338px;
  overflow: hidden;
  border-radius: 12px;
}

/* 背景图 */
.get-coin-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* 顶部标签 - "新用户创作礼包" */
.get-coin-badge {
  position: absolute;
  top: 66px;
  left: 24px;
  padding: 8px 12px;
  border-radius: 66px;
  background: linear-gradient(180deg, #691a1d 0%, #2d1515 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #ffbec0;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* 标题图 */
.get-coin-title {
  position: absolute;
  top: 110px;
  left: 24px;
  width: 234px;
  height: auto;
}

/* 权益列表 */
.get-coin-features {
  position: absolute;
  top: 168px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.get-coin-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.get-coin-feature-check {
  display: flex;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.get-coin-feature-text {
  color: #160211;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

/* 关闭按钮（桌面端：弹窗右上角外侧） */
.get-coin-close-btn {
  position: absolute;
  top: -20px;
  right: -75px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  transition: opacity 0.2s ease;
}

.get-coin-close-btn:hover {
  opacity: 0.8;
}

/* 领取按钮 */
.get-coin-claim-btn {
  position: absolute;
  top: 270px;
  left: 24px;
  width: 264px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #fe653c 0%, #ff392c 100%);
  color: #ffffff;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.get-coin-claim-btn:hover {
  opacity: 0.9;
}

.get-coin-claim-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 手机端关闭按钮移到弹窗正下方 */
@media screen and (max-width: 600px) {
  .get-coin-close-btn {
    top: calc(100% + 16px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 覆盖 Dialog 默认白色背景 */
.get-coin-success-dialog-panel {
  background: transparent !important;
}

/* 手机端水平居中 */
@media screen and (max-width: 600px) {
  .get-coin-success-dialog-panel {
    position: absolute !important;
    bottom: auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    max-width: 312px !important;
    border-radius: 12px !important;
  }
}

.get-coin-success-dialog {
  position: relative;
  width: 312px;
  height: 304px;
  overflow: hidden;
  border-radius: 12px;
}

/* 背景图 */
.get-coin-success-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* 内容区 - 参照 Figma Frame 1597881020: y=87, w=264 */
.get-coin-success-body {
  position: absolute;
  top: 64px;
  left: 24px;
  width: 264px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 成功图标 */
.get-coin-success-icon {
  display: flex;
  justify-content: center;
}

/* 领取成功 标题 */
.get-coin-success-title {
  color: #411617;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 4px;
}

/* 金额+描述 */
.get-coin-success-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.get-coin-success-amount {
  color: #fe3324;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.get-coin-success-desc {
  color: #6e6a7c;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

/* 立即创作按钮 */
.get-coin-success-btn {
  width: 264px;
  height: 42px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(180deg, #fe653c 0%, #ff392c 100%);
  color: #ffffff;
  font-family: 'Source Han Sans CN VF', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 30px;
}

.get-coin-success-btn:hover {
  opacity: 0.9;
}

