/*重置浏览器自带样式*/

@charset "utf-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
}

html {
  font-family: 'sans-serif', "Microsoft YaHei", "微软雅黑", "Tahoma", "Helvetica";
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  border: none;
  /* max-width: 100% !important; */
  vertical-align: middle;
}

address,
caption,
cite,
code,
dfn,
i,
em,
strong,
th,
var {
  font-weight: normal;
  font-style: normal;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  outline: none;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}

q:before,
q:after {
  content: ”;
}

abbr,
acronym {
  border: 0;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  /* color: inherit; */
  border: none;
}

* {
  box-sizing: border-box
}

:before,
:after {
  box-sizing: border-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}

input {
  outline: none;
}

button {
  outline: none;
  border: none;
  background-color: #FFFFFF;
}

input[disabled] {
  background: none;
  opacity:1;
}
textarea[disabled="disabled"]{
  opacity: 1;
}

a {
  color: #3f3f3f !important;
  text-decoration: none;
  outline: none;
}

a:visited {
  color: #3f3f3f !important;
}

textarea {
  resize: none;
  border: none;
  outline: none;
}

i {
  vertical-align: middle;
}

img {
  border: none;
}

/* 
* 全局公用class
*/

/* 布局 */
.dis-inblock {
	display: inline-block !important;
}

.dis-flex {
	display: flex !important;
}

.dis-grid {
	display: grid !important;
}

.flex-box {
	flex: 1;
}

.flex-wrap {
	flex-wrap: wrap;
}

.flex-dir-row {
	flex-direction: row;
}

.flex-dir-col {
	flex-direction: column;
}

.flex-x-center {
	justify-content: center;
}

.flex-x-between {
	justify-content: space-between;
}

.flex-x-around {
	justify-content: space-around;
}

.flex-x-end {
	justify-content: flex-end;
}

.flex-y-center {
	align-items: center;
}

.flex-y-end {
	align-items: flex-end;
}

.flex-y-line {
	align-items: baseline;
}

/* 对齐方式 */
.t-l {
	text-align: left;
}

.t-c {
	text-align: center;
}

.t-r {
	text-align: right;
}

.t-line {
	text-decoration: underline;
}

.t-through {
	text-decoration: line-through;
}

.p-a {
	position: absolute;
}

.p-r {
	position: relative;
}


/* 字体粗细 */
.f-w {
	font-weight: 600;
}
.f-5 {
	font-weight: 500;
}
.f-b {
	font-weight: bold;
}

.f-n {
	font-weight: normal;
}

/* 字体颜色 */
.col-f {
	color: #fff;
}

.col-r {
	color: #ec1314;
}


.col-1 {
	color: #111;
}

.col-3 {
	color: #333;
}

.col-6 {
	color: #666;
}

.col-9 {
	color: #999;
}
.col-c {
	color: #ccc;
}
.col-zhu{
	color: #F22536;
}

/* 背景色 */
.b-f {
	background: #ffffff;
}

