@charset "UTF-8";
body {
  color: #031a42;
}

.mt-40 {
  margin-top: 40px;
}

.mt-20 {
  margin-top: 20px;
}

.pay-port {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 0 20px 0;
  display: flex;
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  height: max-content;
  text-align: left;
}
.pay-port h3 {
  font-family: Regular_Medium;
  font-size: 18px;
  color: #031a42;
  line-height: 21px;
  font-weight: bold;
}

/*左侧选择*/
.pay-port .pp-left {
  flex: 1;
}

.pay-port .pp-left .pl-info {
  width: 100%;
  height: 100%;
  padding: 30px 25px;
  border-radius: 10px;
  background: #ffffff;
  box-sizing: border-box;
}

.pay-port .pp-left .pl-page {
  margin: 16px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid #ebeffb;
}

.pay-port .pp-left .pl-page ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pay-port .pp-left .pl-page ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #031a42;
  font-weight: 400;
  line-height: 20px;
}

.pay-port .pp-left .pl-page ul li:nth-of-type(2n-1) {
  flex: 0 0 calc(46% - 8px);
}

.pay-port .pp-left .pl-page ul li:nth-of-type(2n) {
  flex: 0 0 calc(54% - 8px);
}

.pay-port .pp-left .pl-page ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #3d6eec;
  margin-right: 10px;
  vertical-align: middle;
  line-height: 0;
  flex-shrink: 0;
}

/*右侧价格*/
.pp-right .pp-info {
  flex-shrink: 0;
  border-radius: 10px;
  padding: 30px 25px;
  width: 370px;
  height: 100%;
  background: #ffffff;
  box-sizing: border-box;
}
.pp-right .pp-info .pp-submit {
  width: 100%;
  height: 50px;
  background: #3d6eec;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.pp-right .pp-info .pp-submit:hover {
  background: #5585ff;
}
.pp-right .pp-info > .card-info {
  margin: 20px 0 25px;
  box-sizing: border-box;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 70px;
  border-radius: 4px;
  background: #F0F5FF url("../common/vh-checkout/images/flow.svg") no-repeat right center;
  background-size: auto 100%;
}
.pp-right .pp-info > .card-info span {
  font-family: Inter Regular;
  font-weight: 400;
  font-size: 13px;
  color: #031a42;
  line-height: 16px;
}

.pp-right .pp-info > .card-info em {
  font-family: Regular_Medium;
  font-weight: normal;
  font-size: 18px;
  color: #031a42;
  line-height: 21px;
}

.pp-right .pp-info .coupons .title {
  font-family: Inter Regular;
  font-weight: 400;
  font-size: 15px;
  color: #031a42;
  line-height: 18px;
}

.pp-right .pp-info .coupons .coupons-select {
  margin: 8px 0 20px;
  box-sizing: border-box;
  padding: 0 15px;
  width: 100%;
  height: 40px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e2e7ef;
  position: relative;
  z-index: 1;
}

.pp-right .pp-info .coupons .coupons-select .select-label {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-family: RedHatDisplay-Bold, RedHatDisplay;
  font-weight: bold;
  color: #586883;
  cursor: pointer;
  z-index: 6;
}
.pp-right .pp-info .coupons .coupons-select .select-label .arrow-icon {
  width: 16px;
  height: 16px;
  background: url("../common/pay-select/images/blog-select.png") no-repeat;
  background-size: 100% 100%;
  transition: all 0.3s;
}
.pp-right .pp-info .coupons .coupons-select .select-label .rotate {
  transform: rotate(180deg);
}

.pp-right .pp-info .coupons ul {
  box-sizing: border-box;
  padding: 8px;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  height: max-content;
  /*max-height: 280px;*/
  background: #ffffff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: translateY(-6px);
  transition: all 0.16s ease-in-out;
  overflow-y: auto;
  max-height: 215px;
  opacity: 0;
  pointer-events: none;
  z-index: 8;
}

.pp-right .pp-info .coupons ul.active {
  opacity: 1;
  pointer-events: auto;
}

.pp-right .pp-info .coupons li {
  padding: 0 15px;
  height: 35px;
  font-family: Inter Regular;
  font-weight: 400;
  font-size: 14px;
  color: #586883;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

.pp-right .pp-info .coupons li:hover {
  color: #031a42;
  background: #f7f8fb;
}

.pp-right .pp-info .item-list {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  height: max-content;
}
.pp-right .pp-info .item-list .green {
  color: #0db682;
}

.pp-right .pp-info .item-list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 66px;
  width: 100%;
  height: max-content;
  line-height: 1;
  text-align: right;
  font-family: Inter Regular;
  font-weight: 400;
  font-size: 15px;
  color: #031a42;
  font-style: normal;
}

