html {
  color: #333;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
[v-cloak] {
  display: none;
}
#app > .container {
  min-height: 100vh;
}
a {
  color: #333;
}
img {
  max-width: 100%;
}
.container {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  /*overflow: auto;*/
}
.container--flex {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.container--light {
  background-color: #f5f5f5;
}
.container--navbar {
  padding-top: 46px;
}
.container--tabbar {
  padding-bottom: 50px;
}
.ellipsis {
  display: -webkit-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.ellipsis--l2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis--l3{
  display:-webkit-box;
  overflow:hidden;
  text-overflow:ellipsis;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
}
.clearfix::after{
  display:table;
  clear:both;
  content:'';
}
.van-nav-bar__title {
  font-weight: 400;
}
.button {
  display: inline-block;
  padding: 8px 16px;
  color: rgba(0,0,0,0.5);
  font-size: 14px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 999px;
}
.button--small {
  padding: 5px 12px;
  font-size: 12px;
  line-height: 18px;
}
.button--primary {
  color: #fff;
  background-color: #07c160;
  border: 1px solid #07c160;
}
.button--info {
  color: #fff;
  background-color: #1989fa;
  border: 1px solid #1989fa;
}
.button--danger {
  color: #fff;
  background-color: #ee0a24;
  border: 1px solid #ee0a24;
}
.button--warning {
  color: #fff;
  background-color: #ff976a;
  border: 1px solid #ff976a;
}
.tag {
  display: inline-block;
  height: 19px;
  padding: 0 5px;
  color: #888;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  background-color: #fff;
  border: 1px solid #888;
  border-radius: 2px;
}
.tag--danger {
  color: #f23030;
  border-color: #f23030;
}
.block {
  margin: 0 12px 10px;
}
.block--margin-top {
  margin-top: 12px;
}
.card-box {
  display: block;
  position: relative;
  margin: 0 12px 12px;
  padding: 12px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.card-box--no-padding {
  padding: 0;
}
.card-box--no-margin {
  margin-left: 0;
  margin-right: 0;
}
.card-box__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-box__header .title {
  font-size: 16px;
}
.card-box__header .extra {
  color: rgba(0,0,0,0.6);
}
.card-box__header .more {
  color: rgba(0,0,0,0.6);
}
.loading-box {
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  color: rgba(0,0,0,0.5);
  font-size: 16px;
  text-align: center;
}
.empty-box {
  padding: 30px 20px;
  color: rgba(0,0,0,0.5);
  font-size: 16px;
  text-align: center;
}
.app-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 50px;
  color: #fff;
  background-color: #333;
}
.app-bar .close {
  padding: 10px;
  color: rgb(255,255,255,0.5);
  font-size: 22px;
}
.app-bar .icon {
  height: 36px;
  width: 36px;
  margin-right: 10px;
  border-radius: 5px;
  overflow: hidden;
}
.app-bar .icon img {
  height: 100%;
  width: 100%;
}
.app-bar .text {
  flex: 1;
  font-size: 12px;
  line-height: 18px;
  font-weight: 300;
}
.app-bar .button {
  margin: 0 15px;
  padding: 5px 15px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 300;
  background-color: #de1920;
  border-width: 0;
  border-radius: 3px;
}
.app-go {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 50%;
  height: 40px;
  margin-top: -20px;
  color: #fff;
  background: #f53d3a;
  background-image: linear-gradient(120deg, #ee0a24 0%, #ff6034 100%);
  border-radius: 0 999px 999px 0;
}
.app-go .text {
  padding: 3px 3px 3px 6px;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
}
.app-go .icon {
  height: 30px;
  width: 30px;
  margin: 3px;
  color: #f53d3a;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-align: center;
  background-color: #fff;
  border-radius: 999px;
}
.top-bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 40vw;
  width: 100%;
  overflow-x: hidden;
}
.top-bg:after {
  content: '';
  position: absolute;
  left: -60vw;
  top: -160vw;
  height: 200vw;
  width: 200vw;
  margin-bottom: -200px;
  background-color: #0073d6;
  border-radius: 50%;
}
.header-bar {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 46px;
  box-sizing: border-box;
}
.header-bar .search {
  flex: 1;
  display: flex;
  align-items: center;
  height: 32px;
  color: #888;
  font-size: 14px;
  background-color: #f5f5f5;
  border-radius: 20px; 
}
.header-bar .search .icon {
  margin-left: 10px;
  color: #888;
  font-size: 18px;
}
.header-bar .search .text {
  margin-left: 5px;
  color: #888;
  font-size: 14px;
  line-height: 20px;
}
.header-bar .search input {
  flex: 1;
  margin-left: 5px;
  padding: 6px 0;
  color: #333;
  font-size: 14px;
  background-color: transparent;
  border-width: 0;
}
.header-bar__left, .header-bar__right {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 12px;
  font-size: 14px;
  cursor: pointer;
}
.header-bar__left .van-icon, .header-bar__right .van-icon {
  min-width: 1em;
  color: #1989fa;
  font-size: 16px;
}
.header-bar__logo {
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 10px;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
}
.header-bar__logo img {
  height: 36px;
}
.header-bar__avatar {
  height: 36px;
  width: 36px;
  margin: 0 10px;
  border-radius: 20px;
  overflow: hidden;
}
.header-bar__avatar img {
  height: 100%;
  width: 100%;
}
.header-bar__icon {
  justify-content: center;
  align-items: center;
  height: 36px;
  padding: 0 10px;
  color: #fff;
  font-size: 30px;
  line-height: 36px;
}
.header-bar--fixed {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}
.header-bar--light {
  background-color: #f5f5f5;
}
.header-bar--light .search {
  background-color: #fff;
}
.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px 15px;
  font-size: 14px;
}
.pagination .button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 88px;
  padding: 0 15px;
  color: #1989fa;
  background-color: #fff;
  border: 1px solid #ebedf0;
}
.pagination .button.disabled {
  color: #646566;
  background-color: #f7f8fa;
  /*opacity: 0.5;
  cursor: not-allowed;*/
  opacity: 0;
  cursor: default;
}
.pagination .text {
  flex: 1;
  color: #666;
  text-align: center;
}
.van-empty__image {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(0,0,0,0.2);
  font-size: 100px;
}
.bottom-button {
  padding: 0 30px;
}

