.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FFF;
  min-height: 44px;
  padding: 0 16px;
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
  line-height: 44px;
  z-index: 99999;
  position: relative;
}
.nav-bar-logo {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.nav-bar-logo div,
.nav-bar-logo a {
  display: inline-flex;
  align-items: center;
}
.nav-bar-logo span {
  display: flex;
  align-items: center;
  width: 27px;
  height: 27px;
  margin-right: 14px;
}
.nav-bar-menu-burger {
  width: 20px;
  height: 2px;
  background-color: #232122;
  position: relative;
  z-index: 13;
  transition: all 0.2s ease-in;
}
.nav-bar-menu-burger:before {
  content: ' ';
  height: 2px;
  background-color: #232122;
  display: inline-block;
  position: absolute;
  width: 20px;
  top: -7px;
  animation: action-active-top-hide 0.5s forwards;
}
.nav-bar-menu-burger:after {
  content: ' ';
  height: 2px;
  background-color: #232122;
  display: inline-block;
  position: absolute;
  width: 20px;
  bottom: -7px;
  animation: action-active-bottom-hide 0.5s forwards;
}
.nav-bar-menu-burger.show {
  width: 0;
  opacity: 0.58;
  position: fixed;
  right: 20px;
  transition: none;
}
.nav-bar-menu-burger.show:before {
  animation: action-active-top-show 0.3s forwards;
}
.nav-bar-menu-burger.show:after {
  animation: action-active-bottom-show 0.3s forwards;
}
.nav-bar-menu-burger.no-animation:before,
.nav-bar-menu-burger.no-animation:after {
  animation: none;
}
.nav-bar-mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFF;
  animation: nav-fade-in 0.2s;
  z-index: 12;
  padding: 30px 42px;
}
.nav-bar-mask ul li {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  letter-spacing: 1px;
}
.nav-bar-mask ul li span.active {
  padding-bottom: 8px;
  border-bottom: 4px solid #006241;
}
.nav-bar-mask ul li + li {
  margin-top: 12%;
}
.nav-bar-mask-logo {
  margin-bottom: 57px;
}
.nav-bar-padding-android {
  padding-top: 12px;
}
.nav-bar-padding-ios {
  padding-top: constant(safe-area-inset-top);
  padding-top: env(safe-area-inset-top);
}
@keyframes action-active-top-show {
  0% {
    opacity: 0;
  }
  100% {
    top: 24px;
    right: 22px;
    opacity: 1;
    transform: rotate(45deg);
    background-color: #000;
  }
}
@keyframes action-active-bottom-show {
  0% {
    opacity: 0;
  }
  100% {
    top: 24px;
    right: 22px;
    opacity: 1;
    transform: rotate(-45deg);
    background-color: #000;
  }
}
@keyframes action-active-top-hide {
  100% {
    top: -7px;
  }
  70% {
    top: 0;
  }
  0% {
    top: 0;
    transform: rotate(45deg);
  }
}
@keyframes action-active-bottom-hide {
  100% {
    bottom: -7px;
  }
  70% {
    bottom: 0;
  }
  0% {
    bottom: 0;
    transform: rotate(-45deg);
  }
}
@keyframes nav-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tab-bar {
  position: fixed;
  height: 55px;
  background-color: #FFF;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
  border-top: 1px solid #E5E5E5;
}
.tab-bar-list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.tab-bar-list-item {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  color: rgba(0, 0, 0, 0.58);
  cursor: pointer;
}
.tab-bar-list-item svg * {
  fill: rgba(0, 0, 0, 0.58);
}
.tab-bar-list-item.tab-bar-list-item-active {
  color: #006241;
}
.tab-bar-list-item.tab-bar-list-item-active svg * {
  fill: #006241;
}
.tab-bar-list-item-icon {
  font-size: 22px;
}
.tab-bar-list-item-text {
  font-size: 12px;
}

.toast-box {
  position: fixed;
  top: 70%;
  left: 50%;
  -ms-transform: translate(-50%, -70%);
      transform: translate(-50%, -70%);
}
.toast-box .toast-content {
  background: rgba(51, 51, 51, 0.9);
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .toast-box .toast-content {
    font-size: 1rem;
  }
}

.captcha-modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
  background-color: rgba(0, 0, 0, 0.65);
}
.captcha-modal-hidden {
  pointer-events: none;
}
.captcha-modal-hidden .captcha-modal-mask {
  opacity: 0;
}
.captcha-modal-open {
  pointer-events: auto;
}
.captcha-modal-open .captcha-modal-mask {
  opacity: 1;
}
.captcha-modal + iframe {
  position: fixed !important;
}

