.wm-style.ws-lotteryv2 .lottery-border {
    background-repeat: no-repeat;
}

.cus-selectBox {
    width: 100%;
    height: 100%;
    background-color: transparent;
}
input::-ms-clear,
input::-ms-reveal {
    display: none;
}

.cus-inputCase {
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: solid 1px #ccc;
    background-size: 100% 100%;
}

.cus-inputCase:hover {
    border-color: #aaa;
}
.cus-inputCase input.cus-imitationSelect {
    display: block;
    width: 0;
    height: 0;
    display: none;
    overflow: hidden;
}
.cus-inputCase .value-input {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    display: block;
    line-height: 30px;
    padding-left: 5px;
    padding-right: 10px;
    text-align: left;
    cursor: default;
    font-family: inherit;
    white-space: nowrap;
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.cus-inputCase .arrow {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 10px;
    height: 10px;
    background-color: aqua;
    transform: translateY(-50%);
}

.cus-selectUl {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    text-align: center;
    overflow: auto;
    z-index: 9999;
}
.cus-selectUl li {
    height: 30px;
    line-height: 30px;
    list-style: none;
    border-bottom: 1px solid #ccc;
}

.cus-selectUl li.actived_li {
    background-color: #eee;
}

.cus-selectUl li:hover {
    background: #ddd;
}
.cus-selectUl li:last-child {
    border-bottom: 0 none;
}

.maskX {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 5000;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.ws-lottery-egg .lottery-content {
    position: relative;
}

.ws-lottery-egg .lottery-content .success-img {
    width: 100%;
    display: inherit;
    text-align: center;
    vertical-align: middle;
}

.ws-lottery-egg .lottery-content {
    width: 100%;
    position: relative;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 500px;
}

.ws-lottery-egg .lotteryv5-content > .egg-wrappger {
    width: 116px;
    height: 133px;
    display: block;
    position: absolute;
    left: 50%;
    bottom: 20px;
}
.ws-lottery-egg .lottery-content .egg-wrappger {
    transition: transform 1s;
}
.ws-lottery-egg .lottery-content .ws-lottery-eggs {
    width: 100%;
    height: 100%;
    transition: transform 1s;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.ws-lottery-egg .lotteryv5-content .left .ws-lottery-eggs {
    transform: translateX(-70%);
}
.ws-lottery-egg .lotteryv5-content .right .ws-lottery-eggs {
    transform: translateX(70%);
}
.ws-lottery-egg .lotteryv5-content .middle {
    transform: translateZ(70px);
}

.ws-lottery-egg .lotteryv5-content .lottery-draw {
    position: absolute;
    transform: translateZ(71px);
    transform-origin: right bottom;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.egg-break .ws-lottery-eggs {
    -webkit-animation: smashing 2s steps(3) forwards;
    animation: smashing 2s steps(3) forwards;
}
@-webkit-keyframes smashing {
    to {
        background-position: 100% 0;
    }
}
@keyframes smashing {
    to {
        background-position: 100% 0;
    }
}

@-webkit-keyframes hammer {
    0% {
        transform: rotate(25deg) translateZ(71px);
    }
    100% {
        transform: rotate(-25deg) translateZ(71px);
    }
}
@keyframes hammer {
    0% {
        transform: rotate(23deg) translateZ(71px);
    }
    100% {
        transform: rotate(-25deg) translateZ(71px);
    }
}

.guide-bar-body {
  position: relative;
  height: 100%;
  background-size: 100% 100%;
}
.guide-bar-body .btn-go {
  position: absolute;
  display: block;
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  left: auto;
  border: none;
  font-weight: bold;
}
.guide-bar-body .btn-go.not-display {
  display: none;
}

.my-prize-record .filter-awards {
  display: flex;
  height: 34px;
  box-sizing: border-box;
  flex-wrap: nowrap;
}
.my-prize-record .filter-awards li {
  width: 50%;
  text-align: center;
}
.my-prize-record .filter-awards li span.text {
  position: relative;
  padding: 0 0 5px 0;
}
.my-prize-record .filter-awards li.cur {
  color: #0a59f7;
}
.my-prize-record .filter-awards li.cur span.text:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #0a59f7;
}
.my-prize-record .filter-awards li span.num {
  position: absolute;
  padding: 0 6px;
  margin: 0 0 0 5px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  color: #fff;
  border-radius: 50%;
  background: red;
}
.prize-code-wrapper {
  width: 100%;
  overflow-y: auto;
  margin: 0 auto;
  color: #000;
}
.prize-code-wrapper .swiper-container {
  padding-bottom: 20px;
}
.prize-code-wrapper .swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}
.prize-code-wrapper .prize-tip {
  display: none;
  padding: 10px 15px;
  word-break: break-word;
}
.prize-code-item {
  height: 50px;
  padding: 0 10px;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  box-sizing: border-box;
}
.prize-code-item .code-item-left {
  display: inline-block;
  width: 70%;
  height: 100%;
  background: #49ba98;
}
.prize-code-item .code-item-right {
  width: 30%;
  height: 100%;
  background: #ffc949;
  float: right;
}
.prize-code-normal {
  background-color: #d9e6ff;
}
.prize-code-expire {
  background-color: #e7e7e7;
}
.prize-code-expire .expire-tag {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 72px;
  right: -21px;
  top: -35px;
  text-align: center;
}
.prize-code-expire .expire-tag img {
  position: absolute;
  top: 0;
  right: 0;
}
.prize-code-expire .expire-tag font {
  position: absolute;
  left: 0;
  top: 40px;
  width: 57px;
  height: 38px;
  font-size: 12px;
  color: #717171;
  transform: rotate(30deg);
  z-index: 10;
}
.prize-code-val {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
}
.prize-name {
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000000;
}
.prize-code {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #666;
}
.prize-expire-time {
  color: #999;
}
.code-text {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  border-radius: 10px;
}
.code-text .code-img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  text-align: center;
  overflow: hidden;
  background: #eee;
  border-radius: 50%;
}
.code-text .code-img img {
  height: 100%;
  max-width: 100%;
  vertical-align: middle;
}
.code-text .code-no-image {
  display: none;
}
.code-text .code-text-left {
  max-width: 60%;
  margin-right: 10px;
}
.code-text .btn-text-right,
.code-text .btn-expire {
  margin-left: auto;
  font-size: 18px;
  font-weight: bold;
  top: 0;
  right: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 20%;
  text-align: center;
}
.code-text .btn-expire {
  margin-right: 10px;
  color: #fff;
  background-color: #c9c9c9;
  border-radius: 5px;
}
.no-prize-wrapper {
  width: 100%;
  text-align: center;
}
.no-prize-text {
  text-align: center;
}
.no-prize-img {
  width: 160px;
  margin-top: 15px;
}
/*  */
.prize-code-wrapper.mirrored .code-text {
  flex-direction: row-reverse;
}
.prize-code-wrapper.mirrored .btn-text-right,
.prize-code-wrapper.mirrored .btn-expire {
  margin-right: auto;
  margin-left: 0;
}

.q-wrap {
  list-style: none;
}
.q-wrap li {
  background: #ebdcbc;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  margin: 0 0 10px 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.q-wrap li .q-left-area {
  height: 100%;
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.q-wrap li .q-left-area .q-img {
  width: 40px;
  overflow: hidden;
}
.q-wrap li .q-left-area .q-content {
  width: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.q-wrap li .q-left-area .q-content p,
.q-wrap li .q-left-area .q-content h5 {
  text-overflow: ellipsis;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.q-wrap li .q-left-area .q-content h5 {
  font-size: 14px;
  color: #5e3a2e;
}
.q-wrap li .q-left-area .q-content p {
  font-size: 12px;
  color: #5d3a2d;
}
.q-wrap li .q-left-area .q-content .expireTime {
  font-size: 10px;
}
.q-wrap li .q-right-area {
  height: 100%;
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.q-wrap li .q-right-area .q-btn {
  font-size: 13px;
  background: #d24439;
  color: #fff;
  border-radius: 13px;
  height: 26px;
  width: 90%;
  line-height: 26px;
  text-align: center;
}
.q-wrap li .q-right-area .q-btn.linear {
  background: linear-gradient(#fcbf5a, #e2520d);
}
.q-wrap li .q-right-area:active {
  animation: btnScale 0.2s 1;
}
.q-wrap.big-style li {
  display: block;
}
.q-wrap.big-style li h5 {
  padding-top: 10px;
}
.q-wrap.big-style li .q-left-area,
.q-wrap.big-style li .q-right-area {
  height: auto;
}
.q-wrap.big-style li .q-left-area .des {
  padding-top: 10px;
  font-size: 14px;
}
.q-wrap.big-style li .q-left-area .code {
  padding-top: 10px;
}
.q-wrap.big-style li .q-left-area .code .c,
.q-wrap.big-style li .q-left-area .code .t {
  display: inline-block;
  vertical-align: middle;
}
.q-wrap.big-style li .q-right-area {
  width: 100%;
  padding-right: 0;
  text-align: center;
}
.q-wrap .no-prize-text {
  text-align: center;
}
.q-wrap .no-prize-img {
  width: 160px;
  margin-top: 15px;
}
/*  */
.q-wrap .code-text {
  flex-direction: row-reverse;
}
.q-wrap .code-text-right {
  margin-right: auto;
}
.q-wrap li.mirrorRotateLevel {
  flex-direction: row-reverse;
}
.q-wrap li.mirrorRotateLevel .q-left-area {
  flex-direction: row-reverse;
}
.q-wrap li.mirrorRotateLevel .q-right-area {
  padding-left: 10px;
}
.q-wrap li.mirrorRotateLevel .q-content h5,
.q-wrap li.mirrorRotateLevel .q-content p {
  text-align: right;
}
.prize-code-val {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
}
.q-drag-wrap {
  overflow-y: auto;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.q-drag-wrap .swiper-pagination {
  width: 100%;
}
.q-drag-wrap .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px;
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.5);
}
.q-drag-wrap .swiper-pagination .swiper-pagination-bullet-active {
  width: 8px;
  border-radius: 2px;
  background: #0a59f7;
}
@keyframes btnScale {
  0% {
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.card-wrapper {
    background-color: rgba(255, 255, 255, 0.5);
    /* background-image:radial-gradient(closest-side at 50% 50%, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0), rgb(255, 255, 255)); */
    position: relative;
    border-radius: 50%;
}

.content-box-shadow {
    border-radius: 50%;
    position: absolute;
    left: 5%;
    top: 5%;
    width: 90%;
    height: 90%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 19;
    text-align: center;
}

.content-box {
    width: 90%;
    height: 90%;
    /* background-color: transparent; */
    border-radius: 50%;
    position: absolute;
    top: 5%;
    left: 5%;
}

img#card-lock {
    width: 50%;
    height: auto;
    /* height: 50%; */
    margin-top: 14px;
}

img#card-box {
    width: 70%;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 15%;
}
.task-step {
  height: 60px;
  width: 60px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 5px #666;
  text-align: center;
  font-size: 12px;
  position: relative;
}
.task-step-text {
  width: 80%;
  height: 80%;
  color: #ffffff;
  position: absolute;
  top: 10%;
  left: 10%;
  background: #57c4b6;
  border-radius: 50%;
  z-index: 9;
}
.task-step-text span {
  display: inline-block;
  margin-top: 15px;
}
.task-step img {
  position: absolute;
  top: 24%;
  left: 24%;
  width: 50%;
  height: 50%;
}
.task-step-shadow {
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.task-list li {
    border-radius: 8px;
    box-shadow: 0 0 5px #aaa;
    padding: 3px;
    margin: 15px;
    position: relative;
    height: 50px;
}
.task-list li .task-item {
    display: flex;
    align-items: center;
    /* border: 1px dashed rgb(245, 179, 63); */
    border: 1px dashed rgb(69, 151, 122);
    height: 48px;
    border-radius: 8px;
}
.task-list li span.task-num {
    position: absolute;
    margin-left: 10px;
    /* background: #f5b33f; */
    background: rgb(69, 151, 122);
    color: #fff;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgb(47, 178, 132);
    /* border: 1px solid #edb345; */
    box-shadow: 0 0 4px #999;
    text-align: center;
    line-height: 20px;
}
.task-list li span.task-content {
    width: 56%;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 12px;
    position: absolute;
    max-height: 32px;
    margin-left: 40px;

    /* 圣诞节字体颜色 */
    font-weight: bold;
}

.task-list li button {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 27%;
    border: none;
    border-radius: 4px;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    height: 30px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
button.task-done {
    /* background: rgb(240, 204, 142); */
    background: rgb(17, 197, 133, 0.3);
}
button.task-doing {
    /* background: rgb(245 179 62); */
    background: rgb(58, 147, 115);
}
button.task-locked {
    /* background: #999; */
    background: rgb(184, 184, 184);
}
.lucky-card-item {
    background: #2cb2aa;
}
ul li.lucky-card-item .task-item {
    border: 1px dashed #000;
}
ul li.lucky-card-item .task-tip-title {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 14px;
}
.lucky-card-item .task-tip {
    font-size: 12px;
    position: absolute;
    left: 10px;
    top: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 65%;
}
ul li.lucky-card-item button.task-locked {
    /* background: #2e7e7a; */
    background: rgb(184, 184, 184);
    color: #fff;
}

/* 镜像样式开始 */
.task-list.mirrored li span.task-num {
    left: auto;
    right: 10px;
}

.task-list.mirrored li span.task-content {
    left: auto;
    right: 40px;
    text-align: right;
}

.task-list.mirrored li button {
    left: 10px;
    right: auto;
}

.task-list.mirrored .lucky-card-item .task-item {
    text-align: right;
}

.task-list.mirrored .lucky-card-item .task-tip-title {
    left: auto;
    right: 10px;
}

.task-list.mirrored .lucky-card-item .task-tip {
    left: auto;
}

.lucky-card > div {
    text-align: center;
}
.lucky-card .card-item {
    display: inline-block;
    width: 100px;
    height: 140px;
    margin: 10px 5px;
    position: relative;
}
.lucky-card .card-item img.card-bg {
    width: 100%;
    height: 100%;
}
.lucky-card .card-item-info {
    position: absolute;
    top: 10px;
    left: 7px;
    width: 85%;
    height: 85%;
}
.lucky-card .card-item-info .card-name {
    background: orange;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    padding: 1px 6px;
    box-shadow: 0 0 5px #333;
    position: absolute;
    top: 0;
    left: 0px;
    width: 72px;
    height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    z-index: 29;
}
.lucky-card .card-item-info .lock-shadow {
    width: 100%;
    height: 100%;
    background: #666;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 19;
    opacity: 0.5;
    text-align: center;
}
.lucky-card .card-item-info .lock-shadow img {
    width: 40px;
    margin-top: 30px;
}
.lucky-card .card-item-info .lock-shadow .lock-text {
    position: absolute;
    bottom: 8px;
    left: 0;
    font-size: 12px;
    color: rgb(255, 255, 255);
}
.lucky-card .card-item-info img.card-img {
    width: 100%;
    height: 90%;
    position: absolute;
    top: 10px;
    left: 0;
}
.lucky-card .card-item-info .card-count {
    position: absolute;
    right: -15px;
    top: -20px;
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    z-index: 29;
    border-radius: 50%;
    background: #f5b33f;
    color: white;
    border: 1px solid #f1b547;
    box-shadow: 0 0 5px #999;
}

.single-card {
    text-align: center;
}
.single-card .card-item {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}
.single-card .card-item img.card-bg {
    width: 100%;
    height: 100%;
}
.single-card .card-item-info {
    position: absolute;
    top: 10%;
    left: 7%;
    width: 85%;
    height: 85%;
}
.single-card .card-item-info .card-name {
    background: orange;
    border-radius: 12px;
    font-size: 12px;
    color: white;
    box-shadow: 0 0 5px #333;
    width: 100%;
    height: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 9;
}

.single-card .card-item-info img.card-img {
    width: 100%;
    height: 90%;
    position: absolute;
    top: 10px;
    left: 0;
}

.raffle-result {
  text-align: center;
}
.raffle-result .award-name {
  font-size: 20px;
  font-weight: bold;
}
.raffle-result .award-explanation {
  font-size: 13px;
}
.raffle-result .award-code,
.raffle-result .expire-time {
  padding-bottom: 10px;
  font-size: 13px;
}
.raffle-result .award-img {
  width: 30% !important;
  margin-top: 20px;
}

.gift-wrap {
  text-align: center;
  background-size: 100%;
  overflow: hidden;
}
.gift-wrap .gift-items1,
.gift-wrap .gift-items2 {
  margin-left: 30px;
  text-align: left;
  font-weight: bold;
}
.gift-wrap .gift-items1 .label,
.gift-wrap .gift-items2 .label {
  display: inline-block;
  width: 85px;
  color: rgba(0, 0, 0, 0.6);
  margin-right: 6px;
}
.gift-wrap .gift-items1 .nameContent,
.gift-wrap .gift-items2 .nameContent {
  display: inline-block;
  color: #ED5E21;
}
.gift-wrap .gift-items1 .codeContent,
.gift-wrap .gift-items2 .codeContent {
  display: inline-block;
}
.gift-wrap .gift-items1 .codeContent .part,
.gift-wrap .gift-items2 .codeContent .part {
  color: #000000;
  display: inline-block;
  width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: text-bottom;
  font-weight: bold;
}
.gift-wrap .gift-items1 .codeContent .copy-btn,
.gift-wrap .gift-items2 .codeContent .copy-btn {
  display: inline-block;
  width: 50px;
  text-align: center;
  height: 24px;
  line-height: 24px;
  border-radius: 12px;
  color: #ffffff;
  background-color: #F9AA0C;
  background-image: linear-gradient(#FCC24D, #F9AA0C);
}
.gift-wrap .gift-items2 {
  height: 24px;
}
.gift-wrap .gift-btn {
  display: inline-block;
  width: 240px;
  height: 30px;
  line-height: 30px;
  border-radius: 15px;
  background-color: #F9A80D;
  background-image: linear-gradient(#F7CE00, #F9A80D);
  color: #ffffff;
  font-weight: bold;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 50px;
}
.gift-wrap .gift-btn.disable {
  color: rgba(255, 255, 255, 0.38);
  text-shadow: 0 10px 20px rgba(155, 108, 0, 0.3);
}
.gift-wrap .partCopy {
  opacity: 0;
  position: relative;
  z-index: 1;
}

.claim-wrap {
  background-size: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
}
.claim-wrap .claim-items {
  margin-left: 20px;
}
.claim-wrap .claim-items .title-line {
  margin-bottom: 5px;
}
.claim-wrap .claim-items .title-line .dot {
  display: inline-block;
  border-radius: 50%;
  border: 5px solid rgba(0, 0, 0, 0.38);
}
.claim-wrap .claim-items .title-line .title {
  display: inline-block;
  color: rgba(0, 0, 0, 0.9);
  font-weight: bold;
  margin-left: 10px;
}
.claim-wrap .claim-items .content-line {
  color: rgba(0, 0, 0, 0.6);
  margin-left: 25px;
}

.his-wrap .his-title {
  font-weight: bold;
  margin-left: 20px;
  color: rgba(0, 0, 0, 0.9);
}
.his-wrap .his-content {
  margin: 10px 20px;
  overflow-y: auto;
  color: rgba(0, 0, 0, 0.6);
}
.his-wrap .no-content {
  margin: 10px 20px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

/* clearfix */
.clearfix {
  clear: both;
}
.bodyNearby {
  background: #ffffff;
}
.find_nav_nearby_list {
  height: 42px;
  width: 100%;
  background: #f9f9f9;
  position: relative;
  top: 0;
  z-index: 9999;
  display: -moz-box;
  display: -webkit-box;
  display: box;
  padding-top: 5px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.find_nav_nearby_list ul {
  position: relative;
  height: 30px;
  padding-bottom: 12px;
  white-space: nowrap;
  font-size: 0;
}
.find_nav_nearby_list ul li {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 20px;
  height: 30px;
  line-height: 30px;
}
.find_nav_nearby_list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-align: center;
  color: #666;
}
.find_nav_nearby_list ul li .sideline_nearby {
  display: none;
  position: absolute;
  border: 0;
  height: 2px;
  width: 100%;
  background-color: #0a59f7;
  left: 0;
  bottom: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.find_nav_nearby_list ul li.active .sideline_nearby {
  display: block;
}
.find_nav_nearby_list .active a {
  color: #0a59f7;
}
#wrapperNearby {
  margin-top: 0;
  padding-bottom: 12px;
  width: 100%;
  overflow: auto;
  background: #f9f9f9;
}
#wrapperNearby .more {
  height: 24px;
  text-align: center;
  color: #0a59f7;
}
.no-data-wrapper {
  padding: 40px 0;
  text-align: center;
}
.no-data-wrapper img {
  width: 20%;
}
#containerImgNearBy {
  position: relative;
  margin: 0 20px;
  height: auto;
  columns: 2;
  column-gap: 15px;
  overflow-y: auto;
}
#containerImgNearBy .grid {
  width: 100%;
  min-height: 100px;
  padding-bottom: 10px;
  break-inside: avoid;
  box-sizing: border-box;
  font-size: 12px;
  overflow: hidden;
}
#containerImgNearBy .grid > a {
  display: block;
  background: #eee;
  padding-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
#containerImgNearBy .grid .imgholder {
  position: relative;
}
#containerImgNearBy .grid .imgholder .location {
  position: absolute;
  padding: 0 10px 0 20px;
  bottom: 6px;
  line-height: 20px;
  color: #fff;
}
#containerImgNearBy .grid .imgholder .location img {
  display: inline-block;
  vertical-align: middle;
  height: 16px;
  background: transparent;
}
#containerImgNearBy .grid .imgholder .location .con {
  padding-left: 0px;
}
#containerImgNearBy .grid .imgholder img {
  max-width: 100%;
  background: #ccc;
  display: block;
  color: #fff;
}
#containerImgNearBy .grid .intro {
  padding: 0 10px;
}
#containerImgNearBy .grid .intro .title {
  margin: 5px 0;
  display: block;
  font-size: 16px;
  font-weight: normal;
}
#containerImgNearBy .grid .intro .price {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  text-align: left;
  font-family: 'HarmonyHeiTi-Medium', 'Arial', 'Times New Roman';
}
#containerImgNearBy .grid .intro .tags {
  padding-bottom: 5px;
}
#containerImgNearBy .grid .intro .tags span {
  display: inline-block;
  height: 16px;
  padding: 0 4px;
  line-height: 16px;
  font-size: 10px;
  text-align: center;
  color: #fff;
  background: #e84026;
}
#containerImgNearBy .grid .intro .description {
  color: #999;
}
#containerImgNearBy .grid .intro .description .dec {
  color: #f9a01e;
  font-size: 14px;
}