/* 溢出隐藏 */
.onelist-hidden {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.twolist-hidden {
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.threelist-hidden {
	display: -webkit-box;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}


/* 无样式button (用于伪submit) */
.btn-normal {
	display: block;
	margin: 0;
	padding: 0;
	line-height: normal;
	background: none;
	border-radius: 0;
	box-shadow: none;
	border: none;
	font-size: unset;
	text-align: unset;
	overflow: visible;
}

.btn-normal:after {
	border: none;
}

.btn-normal.button-hover {
	color: inherit;
}


.tab-container{
	padding-bottom: 108rpx !important;
	padding-bottom: calc(108rpx + env(safe-area-inset-bottom)) !important;
}

.iphonex-bottom {
	padding-bottom: 20rpx;
}

.p-lr-20{
	padding: 0 20rpx;
}


.header-footer{
    margin: 0 auto 0;
    width: 6.2rem;
    height: 1.4rem;
    z-index: 11;
    position: absolute;
    top: .3rem;
    left: .3rem;
    padding: .33rem .3rem;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    overflow: hidden;
  }
  .rotation-box{
    height: 1.1rem;
    overflow: hidden;
    font-size: .44rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FFFFFF;
    line-height: .34rem;
    position: relative;
  }
  .rotation{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  
}
.rotation-child{
    height: 1.1rem;
}
.rotation_item{
  display: flex;
  justify-content: flex-start;
  font-size: .36rem;
  color: #fff;
}
.rotation_text{
    margin-left: .4rem;
}
.rotation_item_price{
  color: #F7E38E;
  font-size: .36rem;
}
  .header{
    background: #F5F7FA;
    position: relative;
    overflow: hidden;
  }
  .header-bg{
      width: 100%;
      height: auto;
      position: relative;
      display: block;
      z-index: 0;
  }
  .rulebox{
    position: absolute;
    right: 0;
    top: .6rem;
    color: #fff;
    z-index: 98;
  }
  .rulebtn{
    margin-bottom: 0.2rem;
    max-width: 2rem;
    max-height: 2rem;
    display: flex;
    justify-content: flex-end;
  }
  .rulebtn>img{
      max-width: 2rem;
      max-height: 2rem;
      width: .55rem;
      display: block;
  }
  .custombtn{
    margin-top: .5rem;
    max-width: 2rem;
    max-height: 2rem;
    display: flex;
    justify-content: flex-end;
  }
  .custombtn>img{
      max-width: 2rem;
      max-height: 2rem;
      width: .55rem;
      display: block;
  }
  .body{
      background-color: #fff;
      overflow: hidden;
  }
  .labels{
    padding: 0 .24rem;
    margin: .24rem 0;
    display: flex;
    align-items: center;
  }
  .adTag{
    height: .48rem;
    width: auto;
    margin-left: .12rem;
  }
  .adTag:first-child{
      margin-left: 0;
  }
  .box-title{
    font-size: .4rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: bold;
    color: #1A1A1A;
    line-height: .4rem;
    padding: 0 .24rem;
    display:-webkit-box; 
    -webkit-box-orient:vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    word-break: break-all;
  }
  .welfare{
    margin-top: .24rem;
    padding: 0 .24rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .box-price-txt{
    font-size:.34rem ;
    color:#ED433A ;  
  }
  .box-price{
      font-size:.44rem ;
      font-family: DIN;
      font-weight: bold;
      color:#ED433A ;
      margin-left: .1rem;
  }
  .box-price-hx{
    text-decoration: line-through;
    font-size: 12px;
    color: #D6D6D6;
  }
  .timebox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    align-self: center;
  }
  .priceTag1{
    height: .72rem;
    width: auto;
    margin-right: .1rem;
  }
  .welfare-content-right{
    font-size: .34rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #FF3D23;
    line-height: .34rem;
    white-space: nowrap;
    display: flex;
    align-items: center;
    padding-top: .1rem;
  }
  .welfare-time{
    width: .56rem;
    height: .56rem;
    background: #FF3D23;
    border-radius: .04rem;
    text-align: center;
    font-size: .36rem;
    font-family: DIN;
    font-weight: bold;
    color: #FFFFFF;
    line-height: .56rem;
    margin: 0 .08rem;
  }
  .welfare-time:first-child{
      margin-left: .12rem;
  }
  .welfare-time:last-child{
      margin-right: 0;
  }
  .phone-box{
    background: #fff;
    padding: .24rem .24rem 0rem;
  }
  .phone-cell{
    display: flex;
    justify-content: flex-start;
    align-self: center;
    border: 1px solid #E6E6E6;
    padding: 0.4rem;
    border-radius: 4px;
}
.phone-cell-label{
    font-size: .42rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    color: #1A1A1A;
    line-height: .44rem;
    margin-right: .2em;
}
.phone-cell-content{
    font-size: .42rem;
    background: transparent;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #333;
    width: 3rem;
    height: .44rem;
    text-align: left;
}
.phone-cell-content::-moz-placeholder{
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #D6D6D6;
    font-size: .42rem;
    text-align: rileftght;
}
.phone-cell-content::placeholder{
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #D6D6D6;
    font-size: .42rem;
    text-align: rileftght;
}
.limit-time{
    position: relative;
    overflow: hidden;
}
.limit-time-bg{
    position: relative;
    width: 100%;
    height: auto;
    z-index: 0;
    display: block;
}
.limit-flex{
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 0 .68rem 0 .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.limit-time-label{
    display: flex;
    align-items: flex-end;
    font-size: .34rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    line-height: .34rem;
    position: relative;
    z-index: 1;
}
.limit-time-unit{
    font-size: .48rem;
    font-family: DIN;
    font-weight: bold;
    color: #FFFFFF;
    line-height: .38rem;
}
.limit-time-number{
    margin-left: .08rem;
    margin-right: .12rem;
    font-size: .6rem;
    font-family: DIN;
    font-weight: bold;
    color: #FFFFFF;
    line-height: .5rem;
}
.limit-time-content{
    position: relative;
    z-index: 1;
    width: 2.42rem;
    height: auto;
    animation: scale .8s infinite;
}
.subTitleImage{
    width: 100%;
    height: auto;
    display: block;
}
.comment {
    margin-top: 0.2rem;
    width: 100%;
    display: block;
    height: auto;
}
.user_good{
    background-color: #fff;
    padding: .24rem;
    margin-top: .2rem;
}
.user_goodbox{
    margin-top: 0.28rem;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;  
    display: flex;
    justify-content: flex-start;
}
.qualifications-title,.user_good_title{
    font-size: .42rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: bold;
    color: #1A1A1A;
    line-height: .4rem;
}
.user_good_img{
    width: 2.5rem ;
    height: 3.0rem;
    margin-right: .2rem;
    border-radius: 4px;
}
.qualifications{
    margin-top: .2rem;
    padding: .24rem .24rem .4rem;
    background: #fff;
}
.rate-list{
    display: flex;
    align-items: center;
    margin-top: .24rem;
}
.rate-item{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .34rem;
    font-family: DIN;
    font-weight: bold;
    color: #999999;
    line-height: .24rem;
}
.rate-item>img{
    width: .64rem;
    margin-right: .04rem;
}
.qualifications-goods-list{
    margin-top: .28rem;
    white-space: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    width: 100%;
    font-size: 0;
}
.qualifications-goods-list::-webkit-scrollbar{
    display: none;
}
.qualifications-goodsItem{
    margin-left: .16rem;
    background: url('https://xiyou.sc.diyixin.com/mall/energybox/TemplateV/TemplateSerial3/goods-bg.png') no-repeat;
    background-size: 100% 100%;
    width: 1.84rem;
    height: 2.16rem;
    display: inline-block;
}
.qualifications-goodsImage{
    position: relative;
    height: 1.3rem;
}
.qualifications-goodsImage>img{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 1.24rem;
    max-height: 1.24rem;
    transform: translate(-50%, -50%);
}
.qualifications-goodsName{
    padding: 0 .2rem;
    text-align: center;
    margin-top: -.06rem;
    line-height: .32rem;
    font-size: .32rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    color: #1B1B1B;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.qualifications-goodsPrice{
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    color: #EC5D2A;
}
.qualifications-goodsUnit{
    font-size: .26rem;
    transform: translateY(-.02rem);
}
.qualifications-goodsSalePrice{
    font-size: .32rem;
}
.footer-rule-content{
    font-size: .34rem;
    color: #999999;
    padding: .24rem .24rem 0;
}
.footer-rule-content a{
    color: #4E7EFF;
    font-size: .34rem;
}
.downLoad-app{
    margin: .4rem auto 0;
    width: 5.86rem;
    height: 1rem;
    background: rgba(255, 199, 59, .2);
    color: #844700;
    border-radius: .52rem;
    font-size: .42rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .24rem;
    box-sizing: content-box;
}
.footerInfo{
    text-align: center;
    color: #999;
}
.company{
    text-align: center;
    font-size: .34rem;
    margin-bottom: .06rem;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
    color: #999999;
    padding-bottom: 2rem;
}
.footer{
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
    width: 100%;
    max-width: 750px;
    height: 1.6rem;
    z-index: 10;
}
.footer-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: fill;
       object-fit: fill;
    pointer-events: none;
    z-index: 0;
}
.confirm-cell{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    height: 100%;
    box-sizing: border-box;
}
.confirm-label{
    margin-left: 0.4rem;
    display: flex;
    align-items: flex-end;
    font-size: .42rem;
    line-height: 1.6rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
    color: #fff;
}
.confirm-unit{
    font-size: .46rem;
    font-family: DIN;
    font-weight: bold;
    margin-left: .16rem;
    transform: translateY(.04rem);
}
.confirm-number{
    margin-left: .08rem;
    font-size: .7rem;
    font-family: DIN;
    font-weight: bold;
}
.confirm-btn{
    position: relative;
    width: 4.08rem;
    height: 1.25rem;
    margin-right: 0.24rem;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: .42rem;
    font-family: PingFang SC-Medium, PingFang SC;
    font-weight: 500;
}
.subBtn{
    position: relative;
    z-index: 1;
    animation: scale .8s ease-in-out infinite;
    transform-origin: center center;
    white-space: nowrap;
    line-height: 1.1;
}
.confirm-expire{
    position: relative;
    z-index: 1;
    margin-top: 0.06rem;
    font-size: .24rem;
    line-height: .28rem;
    color: #FFE6A6;
    white-space: nowrap;
    font-family: PingFang SC-Regular, PingFang SC;
    font-weight: 400;
}
.activity-mask{
    width: 100%;
    height: 100%;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    left: 0;
    top: 0;
    z-index: 999;
    font-size: 0.38rem;
}
.activity-rule{
    position: absolute;
    width: 7.9rem;
    height: 10.2rem;
    left: 50%;
    top: 50%;
    z-index: 1000;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #666;
    word-wrap: break-word;
    border-radius: 0.3rem;
    padding: 0.4rem 0.36rem 0.6rem 0.36rem;
    overflow: hidden;
}
.activity-rule h3{
    text-align: center;
    font-weight: bold;
    padding-bottom: 0.32rem;
    font-size: 0.5rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #333333;
}
.rule-content{
    height: 7.02rem;
    overflow-y: scroll;
    font-size: 0.38rem;
    font-family: PingFang SC;
    font-weight: 400;
    line-height: 0.4rem;
    white-space: pre-wrap;
}
.rule-content::-webkit-scrollbar{
    display: none;
}
.hideRule-image{
    background: url('https://xiyou.sc.diyixin.com/mall/energybox/TemplateV/TemplateSerial3/button@2x.png') no-repeat;
    background-size: 100% 100%;
    margin: 0.34rem auto 0 auto;
    width: 5.18rem;
    height: 0.96rem;
    line-height: 0.96rem;
    font-size: 0.42rem;
    font-family: PingFang SC;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
}
@keyframes scale{
    0% {transform: scale(0.92);}
    50% {transform: scale(1.08);}
    100% {transform: scale(0.92);}
}
#app {
  width: 100%;
  height: 100%;
}

.pay-loading-mask[data-v-26eed815] {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-loading-box[data-v-26eed815] {
  min-width: 180px;
  padding: 24px 28px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.78);
  text-align: center;
}
.pay-loading-text[data-v-26eed815] {
  margin: 14px 0 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}
.pay-loading-sub[data-v-26eed815] {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
@keyframes scaleAnimate-26eed815 {
100% {
    transform: scale(1.05);
}
}
@keyframes couponScaleAnimate-26eed815 {
100% {
    transform: scale(1.1);
}
}
@keyframes subumitScale-26eed815 {
0% {
    transform: scale(0.92);
}
50% {
    transform: scale(1.08);
}
100% {
    transform: scale(0.92);
}
}
.rulebox[data-v-26eed815] {
  top: 1rem;
}
.imgBox[data-v-26eed815] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.getPaymentClass[data-v-26eed815] {
  height: 1.24rem;
  line-height: 1.24rem;
  background: #e74f3f;
  border-radius: 0.72rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.67rem;
  letter-spacing: 2px;
  margin-bottom: 0.48rem;
  animation: scaleAnimate-26eed815 0.8s linear alternate infinite;
}
.input-outer[data-v-26eed815] {
  width: 100%;
  height: 1.28rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding: 0 15px;
  font-size: 18px;
  margin-bottom: 12px;
  border: 1px solid #E6E6E6;
  border-radius: 4px;
  margin: 0.32rem 0;
  font-size: 14px;
}
.input-outer .title[data-v-26eed815] {
  width: 3.8rem;
  font-size: 16px;
  margin-right: 0.26rem;
}
.radio[data-v-26eed815] {
  margin-bottom: 0.48rem;
  font-size: 0.34rem;
}
.popup[data-v-26eed815] .van-popup {
  background: rgba(0, 0, 0, 0) !important;
  width: 100%;
  padding: 1.07rem 0;
}
.popup .popup_box[data-v-26eed815] {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.popup .popup_box .bg[data-v-26eed815] {
  width: 5.23rem;
}
.popup .popup_box .bg1[data-v-26eed815] {
  width: 7.29rem;
}
.popup .popup_box .btn[data-v-26eed815] {
  width: 7.86rem;
  margin-top: 0.43rem;
  animation: couponScaleAnimate-26eed815 0.4s linear alternate infinite;
}
.popup .popup_box .close[data-v-26eed815] {
  position: absolute;
  top: 0;
  right: 0;
}
[data-v-26eed815] .van-cell {
  padding: 0;
}
.order_button[data-v-26eed815] {
  position: relative;
}
.order_button img[data-v-26eed815] {
  width: 100%;
  display: block;
}
.order_button .order_button_text[data-v-26eed815] {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0%, -50%);
  color: #fff;
  z-index: 1;
}
.order_button .order_button_text span[data-v-26eed815] {
  font-size: 0.625rem;
}
.order_button .order_button_click[data-v-26eed815] {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  position: absolute;
  top: 50%;
  right: 6.5%;
  transform: translateY(-50%);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.425rem;
  z-index: 1;
  white-space: nowrap;
}
.order_button .order_button_click-text[data-v-26eed815] {
  display: inline-block;
  animation: subumitScale-26eed815 0.8s ease-in-out infinite;
  transform-origin: center center;
}
/* 提交按钮样式 */
.submit-btn[data-v-26eed815] {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  outline: none;
  width: 100%;
}
.submit-btn[data-v-26eed815]:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}
/* 弹出层���罩 */
.popup-overlay[data-v-26eed815] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn-26eed815 0.3s ease;
}
/* 弹出层内容 */
.popup-content[data-v-26eed815] {
  background: white;
  padding: 20px 20px;
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: slide-up-26eed815 0.3s ease-out;
  box-sizing: border-box;
}
@keyframes fadeIn-26eed815 {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes slide-up-26eed815 {
from {
    transform: translateY(100%);
}
to {
    transform: translateY(0);
}
}
h4[data-v-26eed815] {
  margin-top: 0;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  text-align: center;
  margin-bottom: 15px;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 7px;
}
/* 表单组样式 */
.form-group[data-v-26eed815] {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.form-group label[data-v-26eed815] {
  margin-bottom: 0;
  font-size: 16px;
  color: #555;
  flex: 0 0 auto;
  /* 不允许label收缩，确保文字不会断行 */
  margin-right: 10px;
  /* 在label和input之间添加一些间隔 */
}
.form-group input[data-v-26eed815] {
  flex: 1;
  /* 让input或select元素填充剩余空间 */
  padding: 12px;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  /* 移除四周的边框 */
  border-bottom: 1px solid #ddd;
  /* 只显示底部边框 */
  background-color: transparent;
  /* 移除背景色 */
  color: #333;
}
.form-group select[data-v-26eed815] {
  width: 100%;
  padding: 12px;
  box-sizing: border-box;
  font-size: 14px;
  border: none;
  /* 移除四周的边框 */
  border-bottom: 1px solid #ddd;
  /* 只显示底部边框 */
  background-color: #f9f9f9;
  background-color: transparent;
  /* 移除背景色 */
  color: #333;
}
.form-group input[data-v-26eed815]::-moz-placeholder, .form-group select[data-v-26eed815]::-moz-placeholder {
  color: #aaa;
}
.form-group input[data-v-26eed815]::placeholder,
.form-group select[data-v-26eed815]::placeholder {
  color: #aaa;
}
.form-group input[data-v-26eed815]:focus,
.form-group select[data-v-26eed815]:focus {
  box-shadow: 0 2px 5px rgba(76, 175, 80, 0.2);
  /* 仅在底部添加阴影 */
  outline: none;
}
/* 调整整个支付区的容器，使其固定在底部 */
.form-actions[data-v-26eed815] {
  padding: 10px;
  background: #f5f5f5;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-top: 20px;
}
.confirms-btn[data-v-26eed815],
.cancel-btn[data-v-26eed815] {
  flex: 1;
  /* 让按钮均匀占据左右空间 */
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  margin: 0 10px;
  /* 设置按钮之���的间距 */
}
.confirms-btn[data-v-26eed815] {
  background-color: #4CAF50;
  color: white;
}
.cancel-btn[data-v-26eed815] {
  background-color: #007bff;
  color: white;
}
.discount-tips[data-v-26eed815] {
  font-size: 14px;
  color: #d32f2f;
  margin-left: 5px;
}
.breathing[data-v-26eed815] {
  animation: breathing-26eed815 2s ease-in-out infinite;
}
/* 突出的数字样式 */
.highlight[data-v-26eed815] {
  color: #d32f2f;
  font-size: 18px;
  font-weight: bold;
}
@keyframes breathing-26eed815 {
0%,
  100% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
}
.payment-options-list[data-v-26eed815] {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-bottom: 40px;
}
.payment-options-list li[data-v-26eed815] {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  justify-content: space-between;
}
.payment-options-list li[data-v-26eed815]:hover {
  background-color: #f1f1f1;
}
.payment-icon[data-v-26eed815] {
  width: 36px;
  height: 36px;
}
.payment-radio[data-v-26eed815] {
  margin-left: auto;
  order: 2;
}
.payment-label-wrapper[data-v-26eed815] {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.payment-method[data-v-26eed815] {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.form-submit[data-v-26eed815] {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 10px;
}
.pay-now-button[data-v-26eed815] {
  width: 100%;
  padding: 15px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}
.pay-now-button[data-v-26eed815]:hover {
  background-color: #45a049;
}
.floating-box[data-v-26eed815] {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: 99%;
  max-width: 500px;
}
.floating-box-content[data-v-26eed815] {
  position: relative;
  background: rgba(33, 33, 33, 0.95);
  border-radius: 12px;
  padding: 10px 12px;
  /* 增加上下内边距 */
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.menu-items[data-v-26eed815] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 改回space-between */
  height: 52px;
  /* 增加整体高度 */
  width: 100%;
}
.menu-group[data-v-26eed815] {
  /* 新增样式 */
  display: flex;
  gap: 10px;
  /* 最小间距 */
  margin-right: 8px;
  /* 与购买按钮的间距 */
}
.menu-item[data-v-26eed815] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  padding: 0 2px;
  /* 更小的内边距 */
  min-width: 40px;
  /* 更小的最小宽度 */
}
.menu-icon[data-v-26eed815] {
  font-size: 20px;
  /* 稍微增加图标和文字的间距 */
  margin-bottom: 3px;
  /* 稍微增加图标和文字的间距 */
}
.menu-text[data-v-26eed815] {
  font-size: 11px;
  /* 稍微减小字体 */
  white-space: nowrap;
  opacity: 0.9;
}
.buy-now[data-v-26eed815] {
  background: #ff4d4f;
  padding: 8px 15px;
  /* 增加按钮内边距 */
  min-width: 100px;
  max-width: 35%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(255, 77, 79, 0.3);
}
.buy-content[data-v-26eed815] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  /* 增加文字间距 */
}
.buy-text[data-v-26eed815] {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
.countdown[data-v-26eed815] {
  color: rgba(255, 255, 255, 0.9);
  font-size: 10px;
  font-weight: normal;
  white-space: nowrap;
}
.close-floating-box[data-v-26eed815] {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  /* 半透明白色背景 */
  border: none;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  /* 毛玻璃效果 */
}
/* 保持原有的淡入淡出动画 */
.fade-enter-active[data-v-26eed815],
.fade-leave-active[data-v-26eed815] {
  transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-26eed815],
.fade-leave-to[data-v-26eed815] {
  opacity: 0;
}
.above-footer[data-v-26eed815] {
  position: relative;
  /* 滚动到页面底部时，悬浮框定位改为绝对定位 */
  bottom: 20px;
  /* 让悬浮框位于 footer 上方，根据需要调整 */
}
.add-button[data-v-26eed815] {
  padding: 8px 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-right: 15px;
  flex-shrink: 0;
}
.shortcut-wrap__bar2Img[data-v-26eed815] {
  width: 25px;
  /* 设置图片宽度 */
  height: 25px;
  /* 设置图片高度 */
}
.centered-text[data-v-26eed815] {
  display: flex;
  flex-direction: column;
  /* 水平排列 */
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}
.toolbar-step[data-v-26eed815] {
  display: flex;
  align-items: center;
  /* 让图片和文字垂直居中对齐 */
}
.add-button[data-v-26eed815]:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}
.add-button[data-v-26eed815]:active {
  transform: translateY(1px);
}
/* 添加浮动框出现的动画效果 */
@keyframes fadeInUp-26eed815 {
from {
    transform: translateY(20px) translateX(-50%);
    opacity: 0;
}
to {
    transform: translateY(0) translateX(-50%);
    opacity: 1;
}
}
/* 针对手机端的媒体查询 */
@media (max-width: 500px) {
.floating-box[data-v-26eed815] {
    padding: 10px;
    /* 缩小内边距 */
    bottom: 10px;
    /* 靠近屏幕底部 */
}
.floating-box p[data-v-26eed815] {
    font-size: 14px;
    /* 调整文本大小，适配小屏幕 */
}
.close-floating-box[data-v-26eed815] {
    width: 30px;
    /* 调整按钮大小 */
    height: 30px;
    font-size: 16px;
    /* 缩小字体 */
}
.add-button[data-v-26eed815] {
    margin-right: 10px;
    font-size: 14px;
}
}
.area-selectors[data-v-26eed815] {
  display: flex;
  gap: 10px;
}
.area-selectors select[data-v-26eed815] {
  flex: 1;
}
.tips[data-v-26eed815] {
  color: red;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
}
/* 增加产品缩略图和产品价格的样式 */
.product-card[data-v-26eed815] {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
  transition: transform 0.2s ease-in-out;
}
.product-card[data-v-26eed815]:hover {
  transform: translateY(-5px);
}
.product-thumbnail[data-v-26eed815] {
  width: 80px;
  /* 缩略图宽度 */
  height: 80px;
  /* 缩略图高度，保持宽高一致 */
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 15px;
}
.product-details[data-v-26eed815] {
  flex: 1;
}
.product-name[data-v-26eed815] {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: #333;
}
.product-price[data-v-26eed815] {
  font-size: 18px;
  font-weight: bold;
  color: #e74c3c;
  margin: 7px 0 0 0;
}
.product-price .original-price[data-v-26eed815] {
  text-decoration: line-through;
  color: #999;
}
.product-price .discounted-price[data-v-26eed815] {
  color: #e74c3c;
  font-weight: bold;
  font-size: 18px;
}
.animated-price[data-v-26eed815] {
  animation: pulse-26eed815 2s infinite;
}
/* 呼吸效果动画 */
@keyframes pulse-26eed815 {
0% {
    transform: scale(1);
    color: #e74c3c;
}
50% {
    transform: scale(1.1);
    color: #c0392b;
}
100% {
    transform: scale(1);
    color: #e74c3c;
}
}
.loader[data-v-26eed815] {
  width: 100%;
  /* Set appropriate size */
  height: 230px;
  background-color: #ccc;
  /* Placeholder color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
}
.confirm-dialog-overlay[data-v-26eed815] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.confirm-dialog[data-v-26eed815] {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.confirm-dialog p[data-v-26eed815] {
  margin: 0 0 20px;
  font-size: 18px;
  color: #333;
}
.button-group[data-v-26eed815] {
  display: flex;
  justify-content: space-between;
}
.confirm-button[data-v-26eed815],
.cancel-button[data-v-26eed815] {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  flex: 1;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}
.confirm-button[data-v-26eed815] {
  background-color: #4CAF50;
  color: white;
}
.confirm-button[data-v-26eed815]:hover {
  background-color: #45a049;
}
.cancel-button[data-v-26eed815] {
  background-color: #f44336;
  color: white;
}
.cancel-button[data-v-26eed815]:hover {
  background-color: #e53935;
}
.fade-enter-active[data-v-26eed815],
.fade-leave-active[data-v-26eed815] {
  transition: opacity 0.5s;
}
.fade-enter[data-v-26eed815],
.fade-leave-to[data-v-26eed815] {
  opacity: 0;
}
.discount-popup-overlay[data-v-26eed815] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.discount-popup-content[data-v-26eed815] {
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  position: relative;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.gift-top[data-v-26eed815] {
  position: relative;
  top: -20px;
}
.gift-bow[data-v-26eed815] {
  width: 60px;
  /* ���整蝴蝶结图片的大小 */
  display: block;
  margin: 0 auto;
}
.gift-body[data-v-26eed815] {
  background-color: #f4c2c2;
  /* 礼物盒子的颜色 */
  padding: 20px;
  border-radius: 15px;
  margin-top: -10px;
  /* 让礼物盒子的主体和头部重叠 */
}
.discount-image[data-v-26eed815] {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 10px;
  animation: breathing-26eed815 2s infinite ease-in-out;
  /* 呼吸动画 */
}
/* 定义呼吸动画 */
@keyframes breathing-26eed815 {
0%,
  100% {
    transform: scale(1);
    /* 初始和结束状态 */
}
50% {
    transform: scale(1.05);
    /* 中间状态，稍微放大 */
}
}
.redeem-button[data-v-26eed815] {
  padding: 15px 30px;
  background: linear-gradient(45deg, #FF5722, #FF9800);
  /* 渐变背景颜色 */
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* 增加阴影 */
}
.redeem-button[data-v-26eed815]:hover {
  background-color: #FF7043;
  /* 鼠标悬停时的背景色 */
  transform: translateY(-3px);
  /* 鼠标悬停时的轻微上移效果 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  /* 鼠标悬停时增���阴影 */
}
.redeem-button[data-v-26eed815]:active {
  transform: translateY(1px);
  /* 点击时稍微下移 */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* 点击时减少阴影 */
}
/* 按钮初始和动画效果 */
.redeem-button[data-v-26eed815] {
  animation: pulse-26eed815 1.5s infinite;
}
/* 定义动画 */
@keyframes pulse-26eed815 {
0%,
  100% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
    /* 轻微放大 */
}
}
.close-button[data-v-26eed815] {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
/* 响应式设计 */
@media (max-width: 500px) {
.popup-content[data-v-26eed815] {
    width: 100%;
    border-radius: 20px 20px 0 0;
}
.content[data-v-26eed815] {
    padding-bottom: 250px;
    /* 根据键盘高度调整 */
}
.form-content[data-v-26eed815] {
    padding-bottom: 300px;
}
.payment-icon[data-v-26eed815] {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}
.submit-btn[data-v-26eed815] {
    width: 100%;
}
.payment-options-list li[data-v-26eed815] {
    flex-direction: column;
    align-items: flex-start;
}
.confirms-btn[data-v-26eed815],
  .cancel-btn[data-v-26eed815] {
    padding: 8px 12px;
    /* 按钮内边���进一步缩小，��保在小屏幕上紧凑 */
    font-size: 18px;
    /* 字体进一步缩小，适合移动设备 */
}
}
.tips-container[data-v-26eed815] {
  background-color: #f8f9fa;
  /* 更柔和的背景色 */
  border: 1px solid #e9ecef;
  /* 淡化边框 */
  border-radius: 8px;
  padding: 12px 16px;
  margin: 10px 0;
}
.tips-header[data-v-26eed815] {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #6c757d;
  /* 更柔和的文字颜色 */
  font-size: 14px;
}
.warning-icon[data-v-26eed815] {
  font-style: normal;
  opacity: 0.8;
  /* 降低图标透明度 */
}
.tips[data-v-26eed815] {
  font-size: 13px;
  line-height: 1.5;
  color: #495057;
  /* 正文使用柔和的深灰色 */
  margin: 0;
}
.highlight-text[data-v-26eed815] {
  color: #6c757d;
  /* 使用柔和的强调色 */
  font-weight: 500;
}
.warning-text[data-v-26eed815] {
  color: #6c757d;
  /* 使用相同的柔和色调 */
  font-weight: 500;
}


.box-title[data-v-26eed815] {
line-height: 1.5;  /* 增加行距 */
}
.title-tag[data-v-26eed815] {
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
}
.hot[data-v-26eed815] {
background: #ff4d4f;
color: white;
margin-right: 8px;
}
.new[data-v-26eed815] {
background: #333;
color: white;
margin-right: 1px;
}
.rank-badge[data-v-26eed815] {
margin: 10px 15px;
display: flex;
align-items: center;
padding: 8px 12px;
border-radius: 5rpx;
background: rgba(255, 77, 79, 0.06);
}
.rank-left[data-v-26eed815] {
position: relative;
margin-right: 12px;
}
.rank-crown[data-v-26eed815] {
font-size: 18px;
animation: floating-26eed815 2s ease-in-out infinite;
}
.rank-num[data-v-26eed815] {
position: absolute;
bottom: -2px;
right: -6px;
background: #ff4d4f;
color: #fff;
font-size: 12px;
width: 14px;
height: 14px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
border-radius: 2px;  /* 数字添加小圆角 */
}
.rank-right[data-v-26eed815] {
display: flex;
align-items: center;
}
.rank-text[data-v-26eed815] {
display: flex;
align-items: center;
gap: 8px;
}
.rank-label[data-v-26eed815] {
background: #ff4d4f;
padding: 3px 10px;
font-size: 13px;
font-weight: bold;
color: #fff;
border: 1px solid #ff4d4f;
border-radius: 3px;  /* 标签添加圆角 */
}
.rank-label-sub[data-v-26eed815] {
padding: 3px 10px;
font-size: 12px;
color: #ff4d4f;
background: #fff;
border: 1px solid #ff4d4f;
border-radius: 3px;  /* ��签添加圆角 */
}
@keyframes floating-26eed815 {
0%, 100% { transform: translateY(0);
}
50% { transform: translateY(-2px);
}
}
.shine[data-v-26eed815] {
animation: shine-26eed815 3s linear infinite;
background-size: 200% auto;
background-image: linear-gradient(90deg, 
  #ff4d4f 0%,
  #ff7875 50%,
  #ff4d4f 100%
);
}
@keyframes shine-26eed815 {
to {
  background-position: 200% center;
}
}


.floating-menu[data-v-26eed815] {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
background: rgba(0, 0, 0, 0.8);
border-radius: 25px;
padding: 8px 20px;
z-index: 999;
}
.menu-items[data-v-26eed815] {
display: flex;
align-items: center;
gap: 20px;
height: 34px;
}
.menu-item[data-v-26eed815] {
display: flex;
align-items: center;
color: #fff;
cursor: pointer;
}
.menu-icon[data-v-26eed815] {
font-size: 18px;
margin-right: 4px;
}
.menu-text[data-v-26eed815] {
font-size: 14px;
}
.buy-now[data-v-26eed815] {
background: #ff4d4f;
padding: 6px 15px;
border-radius: 15px;
}
.buy-text[data-v-26eed815] {
font-size: 14px;
font-weight: bold;
}

/* 淡入淡出动画 */
.fade-enter-active[data-v-26eed815],
.fade-leave-active[data-v-26eed815] {
transition: opacity 0.3s ease;
}
.fade-enter-from[data-v-26eed815],
.fade-leave-to[data-v-26eed815] {
opacity: 0;
}


.popup-overlay[data-v-26eed815] {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: flex-end; /* 改为底部对齐 */
justify-content: center;
z-index: 1000;
}
.popup-content[data-v-26eed815] {
background: #fff;
width: 100%; /* 改为100%宽度 */
height: 98vh; /* 设置高度为90vh */
border-radius: 20px 20px 0 0; /* 只设置顶部圆角 */
padding: 20px;
overflow-y: auto;
position: relative;
animation: slideUp-26eed815 0.3s ease-out;
}

/* 添加一个小横条作为视觉提示 */
.popup-content[data-v-26eed815]::before {
content: '';
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 4px;
background: #e8e8e8;
border-radius: 2px;
}
.product-card[data-v-26eed815] {
display: flex;
align-items: center;
background: #f8f8f8;
padding: 16px;
border-radius: 12px;
margin: 15px 0 20px;
}
.product-thumbnail[data-v-26eed815] {
width: 90px;
height: 90px;
-o-object-fit: cover;
   object-fit: cover;
border-radius: 8px;
margin-right: 15px;
}
.product-details[data-v-26eed815] {
flex: 1;
}
.product-name[data-v-26eed815] {
font-size: 16px;
font-weight: 600;
color: #333;
margin-bottom: 8px;
}
.product-price[data-v-26eed815] {
color: #ff4d4f;
font-size: 20px;
font-weight: bold;
}

/* 表单容器添加内边距 */
form[data-v-26eed815] {
padding: 0 5px;
}
.form-group[data-v-26eed815] {
margin-bottom: 20px;
}
.form-group label[data-v-26eed815] {
display: block;
color: #333;
font-size: 15px;
margin-bottom: 8px;
font-weight: 500;
}
.form-group input[data-v-26eed815],
.address[data-v-26eed815] {
width: 100%;
padding: 12px 15px;
border: 1px solid #e8e8e8;
border-radius: 8px;
font-size: 15px;
transition: all 0.3s;
background: #f9f9f9;
}
.form-group input[data-v-26eed815]:focus {
border-color: #ff4d4f;
background: #fff;
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.1);
outline: none;
}
.payment-options-list[data-v-26eed815] {
list-style: none;
padding: 0;
margin: 0 0 25px 0;
}
.payment-label-wrapper[data-v-26eed815] {
display: flex;
align-items: center;
padding: 15px;
border: 1px solid #e8e8e8;
border-radius: 12px;
margin-bottom: 12px;
cursor: pointer;
transition: all 0.3s;
background: #f9f9f9;
}
.payment-label-wrapper[data-v-26eed815]:hover {
border-color: #ff4d4f;
background: #fff1f0;
}
.payment-icon[data-v-26eed815] {
width: 28px;
height: 28px;
margin-right: 12px;
}
.submit-btn[data-v-26eed815] {
width: 100%;
background: #ff4d4f;
color: white;
border: none;
padding: 16px;
border-radius: 6px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
margin-top: 10px;
}
.submit-btn[data-v-26eed815]:hover {
background: #ff7875;
}

/* 滑入动画 */
@keyframes slideUp-26eed815 {
from {
  transform: translateY(100%);
}
to {
  transform: translateY(0);
}
}

/* 适配底部安全区域 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
.popup-content[data-v-26eed815] {
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
}
.input-container[data-v-26eed815] {
display: flex;
align-items: center;
background: #f8f8f8;
border-radius: 4px; /* 减小圆角 */
padding: 12px 15px;
width: 100%;
max-width: calc(100% - 30px); /* 与van-field保持一致的宽度 */
border: 1px solid #e8e8e8;
}
.input-label[data-v-26eed815] {
min-width: 70px;
font-size: 15px;
color: #333;
white-space: nowrap;
font-weight: 600;
}
.input-container input[data-v-26eed815] {
flex: 1;
border: none;
background: transparent;
padding: 0 8px;
font-size: 14px;
color: #333;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

/* 移除所有焦点状态的样式 */
.input-container input[data-v-26eed815]:focus {
outline: none;
box-shadow: none;
border: none;
}

/* 移除输入框容器的焦点状态样式 */
.input-container[data-v-26eed815]:focus-within {
border-color: #e8e8e8;
background: #f8f8f8;
box-shadow: none;
}

/* 修改van-field的样式 */
[data-v-26eed815] .van-field {
background: #f8f8f8 !important;
border-radius: 8px !important; /* 减小圆角 */
padding: 12px 15px !important;
width: calc(100% - 30px) !important;
}
[data-v-26eed815] .van-field__label {
min-width: 70px !important;
color: #333 !important;
font-size: 14px !important;
font-weight: 600 !important;
}
[data-v-26eed815] .van-cell {
align-items: center;
padding: 0 !important;
}
[data-v-26eed815] .van-field__control {
border: none !important;
padding-left: 8px;
}
[data-v-26eed815] .van-field__control:focus {
outline: none !important;
box-shadow: none !important;
}

/* 去除iOS上的默认内阴影 */
input[data-v-26eed815],
textarea[data-v-26eed815] {
-webkit-appearance: none;
}

/* 去除number���型输入框的上下箭头 */
input[data-v-26eed815]::-webkit-outer-spin-button,
input[data-v-26eed815]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}

/* Firefox */
input[type=number][data-v-26eed815] {
-moz-appearance: textfield;
}
.form-group input[data-v-26eed815]:focus {
border-color: #ff4d4f;
background: #fff;
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.1);
outline: none;
}
.payment-options-list[data-v-26eed815] {
list-style: none;
padding: 0;
margin: 0 0 25px 0;
}
.payment-label-wrapper[data-v-26eed815] {
display: flex;
align-items: center;
padding: 15px;
border: 1px solid #e8e8e8;
border-radius: 12px;
margin-bottom: 12px;
cursor: pointer;
transition: all 0.3s;
background: #f9f9f9;
}
.payment-label-wrapper[data-v-26eed815]:hover {
border-color: #ff4d4f;
background: #fff1f0;
}
.payment-icon[data-v-26eed815] {
width: 28px;
height: 28px;
margin-right: 12px;
}
.submit-btn[data-v-26eed815] {
width: 100%;
background: #ff4d4f;
color: white;
border: none;
padding: 16px;
border-radius: 6px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
margin-top: 10px;
}
.submit-btn[data-v-26eed815]:hover {
background: #ff7875;
}