.landing-tips {
  padding: 30px 42px;
  background-color: #FFF;
  border-radius: 2px;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
@media screen and (max-width: 767px) {
  .landing-tips {
    background-color: transparent;
    box-shadow: none;
    padding: 0 42px;
  }
}
.landing-tips.container {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .landing-tips.container {
    margin-top: 0;
    padding-top: 0;
  }
}
.landing-tips.container .landing-tips-header {
  color: #C2A661;
  display: block;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  position: relative;
}
.landing-tips.container .landing-tips-header::before {
  content: '';
  position: absolute;
  top: 18px;
  align-self: flex-start;
  width: calc((100% / 2) - 30px);
  height: 1px;
  background-image: linear-gradient(450deg, #FFF, #C2A661 70%, #C2A661);
}
.landing-tips.container .landing-tips-header::after {
  content: '';
  position: absolute;
  top: 18px;
  width: calc((100% / 2) - 30px);
  height: 1px;
  background: linear-gradient(450deg, #C2A661, #C2A661 40%, #FFF);
  align-self: flex-end;
}
.landing-tips.container .landing-tips-header-gift {
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .landing-tips.container .landing-tips-header-gift {
    margin-right: 0;
    margin-bottom: 18px;
    vertical-align: top;
  }
}
.landing-tips.container .landing-tips-header-title {
  word-break: break-all;
  white-space: pre-wrap;
  line-height: 18px;
}
.landing-tips.container .landing-tips-description {
  line-height: 23px;
  color: black;
  white-space: pre-wrap;
  word-break: break-all;
}
.landing-tips.container .landing-tips-description a {
  color: #006241;
}
@media screen and (max-width: 767px) {
  .landing-tips.container .landing-tips-description {
    font-size: 13px;
    word-break: break-all;
  }
}

.alicare-mobile-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #00A862;
  border-radius: 50%;
  box-shadow: 0 2px 6px 0 rgba(0, 14, 8, 0.1);
  overflow: hidden;
}
.alicare-mobile-link {
  position: fixed;
  bottom: 100px;
  right: 10px;
  display: none;
  width: 44px;
  height: 44px;
  z-index: 999;
}
.alicare-mobile-icon {
  width: 32px;
  height: 26px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .alicare-mobile-link {
    display: block;
  }
}

.footer-image-v2 {
  background: url(/res/d5a00da8d315f8ebed01ba260754eaf1.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  float: left;
}

.count-down-btn.ant-btn {
  min-width: 62px;
  height: 30px;
  position: absolute;
  right: 8px;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.count-down-btn.count-down-btn-disabled {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
}

.empty-table {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .empty-table {
    padding: 0 10px;
  }
}
.empty-table span {
  font-size: 22px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .empty-table span {
    font-size: 14px;
  }
}

div.coupon-operation-modal {
  width: 980px !important;
}
div.coupon-operation-modal .ant-modal-content {
  border-radius: 0;
}
div.coupon-operation-modal .ant-table-tbody > tr > td {
  word-break: break-word;
}
div.coupon-operation-modal-title {
  padding: 10px;
  font-size: 18px;
}
div.coupon-operation-modal-title span {
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.8px;
  color: #6d6863;
}
div.coupon-operation-modal-title span:first-child {
  margin: 0 10px 0 40px;
}

.reservation-order-card {
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  border-radius: 2px;
  background: white;
  margin-bottom: 24px;
}
.reservation-order-card:last-child {
  margin-bottom: 0;
}
.reservation-order-card header {
  display: flex;
  background: #e9ddd0;
  height: 58px;
  line-height: 58px;
  justify-content: space-between;
  padding: 0 20px 0 30px;
}
.reservation-order-card-activity-name,
.reservation-order-card-redeem-way {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 500;
  margin-right: 20px;
}
.reservation-order-card .flex-header {
  display: flex;
}
.reservation-order-card-user-info {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
}
.reservation-order-card-reserve-number {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
}
.reservation-order-card-express-number {
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-right: 20px;
}
.reservation-order-card-operation {
  color: #006241;
  display: flex;
}
.reservation-order-card-operation-groups {
  display: flex;
}
.reservation-order-card-operation-groups div {
  margin-right: 30px;
  cursor: pointer;
  white-space: nowrap;
}
.reservation-order-card-operation-resend-btn {
  min-width: 100px;
  cursor: pointer;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .reservation-order-card-operation-resend-btn {
    width: auto;
  }
}
.reservation-order-card-operation svg {
  width: 14px;
  height: 14px;
}
.reservation-order-card-operation-toggle {
  cursor: pointer;
}
.reservation-order-card-count-down-btn {
  cursor: pointer;
}
.reservation-order-card-count-down-btn-disabled {
  color: rgba(0, 0, 0, 0.25);
  cursor: not-allowed;
}
.reservation-order-card-count-down-btn-icon-voucher-disabled svg path {
  fill: #C7C5C5;
  stroke: #C7C5C5;
}
.reservation-order-card-count-down-btn-icon-disabled svg path {
  fill: #C7C5C5;
}
.reservation-order-card-info {
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 30px 20px 30px 30px;
  line-height: 18px;
}
.reservation-order-card-info-date {
  flex-shrink: 0;
  width: 135px;
  margin-right: 50px;
}
.reservation-order-card-info-store {
  flex-shrink: 0;
  max-width: 200px;
  margin-right: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reservation-order-card-info-store-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reservation-order-card-info-phone {
  flex-shrink: 0;
  max-width: 150px;
  margin-right: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reservation-order-card-info-address {
  flex-shrink: 0;
  max-width: 400px;
  margin-right: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reservation-order-card-info svg {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.reservation-order-card .agreement-list {
  margin-right: 40px;
  flex-shrink: 0;
}
.reservation-order-card .agreement-list-reserve-number {
  max-width: 400px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reservation-order-card span.isvg {
  vertical-align: sub;
}
.reservation-order-card-table th:first-child,
.reservation-order-card-table td:first-child {
  padding-left: 30px;
}
.reservation-order-card-table-operation {
  color: #006241;
}
.reservation-order-card-table-operation-btn {
  margin-right: 26px;
  cursor: pointer;
}
.reservation-order-card-cake-flavors-title {
  background: #fafafa;
  padding: 16px 30px;
}
.reservation-order-card-cake-flavors {
  padding: 16px 30px;
}
.reservation-order-card-cake-flavors span {
  width: 25%;
  display: inline-block;
}
.ant-modal-root .coupon-url {
  height: 240px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  overflow: auto;
}

.zoom-control {
  right: 15px !important;
  bottom: 44px !important;
  top: initial !important;
  left: initial !important;
}
.zoom-control-add,
.zoom-control-subtract {
  width: 34px;
  height: 34px;
  color: #006241;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.5);
  background-color: #FFF;
  font-size: 24px;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
}

.reservation-info-window {
  background-color: #FFF;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  font-size: 14px;
  position: absolute;
  padding: 0 12px;
  height: 40px;
  line-height: 40px;
  color: #2d2926;
  min-width: 180px;
}
.reservation-info-window:before {
  content: " ";
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  bottom: -10px;
  border: 5px solid transparent;
  border-top-color: #FFF;
}

.delivery-store-marker {
  width: 40px;
  height: 60px;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  position: absolute;
}

.logistics-distribution-modal .ant-modal-content {
  border-radius: 14px;
  overflow: hidden;
}
.logistics-distribution-modal.ant-modal {
  width: 1177px !important;
}
.logistics-distribution-modal .ant-modal-header {
  padding: 27px 30px;
}
.logistics-distribution-modal .ant-drawer-close-x {
  font-size: 20px;
  line-height: 72px;
}
.logistics-distribution-modal .ant-modal-close {
  top: 9px;
}
.logistics-distribution-modal .ant-modal-close-x {
  font-size: 20px;
}
.logistics-distribution-modal .ant-spin-nested-loading,
.logistics-distribution-modal .ant-spin-container {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-header {
    padding: 20px 18px 18px 15px;
    border-bottom: 1px solid #E5E5E5;
    box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  }
  .logistics-distribution-modal-header-close {
    font-size: 18px;
  }
}
.logistics-distribution-modal-error-tips {
  color: #FC605F;
  font-size: 14px;
  margin-left: 20px;
  font-weight: normal;
}
.logistics-distribution-modal-map {
  height: calc(100vh - 300px);
  max-height: 686px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-map {
    height: 100vh;
    max-height: 100vh;
  }
}
.logistics-distribution-modal-map-error-tips {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: #6D6863;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-map-error-tips {
    height: calc(100vh - 100px);
  }
}
.logistics-distribution-modal-map-info {
  min-width: 397px;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  background-color: #fff;
  padding: 20px 25px;
  position: absolute;
  left: 20px;
  top: 27px;
  z-index: 99;
  color: #2d2926;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-map-info {
    min-width: auto;
    width: 90%;
    bottom: 145px;
    left: 50%;
    top: initial;
    padding: 0;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    background-color: transparent;
  }
  .logistics-distribution-modal-map-info-item {
    padding: 8px 20px;
    font-size: 12px;
    background-color: #fff;
    box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  }
  .logistics-distribution-modal-map-info-item:last-child {
    margin-top: 4px;
    padding: 16px 20px;
  }
}
.logistics-distribution-modal-map-info-refresh {
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  position: absolute;
  bottom: 100px;
  background: #fff;
  color: #6D6863;
}
.logistics-distribution-modal-map-info-item {
  display: flex;
  align-items: center;
}
.logistics-distribution-modal-map-info-item:first-child {
  margin-bottom: 4px;
}
.logistics-distribution-modal-map-info-item-label {
  color: #353535;
  width: 146px;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-map-info-item-label {
    width: auto;
    margin-right: 16px;
  }
}
.logistics-distribution-modal-map-info-item-label > span {
  margin-right: 6px;
}
.logistics-distribution-modal-map-info-item-name,
.logistics-distribution-modal-map-info-item-mobile {
  color: #353535;
  font-size: 16px;
  font-weight: normal;
}
.logistics-distribution-modal-map-info-item-date,
.logistics-distribution-modal-map-info-item-name {
  margin-right: 17px;
}
.logistics-distribution-modal-map-info-item-call-button {
  width: 73px;
  height: 24px;
  border-radius: 12px;
  border: solid 1px #c0c0c0;
  text-align: center;
  font-size: 12px;
  color: #6D6863;
  background-color: #fff;
  cursor: pointer;
  position: absolute;
  right: 14px;
  line-height: 24px;
}
.logistics-distribution-modal-title {
  font-size: 18px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.logistics-distribution-modal-refresh {
  color: #006241;
  font-size: 14px;
  margin-left: 33px;
  cursor: pointer;
}
.logistics-distribution-modal-refresh > span {
  margin-left: 6px;
}
.logistics-distribution-modal-activity {
  position: absolute;
  right: 57px;
  top: 27px;
  padding-left: 8px;
  font-size: 16px;
  color: #6D6863;
  border-left: 4px solid #6D6863;
}
@media screen and (max-width: 767px) {
  .logistics-distribution-modal-activity {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .reservation-order-operation-buttons {
    display: flex;
  }
  .reservation-order-operation-buttons span {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .reservation-order-operation-buttons span svg {
    margin-right: 4px;
  }
  .reservation-order-operation-buttons-icon-disabled svg path {
    fill: #C7C5C5;
  }
}

.reservation-order-status {
  color: #6D6863;
  margin-right: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .reservation-order-status {
    color: #6d6863;
    font-size: 12px;
    margin-right: 0;
  }
}
.reservation-order-status-not-pay {
  color: #FC605F;
}

.drop-input-title {
  padding: 30px 0 7px 0;
}
.drop-input-content {
  position: relative;
}
.drop-input-arrow {
  position: absolute;
  display: inline-block;
  z-index: 99999;
  top: 35%;
  right: 11px;
  font-size: 12px;
  transition: transform 0.3s;
  -ms-transform-origin: 50% 50%;
      transform-origin: 50% 50%;
  color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.drop-input-arrow.active {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
}
.drop-input-clear {
  position: absolute;
  top: 36%;
  right: 11px;
  font-size: 12px;
  display: inline-block;
  cursor: pointer;
  z-index: 99999;
  color: rgba(0, 0, 0, 0.25);
}
.drop-input-clear:hover {
  color: rgba(0, 0, 0, 0.45);
}

.city-tree-select {
  width: 440px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .city-tree-select {
    width: 100%;
  }
}
.city-tree-select-panel {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.city-tree-select-panel-hot {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  padding: 0 16px;
}
.city-tree-select-panel-hot .hot-title {
  color: #9b9b9b;
}
.city-tree-select-panel-hot .hot-list {
  padding: 0 20px;
  margin-bottom: 36px;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}
.city-tree-select-panel-hot .hot-list .hot-list-li {
  flex-basis: 25%;
  margin-top: 26px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 4px;
  cursor: pointer;
}
.city-tree-select-panel-hot .hot-list .hot-list-li:nth-child(4n) {
  padding-right: 0;
}
.city-tree-select-panel-hot .hot-list .hot-list-li:hover {
  color: #006241;
}
.city-tree-select-panel-content {
  display: flex;
}
.city-tree-select-panel-content-wrap {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  flex: 1;
}
.city-tree-select-panel-content-wrap-en {
  font-weight: bold;
  line-height: 14px;
  padding: 10px 33px;
  margin-bottom: 4px;
  border-bottom: 1px dotted rgba(156, 156, 156, 0.3);
}
.city-tree-select-panel-content-city-item {
  cursor: pointer;
  margin-bottom: 25px;
  transition: color 0.3s;
  line-height: 20px;
  padding: 6px 33px;
}
.city-tree-select-panel-content-city-item:hover {
  color: #006241;
}
.city-tree-select-panel-content-city-item-selected {
  color: #006241;
  font-weight: bold;
}
.city-tree-select-panel-header {
  width: 16px;
  height: 100%;
  color: #9c9c9c;
  font-size: 10px;
  font-weight: 500;
  position: absolute;
  right: 18px;
  top: 0;
  display: flex;
  align-items: center;
}
.city-tree-select-panel-header-hidden-group {
  width: 0;
}
.city-tree-select-panel-header-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #EEEFF1;
  border-radius: 8px;
}
.city-tree-select-panel-header-wrap > li {
  cursor: pointer;
  line-height: 22px;
  text-align: center;
}

.reservation-type-tree-title {
  font-weight: normal;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
.reservation-type-tree .ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.reservation-type-tree .ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
.reservation-type-tree .svg-container {
  position: absolute;
  background: url(/res/d40197b2792d25721352e367f10485d9.png) center repeat;
  background-size: auto 5px;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .reservation-type-tree .section-component-content {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-x: hidden;
  }
  .reservation-type-tree .section-component-content-noType {
    padding-bottom: 8px;
  }
}
.reservation-type-tree-search-store-icon {
  margin-left: 24px;
  color: #006241;
  font-size: 14px;
  cursor: pointer;
}
.reservation-type-tree-search-store-icon span {
  vertical-align: sub;
}
@media screen and (max-width: 767px) {
  .reservation-type-tree-search-store-icon {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .reservation-type-tree .info-area-dropdown-box {
    top: 184px !important;
  }
}
.reservation-type-tree .drop-input-arrow {
  color: rgba(0, 0, 0, 0.2);
}

.popover-calendar-placement .ant-popover-content {
  width: 440px;
}
.dropdown-input-width {
  width: 350px;
}
.reservation-calendar {
  background: white;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reservation-calendar {
    padding: 20px 0;
  }
}
.reservation-calendar-header {
  margin-left: 0 17px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .reservation-calendar-header {
    margin-left: 0;
    padding: 0 20px 8px 20px;
    border-bottom: thin solid #E5E5E5;
  }
}
.reservation-calendar-date {
  letter-spacing: 0.6px;
  margin-right: 10px;
}
.reservation-calendar-switch-buttons {
  float: right;
}
.reservation-calendar-switch-buttons > span {
  cursor: pointer;
  margin: 0 5px;
}
.reservation-calendar-button {
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
}
.reservation-calendar-button-icon {
  color: black;
}
.reservation-calendar-button-disabled {
  cursor: not-allowed;
}
.reservation-calendar-button-disabled .reservation-calendar-button-icon {
  color: #c0c0c0;
}
.reservation-calendar-stock-category {
  margin-left: 20px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .reservation-calendar-stock-category {
    padding: 0 20px;
  }
}
.reservation-calendar-stock-category > span {
  position: relative;
  margin-right: 20px;
  margin-left: 20px;
}
.reservation-calendar-stock .stock-category-item {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 2px;
  left: -20px;
  font-size: 12px;
}
.reservation-calendar-stock-not-enough:before {
  background: #b79069;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 2px;
  left: -20px;
  font-size: 12px;
}
.reservation-calendar-stock-can-reserve:before {
  background: #006241;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 2px;
  left: -20px;
  font-size: 12px;
}
.reservation-calendar-stock-cannot-reserve:before {
  background: #ebeae8;
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 2px;
  position: absolute;
  top: 2px;
  left: -20px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .reservation-calendar-content {
    padding: 0 20px;
  }
}
.reservation-calendar-content .reservation-calendar-loading {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: #006241;
}
.reservation-calendar-content > span {
  text-align: center;
  display: inline-block;
  width: 14.28%;
  margin-bottom: 10px;
  padding: 5px 0;
  cursor: pointer;
}
.reservation-calendar-day-title {
  opacity: 0.65;
  color: #6d6863;
}
.reservation-calendar-last-month,
.reservation-calendar-next-month {
  color: #e1e4e7;
}
.reservation-calendar-current-month.not-enough {
  color: #b79069;
  cursor: not-allowed;
}
.reservation-calendar-current-month.can-reserve {
  color: #006241;
}
.reservation-calendar-current-month.cannot-reserve {
  color: #ebeae8;
  cursor: not-allowed;
}
.reservation-calendar-footer {
  margin-top: 5px;
  visibility: hidden;
  line-height: 23px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .reservation-calendar-footer {
    padding: 0 10px;
  }
}
.reservation-calendar-footer.show-footer {
  visibility: visible;
}
.reservation-calendar-footer-number-can-reserve {
  color: #006241;
}
.reservation-calendar-footer-number-not-enough {
  margin: 0 5px;
  color: #b79069;
}
@keyframes reservation-calendar-show {
  from {
    transform: translate3d(-30px, 0, 0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes reservation-calendar-hidden {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-30px, 0, 0);
    opacity: 0;
    pointer-events: none;
  }
}

.pickup .ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.pickup .ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
.pickup-award-description {
  color: #6F6F6F;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  white-space: pre-wrap;
  margin-top: 7px;
}
.pickup-store-detail {
  font-size: 12px;
  color: #807a74;
}
.pickup-store-detail > li {
  margin-top: 2px;
}
.pickup .ant-select-dropdown-menu-item-disabled {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .pickup.pickup-hasType .info-store-dropdown-box {
    top: 52px !important;
  }
}
.custom-drop {
  display: flex;
  padding: 5px 12px;
  justify-content: end;
}
.custom-drop .ant-btn-sm {
  height: 24px;
  border-radius: 2px;
  min-width: unset;
}
.custom-no {
  text-align: center;
}
.custom-tips {
  color: #de5050;
  font-size: 12px;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  .reservation-detail-coupon {
    padding: 0 24px;
  }
}
.reservation-detail-coupon-title {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reservation-detail-coupon-title {
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    line-height: 46px;
    position: relative;
  }
}
.reservation-detail-coupon-back {
  position: absolute;
  left: 0;
  margin-left: 18px;
}
.reservation-detail-coupon-back img {
  width: 8px;
  height: 14px;
}
.reservation-detail-coupon-check-group {
  width: 100%;
}
.reservation-detail-coupon-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.reservation-detail-coupon-list .skuname {
  margin-left: 15px;
}
.reservation-detail-coupon-list li {
  width: 100%;
  font-size: 16px;
  position: relative;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin: 8px 18px;
  background-color: #FFF;
  padding: 18px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.reservation-detail-coupon-list li > span {
  display: flex;
  align-items: center;
}
.reservation-detail-coupon-list li .coupon-content {
  flex: 1;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reservation-detail-coupon-list li {
    width: 100%;
    float: left;
    font-size: 14px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    margin: 8px 18px;
    background-color: #FFF;
    padding: 18px 30px;
  }
  .reservation-detail-coupon-list li .coupon-text-content {
    overflow: hidden;
  }
  .reservation-detail-coupon-list li .coupon-name {
    word-break: break-word;
    font-size: 15px;
    font-weight: 500;
    color: #000;
  }
}
.reservation-detail-coupon-list li .ant-checkbox-wrapper {
  margin-right: 13px;
}
.reservation-detail-coupon-list li .coupon-index {
  position: absolute;
  top: 0;
  left: 1px;
  width: 18px;
  height: 18px;
  background: #00A862;
  color: #FFF;
  text-align: center;
  line-height: 18px;
}
.reservation-detail-coupon-list li img {
  width: 60px;
  height: 60px;
  top: 18px;
  float: left;
  margin-right: 10px;
}
.reservation-detail-coupon-list-coupon-id {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .reservation-detail-coupon-list-coupon-id {
    margin-top: 8px;
    margin-left: 0;
    display: block;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #AAA !important;
  }
}
.reservation-detail-coupon-list-redeem-type {
  margin-left: 15px;
  color: #00A862 !important;
}
@media screen and (max-width: 767px) {
  .reservation-detail-coupon-list-redeem-type {
    margin-left: 0;
    display: block;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #00A862 !important;
  }
}
.reservation-detail-coupon-list-disabled {
  color: #c0c0c0;
  cursor: not-allowed;
}
.reservation-detail-coupon-list-disabled-coupon-status {
  float: right;
  color: #FC605F;
}
@media screen and (max-width: 767px) {
  .reservation-detail-coupon-list-disabled-coupon-status {
    font-size: 12px;
  }
}
.reservation-detail-coupon-operation-toggle {
  display: flex;
  align-items: center;
  color: #006241;
  cursor: pointer;
  margin-left: 30px;
  font-size: 14px;
}
.reservation-detail-coupon-operation-toggle .anticon > svg {
  width: 18px;
  height: 18px;
}

.express-title {
  font-weight: normal;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
.express-title.delivery-title-disabled {
  color: #C7C5C5;
}
.express .svg-container {
  position: absolute;
  background: url(/res/d40197b2792d25721352e367f10485d9.png) center repeat;
  background-size: auto 5px;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}
.express .reservation-col .ant-form-item {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .express .section-component-content {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-y: hidden;
  }
}
.express-search-store-icon {
  margin-left: 24px;
  color: #006241;
  font-size: 14px;
  cursor: pointer;
}
.express-search-store-icon span {
  vertical-align: sub;
}
@media screen and (max-width: 767px) {
  .express-search-store-icon {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}
.express-award-description {
  color: #6F6F6F;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  white-space: pre-wrap;
  margin-top: 7px;
}
.express-store-detail {
  font-size: 12px;
  color: #807a74;
}
.express-store-detail > li {
  margin-top: 2px;
}
.express-city-wrapper {
  position: relative;
}
.express-city-prefix {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  line-height: 0;
  color: rgba(0, 0, 0, 0.65);
}
.express-city {
  width: 100%;
}
.express-city .ant-cascader-input.ant-input,
.express-city .ant-cascader-picker-label {
  padding-left: 37px;
}
.express-popup-city {
  max-width: 100%;
  overflow-x: auto;
}

.reservation-tip-modal .reservation-modal-title {
  margin-bottom: 10px;
}
.reservation-tip-modal .reservation-modal-description {
  background: none;
}
.reservation-tip-modal .reservation-modal-button-know {
  margin-top: 40px;
}

.reservation-person-info .reservation-col {
  margin-bottom: 0;
}
.reservation-person-info .ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.reservation-person-info .ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .reservation-person-info .section-component-content {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }
}
.reservation-person-info-code {
  position: relative;
}
.reservation-person-info .ant-form-extra {
  color: #f5222d;
}
.reservation-person-info-username.ant-input-affix-wrapper {
  width: calc(50% - 24px);
}
@media screen and (max-width: 767px) {
  .reservation-person-info-username.ant-input-affix-wrapper {
    width: 100%;
  }
}
.reservation-person-info-privacy-policy {
  padding: 14px 16px 18px 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .reservation-person-info-privacy-policy {
    color: #006241;
    padding: 0 18px 18px 18px;
  }
  .reservation-person-info-privacy-policy .ant-checkbox {
    margin-top: 4px;
  }
  .reservation-person-info-privacy-policy .ant-checkbox .ant-checkbox-inner {
    width: 11px;
    height: 11px;
    border-radius: 50% !important;
  }
  .reservation-person-info-privacy-policy .ant-checkbox.ant-checkbox-checked .ant-checkbox-inner:after {
    top: 45%;
    left: 50%;
    -ms-transform: translate(-62%, -50%) rotate(45deg) scale(0.5);
        transform: translate(-62%, -50%) rotate(45deg) scale(0.5);
  }
}
.reservation-person-info-privacy-policy .ant-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  font-size: 11px;
}
.reservation-person-info-privacy-policy .ant-checkbox-wrapper .ant-checkbox-checked::after {
  border: none;
}
.reservation-person-info-privacy-policy .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.reservation-person-info-privacy-policy .ant-checkbox:hover .ant-checkbox-inner,
.reservation-person-info-privacy-policy .ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #006241;
}
.reservation-person-info .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.reservation-person-info .ant-checkbox:hover .ant-checkbox-inner,
.reservation-person-info .ant-checkbox-input:focus + .ant-checkbox-inner {
  border-color: #006241;
}

.policy a {
  color: #006241;
}

.reservation-action {
  background-color: white;
  padding: 0 30px 80px 30px;
}
@media screen and (max-width: 767px) {
  .reservation-action {
    padding: 0 42px;
  }
}
.reservation-action .ant-btn + .ant-btn {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .reservation-action {
    height: 48px;
    line-height: 48px;
    background-color: transparent;
  }
  .reservation-action .ant-btn {
    height: 48px;
    border-color: transparent;
  }
}
.reservation-action > .container {
  position: relative;
}
.reservation-action > .container > .resvertion-btn-box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 11;
  top: 0;
  left: 0;
}

.section-component {
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .section-component.container {
    box-shadow: none;
    margin-top: 24px;
  }
}
.section-component-title {
  line-height: 40px;
  padding: 0 30px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .section-component-title {
    line-height: 40px;
    background-color: transparent;
    box-shadow: none;
    padding: 0 16px;
    font-size: 16px;
    text-align: center;
  }
}
.section-component-content {
  padding: 30px;
  background-color: white;
}
@media screen and (max-width: 767px) {
}

.reservation-tips {
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.reservation-tips .section-component-content {
  padding: 70px 120px;
}
@media screen and (max-width: 767px) {
  .reservation-tips .section-component-content {
    padding: 13px 18px;
    background-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .reservation-tips {
    box-shadow: none;
  }
}
.reservation-tips.container {
  margin-top: 0;
}
.reservation-tips-desc {
  line-height: 2;
  color: #6F6F6F;
  white-space: pre-wrap;
  word-break: break-all;
}
.reservation-tips-desc a {
  color: #006241;
}
@media screen and (max-width: 767px) {
  .reservation-tips-desc {
    font-size: 12px;
    line-height: 18px;
  }
}

.container {
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
.reservation-detail.container {
  margin-top: 30px;
  background: linear-gradient(#E2E9E7, #F7F7F7 150px);
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .reservation-detail.container {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.reservation-detail .reservation-award-description {
  padding: 0 30px 30px;
}
@media screen and (max-width: 767px) {
  .reservation-detail .reservation-award-description {
    padding: 0 42px 30px;
  }
}
.reservation-detail-nav-bar {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.14);
}
.reservation-detail-success-icon {
  text-align: center;
}
.reservation-detail-without-navbar {
  background: white;
  padding: 60px 90px 0;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.reservation-detail-without-navbar .reservation-cake-info {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .reservation-detail-without-navbar .reservation-cake-info {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .reservation-detail-without-navbar {
    box-shadow: none;
    padding: 10px 0 30px 0;
    background: transparent;
  }
  .reservation-detail-without-navbar .reservation-steps {
    margin-top: 10px;
  }
}
.reservation-detail-wrapper {
  position: relative;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .reservation-detail-wrapper {
    background-color: #f8f8f8;
  }
  .reservation-detail-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    border: 10px solid;
    border-color: transparent transparent #f8f8f8 transparent;
  }
  .reservation-detail-wrapper-arrow-left::before {
    left: 100px;
  }
  .reservation-detail-wrapper-arrow-right::before {
    right: 100px;
  }
  .reservation-detail-wrapper .section-component {
    padding: 36px 0;
  }
  .reservation-detail-wrapper .section-component-content {
    background-color: #FFF;
  }
  .reservation-detail-wrapper-arrow-hidden .section-component {
    padding-top: 0;
  }
}
.reservation-detail .drop-input-arrow {
  z-index: 11;
}

.reservation-map-marker {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #FFF;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  font-size: 14px;
  position: absolute;
  padding-top: 2px;
}
.reservation-map-marker::after {
  content: ' ';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 40%;
  margin-left: -28%;
  border: 20px solid #FFF;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  border-radius: 4px;
  border-left: none;
  border-right: none;
  border-top: none;
  z-index: -1;
  -ms-transform: rotate(62deg) skew(40deg);
      transform: rotate(62deg) skew(40deg);
}
.reservation-map-marker,
.reservation-map-marker-inner {
  border-radius: 50%;
}
.reservation-map-marker-inner {
  width: 32px;
  height: 32px;
  background-color: #00A862;
  text-align: center;
  color: #FFF;
  line-height: 32px;
  margin: 0 auto;
  transition: background 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reservation-map-marker-inner:hover {
  background-color: #00c271;
}

#map {
  width: 100%;
  height: 350px;
}
.reservation-map {
  background-color: white;
  padding: 20px 30px 30px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reservation-map,
  .reservation-map.container {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }
}
.reservation-map .ant-spin-nested-loading,
.reservation-map .ant-spin-container {
  height: 100%;
}
.reservation-map-select-store {
  text-align: center;
  color: #006241;
  margin-top: 10px;
  cursor: pointer;
}
.reservation-map-title {
  margin-bottom: 10px;
}
.reservation-map-title-close-icon {
  float: right;
  cursor: pointer;
}
.reservation-map-input-search {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reservation-map-input-search .ant-input-affix-wrapper {
  /* margin-right: 20px; */
}
.reservation-map-input-search-close {
  width: 36px;
}

.edit-reservation-coupons {
  width: 100%;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons {
    font-size: 14px;
  }
}
.edit-reservation-coupons .coupon-index {
  position: absolute;
  top: 0;
  left: 1px;
  width: 18px;
  height: 18px;
  background: #00A862;
  color: #FFF;
  text-align: center;
  line-height: 18px;
}
.edit-reservation-coupons img {
  width: 50px;
  height: 50px;
  top: 18px;
  float: left;
  margin: 0 13px;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons .section-component-title {
    color: #333;
  }
}
.edit-reservation-coupons-title {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-title {
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    line-height: 46px;
    position: relative;
  }
}
.edit-reservation-coupons-operation-toggle {
  display: flex;
  align-items: center;
  color: #006241;
  cursor: pointer;
  margin-left: 30px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-operation-toggle {
    justify-content: center;
    margin-left: 15px;
    font-size: 12px;
  }
}
.edit-reservation-coupons-operation-toggle .anticon > svg {
  width: 18px;
  height: 18px;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-operation-toggle .anticon > svg {
    width: 15px;
    height: 15px;
  }
}
.edit-reservation-coupons li {
  width: 100%;
  font-size: 16px;
  position: relative;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin: 8px 18px;
  background-color: #FFF;
  padding: 18px 35px;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons li {
    width: 100%;
    float: left;
    font-size: 14px;
  }
  .edit-reservation-coupons li span {
    word-break: break-word;
  }
}
.edit-reservation-coupons-coupon-id {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-coupon-id {
    margin-top: 5px;
    margin-left: 0;
    display: block;
  }
}
.edit-reservation-coupons-disabled {
  color: #E5E5E5;
}
.edit-reservation-coupons-disabled-status {
  float: right;
  font-size: 14px;
  color: #FC605F;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-disabled-status {
    font-size: 12px;
  }
}
.edit-reservation-coupons-tip {
  margin-top: 16px;
  color: #b79069;
  display: none;
}
@media screen and (max-width: 767px) {
  .edit-reservation-coupons-tip {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
  }
}
.edit-reservation-coupons-tip-show {
  display: block;
}

.city-select {
  width: 440px;
}
@media screen and (max-width: 767px) {
  .city-select {
    width: 95%;
    margin: 0 auto;
  }
}
.city-select-title {
  padding: 16px 0 5px;
  text-align: center;
}
.city-select-panel {
  height: 100%;
  min-height: 221px;
  background-color: #FFF;
  padding: 5px 17px 56px 17px;
  position: relative;
}
.city-select-panel-header {
  height: 42px;
  line-height: 42px;
  color: #A6A4A4;
  position: relative;
}
.city-select-panel-header-hidden-group {
  height: 20px;
}
.city-select-panel-header::before {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 1px;
  -ms-transform: scaleY(0.5);
      transform: scaleY(0.5);
  -ms-transform-origin: 50% 100%;
      transform-origin: 50% 100%;
  background-color: #E5E5E5;
  left: 0;
  top: 100%;
}
.city-select-panel-header-wrap {
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}
.city-select-panel-header-city-group-item {
  cursor: pointer;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.city-select-panel-header-city-group-item + li {
  margin-left: 22px;
}
@media screen and (max-width: 767px) {
  .city-select-panel-header-city-group-item + li {
    margin-left: 13px;
  }
}
.city-select-panel-header-city-group-item:hover {
  color: #006241;
}
.city-select-panel-header-city-group-item.active {
  color: #006241;
}
.city-select-panel-header-city-group-item.active::after {
  content: ' ';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #006241;
  left: 0;
  bottom: -1px;
}
.city-select-panel-content {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 385px;
}
@media screen and (max-width: 767px) {
  .city-select-panel-content {
    padding-bottom: 120px;
  }
}
.city-select-panel-content-wrap {
  padding-top: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.city-select-panel-content-city-item {
  cursor: pointer;
  margin-bottom: 16px;
  transition: color 0.3s;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .city-select-panel-content-city-item {
    width: auto;
    text-align: center;
    border-radius: 17px;
    border: 1px solid #E5E5E5;
    padding: 3px 15px;
    min-width: 23%;
    margin-right: 2%;
  }
}
.city-select-panel-content-city-item:hover {
  color: #006241;
}
.city-select-panel-content-city-item-selected {
  color: #006241;
}
@media screen and (max-width: 767px) {
  .city-select-panel-content-city-item-selected {
    border-color: #006241;
    background-color: #006241;
    color: white;
  }
}

.pickup-title {
  font-weight: normal;
  font-size: 14px;
  color: #000;
  margin-bottom: 10px;
}
.pickup-title.delivery-title-disabled {
  color: #C7C5C5;
}
.pickup .ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.pickup .ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
.pickup .svg-container {
  position: absolute;
  background: url(/res/d40197b2792d25721352e367f10485d9.png) center repeat;
  background-size: auto 5px;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .pickup .section-component-content {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-x: hidden;
  }
}
.pickup-search-store-icon {
  margin-left: 24px;
  color: #006241;
  font-size: 14px;
  cursor: pointer;
}
.pickup-search-store-icon span {
  vertical-align: sub;
}
@media screen and (max-width: 767px) {
  .pickup-search-store-icon {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}
.pickup-award-description {
  color: #6f6f6f;
  font-size: 12px;
  line-height: 18px;
  word-break: break-all;
  white-space: pre-wrap;
  margin-top: 7px;
}
.pickup-store-detail {
  font-size: 12px;
  color: #807a74;
}
.pickup-store-detail > li {
  margin-top: 2px;
}
@media screen and (max-width: 767px) {
  .pickup .info-area-dropdown-box {
    top: 184px !important;
  }
  .pickup .info-store-dropdown-box {
    top: 252px !important;
  }
}

.reservation-map-marker {
  width: 36px;
  height: 36px;
  line-height: 36px;
  background-color: #FFF;
  text-align: center;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  font-size: 14px;
  position: absolute;
  padding-top: 2px;
}
.reservation-map-marker::after {
  content: ' ';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 50%;
  top: 40%;
  margin-left: -28%;
  border: 20px solid #FFF;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  border-radius: 4px;
  border-left: none;
  border-right: none;
  border-top: none;
  z-index: -1;
  -ms-transform: rotate(62deg) skew(40deg);
      transform: rotate(62deg) skew(40deg);
}
.reservation-map-marker,
.reservation-map-marker-inner {
  border-radius: 50%;
}
.reservation-map-marker-inner {
  width: 32px;
  height: 32px;
  background-color: #00A862;
  text-align: center;
  color: #FFF;
  line-height: 32px;
  margin: 0 auto;
  transition: background 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.reservation-map-marker-inner:hover {
  background-color: #00c271;
}

#map {
  width: 100%;
  height: 350px;
}
.reservation-map {
  background-color: white;
  padding: 20px 30px 30px;
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .reservation-map,
  .reservation-map.container {
    margin: 16px 18px;
    border-radius: 13px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  }
}
.reservation-map .ant-spin-nested-loading,
.reservation-map .ant-spin-container {
  height: 100%;
}
.reservation-map-select-store {
  text-align: center;
  color: #006241;
  margin-top: 10px;
  cursor: pointer;
}
.reservation-map-title {
  margin-bottom: 10px;
}
.reservation-map-title-close-icon {
  float: right;
  cursor: pointer;
}
.reservation-map-input-search {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.reservation-map-input-search .ant-input-affix-wrapper {
  /* margin-right: 20px; */
}
.reservation-map-input-search-close {
  width: 36px;
}

.activity-selector:not(.activity-selector-bordered) .ant-select-selection.ant-select-selection--single {
  min-width: auto;
  background-color: transparent;
  border-color: transparent;
  outline: none;
  font-weight: 500;
  font-size: 20px;
}

/* stylelint-disable */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}

.questions {
  background-color: #FFF;
  padding: 60px 0;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .questions {
    padding: 0 30px;
    font-size: 16px;
  }
}
.questions.container {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .questions.container {
    margin: 0;
  }
}
.questions .section-component-content {
  width: 600px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .questions .section-component-content {
    width: 100%;
  }
}
.questions-header {
  padding: 23px 20px;
  border-bottom: 1px solid #E5E5E5;
}
@media screen and (max-width: 767px) {
  .questions-header {
    padding: 20px 11px;
  }
}
.questions-header-title {
  margin-right: 15px;
}
.questions-content {
  padding-bottom: 80px;
}
.questions-content-item {
  border-bottom: 1px solid #E5E5E5;
  padding: 23px 20px;
  color: #333;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .questions-content-item {
    padding: 20px 11px;
  }
}
.questions-content-item-active {
  background-color: #fafafa;
}
.questions-content-item-header {
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.questions-content-item-header span {
  display: inline-block;
  max-width: 95%;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .questions-content-item-header {
    font-size: 16px;
  }
}
.questions-content-item-header-icon {
  color: #006241;
  transition: all 0.3s;
}
.questions-content-item-content {
  margin-top: 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 1px;
  max-width: 95%;
  word-wrap: break-word;
}
@media screen and (max-width: 767px) {
  .questions-content-item-content {
    font-size: 13px;
  }
}
.questions-content-item-content a {
  color: #006241;
  cursor: pointer;
}
.questions-content-item-content img {
  display: block;
  margin-top: 10px;
  max-width: 100%;
}

.topbar {
  height: 80px;
  line-height: 80px;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.topbar .container {
  display: flex;
  margin: 0 auto;
}
.topbar-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  font-size: 20px;
  font-weight: bold;
}
.topbar-logo a {
  display: inline-flex;
  align-items: center;
}
.topbar-logo .logo {
  display: flex;
  margin-right: 12px;
}
.topbar-menu {
  flex: 1;
  text-align: right;
}
.topbar-menu li {
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
.topbar-menu li a {
  display: inline-block;
}
.topbar-menu li + li {
  margin-left: 30px;
}
.topbar-menu li:after {
  content: ' ';
  position: absolute;
  bottom: 18px;
  left: 0;
  width: 100%;
  -ms-transform: scale(0);
      transform: scale(0);
  transition: 0.3s;
  border-bottom: 2px solid #000;
}
.topbar-menu li:hover:after {
  -ms-transform: scale(1);
      transform: scale(1);
}
.topbar-menu li.topbar-menu-active:after {
  -ms-transform: scale(1);
      transform: scale(1);
}
.topbar-theme-light {
  background-color: #FFF;
}
.topbar-theme-dark {
  background-color: #2d2926;
  color: white;
}
.topbar-theme-dark .topbar-menu li:after {
  border-bottom: 2px solid #e2c26c;
}

.store-activity-modal .ant-modal-close {
  left: 0;
}
.store-activity-modal-title {
  font-size: 16px;
  position: absolute;
  height: 22px;
  top: 24px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-title {
    top: 20px;
    right: 20px;
    font-size: 12px;
  }
}
.store-activity-modal-title::before {
  content: " ";
  height: 14px;
  width: 4px;
  background: #6D6863;
  position: absolute;
  left: -8px;
  top: 5px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-title::before {
    width: 3px;
    top: 2px;
  }
}
.store-activity-modal-content {
  padding: 70px 30px;
  height: 530px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-content {
    padding: 50px 20px 20px;
  }
}
.store-activity-modal-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 170px;
}
.store-activity-modal-activity {
  overflow-y: auto;
  padding: 0 140px;
  height: 390px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-activity {
    padding: 0 50px;
    height: 186px;
  }
}
.store-activity-modal-activity-item {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-activity-item {
    margin-bottom: 20px;
  }
}
.store-activity-modal-activity-item:last-child {
  margin-bottom: 0;
}
.store-activity-modal-name {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-name {
    font-size: 14px;
    margin-bottom: 6px;
  }
}
.store-activity-modal-redeem-date {
  font-size: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .store-activity-modal-redeem-date {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.store-activity-modal-redeem-date:last-child {
  margin-bottom: 0;
}

.store.container {
  margin-top: 40px;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
  border-radius: 2px;
  background: white;
  padding: 60px 0 30px 0;
}
@media screen and (max-width: 767px) {
  .store.container {
    margin-top: 0;
    padding: 0;
    box-shadow: none;
    background: inherit;
  }
}
.store-filter {
  width: 390px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 767px) {
  .store-filter {
    width: 100%;
    margin: 30px auto 24px;
    padding: 0 42px;
  }
}
.store-title {
  font-size: 20px;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .store-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.store-select-group {
  display: flex;
  margin-bottom: 15px;
}
.store-city-select {
  width: 50%;
  margin-right: 20px;
}
.store-city-select .ant-input {
  border-radius: 20px;
}
.store-city-select .ant-input-affix-wrapper .ant-input:not(:first-child) {
  padding-left: 37px;
}
.store-city-select .drop-input-arrow {
  top: 36%;
}
.store-city-select .ant-input-affix-wrapper .ant-input-prefix,
.store-city-select .ant-input-affix-wrapper .ant-input-suffix {
  top: 50%;
}
.store-city-select .ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.store-city-select .ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
.store-area-select {
  width: 50%;
}
.store-area-select .ant-select-selection__clear {
  opacity: 1;
}
.store-area-select .ant-select-selection {
  border-radius: 20px;
}
.store-list {
  margin: 0 20px 68px;
}
.store-list-loader {
  text-align: center;
  margin-bottom: 10px;
  height: 50px;
}
.store-list-item {
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 1px 4px 0 rgba(69, 73, 91, 0.13);
  background-color: #F7F7F7;
  margin: 0 auto 18px;
  font-size: 12px;
}
.store-list-item-title {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #E5E5E5;
  padding: 6px 4px;
  margin-bottom: 6px;
}
.store-list-item-title span:first-child {
  font-weight: 500;
}
.store-list-item-title span:last-child {
  font-size: 10px;
}
.store-list-item-info {
  padding: 6px 4px;
  line-height: 16px;
}
.store-list-item-info div {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
}
.store-list-item-info div:last-child {
  margin-bottom: 0;
}
.store-list-item-info-icon {
  margin-right: 10px;
}
.store-list-item-info-icon svg {
  width: 13px;
  height: 13px;
}
.store-list-item-time {
  flex: 1;
  flex-wrap: wrap;
}
.store-list-item-time p {
  width: 48%;
  margin-bottom: 4px;
}
.store-list-operation {
  color: #006241;
  cursor: pointer;
}
.store-list-operation-icon {
  position: relative;
  margin-right: 4px;
  top: 2px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}
html,
body {
  width: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  line-height: normal;
  background-color: #f4f5fa;
  font-size: 14px;
  font-family: Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
@media screen and (max-width: 767px) {
  html,
  body {
    background-color: white;
  }
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
}
/* Btn component */
@media screen and (max-width: 767px) {
  .ant-modal-confirm-btns {
    width: 100%;
    text-align: center;
  }
}
.ant-btn {
  min-width: 230px;
  height: 44px;
  border-radius: 44px;
  color: #006241;
  border-color: #006241;
}
.ant-btn:hover,
.ant-btn:focus {
  border-color: #009563;
  color: #009563;
}
.ant-btn:active {
  background: white;
  border-color: #002f1f;
}
.ant-btn.ant-btn[disabled],
.ant-btn.ant-btn-loading {
  border-color: #c0c0c0;
  background-color: white;
}
.ant-btn.ant-btn[disabled]:hover,
.ant-btn.ant-btn-loading:hover,
.ant-btn.ant-btn[disabled]:focus,
.ant-btn.ant-btn-loading:focus {
  border-color: #c0c0c0;
  background-color: white;
}
.ant-btn-primary {
  background-color: #006241;
  border-color: #006241;
  color: #FFF;
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  background-color: #009563;
  border-color: #009563;
}
.ant-btn-primary:hover,
.ant-btn-primary:focus {
  color: #FFF;
}
.ant-btn-primary:active {
  background: #002f1f;
  border-color: #002f1f;
}
.ant-btn-primary.ant-btn[disabled],
.ant-btn-primary.ant-btn-loading {
  background-color: #c0c0c0;
  border-color: #c0c0c0;
  color: white;
  opacity: 0.5;
}
.ant-btn-primary.ant-btn[disabled]:hover,
.ant-btn-primary.ant-btn-loading:hover,
.ant-btn-primary.ant-btn[disabled]:focus,
.ant-btn-primary.ant-btn-loading:focus {
  background-color: #c0c0c0;
  border-color: #c0c0c0;
}
.ant-btn-primary.ant-btn[disabled]:before,
.ant-btn-primary.ant-btn-loading:before {
  background-color: transparent;
}
/* Checkbox component */
.ant-btn-loading {
  color: #006241;
}
.ant-checkbox-wrapper .ant-checkbox-inner {
  width: 20px;
  height: 20px;
  border-color: #E5E5E5;
}
.ant-checkbox.ant-checkbox-checked .ant-checkbox-inner {
  background-color: #006241;
  border-radius: 4px;
}
.ant-checkbox.ant-checkbox-checked .ant-checkbox-inner:after {
  top: 45%;
  left: 50%;
  -ms-transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
      transform: translate(-50%, -50%) rotate(45deg) scale(1.2);
}
.ant-checkbox-checked.ant-checkbox-disabled .ant-checkbox-inner {
  background-color: #c0c0c0;
  border: none;
}
.ant-checkbox-checked.ant-checkbox-disabled .ant-checkbox-inner:after {
  border-color: rgba(255, 255, 255, 0.3);
}
/* Input */
.ant-input,
.ant-input-affix-wrapper .ant-input,
.ant-select-auto-complete.ant-select .ant-input {
  min-height: 52px;
  border-radius: 13px;
}
.ant-input-disabled {
  background-color: #F7F7F7;
  border: none;
}
.ant-input-affix-wrapper .ant-input-prefix span {
  vertical-align: super;
}
.ant-select-selection {
  border-radius: 13px;
}
.ant-select-selection,
.ant-select-selection .ant-select-selection--single {
  height: 52px;
  line-height: 52px;
  border-color: #E5E5E5;
  box-shadow: transparent;
}
.ant-select-selection .ant-select-selection__rendered,
.ant-select-selection .ant-select-selection--single .ant-select-selection__rendered {
  line-height: 52px;
}
.ant-select-selection .ant-select-selection__placeholder,
.ant-select-selection .ant-select-selection--single .ant-select-selection__placeholder,
.ant-select-selection .ant-select-selection__field__placeholder,
.ant-select-selection .ant-select-selection--single .ant-select-selection__field__placeholder {
  color: #C7C5C5;
}
.ant-select-disabled .ant-select-selection--single {
  background: #F7F7F7;
  border: none;
}
.ant-select-dropdown {
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.ant-select-dropdown-menu-item {
  line-height: 32px;
}
.ant-select-dropdown-menu-item-selected,
.ant-select-dropdown-menu-item-selected:hover {
  background-color: #006241;
  color: #000;
  font-weight: normal;
}
.ant-select-arrow {
  color: rgba(0, 0, 0, 0.2);
}
/* message box */
.ant-message {
  z-index: 100000;
}
.ant-message .ant-message-notice-content .antion-info-content {
  font-size: 12px;
}
/* carousel */
.ant-carousel .slick-dots {
  bottom: 20px;
  display: none !important;
}
@media screen and (max-width: 767px) {
  .ant-carousel .slick-dots {
    display: block !important;
  }
}
.ant-carousel .slick-dots li > button {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: white;
  color: white;
  opacity: initial;
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.ant-carousel .slick-dots li.slick-active button {
  width: 5px;
  background-color: #b79069;
}
.ant-carousel .slick-arrow {
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFF;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 2;
  text-align: center;
}
.ant-carousel .slick-arrow:before {
  content: ' ';
}
.ant-carousel .slick-arrow:hover {
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFF;
}
.ant-carousel .slick-next,
.ant-carousel .slick-prev {
  margin-top: 0;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .ant-carousel .slick-next,
  .ant-carousel .slick-prev {
    display: none !important;
  }
}
.ant-carousel .slick-next svg,
.ant-carousel .slick-prev svg {
  transition: 0.3s;
}
.ant-carousel .slick-next {
  right: 125px;
}
.ant-carousel .slick-next:hover svg {
  transform: translate3d(5px, 0, 0);
}
.ant-carousel .slick-prev {
  display: none !important;
}
/* modal */
.ant-modal-mask {
  z-index: 99999;
}
.ant-modal-wrap {
  z-index: 99999;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .ant-modal-wrap {
    top: 0;
  }
}
.ant-modal {
  width: 675px !important;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 767px) {
  .ant-modal {
    width: 90% !important;
    margin: 0 auto;
  }
}
.ant-modal-content {
  border-radius: 16px;
}
.ant-modal-body {
  padding: 0;
}
/* drawer */
.ant-drawer {
  z-index: 99999;
}
.ant-drawer-body {
  padding: 0;
}
.ant-drawer-bottom.ant-drawer-open .ant-drawer-content-wrapper {
  box-shadow: 0 4px 16px 0 rgba(12, 0, 51, 0.1);
}
.ant-drawer.ant-drawer-open .ant-drawer-mask {
  opacity: 0.7;
}
.ant-drawer-content {
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
/* table */
.ant-table-pagination.ant-pagination {
  text-align: center;
  float: initial;
}
.ant-table-pagination.ant-pagination .ant-pagination-total-text {
  margin-right: 30px;
}
.christmas.ant-btn:before {
  background: none !important;
}
.ant-affix {
  z-index: 10;
}
.ant-input-affix-wrapper .ant-input-prefix :not(.anticon),
.ant-input-affix-wrapper .ant-input-suffix :not(.anticon) {
  line-height: 1;
}
.container {
  max-width: 1170px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
  }
}
.h1 {
  font-family: "PingFangSC-Medium";
  font-size: 24px;
  line-height: 32px;
  color: #000;
  font-weight: normal;
}
.h2 {
  font-family: "PingFangSC-Medium";
  font-size: 20px;
  line-height: 28px;
  color: #000;
  font-weight: normal;
}
.h3 {
  font-family: "PingFangSC-Medium";
  font-size: 16px;
  line-height: 24px;
  color: #000;
  font-weight: normal;
}
.body-primary {
  font-family: "PingFangSC-Regular";
  font-size: 14px;
  line-height: 22px;
  color: #000;
  font-weight: normal;
}
.body-minor {
  font-family: "PingFangSC-Regular";
  font-size: 12px;
  line-height: 20px;
  color: #6D6863;
  font-weight: normal;
}
.image-background-center {
  background-position: center center;
  background-size: cover;
}
.table-list-section-table .ant-table-thead > tr > th {
  background-color: #e9ddd0;
  font-size: 16px;
  padding: 16px;
}
.table-list-section-table .ant-table-thead > tr > th,
.table-list-section-table .ant-table-tbody > tr > td {
  padding: 14px 26px;
}
.table-list-section-table .ant-table-thead > tr > th:first-child,
.table-list-section-table .ant-table-tbody > tr > td:first-child {
  padding-left: 40px;
}
.table-list-section-operation {
  display: flex;
}
.table-list-section-operation span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.table-list-section-operation svg {
  margin: 0 6px;
  cursor: pointer;
}
.popover-select-panel .ant-popover-arrow {
  display: none;
}
.popover-select-panel .ant-popover-inner-content {
  padding: 0;
}
.reservation-col {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .reservation-col {
    margin-bottom: 15px;
  }
}
.reservation-col .ant-input-affix-wrapper .ant-input:not(:first-child) {
  padding-left: 37px;
}
.reservation-col-error-tip {
  color: #FC605F;
  font-size: 12px;
}
.fix-top-section {
  height: 160px;
  width: 100%;
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
  padding: 20px 0 16px;
  z-index: 10;
}
.fix-top-section-container {
  padding: 50px 0;
}
.select-with-icon-wrapper {
  position: relative;
}
.select-with-icon-wrapper > span.isvg {
  position: absolute;
  top: 16px;
  left: 12px;
  z-index: 1;
}
.select-with-icon-wrapper .ant-select-selection__rendered,
.select-with-icon-wrapper .ant-select-selection__placeholder {
  padding-left: 27px;
}
.reservation-modal-content {
  padding: 50px 138px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reservation-modal-content {
    padding: 43px 25px 26px;
  }
}
.reservation-modal-image {
  position: absolute;
  left: 50%;
  margin-left: -135px;
  top: -82px;
}
.reservation-modal-image img {
  width: 270px;
  height: 82px;
}
.reservation-modal-icon {
  position: absolute;
  left: 50%;
  margin-left: -30px;
  top: -30px;
}
.reservation-modal-icon img {
  width: 60px;
}
.reservation-modal-title {
  color: #333;
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 18px;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .reservation-modal-title {
    color: #000;
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 33px;
  }
}
.reservation-modal-sub-tip {
  font-size: 18px;
  line-height: 30px;
  color: #006241;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .reservation-modal-sub-tip {
    font-size: 15px;
    line-height: 20px;
  }
}
.reservation-modal-sub-title {
  font-size: 18px;
  line-height: 30px;
  color: #727272;
  margin-bottom: 10px;
}
.reservation-modal-sub-title p:first-child {
  color: #000;
}
@media screen and (max-width: 767px) {
  .reservation-modal-sub-title {
    font-size: 15px;
    line-height: 20px;
  }
}
.reservation-modal-separator {
  margin: 20px 0;
  height: 1px;
  background: #E5E5E5;
}
.reservation-modal-button-see {
  margin-top: 10px;
}
.reservation-modal-description {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 14px;
}
.reservation-modal-description-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .reservation-modal-description-title {
    font-size: 14px;
  }
}
.reservation-modal-sub-title-high-line,
.reservation-modal-description-high-line {
  color: #006241;
}
.reservation-modal-description-content {
  color: #000;
}
@media screen and (max-width: 767px) {
  .reservation-modal-description-content {
    font-size: 15px;
    line-height: 23px;
  }
}
.reservation-modal-description-content > div {
  position: relative;
  display: flex;
  overflow: hidden;
}
.reservation-modal-description-content > div .reservation-modal-description-content-name {
  min-width: 90px;
  color: #727272;
}
.reservation-modal-description-content > div .reservation-modal-description-content-value {
  flex: 1;
}
.reservation-modal-description-content > div span.isvg {
  height: 18px;
  position: absolute;
  left: -2px;
  top: 2px;
}
.reservation-modal-description-content svg {
  height: 18px;
  width: 18px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .reservation-modal-description-content svg {
    height: 15px;
    width: 15px;
  }
}
.reservation-modal-footer-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .reservation-modal-footer-actions {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
.reservation-modal-footer-actions .ant-btn {
  min-width: 150px;
}
@media screen and (max-width: 767px) {
  .reservation-modal-footer-actions .ant-btn {
    min-width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .reservation-modal-footer-actions .ant-btn + .ant-btn {
    margin-right: 10px;
  }
}
.confirm-modal-content {
  padding: 60px 128px;
  font-size: 18px;
  color: black;
  line-height: 1.67;
}
@media screen and (max-width: 767px) {
  .confirm-modal-content {
    padding: 30px;
    font-size: 14px;
  }
}
.confirm-modal-content-title {
  font-size: 30px;
  margin-bottom: 18px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .confirm-modal-content-title {
    font-size: 18px;
  }
}
.confirm-modal .ant-modal-footer {
  padding: 0 128px 60px 128px;
  border: none;
  display: flex;
  align-content: center;
}
@media screen and (max-width: 767px) {
  .confirm-modal .ant-modal-footer {
    padding: 0;
  }
}
.confirm-modal .ant-modal-footer .ant-btn {
  min-width: 130px;
}
@media screen and (max-width: 767px) {
  .confirm-modal .ant-modal-footer .ant-btn {
    min-width: 110px;
  }
}
.confirm-modal .ant-modal-footer .ant-btn + .ant-btn {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .confirm-modal .ant-modal-footer .ant-btn + .ant-btn {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .confirm-modal-actions {
    width: 100%;
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: space-between;
  }
}
.hide-mobile-caret {
  caret-color: transparent;
}
@media screen and (max-width: 767px) {
  .hide-mobile-caret {
    caret-color: transparent;
  }
}
@media screen and (max-width: 767px) {
  .hide-mobile-caret input {
    caret-color: transparent;
  }
}
.section-component-content-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  line-height: 15px;
  font-size: 15px;
}
.section-component-content-title .pickup-title,
.section-component-content-title .reservation-type-title,
.section-component-content-title .reservation-type-tree-title {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 0;
}
.section-component-content-title .pickup-search-store,
.section-component-content-title .reservation-type-search-store,
.section-component-content-title .reservation-type-tree-search-store {
  font-size: 14px;
  font-weight: 400;
  color: #005d3b;
}
.section-component-content-title .pickup-search-store .arrow-right,
.section-component-content-title .reservation-type-search-store .arrow-right,
.section-component-content-title .reservation-type-tree-search-store .arrow-right {
  width: 7px;
  height: 11px;
  margin-left: 9px;
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
}
.reserve-order-detail-header {
  width: 100%;
  height: 48px;
  padding: 0 18px;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reserve-order-detail-header > div {
  flex-basis: 33.33%;
}
.reserve-order-detail-header > div:last-child {
  text-align: right;
}
.reserve-order-detail-header-tit {
  font-size: 18px;
  font-family: NotoSansCJKtc;
  font-weight: bold;
  color: #000;
  line-height: 46px;
  text-align: center;
}
.reserve-order-detail-header-starbucks-app {
  background: transparent;
  border-top: none;
}
#MainApp {
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.own-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.own-loading .loading-icon {
  width: 50px;
  animation: ownLoadingIconRotate 1.5s linear infinite;
  -webkit-animation: ownLoadingIconRotate 1.5s linear infinite;
}
.own-loading .loading-txt {
  font-size: 14px;
  color: #707070;
  margin-top: 20px;
}
@keyframes ownLoadingIconRotate {
  from {
    transform: rotate(0);
    -webkit-transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}
.mobile-city-tree-drawer .ant-drawer-content-wrapper {
  max-height: 96vh;
}
.mobile-city-tree-drawer .ant-drawer-content {
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.mobile-city-tree-drawer .ant-drawer-body {
  height: 100%;
}
.city-tree-box {
  width: 440px;
  height: 550px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .city-tree-box {
    width: 100%;
    height: 100%;
  }
}
.city-tree-box .city-tree-title {
  text-align: center;
  padding: 40px 0 14px;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.city-tree-box .city-tree-value {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
}
.city-tree-box .city-tree-value > span {
  line-height: 14px;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  max-width: 25%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.city-tree-box .city-tree-value .city-tree-value-checked {
  font-weight: bold;
  border-bottom: 2px solid #01a862;
}
.city-tree-box .city-tree-value > img {
  width: 6px;
  margin-left: 10px;
  margin-right: 12px;
}
.city-tree-box .city-tree-content {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  flex-basis: 100%;
  overflow: hidden;
}
.city-tree-box .city-tree-content .city-tree-swiper {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  transition: transform 0.5s;
}
.city-tree-box .city-tree-btn-close {
  width: 23px;
  height: 23px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.city-tree-box .city-tree-btn-close > img {
  width: 100%;
}
.city-tree-box .city-tree-content-tanslate-0 {
  -ms-transform: translateX(0%);
      transform: translateX(0%);
}
.city-tree-box .city-tree-content-tanslate-1 {
  -ms-transform: translateX(-100%);
      transform: translateX(-100%);
}
.city-tree-box .city-tree-content-tanslate-2 {
  -ms-transform: translateX(-200%);
      transform: translateX(-200%);
}
.input-overflow-ellipsis .ant-input {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding-right: 20px;
}
.app-icon-back {
  width: auto !important;
  height: 20px !important;
}
.app-icon-close {
  width: auto !important;
  height: 18px !important;
  margin-left: 16px !important;
}

