.model-frame{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  height: 100vh;
  width: 100vw;
  background: #00000080;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.dialog-frame{
  position: relative;
  margin: 0 2.5rem;
  width: 100%;
  background: #FCF8DE;
  border-radius: .5rem;
  padding: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.dialog-title{
  font-weight: bold;
  font-size: .8rem;
  color: #8D4218;
  margin-bottom: .8rem;
}

.dialog-content{
  width: 100%;
  height: 4.7rem;
  background: -webkit-gradient( linear, left top, right top, from(#FEF2C0), to(#F8DF78));
  background: -webkit-linear-gradient( left, #FEF2C0 0%, #F8DF78 100%);
  background: linear-gradient( 90deg, #FEF2C0 0%, #F8DF78 100%);
  box-shadow: 0px 10px 6px 1px rgba(255,228,126,0.52);
  border-radius: 20px 20px 20px 20px;
  border: 1px solid #F8E076;
  position: relative;
  font-weight: bold;
  font-size: 1.25rem;
  color: #8D4218;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.dialog-img{
  position: absolute;
  right: -4px;
  top: -8px;
  width: 3.5rem;
  height: 2rem;
}

.dialog-time{
  font-size: .6rem;
  color: #8D4218;
  margin-top: .9rem;
}

.dialog-btn{
  margin-top: 1.2rem;
  width: 100%;
  height: 2.6rem;
  text-align: center;
  line-height: 2.6rem;
  background: -webkit-linear-gradient( 2deg, #E95728 0%, #E54324 100%);
  background: linear-gradient( 88deg, #E95728 0%, #E54324 100%);
  border-radius: 10rem;
  font-size: .8rem;
  color: #FFFFFF;
}

.dialog-close{
  position: absolute;
  bottom: -2rem;
  height: 24px;
  width: 24px;
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}
.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}
.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}
@media (print), (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  to {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse2 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse2 {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.pulse2 {
  -webkit-animation-name: pulse2;
  animation-name: pulse2;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

body {
  -webkit-touch-callout: none;
  /*系统默认菜单被禁用*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  /*早期浏览器*/
  /*火狐*/
  /*IE10*/
  user-select: none;
}
* {
  -webkit-touch-callout: none;
  /*系统默认菜单被禁用*/
  -webkit-user-select: none;
  /*webkit浏览器*/
  /*早期浏览器*/
  /*火狐*/
  /*IE10*/
  user-select: none;
}
input {
  -webkit-user-select: auto;
  /*webkit浏览器*/
}
.wrap-wrok {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  background: #F0F0F0;
}
.wrap-wrok .floor {
  margin: 0.85rem;
}
.wrap-wrok .floor .panel {
  border-top-right-radius: 0.2rem;
  border-top-left-radius: 0.2rem;
  background: white;
  box-sizing: border-box;
}
.wrap-wrok .floor .panel .title {
  padding-top: 0.75rem;
  font-size: 0.75rem;
  color: #e7bb65;
  text-align: center;
}
.wrap-wrok .floor .panel .order {
  padding: 0.25rem 0 1.25rem;
  text-align: center;
  font-size: 0.6rem;
  color: #9f9fa0;
}
.wrap-wrok .floor .panel .time {
  font-size: 1.8rem;
  /* text-align: center; */
  color: #604c3f;
  font-family: 'TRENDS';
}
.gyn-cutdown{
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  padding: .7rem;
  background: url("../../img/ux/cut-down-bg@2x-69cd1e7c4b.png") no-repeat;
  background-size: 100% 100%;
}
.gyn-cutdown .time{
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
}
.gyn-cutdown .gyn-again {
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 5.2rem;
          flex: 0 0 5.2rem;
  width: 5.2rem;
  height: 3.4rem;
  background: url("../../img/ux/again-btn@2x-8e2f5c2d22.png") no-repeat;
  background-size: 100% 100%;
}
.wrap-wrok .floor .panel .residue {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.1rem;
  color: #9f9fa0;
  text-align: center;
}
.wrap-wrok .floor .panel .refund {
  display: none;
  line-height: 0.9rem;
  margin: 0 0 1.25rem;
  font-size: 0.6rem;
  color: #cec7c1;
  text-align: center;
}
.wrap-wrok .floor .panel .work-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0 1.5rem 1.3rem;
}
.wrap-wrok .floor .panel .work-btn a {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 6.5rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 1rem;
  border: 1px solid #604c3f;
  font-size: 0.7rem;
}
.wrap-wrok .floor .panel .work-btn a .icon {
  width: 1rem;
  height: 1rem;
  background-size: 1rem 1rem;
  background-repeat: no-repeat;
  margin-right: 0.25rem;
}
.wrap-wrok .floor .panel .work-btn a .handle {
  background-image: url("../../img/ux/order-1@2x-27d77c6e6e.png");
}
.wrap-wrok .floor .panel .work-btn a .relation {
  background-image: url("../../img/ux/order-2@2x-afc8c371dc.png");
}
.wrap-wrok .floor .panel .work-btn a.handle-wrap {
  display: none;
}
.wrap-wrok .floor .panel .work-btn-content {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.wrap-wrok .floor .go-shop {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 15px;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 10px;
}
.wrap-wrok .floor .go-shop .lab {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  color: #F7A724;
}
.wrap-wrok .floor .go-shop .lab-info {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 90px;
          flex: 0 0 90px;
  text-align: right;
  color: #C4C4C6;
  position: relative;
}
.wrap-wrok .floor .go-shop .lab-info .arrow-right {
  position: absolute;
  right: 15px;
  width: 0.375rem;
  height: 0.625rem;
  background-size: 0.375rem 0.625rem;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0.7rem 0.9rem 0.7rem 1.15rem;
  background-image: url('../../img/ux/pay-5@2x-2e84a42df8.png');
}
.wrap-wrok .floor .order {
  border-radius: 8px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
  background: white;
}
.wrap-wrok .floor .order .container-order {
  display: none;
  width: 100%;
}
.wrap-wrok .floor .order .container-order .gif {
  width: 50%;
  padding: 0.5rem 0 1rem;
  margin: 0 auto;
}
.wrap-wrok .floor .order .container-order .title {
  padding-bottom: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.2rem;
  font-family: PingFangSC-Regular;
  color: #9B9B9B;
  text-align: center;
}
.wrap-wrok .floor .order .container-order .refund-msg {
  display: none;
  font-size: 10px;
  font-family: PingFangSC-Regular;
  color: #9B9B9B;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 0.85rem;
}
.wrap-wrok .floor .order .container-order .time {
  font-family: AvenirNextCondensed-DemiBold;
  font-size: 72px;
  color: #333333;
  text-align: center;
  /* padding: 0.7rem 0 0; */
}
.wrap-wrok .floor .order .container-order .operation {
  /* display: flex;
  flex-wrap: wrap;
  align-content: space-between; */
  margin: 0 0 20px 0;
  padding: 0 4px;
}
.wrap-wrok .floor .order .container-order .operation .column {
  /* flex: 1;
  margin: 0 6px; */
  /* flex-basis: 100%; */
  /* display: flex;
  justify-content: space-around;
  box-sizing: border-box; */
  width: 30%;
  display: inline-block;
  margin: 0 1.5%;
}

.pattern-choose,
.shock-mode,
.movement-content
.intensity,
.op-up-down,
.colom-start-stop
.emergency-stop{
  display: none;
}

.wrap-wrok .floor .order .container-order .operation .column .operation-btn {
  /* width: 127px;
  height: 32px; */
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  text-align: center;
  border-radius: 50px;
  margin-top: 15px;
  /* border: 1px solid #F7A724; */
  font-size: 0;
  /* padding: 0 18px; */
  box-sizing: border-box;
  background: rgba(245,191,74,0.20);
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  top: 4px;
  margin-right: 5px;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.ob-up {
  background-image: url('../../img/ux/up-icon@2x-654165164c.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.ob-down {
  background-image: url('../../img/ux/down-icon@2x-e633248cb7.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.ob-start {
  background-image: url('../../img/ux/start-icon@2x-a5637dec99.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.ob-stop {
  background-image: url('../../img/ux/stop-icon@2x-d46a5b6a1d.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.inlarge-icon {
  background-image: url('../../img/ux/intensity-icon@2x-f0d7f7a98e.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn i.reduce-icon {
  background-image: url('../../img/ux/reduce-icon@2x-ce7f8970da.png');
  background-size: 100% 100%;
}

.shock-mode .btn-icon{
  background-image: url('../../img/ux/shock-act@2x-9f509c1772.png');
  background-size: 100% 100%;
}
.shock-mode.shock-mode-act .btn-icon{
  background-image: url('../../img/ux/shock@2x-f4de0c7265.png');
  background-size: 100% 100%;
}
.shock-mode.shock-mode-act{
  background-color: #f3ac42;
  color: #fff;
}

.pattern-choose .btn-icon{
  background-image: url('../../img/ux/mode-change@2x-a147e12b0a.png');
  background-size: 100% 100%;
}
.pattern-choose.operation-btn-act .btn-icon{
  background-image: url('../../img/ux/mode-change-act@2x-6a8dba6c77.png');
  background-size: 100% 100%;
}
.emergency-stop .btn-icon{
  background-image: url('../../img/ux/emergency-stop-2e2bf079da.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn p {
  font-size: 12px;
  line-height: 30px;
  color: #F7A724;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act {
  /* border: 1px solid #C4C4C4; */
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.ob-up {
  background-image: url('../../img/ux/up-icon-act@2x-57ceb02d00.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.ob-down {
  background-image: url('../../img/ux/down-icon-act@2x-b0c4ad804f.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.ob-start {
  background-image: url('../../img/ux/start-icon-act@2x-7702890ff0.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.ob-stop {
  background-image: url('../../img/ux/stop-icon-act@2x-395a51e9de.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.inlarge-icon {
  background-image: url('../../img/ux/intensity-icon-act@2x-17cc9c00e4.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act i.reduce-icon {
  background-image: url('../../img/ux/reduce-icon-act@2x-629c339065.png');
  background-size: 100% 100%;
}
.wrap-wrok .floor .order .container-order .operation .column .operation-btn.operation-btn-act p {
  color: #C4C4C4;
}
.wrap-wrok .floor .order .container-order .order-msg {
  padding-left: 1.4rem;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #333333;
}
.wrap-wrok .floor .order .container-order .order-n {
  margin: 0.4rem 0;
  padding-left: 1.4rem;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #333333;
}
.wrap-wrok .floor .order .container-order .order-n span {
  display: inline-block;
}
.wrap-wrok .floor .order .container-order .order-n .mark {
  border: 1px solid transparent;
  outline: none;
  color: #F7A724;
  padding: 5px;
  background: none;
}
.wrap-wrok .floor .order .container-order .order-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  height: 2.2rem;
  line-height: 2.2rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}
.wrap-wrok .floor .order .container-order .order-btn:before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 1px;
  border-top: 1px solid #F1F1F1;
  color: #F1F1F1;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
}
.wrap-wrok .floor .order .container-order .order-btn .btn-personal {
  display: none;
  position: relative;
}
.wrap-wrok .floor .order .container-order .order-btn .btn-personal:before {
  content: " ";
  position: absolute;
  right: 0;
  height: 100%;
  border-right: 1px solid #F1F1F1;
  color: #F1F1F1;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
.wrap-wrok .floor .order .container-order .order-btn .btn-control {
  position: relative;
  display: none;
}
.wrap-wrok .floor .order .container-order .order-btn .btn-control:before {
  content: " ";
  position: absolute;
  right: 0;
  height: 100%;
  border-right: 1px solid #F1F1F1;
  color: #F1F1F1;
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-transform: scaleX(0.5);
  transform: scaleX(0.5);
}
.wrap-wrok .floor .order .container-order .order-btn a,
.wrap-wrok .floor .order .container-order .order-btn div {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
          flex: 1;
  height: 1.2rem;
  line-height: 1.2rem;
  text-align: center;
  font-family: PingFangSC-Regular;
  font-size: 14px;
  color: #333333;
}
.wrap-wrok .floor .order .container-order .order-btn a span,
.wrap-wrok .floor .order .container-order .order-btn div span {
  display: inline-block;
  margin-right: 0.3rem;
  width: 16px;
  height: 16px;
  margin-bottom: 2px;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.wrap-wrok .floor .order .container-order .order-btn a .icon-1,
.wrap-wrok .floor .order .container-order .order-btn div .icon-1 {
  background-image: url('../../img/ux/order-19@2x-6fe742220b.png');
}
.wrap-wrok .floor .order .container-order .order-btn a .icon-2,
.wrap-wrok .floor .order .container-order .order-btn div .icon-2 {
  background-image: url('../../img/ux/order-15@2x-5db0562c8d.png');
}
.wrap-wrok .floor .order .container-order .order-btn a .icon-3,
.wrap-wrok .floor .order .container-order .order-btn div .icon-3 {
  background-image: url('../../img/ux/order-20@2x-aa909df7d1.png');
}
.wrap-wrok .floor .order .container-order .close-chair {
  display: none;
}
.wrap-wrok .floor .order .container-order .close-chair p {
  text-align: center;
  padding: 5px 0;
  font-size: 12px;
  color: #999;
}
.wrap-wrok .floor .order .container-order .close-chair button {
  width: 100%;
  line-height: 2;
  height: 2rem;
  background: #e7bb65;
  color: white;
  font-size: 16px;
  border: 1px solid transparent;
  outline: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  font-family: PingFangSC-Regular;
}
.wrap-wrok .floor .order .success {
  display: none;
  width: 100%;
}
.wrap-wrok .floor .order .success .t {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}
.wrap-wrok .floor .order .success .t .title {
  color: #F5BF4A;
  padding: 2.075rem 0 0 0.7rem;
}
.wrap-wrok .floor .order .success .t .title .brand {
  font-size: 0.575rem;
  font-family: PingFangSC-Regular;
}
.wrap-wrok .floor .order .success .t .title .combo-name {
  padding: 0.325rem 0 0.575rem;
  font-size: 1rem;
  font-family: PingFangSC-Semibold;
}
.wrap-wrok .floor .order .success .t .title .wire {
  border: 0.5px solid #afafaf;
}
.wrap-wrok .floor .order .success .t .title-charging {
  color: #67a611;
}
.wrap-wrok .floor .order .success .t .time {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding: 1.35rem 0.7rem 0 0;
}
.wrap-wrok .floor .order .success .t .time .square {
  width: 3.35rem;
  height: 3.35rem;
  line-height: 3.35rem;
  text-align: center;
  border: 1px solid #8A8A8A;
  border-radius: 0.4rem;
  color: #F5BF4A;
  font-family: Open Sana Bold;
  font-size: 2.65rem;
}
.wrap-wrok .floor .order .success .t .time .colon-wrap {
  padding-top: 0.875rem;
}
.wrap-wrok .floor .order .success .t .time .colon-wrap .colon {
  width: 0.3rem;
  height: 0.3rem;
  margin: 0.25rem 0.35rem;
  background: #afafaf;
}
.wrap-wrok .floor .order .success .b {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding-right: 12%;
}
.wrap-wrok .floor .order .success .b .bl {
  padding-left: 0.7rem;
}
.wrap-wrok .floor .order .success .b .bl .order-num {
  padding: 0.3rem 0 ;
  font-family: PingFangSC-Medium;
  color: #666666;
  font-size: 0.45rem;
}
.wrap-wrok .floor .order .success .b .bl .num {
  font-family: PingFangSC-Light;
  font-size: 0.6rem;
  color: #666666;
}
.wrap-wrok .floor .order .success .b .br {
  text-align: center;
}
.wrap-wrok .floor .order .success .b .br .residue {
  padding: 0.65rem 0 0;
  font-family: PingFangSC-Regular;
  font-size: 0.8rem;
  color: #afafaf;
}
.wrap-wrok .floor .order .success .success-btn-wrap {
  position: relative;
  margin-top: 0.875rem;
}
.wrap-wrok .floor .order .success .success-btn-wrap .control-btn {
  display: none;
  width: 4.55rem;
  height: 1.25rem;
  line-height: 1.25rem;
  margin-left: 0.7rem;
  font-family: PingFangSC-Regular;
  border-radius: 1rem;
  border: 1px solid #8A8A8A;
  font-size: 0.4rem;
  color: #8A8A8A;
  text-align: center;
}
.wrap-wrok .floor .order .success .success-btn-wrap .control-btn .control-icon {
  display: inline-block;
  width: 0.75rem;
  height: 0.775rem;
  background-size: 0.75rem 0.775rem;
  background-repeat: no-repeat;
  background-image: url("../../img/ux/order-15@2x-5db0562c8d.png");
  vertical-align: middle;
  margin-right: 0.2rem;
}
.wrap-wrok .floor .order .success .success-btn-wrap .relation-btn {
  position: absolute;
  top: 0;
  right: 7.5%;
  display: inline-block;
  width: 4.55rem;
  height: 1.25rem;
  line-height: 1.25rem;
  font-family: PingFangSC-Regular;
  border-radius: 1rem;
  border: 1px solid #8A8A8A;
  font-size: 0.4rem;
  color: #8A8A8A;
  text-align: center;
}
.wrap-wrok .floor .order .success .success-btn-wrap .relation-btn .relation-icon {
  display: inline-block;
  width: 0.875rem;
  height: 0.9rem;
  background-size: 0.875rem 0.9rem;
  background-repeat: no-repeat;
  background-image: url("../../img/ux/order-14@2x-3cc384b446.png");
  vertical-align: middle;
  margin-right: 0.2rem;
}
.wrap-wrok .floor .order .fail {
  display: none;
  width: 100%;
  text-align: center;
}
.wrap-wrok .floor .order .fail .order-id {
  padding-top: 0.4rem;
  font-size: 0.6rem;
  color: #abaaa8;
}
.wrap-wrok .floor .order .fail .title {
  padding: 0.4rem 0;
  font-family: PingFangSC-Regular;
  color: #F5BF4A;
  font-size: 0.6rem;
}
.wrap-wrok .floor .order .fail .title-charging {
  color: #67a611;
}
.wrap-wrok .floor .order .fail .text {
  font-family: PingFangSC-Semibold;
  font-size: 1.5rem;
  color: #abaaa8;
}
.wrap-wrok .floor .order .fail .explain {
  padding: 0.775rem 0 1.025rem;
  font-family: PingFangSC-Regular;
  font-size: 0.525rem;
  color: #abaaa8;
}
.wrap-wrok .floor .order .fail .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin: 0 1.6rem 0;
}
.wrap-wrok .floor .order .fail .btn-wrap a {
  display: inline-block;
}
.wrap-wrok .floor .order .fail .btn-wrap .btn {
  width: 6.4rem;
  height: 1.75rem;
  line-height: 1.75rem;
  border-radius: 1rem;
  border: 1px solid #8A8A8A;
  font-family: PingFangSC-Regular;
  font-size: 0.525rem;
  color: #8A8A8A;
}
.wrap-wrok .floor .order .fail .btn-wrap .btn .scan {
  display: inline-block;
  width: 1.125rem;
  height: 1.175rem;
  background-size: 1.125rem 1.175rem;
  background-repeat: no-repeat;
  background-image: url("../../img/ux/order-13@2x-3f59f5eb6f.png");
  vertical-align: middle;
  margin-right: 0.55rem;
}
.wrap-wrok .floor .order .fail .btn-wrap .btn .relation {
  display: inline-block;
  width: 1.25rem;
  height: 1.275rem;
  background-size: 1.25rem 1.275rem;
  background-repeat: no-repeat;
  background-image: url("../../img/ux/order-14@2x-3cc384b446.png");
  vertical-align: middle;
  margin-right: 0.55rem;
}
.wrap-wrok .floor .item {
  border-radius: 0.4rem;
  display: block;
  margin-top: 0.65rem;
  font-size: 0;
  overflow: hidden;
}
.wrap-wrok .footer-bar {
  display: none;
  height: 2.2rem;
}
.wrap-wrok .footer-bar .bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  height: 2.2rem;
  line-height: 2.2rem;
  background: white;
  font-size: 0.6rem;
}
.wrap-wrok .footer-bar .bar .text {
  margin-left: 0.5rem;
  color: #7d7d7d;
}
.wrap-wrok .footer-bar .bar .btn {
  padding: 0 0.75rem;
  color: #e7bb65;
}
.bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.container {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.boon {
  width: 80%;
  text-align: center;
}
.boon .coupon {
  font-size: 0;
  position: relative;
}
.boon .coupon .btn {
  position: absolute;
  bottom: 20px;
  left: 10%;
  width: 80%;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  color: white;
  text-align: center;
  background: #e7bb65;
  font-size: 16px;
}
.boon .gold {
  display: none;
  position: relative;
}
.boon .gold .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.boon .gold .content .title {
  padding-top: 9%;
  color: #604c3f;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.boon .gold .content .num {
  color: #e8bb66;
  margin: 5% 0 3%;
  font-size: 60px;
  font-weight: bold;
}
.boon .gold .content .explain {
  width: 70%;
  margin: 0 auto;
  line-height: 1.2;
  color: #604c3f;
  font-size: 16px;
  font-weight: 600;
}
.boon .gold .content .explain span {
  color: #e7bb65;
  font-weight: bold;
}
.boon .close {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-top: 20px;
  background: url("../../img/ux/order-10@2x-7af0bb98eb.png") no-repeat;
  background-size: 25px 25px;
}
.boon-suspend {
  display: none;
  position: fixed;
  right: 0;
  bottom: 25%;
  width: 70px;
  height: 60px;
  background: url("../../img/ux/order-11@2x-3d24ce01fb.png") no-repeat;
  background-size: 70px 60px;
}
.control {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 13.5rem;
  border-radius: 0.4rem;
  background: white;
}
.control .content {
  padding: 0 0.65rem;
}
.control .content .title {
  padding: 0.5rem 0 0.75rem;
  text-align: center;
  color: #e7bb65;
  font-size: 0.6rem;
}
.control .content .subtitle {
  color: #e7bb65;
  font-size: 0.6rem;
}
.control .content .option {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  padding: 0.6rem 0 0.75rem;
}
.control .content li {
  width: 3.25rem;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: center;
  border: 1px solid #604c3f;
  box-sizing: border-box;
  border-radius: 0.5rem;
  font-size: 0.6rem;
}
.control .content .check {
  background: #e7bb65;
  color: white;
  border: none;
}
.control .btn {
  line-height: 2.2rem;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  color: #e7bb65;
  font-size: 0.9rem;
}
.packet {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 12.65rem;
  height: 15.675rem;
  background-image: url("../../img/ux/order-4@2x-2e861661ec.png");
  background-size: 12.65rem 15.675rem;
  background-repeat: no-repeat;
}
.packet .packet-btn {
  position: absolute;
  bottom: 2rem;
  width: 8.4rem;
  height: 2.75rem;
  margin-left: 2.125rem;
  line-height: 2.75rem;
  background: #fbd15f;
  color: #ea3a1f;
  font-size: 1.25rem;
  text-align: center;
  border-radius: 10px;
  font-weight: bold;
}
.packet .close-wrap {
  position: absolute;
  bottom: -4rem;
  width: 100%;
  text-align: center;
}
.packet .close-wrap .close {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0.5rem;
  background-size: 1.25rem 1.25rem;
  background-image: url("../../img/ux/order-5@2x-95e8ec5f69.png");
  background-repeat: no-repeat;
  background-position: 0.5rem;
}
.suspend {
  display: none;
  position: fixed;
  bottom: 7rem;
  right: 0;
  width: 2.2rem;
  height: 3.05rem;
  background-size: 2.2rem 3.05rem;
  background-image: url("../../img/ux/order-6@2x-f85b3344d6.png");
  background-repeat: no-repeat;
}
.draw {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 13.75rem;
  background: white;
  text-align: center;
}
.draw .fork {
  position: absolute;
  top: 0.3rem;
  right: 0.1rem;
  width: 0.65rem;
  height: 0.65rem;
  padding: 0.5rem;
  background-position: 0.5rem;
  background-size: 0.65rem 0.65rem;
  background-image: url("../../img/ux/order-7@2x-7e8d91603e.png");
  background-repeat: no-repeat;
}
.draw .logo {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-image: url("../../img/ux/order-8@2x-0662af8d77.png");
  background-size: 2rem 2rem;
  background-repeat: no-repeat;
  padding: 1rem 0 0.75rem;
  background-position: 0 1rem;
}
.draw .title {
  padding-bottom: 0.8rem;
  color: #604c3f;
  font-size: 1rem;
  text-align: center;
}
.draw .red {
  color: #ea3a1f;
}
.draw .brown {
  color: #604c3f;
}
.draw .text {
  font-size: 0.7rem;
  padding-bottom: 0.5rem;
}
.draw .qrcode {
  display: inline-block;
  width: 5.25rem;
}
.draw .portal {
  padding: 0.1rem 0 0.5rem;
  color: #c9c9c9;
  font-size: 0.55rem;
}
.bind {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 15rem;
  background: white;
  border-radius: 0.2rem;
  padding-bottom: 0.6rem;
}
.bind .title {
  position: relative;
  line-height: 2.25rem;
  font-size: 0.8rem;
  color: #614d41;
  text-align: center;
}
.bind .title .fork {
  position: absolute;
  top: 0.3rem;
  right: 0.1rem;
  width: 0.65rem;
  height: 0.65rem;
  padding: 0.5rem;
  background-position: 0.5rem;
  background-size: 0.65rem 0.65rem;
  background-image: url("../../img/ux/order-7@2x-7e8d91603e.png");
  background-repeat: no-repeat;
}
.bind .content {
  margin: 0 0.6rem;
  padding: 0 0.9rem;
  border-radius: 0.2rem;
  border: 1px solid #E7BB65;
  box-sizing: border-box;
  font-size: 0;
}
.bind .content input {
  height: 2.45rem;
  text-indent: 0.75rem;
  font-size: 0.75rem;
  color: #e7bb65;
  outline: none;
}
.bind .content .phone {
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #d2d2d2;
  border-radius: initial;
}
.bind .content .code {
  display: inline-block;
  width: 50%;
}
.bind .content .submit {
  display: inline-block;
  width: 50%;
  height: 100%;
  font-size: 0.65rem;
  color: #e7bb65;
  border: none;
  background: none;
  outline: none;
}
.bind .hint {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.6rem;
  color: #614d41;
  text-align: center;
}
.bind .btn {
  margin: 0 0.6rem;
  height: 2rem;
  line-height: 2rem;
  font-size: 0.85rem;
  color: white;
  background: #e7bb65;
  border-radius: 4px;
  text-align: center;
}
.code-panle {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: hidden;
}
.code-panle .mask {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.code-panle .content {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: #fff;
  border-radius: 8px 8px 0 0;
}
.code-panle .content .title {
  height: 40px;
  font-size: 16px;
  text-align: center;
  color: #e7bb65;
  line-height: 40px;
  border-bottom: 1px solid #eee;
}
.code-panle .content .code-content {
  height: 200px;
  text-align: center;
  padding-top: 20px;
}
.code-panle .content .code-content img {
  width: 150px;
  height: 150px;
  margin: auto;
}

.order-list{
  min-height: 72px;
  max-height: 144px;
  overflow: scroll;
  display: none;
}
.order-item{
  padding-top: 10px;
  border-bottom: 1px solid #f8f8f8;
}
.order-type{
  display: inline-block;
  font-size: 10px;
  padding: 4px 8px;
  border: 1px solid #9b9b9b;
  border-radius: 8px;
  margin-left: 12px;
}
.order-type.act{
  border: 1px solid #F5BF4A;
  color: #F5BF4A;
}
/* yyyn */
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
  /* animation: tada 1.5s infinite;
  -webkit-animation: tada 1.5s infinite; */
}
.wrap-wrok .red-bag{
  display: none;
  position: fixed;
  width: 46px;
  height: 40px;
  bottom: 60px;
  right: 15px;
  z-index: 1;
}
.wrap-wrok .red-bag img{
  width: 100%;
  height: 100%;
}
.checkoder{
  padding-left: 1.4rem;
  font-family: PingFangSC-Regular;
  font-size: 12px;
  color: #333333;
  margin: 0 0 15px 0;
}