/* 滑入动画 */
@keyframes slideUp-26eed815 {
from {
  transform: translateY(100%);
}
to {
  transform: translateY(0);
}
}

/* 适配底部安全区域 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
.popup-content[data-v-26eed815] {
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}
}
.input-container[data-v-26eed815] {
position: relative;
background: #f8f8f8;
border-radius: 8px;
padding: 8px 15px;
border: 1px solid #e8e8e8;
}
.input-label[data-v-26eed815] {
display: block;
font-size: 15px;
color: #666;
margin-bottom: 4px;
}
.input-container input[data-v-26eed815] {
width: 100%;
border: none;
background: transparent;
padding: 4px 0;
font-size: 15px;
color: #333;
}
.input-container input[data-v-26eed815]::-moz-placeholder {
color: #999;
}
.input-container input[data-v-26eed815]::placeholder {
color: #999;
}
.input-container input[data-v-26eed815]:focus {
outline: none;
border-radius: 0;
box-shadow: none;
}
.input-container[data-v-26eed815]:focus-within {
border-color: #ff4d4f;
background: #fff;
box-shadow: 0 0 0 2px rgba(255, 77, 79, 0.1);
}

/* van-field的样式保持原样 */
[data-v-26eed815] .van-field {
background: #f8f8f8 !important;
border-radius: 8px;
margin: 0;
}
[data-v-26eed815] .van-cell {
padding: 12px 15px !important;
border-radius: 12px;
}

