@charset "UTF-8";
html, body {
  width: 100%;
  height: 100%;
  max-width: 750px;
  margin: 0 auto !important;
  overflow-x: hidden !important;
}
html .page-box, body .page-box {
  background-color: white;
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
html .page-box .popup-small-title, body .page-box .popup-small-title {
  box-sizing: border-box;
  padding: 20px 15px 0px 15px;
  line-height: 30px;
  position: relative;
}
html .page-box .popup-small-title .left, body .page-box .popup-small-title .left {
  color: #7D7D7D;
  font-size: 12px;
  position: absolute;
  left: 15px;
}
html .page-box .popup-small-title .text, body .page-box .popup-small-title .text {
  text-align: center;
  width: 100%;
  font-size: 16px;
  color: #101010;
  font-weight: bold;
}
html .page-box .popup-small-title .right, body .page-box .popup-small-title .right {
  position: absolute;
  right: 15px;
  top: 20px;
}
html .page-box .popup-small-title .right .icon, body .page-box .popup-small-title .right .icon {
  cursor: pointer;
}
html .page-box .popup-small-title .right .icon img, body .page-box .popup-small-title .right .icon img {
  width: 30px;
  height: 30px;
}
html .page-box .container, body .page-box .container {
  flex: 1;
  overflow: hidden;
}
html .page-box .container .page-scroll-box, body .page-box .container .page-scroll-box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.page-desc-box {
  margin-bottom: 20px;
}
.page-desc-box .label {
  font-size: 14px;
  color: #999999;
  margin-bottom: 8px;
  font-weight: bold;
}
.page-desc-box .text {
  font-size: 12px;
  color: #999999;
  line-height: 24px;
  letter-spacing: 1px;
}

.ellipsis {
  overflow: hidden;
  /* 确保内容超出容器时会被隐藏 */
  white-space: nowrap;
  /* 确保文本在一行内显示，避免换行 */
  text-overflow: ellipsis;
  /* 用省略号表示被截断的文本 */
}

.header {
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  height: 44px;
  line-height: 44px;
  position: relative;
  background-color: white;
}
.header .handle-box {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
}
.header .handle-box .item .icon {
  box-sizing: border-box;
}
.header .handle-box .item.back .icon {
  box-sizing: border-box;
  padding-left: 5px;
}
.header .handle-box .item.back .icon img {
  width: 36px;
}
.header .handle-box .item.close .icon {
  box-sizing: border-box;
}
.header .handle-box .item.close .icon img {
  width: 36px;
}
.header .page-title-nav {
  display: flex;
  width: 100%;
  justify-content: center;
}
.header .page-title-nav .item {
  box-sizing: border-box;
  padding: 0 10px;
  font-size: 17px;
  color: #333;
  cursor: pointer;
}
.header .page-title-nav .item.active-red {
  font-weight: bold;
  color: #E02A52;
}
.header .page-title-nav .item.active-blue {
  font-weight: bold;
  color: #027AFF;
}
.header .page-title-nav .item.active-purple {
  font-weight: bold;
  color: #3413BA;
}
.header .title {
  font-size: 17px;
  color: #101010;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.header .right {
  position: absolute;
  height: 100%;
  right: 15px;
  top: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.header .right .btn-item {
  width: 50px;
  height: 28px;
  box-sizing: border-box;
  border-radius: 15px;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}
.header .right .btn-item.red {
  border: 1px solid #E02A52;
  color: #E02A52;
}
.header .right .btn-item.blue {
  color: #027AFF;
  border: 1x solid #027AFF;
}
.header .right .btn-item.blue {
  color: #027AFF;
  border: 1px solid #027AFF;
}
.header .right .btn-item.purple {
  color: #3413BA;
  border: 1px solid #3413BA;
}

.h_100 {
  height: 100% !important;
}

.popup-public-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.popup-public-box .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 750px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  height: 100%;
  width: 100%;
}
.popup-public-box .popup-small-title {
  box-sizing: border-box;
  padding: 20px 15px 0px 15px;
  line-height: 30px;
  position: relative;
}
.popup-public-box .popup-small-title .left {
  color: #7D7D7D;
  font-size: 12px;
  position: absolute;
  left: 15px;
}
.popup-public-box .popup-small-title .text {
  text-align: center;
  width: 100%;
  font-size: 16px;
  color: #101010;
  font-weight: bold;
}
.popup-public-box .popup-small-title .right {
  position: absolute;
  right: 15px;
  top: 20px;
}
.popup-public-box .popup-small-title .right .icon {
  cursor: pointer;
}
.popup-public-box .popup-small-title .right .icon img {
  width: 30px;
  height: 30px;
}

.dialog-public-box {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  max-width: 750px;
  margin: 0 auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dialog-public-box .mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 750px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  height: 100%;
  width: 100%;
}
.dialog-public-box .container {
  z-index: 100;
  box-sizing: border-box;
  max-width: 500px;
  margin: 0 auto;
}
.dialog-public-box .dialog-title {
  font-size: 15px;
  color: #101010;
  box-sizing: border-box;
  padding-top: 15px;
  text-align: center;
  font-weight: bold;
}
.dialog-public-box .btn-box {
  width: 100%;
  display: flex;
  border-top: 1px solid #F2F2F2;
  justify-content: space-between;
}
.dialog-public-box .btn-box .item {
  width: 50%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  box-sizing: border-box;
}
.dialog-public-box .btn-box .item.cancel {
  border-right: 1px solid #F2F2F2;
  color: #999;
}
.dialog-public-box .btn-box .item.confirm {
  color: #E02A52;
}

.dialog-box {
  width: 100%;
  height: 100%;
  max-width: 750px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.8);
}
.dialog-box .pay-success-wrap {
  width: 100%;
  height: 50vh;
  background: white;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0 15px;
}
.dialog-box .pay-success-wrap .title {
  font-size: 15px;
  color: #1F1F1F;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  text-align: center;
  position: relative;
}
.dialog-box .pay-success-wrap .title .icon {
  width: 30px;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.dialog-box .pay-success-wrap .title .icon img {
  width: 15px;
  height: 15px;
  margin: 0 auto;
  display: block;
}
.dialog-box .pay-success-wrap .success-icon {
  display: flex;
  justify-content: center;
}
.dialog-box .pay-success-wrap .success-icon img {
  width: 103.5px;
  height: 72.5px;
}
.dialog-box .pay-success-wrap .tips {
  font-size: 17px;
  color: #1F1F1F;
  font-weight: bold;
  margin-top: 15px;
  text-align: center;
  background: none;
}
.dialog-box .pay-success-wrap .desc {
  font-size: 12px;
  color: #999999;
  text-align: center;
  margin-top: 15px;
}
.dialog-box .pay-success-wrap .btn-item {
  width: 100%;
  background: #DF2951;
  text-align: center;
  border-radius: 5px;
  line-height: 37.5px;
  height: 37.5px;
  color: white;
  margin-bottom: 30px;
  cursor: pointer;
}
.dialog-box .pay-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 15px 15px 30px 15px;
  background-color: white;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 70vh;
  z-index: 100;
}
.dialog-box .pay-container .title {
  font-size: 15px;
  color: #1F1F1F;
  text-align: center;
  position: relative;
}
.dialog-box .pay-container .title .close-icon {
  position: absolute;
  right: 0;
  cursor: pointer;
  top: 0;
}
.dialog-box .pay-container .title .close-icon img {
  width: 14px;
  height: 14px;
}
.dialog-box .pay-container .pay-content {
  flex: 1;
  overflow-y: scroll;
}
.dialog-box .pay-container .pay-content .money {
  text-align: center;
  font-size: 12px;
  color: #E02A52;
  width: 100%;
  margin-top: 10px;
}
.dialog-box .pay-container .pay-content .money span {
  font-size: 25px;
  font-weight: bold;
}
.dialog-box .pay-container .pay-content .discount {
  font-size: 12px;
  color: #E02A52;
  text-align: center;
}
.dialog-box .pay-container .pay-content .pay-type-list {
  background: #F8F9FB;
  border-radius: 5px;
  margin-top: 35px;
  box-sizing: border-box;
  padding: 0 15px;
}
.dialog-box .pay-container .pay-content .pay-type-list .item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 45px;
  line-height: 45px;
  border-bottom: 1px solid #EEEEEE;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .left {
  display: flex;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .left .icon {
  margin-right: 10px;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .left .icon img {
  width: 27.5px;
  height: 27.5px;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .left .text {
  font-size: 15px;
  color: #1F1F1F;
  line-height: 45px !important;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .right {
  display: flex;
}
.dialog-box .pay-container .pay-content .pay-type-list .item .right .icon img {
  width: 17.5px;
  height: 17.5px;
}
.dialog-box .pay-container .pay-content .pay-type-list .item:last-child {
  border: none;
}
.dialog-box .pay-container .pay-content .yue-pay {
  margin-top: 10px;
  background: #F8F9FB;
  border-radius: 5px;
  margin-top: 15px;
  box-sizing: border-box;
  padding: 0 15px 15px 15px;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 45px;
  line-height: 45px;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .left {
  display: flex;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .left .icon {
  margin-right: 10px;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .left .icon img {
  width: 27.5px;
  height: 27.5px;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .left .text {
  font-size: 15px;
  line-height: 45px !important;
  color: #1F1F1F;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .right {
  display: flex;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .right .text {
  font-size: 12px;
  color: #1F1F1F;
  line-height: 45px !important;
  padding-right: 5px;
}
.dialog-box .pay-container .pay-content .yue-pay .pay-wrap .right .icon img {
  width: 17.5px;
  height: 17.5px;
}
.dialog-box .pay-container .pay-content .yue-pay .desc {
  margin-left: 37.5px;
  font-size: 12px;
  color: #666666;
}
.dialog-box .pay-container .pay-content .yue-pay .desc span {
  color: #E02A52;
}
.dialog-box .pay-container .pay-content .yue-pay .banner-img {
  width: 100%;
  margin-top: 15px;
}
.dialog-box .pay-container .pay-content .yue-pay .banner-img img {
  width: 100%;
  height: auto;
}
.dialog-box .pay-container .pay-content .yue-pay.opacity .pay-wrap {
  opacity: 0.5;
}
.dialog-box .pay-container .pay-content .yue-pay.opacity .desc {
  opacity: 0.5;
}
.dialog-box .pay-container .kefu {
  display: flex;
  justify-content: center;
  margin: 15px 0 20px 0;
  line-height: 20px;
  height: 20px;
}
.dialog-box .pay-container .kefu .desc {
  font-size: 11px;
  color: #666666;
}
.dialog-box .pay-container .kefu .desc span {
  color: #007BF2;
}
.dialog-box .pay-container .kefu .icon {
  margin-left: 5px;
}
.dialog-box .pay-container .kefu .icon img {
  width: 11px;
  height: 11px;
}
.dialog-box .pay-container .btn-item {
  width: 100%;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: #FFFFFF;
  border-radius: 35px;
  background: #E02A52;
  margin-top: 10px;
}

.dialog-box-center {
  width: 100%;
  height: 100%;
  max-width: 750px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
}
.dialog-box-center .wrap {
  width: 295px;
  margin: 0 auto;
}
.dialog-box-center .wrap .img-box {
  width: 100%;
  display: flex;
}
.dialog-box-center .wrap .img-box img {
  width: 100%;
}
.dialog-box-center .wrap .btn-box {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 0;
  background: #FFF9F4;
  border-radius: 0 0 10px 10px;
}
.dialog-box-center .wrap .btn-box .item {
  width: 235px;
  cursor: pointer;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  border-radius: 35px;
  margin: 0 auto;
}
.dialog-box-center .wrap .btn-box .item.red {
  background: #E02A52;
  margin-bottom: 10px;
  color: white;
}
.dialog-box-center .wrap .btn-box .item.pink {
  background: #FCE9ED;
  color: #E02A52;
}
.dialog-box-center .wrap .desc {
  display: flex;
  justify-content: center;
  height: 20px;
  line-height: 20px;
  margin-top: 12px;
}
.dialog-box-center .wrap .desc .icon {
  margin-right: 5px;
}
.dialog-box-center .wrap .desc .icon img {
  width: 12.5px;
  height: 12.5px;
}
.dialog-box-center .wrap .desc .text {
  color: white;
  font-size: 12px;
}
.dialog-box-center .wrap .icon-close {
  width: 100%;
  display: flex;
  justify-content: center;
}
.dialog-box-center .wrap .icon-close img {
  margin: 0 auto;
  margin-top: 20px;
  cursor: pointer;
  width: 28px;
  height: 28px;
}
.dialog-box-center .confim-dialog {
  background: white;
  width: 295px;
  height: 194px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 10px 15px;
  margin: 0 auto;
  z-index: 100;
}
.dialog-box-center .confim-dialog .title {
  font-size: 15px;
  color: #1F1F1F;
  text-align: center;
}
.dialog-box-center .confim-dialog .icon {
  width: 100%;
}
.dialog-box-center .confim-dialog .icon img {
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 57.5px;
}
.dialog-box-center .confim-dialog .btn-box {
  display: flex;
  justify-content: space-between;
}
.dialog-box-center .confim-dialog .btn-box .item {
  width: 130px;
  height: 32.5px;
  line-height: 32.5px;
  text-align: center;
  font-size: 14px;
  border-radius: 32.5px;
}
.dialog-box-center .confim-dialog .btn-box .item.normal {
  background: #F8F8F8;
  color: #999;
}
.dialog-box-center .confim-dialog .btn-box .item.red {
  color: white;
  background: #D12447;
}/*# sourceMappingURL=pubilc.css.map */