.banner-swipe {
  margin-bottom: 10px;
}
.card-box .banner-swipe {
  margin: 0;
}
.image-swipe-item {
  width: 100%;
  text-align: center;
}
.image-swipe-item .van-image {
}
.image-swipe-item a, .image-swipe-item img {
  display: block;
  line-height: 0;
}

.menus__icon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 10px;
}
.menus__icon .menu-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  flex-basis: 25%;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  box-sizing: border-box;
}
.menus__icon .image {
  height: 48px;
  width: 48px;
  margin-bottom: 5px;
}
.menus__icon .text {
  color: rgba(0,0,0,0.8);
  font-size: 13px;
  line-height: 20px;
  font-weight: 300;
}
.menus__icon-five .menu-item {
  flex-basis: 20%;
}

.banner-box {
  position: relative;
  margin: 0 12px 12px;
}
.banner-box-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.banner-box .van-image {
  display: block;
}

.section {
  margin-bottom: 10px;
  background-color: #fff;
}
.section-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px 15px;
}
.section-header.only-title {
  justify-content: center;
}
.section-header .title {
  font-size: 16px;
  line-height: 22px;
}
.section-header .title.large {
  font-size: 20px;
  line-height: 30px;
}
.section-header .extra {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
  line-height: 22px;
}

.sub-section .header {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  padding: 5px 0;
}
.sub-section .header .line {
  height: 1px;
  width: 20px;
  margin: 0 20px;
  background-color: rgba(0,0,0,0.1);
}
.sub-section .header .title {
  color: #333;
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}

.message-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 30px 20px;
  background-color: #fff;
}
.message-box__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  height: 80px;
  width: 80px;
  color: #fff;
  font-size: 46px;
  border-radius: 40px;
  background-color: #1989fa;
}
img.message-box__icon {
  background-color: transparent !important;
}
.message-box--danger .message-box__icon {
  background-color: #f44;
}
.message-box--success .message-box__icon {
  background-color: #07c160;
}
.message-box--warning .message-box__icon {
  background-color: #ff976a;
}
.message-box__title {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
}
.message-box__title a {
  text-decoration: underline;
}
.message-box__text {
  margin-bottom: 8px;
  color: rgba(0,0,0,0.3);
  font-size: 14px;
  line-height: 20px;
}
.message-box--danger .message-box__title, .message-box--danger .message-box__title a, .message-box__text.danger {
  color: #e32031;
}
.message-box--success .message-box__title, .message-box--success .message-box__title a, .message-box__text.success {
  color: #07c160;
}
.message-box--warning .message-box__title, .message-box--warning .message-box__title a, .message-box__text.warning {
  color: #ff976a;
}
.message-box .price {
  color: #ee0a24;
}