.grammy-vote-wrapper {
  background-color: #fff;
}
.grammy-vote-wrapper.vertical {
  background-color: transparent;
}
.grammy-vote-wrapper.vertical .grammy-vote-header .text {
  width: 100%;
  text-align: center;
}
.grammy-vote-wrapper.vertical .grammy-vote-list {
  background: #fff;
  border-radius: 8px;
}
.grammy-vote-wrapper .grammy-vote-header {
  padding: 10px 24px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grammy-vote-wrapper .grammy-vote-header .text {
  width: 80%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  text-align: left;
  line-height: 38px;
  font-weight: 500;
}
.grammy-vote-wrapper .grammy-vote-header .icon {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  background: red no-repeat center center / 50%;
  cursor: pointer;
}
.grammy-vote-wrapper .grammy-vote-header .icon::after {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}
.grammy-vote-wrapper .grammy-vote-list {
  height: calc(100% - 48px);
  overflow: auto;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item {
  padding: 0 24px;
  display: flex;
  align-items: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-poster {
  margin-right: 16px;
  width: 56px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content {
  height: 56px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content.col-center {
  justify-content: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content .vote-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-all;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content .vote-progress-wrapper {
  display: flex;
  align-items: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content .vote-progress-wrapper .vote-progress-outer {
  flex: 1;
  height: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content .vote-progress-wrapper .vote-progress-outer .vote-progress-inner {
  height: 100%;
  border-radius: 8px;
  background: #0a59f7;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .vote-content .vote-progress-wrapper .vote-num {
  width: 50px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.38);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  text-align: right;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .btn-vote {
  margin-left: 16px;
  padding: 0 8px;
  width: 78px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background-color: #0a59f7;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  border-radius: 28px;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item .vote-container .btn-vote.disabled {
  background: rgba(10, 89, 247, 0.3);
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v {
  padding: 12px 8px;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-header {
  display: flex;
  align-items: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-header .vote-poster {
  margin-right: 4px;
  width: 24px;
  object-fit: cover;
  border-radius: 24px;
  cursor: pointer;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-header .vote-title {
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 1.4;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-all;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer .btn-vote {
  padding: 0 6px;
  width: 72px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background-color: #0a59f7;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  border-radius: 28px;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer .btn-vote.disabled {
  background: rgba(10, 89, 247, 0.3);
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer .vote-num-wrapper {
  margin-left: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer .vote-num-wrapper .vote-icon {
  margin-right: 4px;
  width: 14px;
  height: 14px;
  object-fit: contain;
  cursor: pointer;
}
.grammy-vote-wrapper .grammy-vote-list .grammy-vote-item-v .vote-footer .vote-num-wrapper .vote-num {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  font-family: Arial, Helvetica, sans-serif;
}
.grammy-vote-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news .header {
  padding: 0 23.75px 0 24px;
  height: 48px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.news .body {
  height: calc(100% - 48px);
  overflow: auto;
  padding: 0 23.75px 0 24px;
}
.news .body .news_items {
  display: flex;
  height: 132px;
  padding-top: 16px;
  box-sizing: border-box;
  border-bottom: 1px solid lightgray;
}
.news .body .news_items .news_items_left .news-item-content {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.news .body .news_items .news_items_right .news_items_img {
  width: 80px;
  height: 80px;
  margin-left: 15px;
}

.henghua-box {
  overflow: hidden;
}
.henghua-box .swiper-pagination-bullet-active {
  width: 12px;
  border-radius: 8px;
}
.henghua-box .q-slide li.more {
  text-align: center;
  color: #3f3f3f;
  font-size: 14px;
}
.henghua-box .q-slide li {
  flex-shrink: inherit;
}
.henghua-box .q-slide li h5 {
  margin: 2px 0;
  color: rgba(0, 0, 0, 0.9);
  font-family: HWtext-55ST;
  font-size: 14px;
  font-weight: normal;
}
.henghua-box .q-slide li p {
  margin: 2px 0;
  color: rgba(0, 0, 0, 0.38);
  font-family: HWtext-55ST;
  font-size: 12px;
  font-weight: normal;
}
.henghua-box .q-slide li img {
  border-radius: 10px;
}
.henghua-box.has-border li {
  padding-bottom: 6px;
  border: solid 1px #eee;
  border-radius: 10px;
}
.henghua-box.has-border li h5,
.henghua-box.has-border li p {
  padding: 0 6px;
}
.henghua-box.has-border li img {
  border-radius: 10px 10px 0 0;
}

/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    /* Fix of Webkit flickering */
    z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
    float: left;
}
.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
}
.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
    visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    -o-transition-property: transform, height;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    left: 10px;
    right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
    right: 10px;
    left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
    display: none;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
}
.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
}
button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0px, -50%, 0);
    transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    -webkit-transition: 200ms top, 200ms -webkit-transform;
    transition: 200ms top, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top;
    transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms left, 200ms -webkit-transform;
    transition: 200ms left, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left;
    transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 200ms right, 200ms -webkit-transform;
    transition: 200ms right, 200ms -webkit-transform;
    -o-transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right;
    transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    -webkit-transform-origin: right top;
    -ms-transform-origin: right top;
    transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
    background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000000;
}
.swiper-pagination-lock {
    display: none;
}
/* Scrollbar */
.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
}
.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
}
.swiper-scrollbar-cursor-drag {
    cursor: move;
}
.swiper-scrollbar-lock {
    display: none;
}
.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.swiper-slide-zoomed {
    cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
    display: block;
    content: '';
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes swiper-preloader-spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
/* a11y */
.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube {
    overflow: visible;
}
.swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
}
.swiper-container-flip {
    overflow: visible;
}
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
    /* Windows 8 IE 10 fix */
    -ms-perspective: 1200px;
}

.discounted-goods-wrapper {
  font-family: Arial, Helvetica, sans-serif;
}
.discounted-goods-wrapper.swiper-style {
  border-radius: 16px;
  background-color: #fff;
}
.discounted-goods-wrapper.mirror-style .shopping-feed-container .shopping-feed .discounted-goods-item .goods-img-wrapper::before {
  left: auto;
  right: 0;
  border-radius: 0 8px 0 8px;
}
.discounted-goods-wrapper.mirror-style .shopping-feed-container .btn-more .btn-more-icon {
  margin-left: 0;
  margin-right: 4px;
}
.discounted-goods-wrapper.mirror-style .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-img-wrapper::before {
  left: auto;
  right: 0;
  border-radius: 0 8px 0 8px;
}
.discounted-goods-wrapper .discounted-goods-header {
  padding: 0 16px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discounted-goods-wrapper .discounted-goods-header .text {
  width: 80%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 38px;
  font-weight: 700;
}
.discounted-goods-wrapper .discounted-goods-header .icon {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  background: red no-repeat center center / 50%;
  cursor: pointer;
}
.discounted-goods-wrapper .discounted-goods-header .icon::after {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}
.discounted-goods-wrapper .shopping-feed-container {
  position: relative;
  overflow: auto;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed {
  position: relative;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item {
  box-sizing: border-box;
  position: absolute;
  padding-bottom: 8px;
  width: 180px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  word-break: break-all;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-img-wrapper {
  position: relative;
  height: 0;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-img-wrapper.no-discount::before {
  display: none;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-img-wrapper .goods-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-title {
  margin-top: 8px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-price {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-price-old {
  display: none;
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  text-decoration: line-through;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-price-old.hidden {
  display: none;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-supplier {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-tag {
  padding: 2px 8px;
  height: 18px;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .goods-tag .tag {
  display: inline-block;
  height: 18px;
  padding: 0 6px;
  line-height: 18px;
  color: #fff;
  font-size: 10px;
  border-radius: 6px;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .discount-tag {
  background: #e84026;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .free-tag {
  background: #0a59f7;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .free-tag-icon {
  margin-top: 4px;
  margin-right: 4px;
  width: auto;
  height: 10px;
  vertical-align: top;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .old-price .goods-price-old {
  display: inline-block;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .old-price .goods-price-old.hidden {
  display: none;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .rating-wrapper {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 16px;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .rating-wrapper .icon-star {
  margin-top: 3px;
  margin-right: 3px;
  width: 10px;
  height: 10px;
  vertical-align: top;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .rating-wrapper .rating-score {
  color: #f9a01e;
}
.discounted-goods-wrapper .shopping-feed-container .shopping-feed .discounted-goods-item .rating-wrapper .rating-num {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.6);
}
.discounted-goods-wrapper .shopping-feed-container .btn-more {
  margin-top: 10px;
  display: none;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  color: #0a59f7;
}
.discounted-goods-wrapper .shopping-feed-container .btn-more .btn-more-text {
  cursor: pointer;
}
.discounted-goods-wrapper .shopping-feed-container .btn-more .btn-more-icon {
  margin-left: 4px;
  margin-top: 5px;
  width: auto;
  height: 14px;
  object-fit: contain;
  vertical-align: top;
  cursor: pointer;
}
.discounted-goods-wrapper .shopping-feed-container .status-footer {
  margin-top: 10px;
  display: none;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper {
  height: 100%;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide {
  box-sizing: border-box;
  padding: 0 12px;
  height: 100%;
  display: flex;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item {
  margin: 0 5px;
  height: 100%;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-img-wrapper {
  margin-top: 16px;
  padding-top: 100%;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-img-wrapper::before {
  content: attr(data-discount);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  max-width: 100%;
  padding: 0 10px;
  height: 16px;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
  background: #e84026;
  border-radius: 8px 0 8px 0;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-img-wrapper.no-discount::before {
  display: none;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-img-wrapper .goods-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-title {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-price {
  margin-top: 4px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-price-old {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  text-decoration: line-through;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-price-old.hidden {
  visibility: hidden;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .old-price {
  display: none;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-supplier {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .goods-tag {
  display: none;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .rating-wrapper {
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .rating-wrapper .icon-star {
  margin-top: 3px;
  margin-right: 3px;
  width: 10px;
  height: 10px;
  vertical-align: top;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .rating-wrapper .rating-score {
  color: #f9a01e;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-wrapper .swiper-slide .discounted-goods-item .rating-wrapper .rating-num {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.6);
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-pagination .swiper-pagination-bullet {
  margin: 0 2px;
  width: 4px;
  height: 4px;
  opacity: 0.1;
}
.discounted-goods-wrapper .discounted-goods-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 8px;
  background: #0a59f7;
  border-radius: 8px;
  opacity: 1;
}
.discounted-goods-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.shopping-feed-wrapper {
  font-family: Arial, Helvetica, sans-serif;
}
.shopping-feed-wrapper.mirror-style .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper .tag .tag-icon {
  margin-left: 4px;
  margin-right: 0;
}
.shopping-feed-wrapper.mirror-style .shopping-feed-container .shopping-feed .shopping-feed-item .goods-price-wrapper .goods-price-new {
  margin-left: 4px;
  margin-right: 0;
}
.shopping-feed-wrapper.mirror-style .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper .icon-star {
  margin-left: 3px;
  margin-right: 0;
}
.shopping-feed-wrapper.mirror-style .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper .rating-num {
  margin-left: 0;
  margin-right: 3px;
}
.shopping-feed-wrapper.mirror-style .shopping-feed-container .btn-more .btn-more-icon {
  margin-left: 0;
  margin-right: 4px;
}
.shopping-feed-wrapper .shopping-feed-header {
  padding: 10px 12px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shopping-feed-wrapper .shopping-feed-header .text {
  width: 80%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 38px;
  font-weight: 700;
}
.shopping-feed-wrapper .shopping-feed-header .icon {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  background: red no-repeat center center / 50%;
  cursor: pointer;
}
.shopping-feed-wrapper .shopping-feed-header .icon::after {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}
.shopping-feed-wrapper .shopping-feed-container {
  position: relative;
  height: calc(100% - 48px);
  overflow: auto;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed {
  position: relative;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item {
  box-sizing: border-box;
  position: absolute;
  padding-bottom: 12px;
  width: 180px;
  overflow: hidden;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  word-break: break-all;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-img-wrapper {
  position: relative;
  height: 0;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-img-wrapper .goods-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-title {
  margin-top: 12px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 18px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper {
  padding: 0 8px 0 4px;
  display: flex;
  flex-wrap: wrap;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper .tag {
  margin-left: 4px;
  margin-top: 4px;
  padding: 0 8px;
  height: 18px;
  line-height: 18px;
  border-radius: 6px;
  font-size: 10px;
  color: #ffffff;
  font-weight: 500;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper .tag.tag-discount {
  background: #e84026;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper .tag.tag-freight {
  background: #0a59f7;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .tag-wrapper .tag .tag-icon {
  margin-top: 4px;
  margin-right: 4px;
  width: auto;
  height: 10px;
  vertical-align: top;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-price-wrapper {
  margin-top: 6px;
  padding: 0 8px;
  display: flex;
  flex-wrap: wrap;
  line-height: 22px;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-price-wrapper .goods-price-new {
  margin-right: 4px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-price-wrapper .goods-price-old {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  font-weight: 500;
  text-decoration: line-through;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 16px;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper .icon-star {
  margin-top: 3px;
  margin-right: 3px;
  width: 10px;
  height: 10px;
  vertical-align: top;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper .rating-score {
  color: #f9a01e;
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .rating-wrapper .rating-num {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.6);
}
.shopping-feed-wrapper .shopping-feed-container .shopping-feed .shopping-feed-item .goods-supplier {
  margin-top: 4px;
  padding: 0 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
.shopping-feed-wrapper .shopping-feed-container .btn-more {
  margin-top: 10px;
  display: none;
  height: 24px;
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  color: #0a59f7;
}
.shopping-feed-wrapper .shopping-feed-container .btn-more .btn-more-text {
  cursor: pointer;
}
.shopping-feed-wrapper .shopping-feed-container .btn-more .btn-more-icon {
  margin-left: 4px;
  margin-top: 5px;
  width: auto;
  height: 14px;
  object-fit: contain;
  vertical-align: top;
  cursor: pointer;
}
.shopping-feed-wrapper .shopping-feed-container .status-footer {
  margin-top: 10px;
  display: none;
  height: 24px;
  line-height: 24px;
  font-size: 12px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}
.shopping-feed-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.discounted-goods-component {
  font-family: Arial, Helvetica, sans-serif;
}
.discounted-goods-component.mirror-style .shopping-feed-container .shopping-feed .discounted-goods-item .goods-img-wrapper::before {
  left: auto;
  right: 0;
  border-radius: 0 8px 0 8px;
}
.discounted-goods-component.mirror-style .shopping-feed-container .btn-more .btn-more-icon {
  margin-left: 0;
  margin-right: 4px;
}
.discounted-goods-component.mirror-style .discounted-goods-swiper .shopping-wrapper .shopping-item .discounted-goods-item .goods-img-wrapper::before {
  left: auto;
  right: 0;
  border-radius: 0 8px 0 8px;
}
.discounted-goods-component .discounted-goods-header {
  padding: 10px 16px 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.discounted-goods-component .discounted-goods-header .text {
  width: 80%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 38px;
  font-weight: 700;
}
.discounted-goods-component .discounted-goods-header .icon {
  position: relative;
  display: none;
  width: 16px;
  height: 16px;
  background: red no-repeat center center / 50%;
  cursor: pointer;
}
.discounted-goods-component .discounted-goods-header .icon::after {
  content: '';
  position: absolute;
  top: -8px;
  bottom: -8px;
  left: -8px;
  right: -8px;
}
.discounted-goods-component .shopping-wrapper {
  height: calc(100% - 48px);
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item {
  margin: 0 5px;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-img-wrapper {
  margin-top: 16px;
  padding-top: 100%;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-img-wrapper::before {
  content: attr(data-discount);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  max-width: 100%;
  padding: 0 10px;
  height: 16px;
  font-size: 10px;
  color: #ffffff;
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
  background: #e84026;
  border-radius: 8px 0 8px 0;
  line-height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-img-wrapper.no-discount::before {
  display: none;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-img-wrapper .goods-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-tag {
  display: none;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-title {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  line-height: 16px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-price {
  margin-top: 4px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.9);
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-price .goods-price-old {
  display: none;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-price-old {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
  text-decoration: line-through;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-price-old.hidden {
  visibility: hidden;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .goods-supplier {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0;
  line-height: 14px;
  font-weight: 500;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .rating-wrapper {
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .rating-wrapper .icon-star {
  margin-top: 3px;
  margin-right: 3px;
  width: 10px;
  height: 10px;
  vertical-align: top;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .rating-wrapper .rating-score {
  color: #f9a01e;
}
.discounted-goods-component .shopping-wrapper .discounted-goods-item .rating-wrapper .rating-num {
  margin-left: 3px;
  color: rgba(0, 0, 0, 0.6);
}
.discounted-goods-component .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prize-unlock-wrapper {
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-all;
  text-align: center;
}
.prize-unlock-wrapper .prize-content-wrapper {
  position: relative;
  padding-top: 100%;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.03);
}
.prize-unlock-wrapper .prize-content-wrapper .prize-content {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.prize-unlock-wrapper .prize-content-wrapper .prize-content .prize-img-wrapper {
  margin-bottom: 2px;
  position: relative;
  width: 60%;
  padding-top: 60%;
}
.prize-unlock-wrapper .prize-content-wrapper .prize-content .prize-img-wrapper .prize-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.prize-unlock-wrapper .prize-content-wrapper .prize-content .prize-name {
  width: 100%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  letter-spacing: 0;
  font-weight: 500;
}
.prize-unlock-wrapper .prize-content-wrapper .prize-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3) no-repeat center center / 50% auto;
}
.prize-unlock-wrapper .unlock-condition {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0;
  font-weight: 500;
}
.prize-unlock-wrapper .unlock-condition .unlock-condition-icon {
  margin-right: 4px;
  width: 20px;
  height: 20px;
  object-fit: contain;
  vertical-align: top;
}
.prize-unlock-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-feed-wrapper .city-header {
  height: 48px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.hotel-feed-wrapper .city-header .swiper-slide {
  height: 48px;
  margin-right: 8px;
  width: auto;
  float: left;
}
.hotel-feed-wrapper .city-header .swiper-slide span {
  display: inline-block;
  height: 36px;
  min-width: 32px;
  line-height: 36px;
  padding: 0 16px;
  text-align: center;
  font-size: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}
.hotel-feed-wrapper .city-header .swiper-slide span.cur {
  color: #0a59f7;
  background: rgba(10, 89, 247, 0.1);
  border-color: #0a59f7;
}
.hotel-feed-wrapper .hotel-feed-container {
  position: relative;
  height: calc(100% - 48px);
  overflow: hidden;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed {
  position: relative;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item {
  width: 0;
  padding-bottom: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info,
.hotel-feed-wrapper .hotel-feed-container .hotel-title,
.hotel-feed-wrapper .hotel-feed-container .hotel-tag {
  padding: 0 12px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-title {
  display: flex;
  padding-top: 6px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
}
.hotel-feed-wrapper .hotel-feed-container .hotel-title .hotel-name {
  width: 60%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-title .hotel-price {
  width: 40%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-left: auto;
  text-align: right;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-pic {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-tag {
  padding-top: 3px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-tag .item {
  display: inline-block;
  padding: 0 6px;
  margin-right: 5px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  color: #fff;
  border-radius: 6px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-tag .item-detal {
  background: #ff0000;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-tag .item-easy {
  background: orange;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info {
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.6);
}
.hotel-feed-wrapper .hotel-feed-container .detail-info font {
  padding-left: 2px;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info .score {
  padding-right: 2px;
  color: orange;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info .score img {
  width: 10px;
  margin-right: 3px;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info .comment {
  padding-right: 2px;
}
.hotel-feed-wrapper .hotel-feed-container .detail-info .city {
  padding-right: 2px;
  color: #666;
}
.hotel-feed-wrapper .hotel-feed-container .footer-status {
  position: absolute;
  width: 100%;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .hotel-title {
  flex-flow: row-reverse;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .hotel-title .hotel-name {
  text-align: right;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .hotel-title .hotel-price {
  text-align: left;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .hotel-tag {
  text-align: right;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info {
  flex-flow: row-reverse;
  text-align: right;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info font {
  padding-left: 0;
  padding-right: 2px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info .score {
  padding-right: 0;
  padding-left: 2px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info .score img {
  margin-left: 3px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info .comment {
  padding-right: 0;
  padding-left: 2px;
}
.hotel-feed-wrapper .hotel-feed-container .hotel-feed-item-mirror .detail-info .city {
  padding-right: 0;
  padding-left: 2px;
}
.hotel-feed-wrapper .more-text {
  display: block;
  margin: 0 auto;
  text-align: center;
}

.vote-guessing-wrapper .vote-guessing-header {
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  overflow: hidden;
  line-height: 1.5;
}
.vote-guessing-wrapper .vote-guessing-header .vote-guessing-title {
  max-width: 100%;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 700;
}
.vote-guessing-wrapper .vote-guessing-header .vote-guessing-subtitle {
  max-width: 100%;
  font-size: 14px;
  color: #0a59f7;
  cursor: pointer;
}
.vote-guessing-wrapper .vote-guessing-header .vote-guessing-info {
  max-width: 100%;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.38);
}
.vote-guessing-wrapper .vote-guessing-header .vote-guessing-status {
  max-width: 100%;
  font-size: 12px;
  color: #0a59f7;
}
.vote-guessing-wrapper .vote-guessing-list {
  height: calc(100% - 70px);
  overflow: auto;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item {
  margin-top: 12px;
  padding: 12px 8px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.1);
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item:first-child {
  margin-top: 6px;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team {
  flex: 1;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-header .vote-guessing-team-icon {
  margin-right: 4px;
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 24px;
  cursor: pointer;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-header .vote-guessing-team-name-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  height: 38px;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-header .vote-guessing-team-name-wrapper .vote-guessing-team-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
  word-break: break-all;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-footer {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-footer .vote-guessing-team-btn {
  padding: 0 6px;
  width: 72px;
  height: 28px;
  line-height: 28px;
  font-size: 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  background-color: #0a59f7;
  font-family: Arial, Helvetica, sans-serif;
  cursor: pointer;
  border-radius: 28px;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-footer .vote-guessing-team-btn.disabled {
  background: rgba(10, 89, 247, 0.3);
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-footer .vote-guessing-team-btn.locked {
  background: rgba(10, 89, 247, 0.3);
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-team .vote-guessing-team-footer .vote-guessing-team-num {
  margin-left: 6px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 14px;
  font-family: Arial, Helvetica, sans-serif;
}
.vote-guessing-wrapper .vote-guessing-list .vote-guessing-item .vote-guessing-vs {
  margin: 0 18px;
  font-size: 20px;
}
.vote-guessing-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vote-result-wrapper {
  background-color: #fff;
}
.vote-result-wrapper .vote-result-table-wrapper {
  height: 100%;
  position: relative;
}
.vote-result-wrapper .vote-result-table-wrapper .thead-fixed {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
}
.vote-result-wrapper .vote-result-table-wrapper .table-scroll {
  height: 100%;
  overflow: auto;
}
.vote-result-wrapper .vote-result-table-wrapper .table-scroll thead {
  visibility: hidden;
}
.vote-result-wrapper .vote-result-table-wrapper table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}
.vote-result-wrapper .vote-result-table-wrapper thead {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.68);
}
.vote-result-wrapper .vote-result-table-wrapper tbody {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.9);
}
.vote-result-wrapper .vote-result-table-wrapper th,
.vote-result-wrapper .vote-result-table-wrapper td {
  padding: 10px 0;
}
.vote-result-wrapper .vote-result-table-wrapper .icon-guess-status {
  margin-right: 2px;
  width: 24px;
  height: 24px;
  object-fit: contain;
  vertical-align: middle;
}
.vote-result-wrapper .ell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.petal-scrolling-nav-wrap {
  overflow: hidden;
}
.petal-scrolling-nav-wrap li {
  float: left;
  width: auto;
  border-radius: 10px;
}
.petal-scrolling-nav-wrap li .nav-inner {
  display: flex;
  align-items: center;
}
.petal-scrolling-nav-wrap li .nav-inner img {
  margin-right: 8px;
}