/* 滑入动画 */
.slide-up-enter-active[data-v-26eed815],
.slide-up-leave-active[data-v-26eed815] {
transition: all 0.3s ease-out;
}
.slide-up-enter-from[data-v-26eed815] {
transform: translateY(100%);
}
.slide-up-leave-to[data-v-26eed815] {
transform: translateY(100%);
}
/* 添加表单标题容器样式 */
.form-title-container[data-v-26eed815] {
display: flex;
align-items: center;
padding: 15px 0;
margin-bottom: 20px;
}

/* 添加竖线装饰 */
.title-line[data-v-26eed815] {
width: 3px;
height: 18px;
background-color: #ff4d4f;
margin-right: 10px;
border-radius: 2px;
}

/* 更新标题样式 */
.form-title[data-v-26eed815] {
font-size: 16px;
font-weight: 600;
color: #333;
margin: 0;
}
.form-submit[data-v-26eed815] {
margin-top: 20px;
padding: 20px;
margin-bottom: 50px; /* 增加底部间距 */
}
.discount-info[data-v-26eed815] {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 12px;
}
.countdown-box[data-v-26eed815] {
display: flex;
align-items: center;
gap: 4px;
background: rgba(255, 77, 79, 0.1);
padding: 4px 10px;
border-radius: 15px;
}
.timer-icon[data-v-26eed815] {
font-size: 14px;
color: #ff4d4f;
}
.timer-text[data-v-26eed815] {
font-size: 14px;
color: #ff4d4f;
font-weight: 500;
}
.discount-tag[data-v-26eed815] {
font-size: 14px;
color: #ff4d4f;
font-weight: 500;
}
.price[data-v-26eed815] {
font-size: 16px;
font-weight: bold;
}
.submit-btn[data-v-26eed815] {
width: 100%;
background: linear-gradient(to right, #ff4d4f, #ff7875);
color: white;
border: none;
padding: 15px;
border-radius: 15px;
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 8px rgba(255, 77, 79, 0.2);
position: relative;
}
.submit-btn[data-v-26eed815]:active {
transform: translateY(1px);
box-shadow: 0 2px 4px rgba(255, 77, 79, 0.2);
}
.discount-badge[data-v-26eed815] {
position: absolute;
top: -35px; /* 向上移动更多 */
right: -10px;
background: rgba(255, 255, 255, 0.95);
color: #ff4d4f;
padding: 4px 12px;
border-radius: 15px;
display: flex;
align-items: center;
gap: 5px;
font-size: 12px;
box-shadow: 0 2px 6px rgba(255, 77, 79, 0.15);
border: 1px solid rgba(255, 77, 79, 0.2);
}
.discount-badge[data-v-26eed815]::after {
content: '';
position: absolute;
bottom: -5px; /* 线的起始位置 */
left: 50%;
width: 0;
height: 0;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-top: 5px solid rgba(255, 255, 255, 0.95);
transform: translateX(-50%);
}
.timer-icon[data-v-26eed815] {
font-size: 12px;
}
.timer-text[data-v-26eed815],
.discount-text[data-v-26eed815] {
font-weight: 500;
}
.separator[data-v-26eed815] {
color: rgba(255, 77, 79, 0.3);
}

.content[data-v-26175b89] {
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  /* 避免超出视口 */
  overflow-x: hidden;
  /* 禁止水平滚动 */
  box-sizing: border-box;
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 0.4rem;
  overflow-y: auto;
  /* 解决高度不足的问题 */
}
.content .title[data-v-26175b89] {
  font-size: 0.72rem;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
  background: linear-gradient(0deg, #4E35DB 0%, #9D4BF1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.content .goods_box[data-v-26175b89] {
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.content .goods_box .goods[data-v-26175b89] {
  height: 3.71rem;
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.8rem;
}
.content .goods_box .goods .my-swipe[data-v-26175b89] {
  width: 3.2rem;
  height: 2.03rem;
  position: relative;
}
.content .goods_box .goods .my-swipe .custom-indicator[data-v-26175b89] {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 2px 5px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.1);
  color: #1D0E45;
}
.content .goods_box .goods .goods_image[data-v-26175b89] {
  width: 3.2rem;
  height: 2.03rem;
}
.content .goods_box .goods_name[data-v-26175b89] {
  width: 100%;
  margin-left: 3.35rem;
  align-content: center;
  font-size: 0.28rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #000000;
}
.content .goods_box .goods_type[data-v-26175b89] {
  margin-top: 0.27rem;
  width: 2.13rem;
  height: 0.75rem;
  background: linear-gradient(0deg, #7041DF 0%, #FEDCDA 70%, #BE84EA 100%);
  border-radius: 0.37rem;
  text-align: center;
  line-height: 0.75rem;
  font-size: 0.33rem;
  font-family: Source Han Sans CN;
  font-weight: 500;
  color: #1D0E45;
}
.content .goods_box .submit[data-v-26175b89],
.content .goods_box .submit5[data-v-26175b89] {
  width: 7.47rem;
  height: 1.17rem;
  border-radius: 0.59rem;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  margin-top: 1.15rem;
  padding: 0.25rem 0.93rem 0.32rem 1.18rem;
  background: linear-gradient(90deg, #3CB6FF 0%, #5DD2FE 100%);
}
.content .goods_box .submit5[data-v-26175b89] {
  margin-top: 0.35rem;
  background: linear-gradient(0deg, #EA60F2 0%, #E74FD5 100%);
}
.content .goods_box .submit_bg[data-v-26175b89] {
  width: 2.4rem;
  height: 0.66rem;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAE8AAAAVCAYAAAAHIbMXAAAAAXNSR0IArs4c6QAAAcBJREFUWEftmUEoZWEUx38nUiMpRFKysJK1hbKjrEfDRhY2JJTsmJokysaCpllZWUyzniJZ2Yhkx8qGkgU7YslfR/fWjOe6971n433vLO8959z7/93vfp1zPiMPk9QC9AGdQCNQkUf4Z3F9Ah6Ac+AQODAzv5ZjlkWRpA5gDugFMsVkyftJfK6AdeC3mT3++86pICRNAPMlusry+X5HwLiZXcdB78KT5NCm8nlCifteAF9jgInwJA0AP0scRiHyjiOAj2/Ck9TgGyVQU0j2AGJ+mNlGErxJ4HsAEAqVeAN05cCT9AXYB5oLzRxI3Mh/8CT1A4tAayAAipH56wWepDZgKarjikkYUuy2SWoH/gJ1ISn/AK178cqrB7wYHgWqPyBxCCm2Xu95DnHaK+kQ1BepcS2pVPEaz/fBsiUTGEqC57/vcplcIoFLoDsJXm1U63mnUbZcArNm9ue93tbHT5sBjqDSFsseMGxmSpuqjAELadkCun8KDJrZrWvOMs8bBFYAb9tCth1gxszuYgip8KIOxMfvs8A3oCowgifAqpntvtadCV4cJMlHVD3RGUYTUFmCIP284h7wwaefX5wlaXwGRBB1UalfHZwAAAAASUVORK5CYII=);
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 0 0.15rem 0 0.27rem;
  box-sizing: border-box;
}
.content .goods_box .submit_bg .price[data-v-26175b89] {
  font-size: 0.27rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  text-decoration: line-through;
  color: #3E3E97;
}
.content .goods_box .submit_bg .newPrice[data-v-26175b89] {
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #3E3E97;
}
.content .goods_box .text[data-v-26175b89] {
  margin-top: 0.89rem;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #000028;
}
.content .goods_box .downLoad[data-v-26175b89] {
  margin-top: 0.83rem;
  margin-bottom: 0.83rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .goods_box .downLoad > div[data-v-26175b89] {
  width: 4.53rem;
  height: 1.17rem;
  border: 1px solid #1B1B1B;
  border-radius: 0.59rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.31rem 0.77rem;
  box-sizing: border-box;
  font-size: 0.37rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #022222;
}
.content .goods_box .downLoad .downLoad_a[data-v-26175b89] {
  margin-right: 0.27rem;
}
.confirm-dialog-overlay[data-v-26175b89] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.confirm-dialog[data-v-26175b89] {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.confirm-dialog p[data-v-26175b89] {
  margin: 0 0 20px;
  font-size: 18px;
  color: #333;
}
.button-group[data-v-26175b89] {
  display: flex;
  justify-content: space-between;
}
.confirm-button[data-v-26175b89],
.cancel-button[data-v-26175b89] {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  flex: 1;
  margin: 0 5px;
  transition: background-color 0.3s ease;
}
.confirm-button[data-v-26175b89] {
  background-color: #4CAF50;
  color: white;
}
.confirm-button[data-v-26175b89]:hover {
  background-color: #45a049;
}
.cancel-button[data-v-26175b89] {
  background-color: #f44336;
  color: white;
}
.cancel-button[data-v-26175b89]:hover {
  background-color: #e53935;
}
.fade-enter-active[data-v-26175b89],
.fade-leave-active[data-v-26175b89] {
  transition: opacity 0.5s;
}
.fade-enter[data-v-26175b89],
.fade-leave-to[data-v-26175b89] {
  opacity: 0;
}
.container[data-v-26175b89] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
}
body[data-v-26175b89],
html[data-v-26175b89] {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.container[data-v-26175b89] {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
  box-sizing: border-box;
}
.box[data-v-26175b89] {
  background-color: #ffffff;
  margin-top: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 400px;
  text-align: center;
  color: #333;
  width: 100%;
}
.box strong[data-v-26175b89] {
  color: #007bff;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
}
.btn-back[data-v-26175b89] {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #aaaaaa;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
.btn-back[data-v-26175b89]:hover {
  background-color: #0056b3;
}
.complain[data-v-26175b89] {
  margin-top: 0.35rem;
  width: 100%;
  height: 0.87rem;
  border-radius: 0.59rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  background: linear-gradient(90deg, #FF5733 0%, #FF8D33 100%);
  /* 设置渐变背景色 */
  cursor: pointer;
}
.zxkf[data-v-26175b89] {
  margin-top: 0.35rem;
  width: 100%;
  height: 0.87rem;
  border-radius: 0.59rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 0.35rem;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #FFFFFF;
  background: linear-gradient(90deg, #4CAF50 0%, #45a049 100%);
  /* 修改为绿色渐变 */
  cursor: pointer;
}
/* 客服电话样式 */
.customer-service[data-v-26175b89] {
  margin-top: 15px;
  font-size: 14px;
  color: #333;
}
.customer-service a[data-v-26175b89] {
  color: #007bff;
  text-decoration: none;
}
.customer-service a[data-v-26175b89]:hover {
  text-decoration: underline;
}
@media (max-width: 480px) {
.box[data-v-26175b89] {
    padding: 15px;
}
.btn-back[data-v-26175b89] {
    padding: 8px 16px;
}
}
@media (max-width: 768px) {
.content[data-v-26175b89] {
    padding: 0.2rem;
}
.content .title[data-v-26175b89] {
    font-size: 0.5rem;
}
.content .goods[data-v-26175b89] {
    width: 4rem;
    height: 4rem;
}
.content .submit[data-v-26175b89],
  .content .submit5[data-v-26175b89] {
    width: 6rem;
    height: 1rem;
    font-size: 0.3rem;
}
.content .submit_bg[data-v-26175b89] {
    width: 2rem;
    height: 0.5rem;
}
}

.southeast-asia-demo[data-v-5cb64734] {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  transition: all 0.3s ease;
}
.southeast-asia-demo.theme-china[data-v-5cb64734] {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  --primary-color: #ff4d4f;
  --secondary-color: #ff7875;
}
.southeast-asia-demo.theme-thailand[data-v-5cb64734] {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --primary-color: #FFD700;
  --secondary-color: #FF6B35;
}
.southeast-asia-demo.theme-vietnam[data-v-5cb64734] {
  background: linear-gradient(135deg, #ff8a80 0%, #ffab91 100%);
  --primary-color: #DA020E;
  --secondary-color: #FFFF00;
}
.southeast-asia-demo.theme-indonesia[data-v-5cb64734] {
  background: linear-gradient(135deg, #ff5722 0%, #ff8a65 100%);
  --primary-color: #FF0000;
  --secondary-color: #FFFFFF;
}
.southeast-asia-demo.theme-malaysia[data-v-5cb64734] {
  background: linear-gradient(135deg, #42a5f5 0%, #64b5f6 100%);
  --primary-color: #006BB3;
  --secondary-color: #FF0000;
}
.southeast-asia-demo.theme-philippines[data-v-5cb64734] {
  background: linear-gradient(135deg, #5c6bc0 0%, #7986cb 100%);
  --primary-color: #0038A8;
  --secondary-color: #CE1126;
}
.demo-header[data-v-5cb64734] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.demo-header .header-content[data-v-5cb64734] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.demo-header .app-title[data-v-5cb64734] {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color, #ff4d4f);
  margin: 0;
}
.demo-header .header-actions[data-v-5cb64734] {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.demo-header .region-select[data-v-5cb64734] {
  padding: 12px 16px;
  border: 2px solid var(--primary-color, #ff4d4f);
  border-radius: 12px;
  background: white;
  font-size: 16px;
  cursor: pointer;
}
.demo-header .region-select[data-v-5cb64734]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.2);
}
.language-switcher[data-v-5cb64734] {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.language-switcher .lang-btn[data-v-5cb64734] {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}
.language-switcher .lang-btn[data-v-5cb64734]:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.language-switcher .lang-btn.active[data-v-5cb64734] {
  background: var(--primary-color, #ff4d4f);
  color: white;
  border-color: var(--primary-color, #ff4d4f);
}
.demo-main[data-v-5cb64734] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.welcome-section[data-v-5cb64734] {
  margin-bottom: 60px;
}
.welcome-section .welcome-card[data-v-5cb64734] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
}
.welcome-section .welcome-card .welcome-title[data-v-5cb64734] {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color, #ff4d4f);
  margin-bottom: 16px;
}
.welcome-section .welcome-card .welcome-subtitle[data-v-5cb64734] {
  font-size: 18px;
  color: #666;
  margin-bottom: 32px;
  line-height: 1.6;
}
.welcome-section .welcome-card .region-info[data-v-5cb64734] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.welcome-section .welcome-card .region-info .info-item[data-v-5cb64734] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.welcome-section .welcome-card .region-info .info-item .info-label[data-v-5cb64734] {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}
.welcome-section .welcome-card .region-info .info-item .info-value[data-v-5cb64734] {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color, #ff4d4f);
}
.section-title[data-v-5cb64734] {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 32px;
  text-align: center;
  position: relative;
}
.section-title[data-v-5cb64734]::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color, #ff4d4f);
  border-radius: 2px;
}
.products-section[data-v-5cb64734] {
  margin-bottom: 60px;
}
.products-section .products-grid[data-v-5cb64734] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.products-section .product-card[data-v-5cb64734] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.products-section .product-card[data-v-5cb64734]:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.products-section .product-card .product-image[data-v-5cb64734] {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}
.products-section .product-card .product-image .product-placeholder[data-v-5cb64734] {
  font-size: 80px;
  opacity: 0.8;
}
.products-section .product-card .product-image .product-badge[data-v-5cb64734] {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color, #ff4d4f);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.products-section .product-card .product-info[data-v-5cb64734] {
  padding: 24px;
}
.products-section .product-card .product-info .product-name[data-v-5cb64734] {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.products-section .product-card .product-info .product-description[data-v-5cb64734] {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}
.products-section .product-card .product-info .product-price[data-v-5cb64734] {
  margin-bottom: 20px;
}
.products-section .product-card .product-info .product-price .current-price[data-v-5cb64734] {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color, #ff4d4f);
}
.products-section .product-card .product-info .add-to-cart-btn[data-v-5cb64734] {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-section .product-card .product-info .add-to-cart-btn[data-v-5cb64734]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.payment-section[data-v-5cb64734] {
  margin-bottom: 60px;
}
.payment-section .payment-methods[data-v-5cb64734] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.payment-section .payment-method[data-v-5cb64734] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-section .payment-method[data-v-5cb64734]:hover {
  transform: translateY(-4px);
  border-color: var(--primary-color, #ff4d4f);
}
.payment-section .payment-method.selected[data-v-5cb64734] {
  border-color: var(--primary-color, #ff4d4f);
  background: rgba(255, 77, 79, 0.05);
}
.payment-section .payment-method .method-icon[data-v-5cb64734] {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
}
.payment-section .payment-method .method-info[data-v-5cb64734] {
  flex: 1;
}
.payment-section .payment-method .method-info .method-name[data-v-5cb64734] {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}
.payment-section .payment-method .method-info .method-desc[data-v-5cb64734] {
  font-size: 14px;
  color: #666;
}
.culture-section[data-v-5cb64734] {
  margin-bottom: 60px;
}
.culture-section .culture-cards[data-v-5cb64734] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.culture-section .culture-card[data-v-5cb64734] {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.culture-section .culture-card[data-v-5cb64734]:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.culture-section .culture-card .culture-icon[data-v-5cb64734] {
  font-size: 48px;
  margin-bottom: 16px;
}
.culture-section .culture-card .culture-title[data-v-5cb64734] {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.culture-section .culture-card .culture-description[data-v-5cb64734] {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.notification[data-v-5cb64734] {
  position: fixed;
  top: 24px;
  right: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  max-width: 400px;
}
.notification.success[data-v-5cb64734] {
  border-left: 4px solid #4CAF50;
}
.notification.info[data-v-5cb64734] {
  border-left: 4px solid #2196F3;
}
.notification .notification-icon[data-v-5cb64734] {
  font-size: 20px;
}
.notification .notification-message[data-v-5cb64734] {
  flex: 1;
  font-size: 14px;
  color: #333;
}
.notification .notification-close[data-v-5cb64734] {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 16px;
  padding: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification .notification-close[data-v-5cb64734]:hover {
  color: #333;
}
@media (max-width: 768px) {
.demo-header .header-content[data-v-5cb64734] {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
}
.demo-header .header-actions[data-v-5cb64734] {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}
.language-switcher[data-v-5cb64734] {
    justify-content: center;
}
.demo-main[data-v-5cb64734] {
    padding: 20px 16px;
}
.welcome-card[data-v-5cb64734] {
    padding: 24px !important;
}
.welcome-card .welcome-title[data-v-5cb64734] {
    font-size: 28px;
}
.welcome-card .region-info[data-v-5cb64734] {
    grid-template-columns: 1fr;
    gap: 16px;
}
.products-grid[data-v-5cb64734],
  .payment-methods[data-v-5cb64734],
  .culture-cards[data-v-5cb64734] {
    grid-template-columns: 1fr;
}
.notification[data-v-5cb64734] {
    left: 16px;
    right: 16px;
    max-width: none;
}
}


.mystery-box-landing[data-v-1c9379f0] {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  min-height: 100vh;
}

/* 顶部导航 */
.header[data-v-1c9379f0] {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo[data-v-1c9379f0] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.region-selector select[data-v-1c9379f0] {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 14px;
}

/* 限时神秘活动横幅 */
.mystery-banner[data-v-1c9379f0] {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  padding: 12px 16px;
  text-align: center;
}
.mystery-content[data-v-1c9379f0] {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.mystery-icon[data-v-1c9379f0] {
  font-size: 20px;
  animation: pulse-1c9379f0 1s infinite;
}
.countdown[data-v-1c9379f0] {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-family: monospace;
}
@keyframes pulse-1c9379f0 {
0%, 100% { transform: scale(1);
}
50% { transform: scale(1.1);
}
}

/* 英雄区域 - 神秘盒子 */
.hero-section[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.hero-content[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mystery-box-showcase[data-v-1c9379f0] {
  display: flex;
  gap: 20px;
}
.mystery-box-container[data-v-1c9379f0] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mystery-box-wrapper[data-v-1c9379f0] {
  position: relative;
  margin-bottom: 20px;
}
.mystery-box[data-v-1c9379f0] {
  width: 200px;
  height: 200px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}
.box-face[data-v-1c9379f0] {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.box-front[data-v-1c9379f0] {
  transform: rotateY(0deg);
}
.box-back[data-v-1c9379f0] {
  transform: rotateY(180deg);
}
.box-right[data-v-1c9379f0] {
  transform: rotateY(90deg);
}
.box-left[data-v-1c9379f0] {
  transform: rotateY(-90deg);
}
.box-top[data-v-1c9379f0] {
  transform: rotateX(90deg);
}
.box-bottom[data-v-1c9379f0] {
  transform: rotateX(-90deg);
}
.box-ribbon[data-v-1c9379f0] {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 180px;
  height: 100px;
  background: linear-gradient(to right, #ff6b6b, #ff8e8e);
  transform: rotate(45deg);
}
.mystery-aura[data-v-1c9379f0] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transform: scale(1.2);
  transition: transform 0.5s;
}
.mystery-box:hover .mystery-aura[data-v-1c9379f0] {
  transform: scale(1.5);
}
.mystery-stats[data-v-1c9379f0] {
  display: flex;
  gap: 20px;
}
.stat-card[data-v-1c9379f0] {
  text-align: center;
}
.stat-icon[data-v-1c9379f0] {
  font-size: 32px;
  margin-bottom: 8px;
}
.stat-number[data-v-1c9379f0] {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.stat-label[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}
.hero-text[data-v-1c9379f0] {
  flex: 1;
}
.hero-title[data-v-1c9379f0] {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.hero-subtitle[data-v-1c9379f0] {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}
.mystery-price[data-v-1c9379f0] {
  margin-bottom: 20px;
}
.price-label[data-v-1c9379f0] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.current-price[data-v-1c9379f0] {
  font-size: 28px;
  font-weight: bold;
  color: #ff6b6b;
}
.value-comparison[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.value-text[data-v-1c9379f0] {
  color: #666;
  font-size: 14px;
}
.max-value[data-v-1c9379f0] {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}
.cta-section[data-v-1c9379f0] {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}
.cta-primary[data-v-1c9379f0], .cta-secondary[data-v-1c9379f0] {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-primary[data-v-1c9379f0] {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.cta-primary[data-v-1c9379f0]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}
.cta-secondary[data-v-1c9379f0] {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #ddd;
}
.cta-secondary[data-v-1c9379f0]:hover {
  background: #e9ecef;
}
.trust-indicators[data-v-1c9379f0] {
  display: flex;
  gap: 12px;
}
.trust-item[data-v-1c9379f0] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 12px;
  color: #666;
}
.trust-item .icon[data-v-1c9379f0] {
  font-size: 16px;
}

/* 实时开盒动态 */
.live-unboxing[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.section-title[data-v-1c9379f0] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 16px 0;
}
.unboxing-feed[data-v-1c9379f0] {
  display: flex;
  gap: 12px;
}
.unboxing-item[data-v-1c9379f0] {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.user-avatar[data-v-1c9379f0] {
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 8px;
}
.unboxing-content[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}
.time-ago[data-v-1c9379f0] {
  font-size: 12px;
  color: #999;
}

/* 稀有度展示 */
.rarity-showcase[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.rarity-grid[data-v-1c9379f0] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.rarity-tier[data-v-1c9379f0] {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.tier-header[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.tier-icon[data-v-1c9379f0] {
  font-size: 32px;
}
.tier-info[data-v-1c9379f0] {
  text-align: left;
}
.tier-name[data-v-1c9379f0] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}
.tier-chance[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}
.tier-preview[data-v-1c9379f0] {
  margin-top: 16px;
}
.preview-items[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preview-item[data-v-1c9379f0] {
  position: relative;
}
.preview-item img[data-v-1c9379f0] {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.item-name[data-v-1c9379f0] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 0 0 8px 8px;
}
.more-items[data-v-1c9379f0] {
  font-size: 12px;
  color: #666;
}

/* 用户开盒体验 */
.user-experiences[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.experiences-grid[data-v-1c9379f0] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.experience-card[data-v-1c9379f0] {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
}
.exp-header[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.user-info[data-v-1c9379f0] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user-avatar[data-v-1c9379f0] {
  width: 40px;
  height: 40px;
  background: #ff6b6b;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.user-details[data-v-1c9379f0] {
  flex: 1;
}
.user-name[data-v-1c9379f0] {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}
.user-location[data-v-1c9379f0] {
  font-size: 12px;
  color: #666;
}
.exp-rating[data-v-1c9379f0] {
  color: #ffa500;
  font-size: 12px;
}
.exp-content[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
}
.exp-unboxed[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.unboxed-label[data-v-1c9379f0] {
  font-size: 12px;
  font-weight: bold;
  color: #333;
}
.unboxed-item[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}
.unboxed-value[data-v-1c9379f0] {
  font-size: 12px;
  color: #999;
}
.exp-images[data-v-1c9379f0] {
  display: flex;
  gap: 8px;
}
.exp-image[data-v-1c9379f0] {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

/* 购买区域 */
.purchase-section[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.purchase-card[data-v-1c9379f0] {
  display: flex;
  gap: 20px;
}
.purchase-visual[data-v-1c9379f0] {
  flex: 1;
}
.mini-mystery-box[data-v-1c9379f0] {
  position: relative;
  margin-bottom: 20px;
}
.mini-box[data-v-1c9379f0] {
  width: 100px;
  height: 100px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.5s;
}
.mini-question[data-v-1c9379f0] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
  color: #333;
}
.mini-shaking[data-v-1c9379f0] {
  animation: shake-1c9379f0 0.5s infinite;
}
@keyframes shake-1c9379f0 {
0% { transform: translate(0, 0);
}
20% { transform: translate(-5px, 0);
}
40% { transform: translate(5px, 0);
}
60% { transform: translate(-5px, 0);
}
80% { transform: translate(5px, 0);
}
100% { transform: translate(0, 0);
}
}
.purchase-stats[data-v-1c9379f0] {
  display: flex;
  gap: 20px;
}
.stat[data-v-1c9379f0] {
  text-align: center;
}
.stat-label[data-v-1c9379f0] {
  font-size: 12px;
  color: #666;
}
.stat-value[data-v-1c9379f0] {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.purchase-form[data-v-1c9379f0] {
  flex: 1;
}
.quantity-section[data-v-1c9379f0] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.quantity-selector[data-v-1c9379f0] {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}
.quantity-selector button[data-v-1c9379f0] {
  width: 36px;
  height: 36px;
  border: none;
  background: #f8f9fa;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}
.quantity-selector button[data-v-1c9379f0]:hover {
  background: #e9ecef;
}
.quantity-selector button[data-v-1c9379f0]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.quantity-selector span[data-v-1c9379f0] {
  padding: 0 16px;
  min-width: 40px;
  text-align: center;
  font-weight: 500;
}
.quantity-benefits[data-v-1c9379f0] {
  display: flex;
  gap: 8px;
}
.benefit[data-v-1c9379f0] {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}
.total-section[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.total-price[data-v-1c9379f0] {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.savings[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}
.payment-methods[data-v-1c9379f0] {
  margin-bottom: 20px;
}
.payment-methods h4[data-v-1c9379f0] {
  margin: 0 0 12px 0;
  font-size: 16px;
  color: #333;
}
.payment-grid[data-v-1c9379f0] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 8px;
}
.payment-option[data-v-1c9379f0] {
  border: 2px solid #f0f0f0;
  border-radius: 8px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.payment-option[data-v-1c9379f0]:hover {
  border-color: #ff6b6b;
}
.payment-option.selected[data-v-1c9379f0] {
  border-color: #ff6b6b;
  background: #fff5f5;
}
.payment-option img[data-v-1c9379f0] {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}
.payment-option span[data-v-1c9379f0] {
  display: block;
  font-size: 12px;
  color: #333;
}
.popular-badge[data-v-1c9379f0] {
  position: absolute;
  top: -6px;
  right: -6px;
  background: #ff6b6b;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 10px;
}
.purchase-btn[data-v-1c9379f0] {
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}
.purchase-btn[data-v-1c9379f0]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

/* FAQ */
.faq-section[data-v-1c9379f0] {
  background: white;
  padding: 20px 16px;
  margin-top: 8px;
}
.faq-list[data-v-1c9379f0] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.faq-item[data-v-1c9379f0] {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
}
.faq-question[data-v-1c9379f0] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.faq-question span[data-v-1c9379f0] {
  font-size: 14px;
  font-weight: bold;
  color: #333;
}
.faq-toggle[data-v-1c9379f0] {
  font-size: 12px;
  color: #666;
}
.faq-answer[data-v-1c9379f0] {
  font-size: 14px;
  color: #666;
}

/* 浮动购买按钮 */
.floating-purchase[data-v-1c9379f0] {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #ddd;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}
.floating-btn[data-v-1c9379f0] {
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* 成功提示 */
.success-modal[data-v-1c9379f0] {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  animation: fadeInOut-1c9379f0 3s ease-in-out;
}
.modal-content[data-v-1c9379f0] {
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.success-animation[data-v-1c9379f0] {
  width: 100px;
  height: 100px;
  position: relative;
  margin-bottom: 16px;
}
.opening-box[data-v-1c9379f0] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: openBox-1c9379f0 1s forwards;
}
.box-lid[data-v-1c9379f0] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to right, #ff6b6b, #ff8e8e);
  transform: rotateX(90deg);
}
.box-base[data-v-1c9379f0] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to right, #ff6b6b, #ff8e8e);
  transform: rotateX(90deg);
}
.surprise-item[data-v-1c9379f0] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: bold;
  color: white;
}
@keyframes openBox-1c9379f0 {
0% { transform: rotateX(0deg);
}
100% { transform: rotateX(90deg);
}
}
@keyframes fadeInOut-1c9379f0 {
0%, 100% { opacity: 0;
}
20%, 80% { opacity: 1;
}
}

/* 盲盒特效动画 */
@keyframes shake-1c9379f0 {
0% { transform: translate(0, 0) rotate(0deg);
}
20% { transform: translate(-2px, 2px) rotate(-1deg);
}
40% { transform: translate(-2px, -2px) rotate(1deg);
}
60% { transform: translate(2px, 2px) rotate(0deg);
}
80% { transform: translate(2px, -2px) rotate(1deg);
}
100% { transform: translate(0, 0) rotate(-1deg);
}
}
@keyframes glow-1c9379f0 {
0% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}
50% { box-shadow: 0 0 20px rgba(255, 107, 107, 0.8), 0 0 30px rgba(255, 107, 107, 0.6);
}
100% { box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}
}
@keyframes sparkle-1c9379f0 {
0%, 100% { opacity: 0; transform: scale(0);
}
50% { opacity: 1; transform: scale(1);
}
}
@keyframes pulse-1c9379f0 {
0% { transform: scale(1);
}
50% { transform: scale(1.05);
}
100% { transform: scale(1);
}
}
.mystery-box.shaking[data-v-1c9379f0] {
  animation: shake-1c9379f0 0.5s infinite;
}
.mystery-box.glowing[data-v-1c9379f0] {
  animation: glow-1c9379f0 2s infinite;
}
.sparkle[data-v-1c9379f0] {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  animation: sparkle-1c9379f0 1.5s infinite;
}
.sparkle[data-v-1c9379f0]:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s;
}
.sparkle[data-v-1c9379f0]:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.3s;
}
.sparkle[data-v-1c9379f0]:nth-child(3) { top: 80%; left: 20%; animation-delay: 0.6s;
}
.sparkle[data-v-1c9379f0]:nth-child(4) { top: 80%; right: 20%; animation-delay: 0.9s;
}
.sparkle[data-v-1c9379f0]:nth-child(5) { top: 50%; left: 10%; animation-delay: 1.2s;
}
.sparkle[data-v-1c9379f0]:nth-child(6) { top: 50%; right: 10%; animation-delay: 1.5s;
}
.cta-primary.pulse[data-v-1c9379f0] {
  animation: pulse-1c9379f0 2s infinite;
}
.btn-pulse[data-v-1c9379f0] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  animation: pulse-1c9379f0 2s infinite;
  pointer-events: none;
}

/* 稀有度颜色主题 */
.rarity-tier.legendary[data-v-1c9379f0] {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, #fff9e6, #fffbf0);
}
.rarity-tier.epic[data-v-1c9379f0] {
  border: 2px solid #9c27b0;
  background: linear-gradient(135deg, #f3e5f5, #fce4ec);
}
.rarity-tier.rare[data-v-1c9379f0] {
  border: 2px solid #2196f3;
  background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
}
.rarity-tier.common[data-v-1c9379f0] {
  border: 2px solid #4caf50;
  background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
}
.unboxing-item.legendary[data-v-1c9379f0] {
  background: linear-gradient(135deg, #fff9e6, #fffbf0);
  border-left: 4px solid #ffd700;
}
.unboxing-item.epic[data-v-1c9379f0] {
  background: linear-gradient(135deg, #f3e5f5, #fce4ec);
  border-left: 4px solid #9c27b0;
}
.unboxing-item.rare[data-v-1c9379f0] {
  background: linear-gradient(135deg, #e3f2fd, #f0f8ff);
  border-left: 4px solid #2196f3;
}
.unboxing-item.common[data-v-1c9379f0] {
  background: linear-gradient(135deg, #e8f5e8, #f1f8e9);
  border-left: 4px solid #4caf50;
}

/* 响应式设计 */
@media (max-width: 768px) {
.mystery-box-showcase[data-v-1c9379f0] {
    flex-direction: column;
    text-align: center;
}
.mystery-box-container[data-v-1c9379f0] {
    margin-bottom: 30px;
}
.mystery-stats[data-v-1c9379f0] {
    flex-direction: column;
    gap: 10px;
}
.stat-card[data-v-1c9379f0] {
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}
.hero-title[data-v-1c9379f0] {
    font-size: 24px;
    margin-bottom: 12px;
}
.hero-subtitle[data-v-1c9379f0] {
    font-size: 14px;
    margin-bottom: 20px;
}
.cta-section[data-v-1c9379f0] {
    flex-direction: column;
    gap: 8px;
}
.cta-primary[data-v-1c9379f0], .cta-secondary[data-v-1c9379f0] {
    width: 100%;
    padding: 12px 16px;
}
.trust-indicators[data-v-1c9379f0] {
    flex-direction: column;
    gap: 8px;
}
.trust-item[data-v-1c9379f0] {
    justify-content: center;
}
.rarity-grid[data-v-1c9379f0] {
    grid-template-columns: 1fr;
}
.experiences-grid[data-v-1c9379f0] {
    grid-template-columns: 1fr;
}
.purchase-card[data-v-1c9379f0] {
    flex-direction: column;
}
.purchase-visual[data-v-1c9379f0] {
    text-align: center;
    margin-bottom: 20px;
}
.purchase-stats[data-v-1c9379f0] {
    justify-content: center;
}
}

/* 主题颜色 */
.theme-thailand[data-v-1c9379f0] {
  --primary-color: #d4af37;
  --accent-color: #ff6b35;
}
.theme-vietnam[data-v-1c9379f0] {
  --primary-color: #da020e;
  --accent-color: #ffcd00;
}
.theme-indonesia[data-v-1c9379f0] {
  --primary-color: #ce1126;
  --accent-color: #ffffff;
}
.theme-malaysia[data-v-1c9379f0] {
  --primary-color: #010066;
  --accent-color: #cc0001;
}
.theme-philippines[data-v-1c9379f0] {
  --primary-color: #0038a8;
  --accent-color: #ce1126;
}