.pp-right .pp-info .total {
  margin-top: 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pp-right .pp-info .total > p:nth-of-type(1) {
  padding-top: 20px;
  border-top: 1px solid #ebeffb;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Regular_Medium;
  font-size: 20px;
  color: #031a42;
}

.pp-right .pp-info .total > p:nth-of-type(2) {
  width: 100%;
  text-align: right;
  font-family: Inter Regular;
  font-weight: 400;
  font-size: 13px;
  color: #586883;
  line-height: 16px;
  font-style: normal;
  text-decoration-line: line-through;
}

.sh-select > ul {
  box-sizing: border-box;
  padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  height: max-content;
  max-height: 280px;
  background: #ffffff;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.15);
  border-radius: 2px;
  transform: translateY(-6px);
  transition: all 0.16s ease-in-out;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.pl-list .input_count {
  margin-top: 16px;
}
.pl-list .svpd_count {
  margin-top: 16px;
  width: 170px;
  height: 48px;
  border: 1px solid #d0dbf7;
  display: flex;
  align-items: center;
  border-radius: 5px;
}
.pl-list .svpd_count .vvvv {
  width: max-content;
  height: 30px;
  display: flex;
  border: none;
  align-items: center;
  font-size: 18px;
}
.pl-list .svpd_reduce {
  width: 44px;
  height: 48px;
  background: #ffffff;
  border-radius: 5px 0px 0px 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.pl-list .svpd_reduce:hover {
  background: #d0dbf7;
}
.pl-list .sr_reduce {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/meal/sr_reducue_logo.png) no-repeat center;
  background-size: cover;
  background-position: 0 0;
}
.pl-list .sr_add {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../img/meal/sr_add_logo.png) no-repeat center;
  background-size: cover;
  background-position: 0 0;
}
.pl-list .notallowed {
  cursor: not-allowed;
}
.pl-list .notallowed:hover {
  background: #ffffff;
}
.pl-list .svpd_number {
  text-align: center;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-right: 1px solid #d0dbf7;
  border-left: 1px solid #d0dbf7;
  width: 92px;
  height: 48px;
  font-size: 18px;
  font-weight: 500;
  color: #586883;
}
.pl-list .svpd_add {
  width: 44px;
  height: 48px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 0px 5px 5px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pl-list .svpd_add:hover {
  background: #d0dbf7;
}
.pl-list .pl-res-min {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.pl-list .pl-res-min .pl-res-box .pl-res-min-item {
  margin-top: 16px;
  padding: 20px 61px;
  width: 200px;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 20px;
  color: #3e495d;
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f7ff;
}
.pl-list .pl-res-min .pl-res-box .pl-res-min-item.active {
  color: #3d6eec;
}
.pl-list .item-main-text {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 14px;
  color: #586883;
  line-height: 16px;
  text-align: left;
  font-style: normal;
}

.progressBox {
  display: flex;
}
.progressBox .left {
  flex: 1;
  display: flex;
  align-items: center;
}
.progressBox .left span {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed #bfd1ff;
}
.progressBox .left P {
  margin: 0 12px;
  font-weight: normal;
  font-size: 12px;
  color: #3d6eec;
  line-height: 15px;
  text-align: left;
  font-style: normal;
}
.progressBox .right {
  flex: 1;
  display: flex;
  align-items: center;
}
.progressBox .right P {
  margin: 0 12px;
  font-weight: normal;
  font-size: 12px;
  color: #e7793b;
  line-height: 15px;
  text-align: left;
  font-style: normal;
}
.progressBox .right span {
  flex: 1;
  height: 1px;
  border-bottom: 1px dashed #f1bca1;
}

.centerBorder {
  position: absolute;
  top: 2px;
  right: 50%;
  width: 2px;
  height: 40px;
  background: #cbdbff;
}

.prob {
  display: flex;
}
.prob .item {
  width: 47%;
  font-family: Inter, Inter;
  font-weight: normal;
  font-size: 14px;
  color: #031a42;
  line-height: 16px;
  text-align: left;
  font-style: normal;
}

.el-slider__bar {
  height: 8px !important;
  background-color: #5583FA !important;
}

.el-slider__runway {
  height: 8px !important;
  margin: 16px 0 6px !important;
  background-color: #EAEEF7 !important;
}

.el-slider__button {
  box-sizing: border-box;
  width: 20px !important;
  height: 20px !important;
  border: 5px solid #5583FA !important;
}