.product-list {
  padding: 12px 12px 0 12px;
}
.product-item {
  display: block;
  margin-bottom: 10px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.product-item .image-wrapper {
  position: relative;
}
.product-item .image {
  height: 0;
  padding-bottom: 100%;
}
.product-item .image img, .product-item .image .van-image {
  display: block;
  width: 100%;
}
.product-item .image-label {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  background: rgba(0,0,0,0.3);
  box-sizing: border-box;
}
.product-item .image-wrapper .labels {
  position: absolute;
  left: 0;
  bottom: 10px;
  height: 21px;
  width: 100%;
  padding: 0 10px;
  overflow: hidden;
  box-sizing: border-box;
}
.product-item .image-wrapper .product-label {
  margin-bottom: 2px;
}
.product-item .info {
  padding: 10px;
}
.product-item .name {
  flex-wrap: wrap;
  height: 42px;
  margin-bottom: 5px;
  color: #333;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.product-item .price-wrapper {
}
.product-item .price {
  color: #ee0a24;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
}
.product-item .price .price-value {
  font-family: arial,sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.product-item .price .symbol, .product-item .price .decimal {
  font-size: 12px;
  vertical-align: middle;
}
.product-item .price .price-value .symbol:first-child {
  margin-right: 2px;
}
.product-item .price .price-value .symbol:last-child {
  margin-left: 2px;
}
.product-item .price .unit {
  margin-left: 2px;
  color: #333;
  font-size: 12px;
}
.product-item .price--now {
  margin-right: 3px;
  padding: 0 5px;
  color: #fff;
  background-color: #ee0a24;
  border-radius: 3px;
}
.product-item .price--pre {
  display: none;
  color: rgba(0,0,0,0.3);
  font-size: 14px;
  text-decoration: line-through;
}
.product-item .sales {
  margin-top: 3px;
  font-size: 12px;
}
.product-item .sales .text {
  color: #999;
}
.product-item .sales .count {
  margin: 0 2px;
  color: #999;
}
.product-item .sales .count--zero {
  color: #999;
}
.product-list--one {
  padding: 0;
}
.product-list--one .product-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  border-radius: 0;
}
.product-list--one .product-item .image-wrapper {
  height: 100px;
  width: 100px;
  margin: 10px 0 10px 12px;
  border-radius: 3px;
  overflow: hidden;
}
.product-list--one .product-item .info {
  flex: 1;
  padding: 10px 12px 10px 10px;
}
.product-list--one .product-item .action {
  text-align: right;
}

.popup-header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.popup-header .title {
  color: #333;
  font-size: 16px;
}
.popup-switcher {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #eee;
}
.popup-switcher .item {
  flex: 1;
  padding: 15px;
  color: #333;
  font-size: 18px;
  text-align: center;
}
.popup-switcher .item.active {
  color: #ee0a24;
}
.popup-switcher .separator {
  content: '';
  height: 22px;
  width: 1px;
  background-color: #e0e0e0;
}
.selector-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.selector-item:last-child {
  border-bottom-width: 0;
}
.selector-item .image {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  margin: 10px 10px 10px 0;
  font-size: 24px;
}
.selector-item .name {
  flex: 1;
  color: #666;
  font-size: 16px;
  line-height: 22px;
}
.selector-item.active .name {
  color: #333;
  font-weight: 400;
}
.selector-item .action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 10px;
}
.selector-item .check {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 10px;
}
.selector-item .check .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 24px;
  width: 24px;
  color: #fff;
  font-size: 18px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 999px;
}
.selector-item.active .check .icon {
  background-color: #ee0a24;
}

.bottom-action {
  display: flex;
  flex-direction: row;
  padding: 0 10px;
  padding-bottom: constant(safe-area-inset-bottom);
  padding-bottom: env(safe-area-inset-bottom);
  background-color: #fff;
  box-sizing: border-box;
}
.bottom-action.fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}
.bottom-action .van-button {
  flex: 1;
  height: 40px;
  margin: 5px;
}



.coupon-list {
  padding: 12px;
  background-color: #fff;
}
.coupon-item {
  position: relative;
  margin-bottom: 20px;
  height: 146px;
  overflow: hidden;
}
.coupon-item:after {
  content: '';
  position: absolute;
  top: 15px;
  right: 47px;
  height: 6px;
  width: 6px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 0 #fff, 0 20px 0 #fff, 0 30px 0 #fff, 0 40px 0 #fff, 0 50px 0 #fff, 0 60px 0 #fff, 0 70px 0 #fff, 0 80px 0 #fff, 0 90px 0 #fff, 0 100px 0 #fff, 0 110px 0 #fff;
}
.coupon-wrapper {
  position: relative;
  height: 100%;
  padding: 0 50px 0 100px;
  background-color: #fcf8e3;
  border: 1px solid #eee;
  border-radius: 5px;
  box-sizing: border-box;
}
.coupon-item.no-image .coupon-wrapper {
  padding-left: 0;
}
.coupon-item .info-wrapper {
  padding: 10px 15px;
}
.coupon-item .price {
  height: 40px;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.coupon-item .price em {
  display: inline-block;
  margin: 3px 3px 0 0;
  font-size: 18px;
  line-height: 22px;
  font-style: normal;
  vertical-align: top;
}
.coupon-item .price strong {
  display: inline-block;
  font-size: 24px;
  line-height: 36px;
  font-style: normal;
  font-weight: normal;
  vertical-align: top;
}
.coupon-item .range {
  margin-bottom: 5px;
  color: #333;
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
}
.coupon-item .limit {
  margin-bottom: 5px;
}
.coupon-item .time {
  margin-bottom: 5px;
  color: #888;
  font-size: 14px;
  line-height: 20px;
}
.coupon-item .image-wrapper {
  position: absolute;
  top: 28px;
  left: 10px;
  height: 90px;
  width: 90px;
  background-color: #fff;
  border-radius: 5px;
}
.coupon-item .type-badge {
  position: absolute;
  top: 28px;
  left: 10px;
  height: 90px;
  width: 90px;
  color: #f23030;
  font-size: 22px;
  line-height: 90px;
  text-align: center;
  background-color: #fff;
  border-radius: 50%;
}
.featured-label {
  display: inline-block;
  height: 19px;
  margin-right: 4px;
  padding: 0 5px;
  color: #f23030;
  font-size: 12px;
  line-height: 18px;
  font-weight: normal;
  background-color: #fff;
  border: 1px solid #f23030;
  border-radius: 2px;
}
.limit-label {
  display: inline-block;
  padding: 0 5px;
  color: #f23030;
  font-size: 12px;
  line-height: 18px;
  background-color: #fff4ec;
}
.coupon-item .price .limit-label {
  margin: 10px 0 0 3px;
}
.coupon-item .date-range {
  display: inline-block;
  color: #999;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
}
.coupon-item .date-range .to {
  padding: 2px 0;
  text-align: center;
}
.coupon-item .other-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50px;
}
.coupon-item .other-wrapper:before, .coupon-item .other-wrapper:after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  display: block;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 1px rgba(0,0,0,0.6);
}
.coupon-item .other-wrapper:after {
  top: auto;
  bottom: -10px;
}
.coupon-item .btn-action {
  display: block;
  height: 100%;
  width: 100%;
  padding: 0 0 0 3px;
  color: #fff;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  background-color: #fb0f3a;
  background-image: linear-gradient(to bottom, #fb0f3a 0, #f02353 100%);
  border-width: 0;
  border-radius: 0 5px 5px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}
.coupon-item .btn-action span {
  display: block;
  width: 20px;
  margin: 28px auto;
}
.coupon-item.soon .btn-action {
  background-color: #444;
  background-image: linear-gradient(to bottom, #444 0, #333 100%);
}
.coupon-item.invalid .btn-action, .coupon-item.invalid .btn-action:hover {
  background-color: #ccc;
  background-image: linear-gradient(to bottom, #ccc 0, #bbb 100%);
}
.simple-coupon-list {
  padding: 12px;
}
.simple-coupon-item {
  margin-bottom: 10px;
  padding: 5px 10px;
  background-color: #fcf8e3;
  border: 1px solid #eee;
  border-radius: 3px;
  cursor: pointer;
}
.simple-coupon-item .check {
  float: right;
  height: 26px;
  width: 26px;
  margin: 2px 0 2px 10px;
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 50%;
}
.simple-coupon-item .price {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.simple-coupon-item .price em {
  display: inline-block;
  margin: 3px 3px 0 0;
  font-size: 12px;
  line-height: 18px;
  font-style: normal;
  vertical-align: middle;
}
.simple-coupon-item .price strong {
  display: inline-block;
  font-size: 24px;
  line-height: 30px;
  font-style: normal;
  font-weight: normal;
  vertical-align: middle;
}
.simple-coupon-item .price strong.small {
  font-size: 20px;
}
.simple-coupon-item .range {
  display: inline-block;
  margin-right: 5px;
  color: #333;
  font-size: 12px;
  line-height: 18px;
  font-weight: bold;
  vertical-align: middle;
}
.simple-coupon-item .limit {
  display: inline-block;
  margin-right: 5px;
  vertical-align: middle;
}
.simple-coupon-item .time {
  display: inline-block;
  margin-right: 5px;
  color: #888;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
}
.simple-coupon-item.disabled {
  background-color: #eee;
  cursor: default;
}
.simple-coupon-item.disabled .check {
  opacity: 0;
}
.simple-coupon-item.disabled .price {
  color: #999;
}
.simple-coupon-item.disabled .limit-label {
  color: #999;
  background-color: #f4f4f4;
}
.simple-coupon-item.disabled .featured-label {
  color: #999;
  border-color: #999;
}
.simple-coupon-item.active .check {
  background-color: #0275d8;
  border-color: #0275d8;
}
.count-down-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
.time-remaining {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.time-remaining__text {
  margin-right: 5px;
  color: #666;
  font-size: 16px;
}
.count-down {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.count-down .digit {
  min-width: 20px;
  margin: 0 2px;
  padding: 0 3px;
  color: #fff;
  text-align: center;
  background-color: rgba(0,0,0,0.66);
  border-radius: 5px;
}
.count-down .digit .text {
  margin-left: 2px;
  font-size: 0.8em;
}
.count-down .colon {
  color: rgba(0,0,0,0.5);
}
.envelope-box {
  margin-bottom: 10px;
  background-color: #fffced;
}
.envelope-box .address-item {
  margin: 0;
  background-color: #fffced;
}
.envelope-box:after,
.envelope-box:before {
  content: '';
  width: 100%;
  height: 8px;
  display: block;
  background-image: repeating-linear-gradient(135deg, #f29b91 0px, #f09290 12px, transparent 12px, transparent 20px, #83b3db 20px, #84adcb 32px, transparent 32px, transparent 40px);
}
.payment-action {
  padding: 20px;
}
.payment-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 44px;
  padding: 0 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  background-color: #07c160;
  border-width: 0;
  border-radius: 999px;
}
.payment-button .icon {
  margin-right: 5px;
  font-size: 30px;
}
.payment-button.wechat {
  background-color: #00c800;
}
.payment-button.alipay {
  background-color: #1fbceb;
}
.primary-action {
  margin: 0 12px 12px 12px;
  padding: 32px 4px;
}
.primary-action .van-button {
  margin-bottom: 12px;
}
.secondary-action {
  flex: 1;
  margin-top: 12px;
  padding: 12px 4px;
}
.secondary-action {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 12px 12px 12px;
  padding: 10px 4px;
}
.secondary-action .van-button {
  margin: 0 6px 12px 6px;
}
.flash-sale-box {
  display: block;
  padding: 0;
  background-image: linear-gradient(180deg, rgba(250,110,160,0) 0%, rgba(250,110,160,0.15) 100%);
}
.flash-sale-box .card-box__header {
  margin-bottom: 0;
  padding: 12px 12px 0;
}
.flash-sale-box .card-box__header .title {
  color: #f44;
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
  transform: skewX(-15deg);
}
.flash-sale-box .time-remaining {
  margin-bottom: 0;
}
.flash-sale-box .count-down .digit {
  background-color: #fa2c19;
  background-image: linear-gradient(-140deg,#ff6152,#fa2c19);
}
.flash-sale-box .products {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 12px;
  overflow-x: auto;
}
.flash-sale-box .product-item {
  flex-shrink: 0;
  min-height: 120px;
  width: 80px;
  margin: 0 5px 0 0;
  background-color: transparent;
}
.flash-sale-box .image-wrapper {
  height: 80px;
  width: 80px;
  margin-bottom: 5px;
  border-radius: 5px;
  overflow: hidden;
}
.flash-sale-box .price-wrapper {
  line-height: 20px;
  text-align: center;
}
.flash-sale-box .price-wrapper .price {
  display: block;
}
.flash-sale-box .price-wrapper .price--now {
  color: #ee0a24;
  font-size: 14px;
  font-weight: 500;
  background: transparent;
}
.flash-sale-box .more-product {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 10px 10px 0;
  height: 80px;
  width: 80px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  box-sizing: border-box;
}
.flash-sale-box .more-product .icon {
  color: rgba(0,0,0,0.5);
  font-size: 32px;
}
.flash-sale-box .more-product .text {
  color: rgba(0,0,0,0.5);
  font-size: 16px;
}
.floating-buttons {
  position: fixed;
  right: 12px;
  bottom: 100px;
}
.floating-buttons .button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 38px;
  width: 38px;
  margin: 8px 0 0 0;
  padding: 0;
  color: rgba(0,0,0,0.4);
  font-size: 24px;
  font-weight: 300;
  background-color: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.3);
  border-radius: 999px;
}
.review-list {
  margin-top: 12px;
}
.review-item {
  padding: 15px;
}
.review__header {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.review__header .avatar {
  height: 40px;
  width: 40px;
  margin-right: 9px;
  border-radius: 999px;
}
.review__header .info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.review__header .name {
  margin-bottom: 2px;
  color: #333;
  font-size: 18px;
  line-height: 24px;
}
.review__header .extra {
  color: #999;
  font-size: 12px;
  line-height: 15px;
}
.review__header .rating {
  color: #999;
  font-size: 16px;
}
.review__header .rating .van-icon-star_fill {
  color: #ee0a24;
}
.review__content {
  margin: 5px 0;
  color: #333;
  font-size: 17px;
  line-height: 24px;
}
.review__images {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0;
}
.review__images .item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 90px;
  width: 90px;
  margin: 0 5px 5px 0;
  background-color: rgba(0,0,0,0.05);
  border-radius: 5px;
  overflow: hidden;
}
.review__images .item img {
  height: 100%;
  width: 100%;
}
.review__images .item.video {
  background-color: #f4f4f4;
}
.review__images .play-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.review__images .play-icon .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 42px;
  width: 42px;
  color: #fff;
  font-size: 20px;
  background-color: rgba(0,0,0,0.2);
  border: 2px solid rgba(255,255,255,1);
  border-radius: 999px;
}
.view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.product-box {
  margin-bottom: 15px;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
}
.product-box-item {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.product-box-item.last {
  border-bottom-width: 0;
}
.product-box-item .info-wrapper {
  flex: 1;
  display: flex;
  flex-direction: row;
  padding: 15px 25px;
}
.product-box-item .image {
  height: 80px;
  width: 80px;
  margin-right: 20px;
  border-radius: 3px;
}
.product-box-item .info {
  flex: 1;
}
.product-box-item .name {
  margin-bottom: 3px;
  color: rgba(0,0,0,0.8);
  font-size: 14px;
  line-height: 20px;
}
.product-box-item .extra {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 3px;
}
.product-box-item .option-item {
  margin-right: 8px;
  color: rgba(0,0,0,0.6);
  font-size: 12px;
  line-height: 18px;
}
.product-box-item .data {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2px;
}
.product-box-stepper {
  position: absolute;
  right: 0;
  bottom: 0;
}
.product-box-item .remove-button {
  position: absolute;
  right: 0;
  bottom: 0;
}
.product-box-item .data-label {
  color: rgba(0,0,0,0.6);
  font-size: 14px;
}
.product-box-item .data-value {
  margin-right: 8px;
  font-size: 14px;
}
.product-box-item .data-price {
  color: #e32031;
}
.product-box-item .action {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding-right: 15px;
  padding-bottom: 10px;
}
.product-box-item .action-button {
  margin-left: 8px.
}
.share-box {
  padding: 20px;
}
.share-box .qrcode {
  display: block;
  max-width: 280px;
  margin: 0 auto 20px;
}
.copy-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  background-color: rgba(0,0,0,0.05);
  border-radius: 999px;
}
.copy-box .text {
  flex: 1;
  padding: 5px 5px 5px 15px;
  line-height: 1.5;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copy-box .button {
  flex-shrink: 0;
}
.another-payment-wrapper {
  padding: 20px 0;
}
.another-payment-header {
  margin-bottom: 20px;
  font-size: 18px;
  text-align: center;
}
.another-payment-action {
  padding: 0;
  text-align: center;
}
.product-label {
  display: inline-block;
  height: 20px;
  padding: 0 6px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid transparent;
  vertical-align: middle;
  overflow: hidden;
  box-sizing: border-box;
}
img.product-label {
  height: 20px;
  padding: 0;
  border-width: 0;
}

.product-board {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #fff;
  border-radius: 10px;
}
.product-board .info {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}
.product-board .image {
  width: 100%;
  border-radius: 8px;
}