.cf,
.grid {
  *zoom:1;
}
@font-face {
  src: url('HarmonyOS_Sans_SC_Light.ttf');
  font-weight: normal;
  font-style: normal;
   font-family: "HarmonyOS_Sans_Light";
}
@font-face {
  src: url('HarmonyOS_Sans_SC_Medium.ttf');
  font-weight: normal;
  font-style: normal;
   font-family: "cu";
}
.cf:before,
.grid:before,
.cf:after,
.grid:after {
  content: "";
  display: table;
}

.cf:after,
.grid:after {
  clear: both;
}

input {
  border-radius: 0;
}

input[type="button"] {
  border-radius: 0;
  cursor: pointer;
}

html {
  color: #383838;
  background: #F6F6F6;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
group,
menu,
nav,
section {
  margin: 0;
  padding: 0;
  font-size: 13px;
}

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

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

a,
body,
br,
dd,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
img,
li,
p,
table,
td,
tr,
ul {
  -webkit-font-smoothing: antialiased;
  font-family:  'PingFang SC', 'HarmonyOS Sans',Helvetica Neue, Helvetica, Tahoma, Arial, Microsoft YaHei;
  -webkit-tap-highlight-color: transparent;
  zoom: 1;
}

.icon-font,
a,
body {
  -webkit-font-smoothing: antialiased;

}

input:focus {
  outline: none;
}

input {
  outline: none;
}

input {
  vertical-align: middle;
  color: #666;
  -webkit-appearance: listbox;
}

select {
  vertical-align: middle;
  color: #666;
  position: relative;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

button,
input {
  *overflow: visible;
  line-height: normal;
}

input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

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

th {
  text-align: inherit;
}

fieldset,
img {
  border: 0;
}

iframe {
  display: block;
}

blockquote {
  margin: 1em 4em 1em 2em;
  padding: 0.6em 1em;
  background: #f1f1f1;
}

blockquote blockquote {
  padding: 0 0 0 1em;
  margin-left: 2em;
  border-left: 0.4em solid #ddd;
}

acronym,
abbr {
  border-bottom: 1px dotted;
  font-variant: normal;
}

abbr {
  cursor: help;
}

del {
  text-decoration: line-through;
}

address,
caption,
cite,
code,
den,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}

ul,
ol {
  list-style: none;
}

caption,
th {
  text-align: left;
}

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

a {
  color: inherit;
  font-size: inherit;
}

a:hover {
  /* color: inherit; */
  /* font-size: inherit; */
}

ins,
a {
  text-decoration: none;
}

small {
  font-size: 12px;
  color: #666;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.c {
  text-align: center;
}

.l {
  text-align: left;
}

.r {
  text-align: right;
}

.red {
  color: #e64552;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 12px;
  margin: 0;
  font-weight: normal;
}

.two {
  text-overflow: -o-ellipsis-lastline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.one {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.col {
  display: flex;
  flex-direction: column;
}
.row {
  display: flex;
  flex-direction: row;
}
.j-start {
  display: flex;
  justify-content: flex-start;
}
.j-center {
  display: flex;
  justify-content: center;
}
.j-end {
  display: flex;
  justify-content: flex-end;
}
.j-evenly {
  display: flex;
  justify-content: space-evenly;
}
.j-around {
  display: flex;
  justify-content: space-around;
}
.j-between {
  display: flex;
  justify-content: space-between;
}
.a-start {
  display: flex;
  align-items: flex-start;
}
.a-center {
  display: flex;
  align-items: center;
}
.a-end {
  display: flex;
  align-items: flex-end;
}
.row-huan {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.index-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1.34rem;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 0.4rem 0.24rem 0.3rem;
}

.index-top .site {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #383838;
  font-size: .28rem;
  font-weight: 500;
  margin-right: .2rem;
}

.index-top .site > a {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 0.11947rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.index-top .site .val {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: 0.2rem 0.12rem;
  background-image: url(../images/ion-arrow-top.png);
  padding-right: 0.3rem;
  font-size: .28rem;
  font-family: 'cu';
}

.index-top .form {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 0.64rem;
  background: rgba(255,255,255,0.4);
  border-radius: 0.64rem;
  border: 1px solid #F04ABB;
  /* border-image: linear-gradient(90deg, rgba(240, 74, 187, 1), rgba(242, 86, 104, 1)) 1 1; */
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.index-top .form input {
  border: 0;
  font-size: 13px;
}

.index-top .form .input {
  font-family: PingFang SC, Microsoft YaHei, Helvetica Neue, Helvetica, Tahoma, Arial;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  padding: 0 0.1024rem 0 0.8rem;
  background-color: rgba(255,255,255,0.4);
  font-size: .28rem;
  color: #A1A3A2;
}

.index-top .form .btn {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0.8rem;
  background-image: url(../images/ion-search.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.28rem 0.3rem;
   background-color: rgba(255,255,255,0.4);
}
.index-top .form .search_btn {
  font-family: PingFang SC, Microsoft YaHei, Helvetica Neue, Helvetica, Tahoma, Arial;
  font-size: 0.28rem;
  color: #FFFFFF;
  width: 1.16rem;
  height: 0.64rem;
  border: none;
  background: linear-gradient( 90deg, #F04ABB 0%, #F25668 100%);
  border-radius: 0.32rem;
}
.null-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0.6rem;
}
.null-list-img {
  width: 3rem;
  height: 2.7rem;
  background: url(../images/null_list.png) 0 0 no-repeat;
  background-size: 3rem 2.7rem;
}
.null-list-text {
  font-size: 0.28rem;
  color: #999999;
  margin-top: 0.6rem;
}
.slideBox {
  position: relative;
  overflow: hidden;
}

.slideBox .bd {
  position: relative;
  z-index: 0;
}

.slideBox .bd li {
  display: none;
  position: relative;
  text-align: center;
}

.slideBox .bd li:nth-child(1) {
  display: block;
}

.slideBox .bd li img {
  width: 100%;
  /* height: calc(40vw - 0.1024rem); */
  height: 2.1rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
    border-radius: 0.2rem;
}

.slideBox .hd {
  position: absolute;
  bottom: 0.06rem;
  right: 0;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.slideBox .hd li {
  display: inline-block;
  width: 0.08rem;
  height: 0.08rem;
  font-size: 0.12rem;
  text-indent: -9999px;
  overflow: hidden;
  margin: 0 0.02rem;
  background-color: rgba(88, 72, 71, 0.6);
  border-radius: 50%;
}

.slideBox .hd li.on {
  background-color: #FF163A;
}

.index-nav {
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-content: space-between;
  white-space: wrap;
  overflow: hidden;
  padding-top: 0.3rem;
}

.index-nav .item {
  margin-bottom: 0.1rem;
  /* width: 20%; */
  width: 1.16rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: .24rem;
  color: #383838;
  overflow: hidden;
}

.index-nav .item .ion {
  width: 0.72rem;
  height: 0.72rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-bottom: 0.1rem;
}

.index-nav .item.i1 .ion {
  background-image: url(../images/index_nav1.png);
}

.index-nav .item.i2 .ion {
  background-image: url(../images/index_nav2.png);
}

.index-nav .item.i3 .ion {
  background-image: url(../images/index_nav3.png);
}

.index-nav .item.i4 .ion {
  background-image: url(../images/index_nav4.png);
}

.index-nav .item.i5 .ion {
  background-image: url(../images/index_nav05.png);
}
.index-section {
  background-color: #f6f6f6;
  padding: 0 .24rem
}

.index-section .title {
line-height: .44rem;
font-size: .32rem;
font-weight: bold;
color: #383838;
margin-bottom: 0.2rem;
}

.index-section .list {
overflow: hidden;
}

.index-section .list .item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 0.2rem;
background-color: #fff;
border-radius: .2rem;
padding: .2rem;
}
.index-section .list .cover_img {
  width: 1.6rem;
  height: 2.1rem;
  background: #D8D8D8;
  border-radius: .12rem;
  overflow: hidden;
  border: 0;
  margin-right: 0.2rem;
  position: relative;
}
.index-section .list .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index-section .list .label {
  position: absolute;
  left: 0.04rem;
  top: 0.04rem;
  font-size: .2rem;
  color: #FFFFFF;
  height: 0.32rem;
  line-height: 0.32rem;
  padding: 0 0.1rem;
  background: rgba(0,0,0,0.66);
  border-radius: 0.06rem;
}

.index-section .list .item_wrap {
-webkit-box-flex: 1;
  -ms-flex: 1;
      flex: 1;
overflow: hidden;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
  -ms-flex-direction: column;
      flex-direction: column;
-ms-flex-pack: distribute;
  justify-content: space-between;
}

.index-section .list .t1 {
color: #383838;
font-family: PingFangSC, PingFang SC;
font-size: 0.3rem;
height: .84rem;
line-height: .42rem;
font-weight: 500;
}
.index-section .list .t2{
width:100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-size: .24rem;

}

.index-section .list .hint {
background: #ee1e22;
border-radius: 3px;
color: #ffffff;
font-size: 10px;
padding: 0 4px;
margin-left: 4px;
}

.index-section .list .attr {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
  flex-wrap: wrap;
color: #ee1e22;
font-size: 0.09387rem;
margin-top:.03rem
}

.index-section .list .f_b {
display: flex;
justify-content: space-between;
align-items: flex-end;
}

.index-section .list .site {
color: #686868;
font-size: 0.24rem;
line-height: .36rem;
}

.index-section .list .price {
color: #FF163A;
font-size: .24rem;
font-weight: 500;
text-align: right;
flex-shrink: 0;
/* font-family: 'cu'; */
}
.index-section .list .num {
  font-size: .4rem;
  font-weight: 900;
  margin: 0 0.02rem;
}

.index-section .list .price em {
  color: #383838;
  font-size: 0.24rem;
}

.content_tabbar {
  padding-bottom: 1.2rem !important;
}

.page-index {
  /* padding-top: 1.34rem !important; */
  padding: 0 ;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.page_topbg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 2.2rem;
  background: linear-gradient( 180deg, #FFF0F3 0%, #FFF9F1 46.99%, #f6f6f6 100%);
  z-index: 100;
}
.fix_tabbar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff;
  z-index: 100;
  height: 1.36rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fix_tabbar .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #686868;
}
.fix_tabbar .item span {
  font-size: 0.24rem;
}

.fix_tabbar .item .ion {
  width: 0.44rem;
  height: 0.44rem;
  margin-bottom: 0.06rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.fix_tabbar .item .ion.ion1 {
  background-image: url(../images/11.png);
}

.fix_tabbar .item .ion.ion2 {
  background-image: url(../images/22.png);
}

.fix_tabbar .item .ion.ion3 {
  background-image: url(../images/33.png);
}

.fix_tabbar .item.on {
  color: #FF163A;
}

.fix_tabbar .item.on .ion.ion1 {
  background-image: url(../images/111.png);
}

.fix_tabbar .item.on .ion.ion2 {
  background-image: url(../images/222.png);
}

.fix_tabbar .item.on .ion.ion3 {
  background-image: url(../images/333.png);
}
.classification{
  width: 100%;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
  left: 0;
  right: 0;
  justify-content: space-between;
  padding: 0 .24rem ;
  padding-top: 1.44rem;
  height: 2.2rem;
  z-index: 100;
  transform: translateZ(0);
}
.classification a{
  margin-right:.4rem;
  font-size: .28rem;
  /* font-family: 'cu'; */
  color: #686868;
  padding-bottom: 0.16rem;
}
.classification a:last-child{
  margin-right: 0;
}
.classification a.on{
 color:#FF163A !important;
 position: relative;
 font-size: .28rem;
 font-weight: bold;
}
.classification .on::after {
  content: "";
  position: absolute;
  display: block;
  width: 50%;
  height: 0.08rem;
  background: linear-gradient( 90deg, #F04AB7 0%, #F25669 100%);
  border-radius: 0.04rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.classification a:nth-last-child(2){
  /* margin-right: .9rem !important */
}
.classification_icon{
  position: fixed;
  right: 0px;
  height: .9rem;
  margin-right: 0 !important;
  padding: .3rem .3rem;
  z-index: 999999;
  background: linear-gradient(to right, transparent 0%, #fff 20%);
}
.classification_icon i{
width:.3rem;
height:.3rem;
display:block;
background-position: center center;
background-repeat: no-repeat;
background-size: 100% 100%;
background-image: url(../images/classification.png);
}
.page-class {
  padding-top: 3.0rem;
  min-height: calc(100% - 1rem);
  background: #f6f6f6;
}
.classf_div {
  background-color: #f6f6f6;
  z-index: 100;
  left: 0;
  right: 0;
  top: 1.9rem;
  height: 0.8rem;
  line-height: .8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      padding:0 .24rem;
}

.classf_div .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
	margin-right:.2rem;

    height: .8rem;
    line-height: .8rem;
	padding:0 .4rem 0 0;
    border-radius: .05rem;
    font-family: 'cu';
}
.classf_div .item:last-child{
  padding:0;
  margin: 0;
}

.classf_div .item.on {
  color: #FF163A;
}

.classf_div .item.on i {
  border-top-color: #FF163A;
}

.classf_div .item i {
  margin-left: 3px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #696969;
}

.show_details{
  background-color:#f6f6f6 ;
  padding: .4rem .24rem 1.6rem;
}
.show_details .cover_img{
  width: 1.6rem;
  height: 2.1rem;
  background: #D8D8D8;
  border-radius: .12rem;
  overflow: hidden;
  border: 0;
  margin-right: 0.2rem;
  position: relative;
}
.show_details .cover_img .img_1{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.show_details .cover_img .label {
    position: absolute;
    left: 0.04rem;
    top: 0.04rem;
    font-size: .2rem;
    color: #FFFFFF;
    height: 0.32rem;
    line-height: 0.32rem;
    padding: 0 0.1rem;
    background: rgba(0, 0, 0, 0.66);
    border-radius: 0.06rem;
}
.show_details .t1 {
  color: #383838;
  /* font-family: 'cu'; */
  font-size: 0.3rem;
  font-weight: 500;
  height: .8rem;
  line-height: .4rem;
}
.show_details .t2{
  font-size: 0.24rem;
  color: #FF163A;
  font-weight: bold;
  /* font-family: 'cu'; */
}
.show_details .t2 .num {
  font-size: 0.4rem;
  color: #FF163A;
  font-weight: 900;
  margin: 0 0.02rem;
}

.show_details .seat{
  width: .28rem;
  height: 0.28rem;
  background-image: url(../images/seat.png);
  background-size: 100% 100%;
  display: block;
  margin-right: .1rem;
}
.show_details .t3{
  color: #999999;
  font-size: .24rem;
}
.show_details .div_top{
  padding:.2rem;
  margin-bottom: .2rem;
  background: linear-gradient( 180deg, #FFF1F3 0%, #FFFFFF 100%);
  border-radius: 10px;
  border: 1px solid #FFFFFF;
}
.show_details .div_1{
  padding:.2rem;
  margin-bottom: .2rem;
  background: #FFFFFF;
  border-radius: 10px;
}
.show_details .div_con {
  padding: 0.2rem;
  margin-bottom: .2rem;
  background: #FFFFFF;
  border-radius: 0 0 10px 10px;
}
.show_details .right{
  background-image: url(../images/ion-arrow-right.png);
  width: 0.14rem;
  height: 0.24rem;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
}
.show_details .t4{
  color: #686868;
  /* font-family: 'cu'; */
  font-size: .24rem;
}
.show_details .div_2{
  padding: .2rem 0 ;
  border-bottom: 1px solid #00000010;
}
.show_details .t5{
  color: #383838;
  /* font-family: 'cu'; */
  font-size: .24rem;
  font-weight: 500;
}
.show_details .duihao{
  background-image: url(../images/duihao.png);
  width: 0.22rem;
  height: .22rem;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: .1rem;
}
.show_details .cuohao{
  background-image: url(../images/cuohao.png);
  width: 0.22rem;
  height: .22rem;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: .1rem;
}
.show_details .div_2:last-child{
  border: 0;
}
.show_details .div_3{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background-color: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: .72rem;
  border-radius: 10px 10px 0 0;
  border-bottom: 1px solid #EFF0F1;
  z-index: 800;
}
.show_details .div_3 a{
  font-size: 0.28rem;
  color: #686868;
  font-weight: 500;
  display: block;
  height: 100%;
  position: relative;
  line-height: .72rem;
}
.show_details .div_3 a.on{
  color: #FF163A;
}
.show_details .div_3 a.on::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  width: 0.56rem;
  height: 0.08rem;
  background: #FF163A;
  border-radius: 1rem 1rem 0 0;
  -webkit-transition: 150ms ease-in-out all;
  transition: 150ms ease-in-out all;
}
#introduce,#Notice,#recommendation{
scroll-margin-top:50vh
}
#introduce img{
  width:100%;
  display: block;
}
.show_details .div_3 a.on {
  font-weight: bold;
}
.show_details .t6{
  color: #383838;
  font-size: .24rem;
  font-weight: 500;
}
.bottom_div{
  position: absolute;
  height: 1.2rem;
  bottom: 0;
  padding-top: 0.6rem;
  background-color: #fff;
  background: linear-gradient( 180deg, rgba(255,255,255,0) 0%, #FFFFFF 60%);
  width: 100%;
  z-index: 99;
}
.show_details .introduce{
  font-size: 0.24rem;
  padding-bottom:.6rem;
  transition: height 0.3s ease;
  position: relative;
  max-height: 4rem;
  overflow: hidden;
}
.show_details .introduce p{
  font-size: 0.24rem;
  line-height: 1.5;
}
#toggleButton span{
color:#FF163A;
}
.radio_view {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.2rem;
}
.radio_view label:nth-of-type(n+10) {
  display: none;
}

.txt-block p{
	width:100%;
}
.txt-block p:nth-child(2n+1){
	line-height:.5rem
}

.txt-block p:nth-child(2n){
	line-height:.4rem
}
#toggleButton i{
  background-image: url(../images/right-Right.png);
  width: 0.2rem;
  height: .2rem;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: .05rem;
  transform: rotate(90deg);
  margin-left: .05rem;
}
.show_details .bottom_div i{
  background-image: url(../images/ion_arrow_more.png);
  width: 0.2rem;
  height: 0.2rem;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-right: .05rem;
  margin-left: .1rem;
}

.UP {
  transform: rotate(270deg ) !important; /* 旋转图标表示收回 */
}
.div_tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .2rem;
}
.div_tit .more {
  font-size: 0.24rem;
  color: #686868;
  background-image: url(../images/ion-arrow-right.png);
  display: block;
  background-repeat: no-repeat;
  background-size: 0.12rem 0.2rem;
  background-position: center right;
  padding-right: 0.2rem;
}
.show_details .t7{
  color: #383838;
  font-size: .32rem;
  font-weight: 500;
  /* font-family: 'cu'; */
}
.Notice .t4{
  line-height: .4rem;
}
.div_1 .index-section {
  background-color: #ffffff;
  padding: 0;
}
.show_details .recommendation .list .item{
  padding: 0;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid #EFF0F1;
  border-radius: 0;
}
.show_details .recommendation .list .item:last-child{
  padding: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.show_details .Notice{
  transition: height 0.3s ease;
  position: relative;
  max-height: 4.8rem;
  overflow: hidden;
}
.show_details .notice_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  justify-content: space-between;
}
.notice_wrap .notice_item {
  width: 48.2%;
  height: 0.88rem;
  background: #F7F8FA;
  border-radius: 0.1rem;
  padding: 0.1rem 0.2rem;
}
.notice_wrap .notice_item .p1 {
  font-size: 0.24rem;
  color: #383838;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.notice_wrap .notice_item .p1 .icon {
  width: 0.24rem;
  height: 0.24rem;
  margin-right: 0.06rem;
  background: url(../images/ion_light.png) 0 0 no-repeat;
  background-size: 0.24rem 0.24rem;
}
.notice_wrap .notice_item .p2 {
  font-size: 0.24rem;
  color: #959AA5;
  margin-top: 0.02rem;
}
.pop_title {
  height: 1rem;
  text-align: center;
  line-height: 1rem;
  font-size: 0.32rem;
  font-weight: 500;
}
.pop_con {
  padding: 0 0.24rem 1.6rem;
}
.pop_con .bt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.28rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.pop_con .bt .tips {
  font-size: 0.24rem;
  font-weight: 400;
  color: #686868;
  margin-left: 0.1rem;
}
.show_details .time{
  min-width: 55%;
  margin-bottom: .2rem;
  text-align: center;
  color: #333;
  min-height: 0.56rem;
  line-height:.56rem;
  padding: 0 0.32rem;
  background: #F5F5F5;
  border-radius: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.show_details .label_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.2rem 0.3rem;
}
.show_details input{
  display: none;
}
.show_details input[type=radio]:disabled+.time{
  color: #dddddd;
  background-color: #F5F5F5 !important;
}
.show_details input[type=radio]:disabled+.time-d{
  color: #dddddd;
  background-color: #F5F5F5 !important;
}
.show_details input[type=radio]:checked+.time{
  color: #FF163A;
  border: 1px solid #FF163A;
  background-color: #ffffff;
}
.show_details input[type=radio]:checked+.time-d{
  color: #FF163A;
  border: 1px solid #FF163A;
  background-color: #ffffff;
}
.show_details .time-d{
  color: #333;
  /*height: 0.56rem;*/
  padding: 0.1rem 0.2rem;
  background: #F5F5F5;
  border-radius: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #F5F5F5;
 }
 .show_details .time-d.dis{
  background-color: #F5F5F5;
  color: #CCCCCC;
 }
.van-popup--bottom{
  border-radius: 16px 16px 0 0;
}
.van-button--disabled{
  background-color:#f2f2f2 !important;
}
.bottom{
  position: fixed;
  outline: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.6rem;
  background-color: #fff;
  padding: 0 .24rem;
  z-index: 900;
}
.Heart{
  background-image: url(../images/Heart.png);
  width: 0.43rem;
  height: .4rem;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.bottom .confirm{
  width: 100%;
  height: .8rem;
  color: #fff;
  font-size: .3rem;
  display: block;
  line-height: .8rem;
  text-align: center;
  background: linear-gradient( 90deg, #EF18B6 0%, #FF3161 100%);
  box-shadow: inset 0px 3px 5px 0px #FF83AD, inset -3px -2px 1px 0px #FF7D8F;
  border-radius: 1rem;
}
.page-suorder{
  background-color:#ffffff ;
  min-height:100vh ;
}
.page-suorder .div_1{
  background-color: #fff;margin-bottom: .2rem;padding:.2rem
}
.page-suorder .tit {
  color: #00000064;
  font-size: 0.28rem;
  line-height: .8rem;
}
.page-suorder .tourist .tit {
  width: 1.5rem;
  flex-shrink: 0;
}
.buy_topbg {
  width: 100%;
  min-height: 3.8rem;
  color: #FFFFFF;
  padding: 0.2rem 0.24rem 0.6rem;
  background: linear-gradient( 180deg, #FB3869 0%, #FF7D63 100%);
  position: relative;
}
.buy_topbg::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  width: 2.62rem;
  height: 2.62rem;
  background: url(../images/bg_zs.png) right bottom no-repeat;
  background-size: 2.62rem 2.62rem;
}
.buy_topbg .p1 {
  font-weight: bold;
  font-size: 0.3rem;
}
.buy_topbg .p2 {
  font-size: 0.24rem;
  margin-top: 0.1rem;
}
.buy_topbg .div_b {
  font-weight: 500;
  font-size: 0.28rem;
  color: #FFFFFF;
  border-top: 1px solid rgba(255,255,255,0.3);
  margin-top: 0.2rem;
  padding-top: 0.2rem;
}
.buy_topbg .div_b .t1 {
font-size: 0.28rem;
}
.buy_topbg .div_b .t2 {
  font-size: 0.28rem;
  margin-top: 0.1rem;
}
.buy_topbg .t3 {
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}
.buy_topbg .t3 span {
  font-size: 0.28rem;
  font-weight: 500;
  margin-right: 0.2rem;
}
.buy_topbg .btn_wrap {
  display: flex;
  align-items: center;
}
.buy_topbg .input {
  font-size: 0.28rem;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 0 0.1rem;
  height: 0.4rem;
  border: none;
  background: transparent;
  width: 0.28rem;
  text-align: right;
}
.buy_topbg .btn {
  width: 0.4rem;
  height: 0.4rem;
  border: none;
  flex-shrink: 0;
}
.buy_topbg .btn_minus {
  background: url(../images/btn_minus.png) 0 0 no-repeat;
  background-size: 0.4rem 0.4rem;
}
.buy_topbg .btn_add {
  background: url(../images/btn_add.png) 0 0 no-repeat;
  background-size: 0.4rem 0.4rem;
}
.buy_topbg .btn_minus_dis {
  background: url(../images/btn_minus_dis.png) 0 0 no-repeat;
  background-size: 0.4rem 0.4rem;
}
.buy_topbg .btn_add_dis {
  background: url(../images/btn_add_dis.png) 0 0 no-repeat;
  background-size: 0.4rem 0.4rem;
}

.buy_con {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  margin-top: -0.4rem;
  padding: 0.4rem 0.24rem 1.6rem;
  border-radius: 0.4rem 0.4rem 0 0;
  position: relative;
}
.info_con {
  padding-top: 0.1rem;
}
.info_con .info_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.2rem;
}
.info_con .info_title .bt {
  font-size: 0.28rem;
  font-weight: bold;
}
.info_con .info_title .red {
  font-size: 0.24rem;
  color: #FF163A;
}
.info_con .info_wrap {
  display: flex;
  align-items: flex-start;
}
.info_con .category {
  margin-right: .2rem;
  margin-top: 0.1rem;
  width: 0.6rem;
	height: 0.6rem;
  background: url(../images/ion_peo.png) 0 0 no-repeat;
  background-size: 0.6rem 0.6rem;
  flex-shrink: 0;
}
.buy_con .info_list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-bottom: 0.2rem;
  margin-bottom: 0.2rem;
  border-bottom: 1px solid #EFF0F1;
}
.buy_con .info_wrap:last-child .info_list {
  border-bottom: 0;
  margin-bottom: 0;
}
.buy_con .info_item {
  display: flex;
  align-items: center;
}
.buy_con .info_item .label {
  font-size: 0.28rem;
  font-weight: bold;
  margin-right: 0.1rem;
}
.buy_con .info_item .input {
  flex: 1;
  font-size: 0.28rem;
  color: #383838;
  height: 0.6rem;
  line-height: 0.6rem;
  border: 0;
}
.buy_con .tips {
  font-size: 0.24rem;
  color: #A1A3A2;
  margin-top: 0.1rem;
}
.info_item .span {
  font-size: 0.2rem;
  color: #FF163A;
  height: 0.36rem;
  padding: 0 0.1rem;
  border-radius: 0.18rem;
  border: 1px solid #FF163A;
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
}
.van-radio__label {
  margin-left: 0 !important;
  font-size: 0.28rem !important;
  color: #333333 !important;
  display: flex;
  align-items: center;
}
.page-suorder .red{
  color: #FF163A;
  font-size: 0.24rem;
}
.page-suorder .tit .s {
  background: #FF163A;
  border-radius: 2px;
  padding: .1rem .1rem;
  margin-left: 6px;
  color: #fff;
  font-weight: normal;
  font-size: 0.28rem;

}
.page-suorder .phone{
	border:0;
  line-height: .8rem;
	font-size:.28rem;
	flex:1
}
.page-suorder .information_icon{
  width: 0.25rem;
  height: 0.25rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../images/Square.png);
}
.page-suorder .ticket{
	margin-top:.1rem;padding:.1rem 0;border-top:1px solid #00000010
}
.page-suorder .ban .title{
	color:#00000060 !important
}
.page-suorder .ban  span.condition{
	color:#00000060 !important
}
.page-suorder .category{
	margin-right: .2rem;
  width: 0.6rem;
	height: 0.6rem;
  background: url(../images/ion_peo.png) 0 0 no-repeat;
  background-size: 0.6rem 0.6rem;
}
 .order_fix_btn {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  height: 1.6rem;
  padding: 0 0.24rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          /* box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5); */
  border-top: 1px solid #EFF0F1;
}

 .order_fix_btn .v {
  color: #FF163A;
  font-size: 0.28rem;
  font-weight: bold;
}
.order_fix_btn .red {
  color: #FF163A;
}
.order_fix_btn .hint {
  font-size: 0.09387rem;
  color: #969696;
}
 .order_fix_btn .btn {
  font-weight: 600;
  font-size: 0.28rem;
  color: #FFFFFF;
  outline: none;
  border: 0;
  display: block;
  width: 2.4rem;
  height: 0.8rem;
  background: linear-gradient( 90deg, #EF18B6 0%, #FF3161 100%);
  box-shadow: inset 0px 3px 5px 0px #FF83AD, inset -3px -2px 1px 0px #FF7D8F;
  border-radius: 50px;
}
.page-suorder .information{
  flex: 1;
  position: relative;
}
.page-suorder .information::after{
 content: "";
   position: absolute;
   display: block;
 width:100%;
 height:1px;
  background-color:#00000010;
  bottom:-.07rem
}
.page-suorder .information span{
 line-height:.4rem
}
.page-suorder .add{
  flex:1;
  height:.8rem ;
  border-radius: .1rem;
  color: #d40c0b;
  border:1px solid #d40c0b;
  line-height: .8rem;
  text-align: center;
}
.page-suorder .title{
  font-size: .28rem;
  line-height: .8rem;
  display: flex;
  align-items: center;
}
.page-suorder .title label{
	margin-right:.3rem;
	width:40%
}
.page-suorder .details{
  font-size: .24rem;
  line-height: .4rem;
}

.page-suorder .tourist{
  border-bottom: 1px solid #EFF0F1;
  padding-bottom: .2rem;
  margin-bottom: .2rem;
}
.page-suorder .tourist select{
	background-color: #fff;
	border:1px solid #00000040;
	min-width:1.2rem;
	margin-right:.2rem;
	height:.46rem
}
.tourist .tourist_1{
	font-size: .28rem;
  flex-shrink: 0;
}
.tourist .txt_val_1{
	font-size: .28rem;
	margin:0 .2rem;
  flex-shrink: 0;
}
.tourist .txt_val{
	font-size: .28rem;
	flex: 1;
  margin-bottom: 0.2rem;
}

 .tourist .input_3{
	outline: none;
  border: 0;
  display: block;
  width: 2rem;
  height: .6rem;
  background: #FF163A;
  border-radius: 2px;
  color: #fff;
  font-size: 0.3rem;
  line-height: .6rem;
  text-align: center;
  border-radius: .44rem;
}
.page-suorder .fore_div .input{
	line-height:.6rem;
	border:0;
	background-color: #fff;
	font-size: .28rem;
}
.page-suorder .fore_div .preferential{
  font-size: .28rem;
  color: #000;
  line-height: .6rem;
  font-family: 'cu';
}
.page-suorder .fore_div .preferential .red{
color: #d40c0b;
font-size: .28rem;
margin-left:.03rem
}
.page-suorder .fore_div .right{
  width: 0.11rem;
     height: 0.21rem;
   margin-left:.1rem;
 background-position: center center;
 background-repeat: no-repeat;
 display:block;
 background-image: url(../images/Right.png);
}
.page-suorder .shop_innner .price {
  text-align: right;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
     color: #000;
  font-size: 0.24rem;
  font-family: 'cu';
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  line-height:.5rem
}

.page-suorder .shop_innner .price span {
  color: #FF163A;
  width: 1.5rem;
  display: block;
  text-align: left;
  margin-left: .1rem;
}
.page-pay {
  background-color: #fff;
  padding: 0 0.4rem ;
}

.page-pay .t1 {
  text-align: center;
  font-size: 0.34rem;
  padding: 0.6rem 0;
  font-family: 'cu';
}

.page-pay .t2 {
  text-align: center;
  color: #FF163A;
  font-weight: bold;
  font-size: 0.34rem;
  margin-top: 5px;
}
.page-pay .t3{
  text-align: center;
  font-size: 0.24rem;
  color: #00000064;
  text-align: center;
  width: 4.8rem;
  margin: 0 auto;
  margin-bottom: .2rem;
}

.page-pay .radio_group {
  margin-top: 0.17067rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.page-pay .radio_group .radio-view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.4rem;
  color: #303030;
  font-size: 0.28rem;
  font-family: 'cu';
}

.page-pay .radio_group input[type="radio"],
.page-pay .radio_group input[type="checkbox"] {
  width: 0.4rem;
  height: 0.4rem;
  background-color: #e5e5e5;
  border-radius: 50%;
}

.page-pay .radio_group input[type="radio"]:checked,
.page-pay .radio_group input[type="checkbox"]:checked {
  background: url(../images/ion-xuanzhong.png) no-repeat center/100%;
}

.page-pay .radio_group .wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-pay .radio_group .ion {
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.2rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
}

.page-pay .radio_group .ion.wx {
  background-image: url(../images/ion-wx.png);
}

.page-pay .radio_group .ion.yl {
  background-image: url(../images/ion-yl.png);
}

.page-pay .pay_btn {
  height: 0.4096rem;
  background: #FF163A;
  color: #fff;
  font-size: 0.13653rem;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border: 0;
  outline: none;
}
.selection {
  padding:0.3rem ;
  height: 100vh;
  padding-bottom: 1rem;
}
.selection .t1{
  font-size: .32rem;
  font-family: 'cu';


}
.selection .t2{
  font-size: .24rem;
  color: #00000064;
  line-height: .8rem;
}
.selection .price{
  width: 1.6rem;
  height: 0.56rem;
  line-height: .56rem;
  font-size: .24rem;
  font-family: 'cu';
  border: #00000046 1px solid;
  margin-right: .2rem;

}
.selection .price img{
  width: .32rem;
  height: .28rem;
  object-fit: cover;
  margin-right: .2rem;
}
.selection .delete{
  width: 0.14rem;
  height: 0.14rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  background-image: url(../images/ion-close.png);
}

.selection .t3{
  font-size: .24rem;
  color: #000000;
}
.selection .t4{
  font-size: .24rem;
  color: #ef4238;
}
.selection .t4{
  font-size: .24rem;
  color: #ef4238;
}
.selection .t5{
  font-size: .4rem;
  color: #ef4238;
  font-family: 'cu';
}
.selection .Select{
  width: 1.8rem;
  height: 1.05rem;
  background-color: #f7f7f7;
  margin-right: .2rem;
  padding: 0 .2rem;
}
.selection  .up{
  background-image: url(../images/ion-arrow-top.png);
  width: 0.2rem;
  height: .2rem;
  display: block;
  background-repeat: no-repeat;
  transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  background-size: cover;
}
.selection .Seat_selection{

  flex: 1;
  position: relative;
}
.selection .order_fix_btn{
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0);
}
.selection .Seat_selection .center{
  height: 100%;
  position: absolute;
  width: 100vw;
  left: -.3rem;
  background-color:#f6f6f6 ;
  height: calc(100% - .6rem);
  top: .3rem;
  padding-top: .5rem;
}
.selection .stage{
  width: 3rem;
  height: 1rem;
  font-size: .24rem;
  font-family: 'cu';
  line-height: 1rem;
  text-align: center;
  background-color: #fff;
  position: absolute;
  left: calc(50vw - 1.5rem);
}
.van-a{
  width: 100%;
  height: .8rem;
  color: #fff;
  font-size: .28rem;
  font-weight: bold;
  display: block;
  line-height: .8rem;
  text-align: center;
  background: linear-gradient( 90deg, #EF18B6 0%, #FF3161 100%);
  box-shadow: inset 0px 3px 5px 0px #FF83AD, inset -3px -2px 1px 0px #FF7D8F;
  border-radius: 1rem;
}

.pages  {
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border:1px solid #00000010;
  border-radius: .05rem;
  margin-top:.2rem
}

.pages  .btn {
  outline: none;
  height: 0.5rem;
  width: 0.5rem;
  background: #fff;
  color: #303030;
  border: 0;
  font-size: 18px;
  font-weight: bold;
  border-radius: .05rem 0 0 .05rem;
  border-right:1px solid #00000010
}
.pages .btn:last-of-type{
 border-radius:0 .05rem .05rem 0;
 border-left:1px solid #00000010;
 border-right:0
}

.pages  .input {
  border-style: solid;
  border-color: #fff;
  border-width: 1px 0;
  height: 0.5rem;
  width: 1rem;
  text-align: center;
  color: #303030;
  font-size: 18px;
}
.tourist .title input[type='radio'] {
  appearance: none; /* 用于覆盖默认的外观 */
  -webkit-appearance: none; /* Safari and Chrome */
  -moz-appearance: none; /* Firefox */
  margin: 0;
  margin-right: 8px;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%; /* 使其呈圆形 */
  border: 1px solid #ccc; /* 默认边框颜色 */
  position: relative;
}
.tourist .title input[type='radio']:checked{
  border: 1px solid #FF163A;

}
.tourist .title input[type="radio"]:checked:before{
  content: '';
  display: block;
  width:7px;
  height: 7px;
  background-color: #FF163A; /* 修改选中状态的颜色 */
  border-radius: 50%; /* 使其呈圆形 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  }
  .van-field__control::placeholder{
  color:#999 !important
  }
  .page-paysuccess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 30%;
}

.page-paysuccess .ion {
  width: 1.2rem;
  height: 1.2rem;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url(../images/ion-wancheng.png);
}

.page-paysuccess .tit {
  margin: 7% 0 8%;
  color: #303030;
  font-size: 0.36rem;
}

.page-paysuccess .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page-paysuccess .btn {
  background: #ffffff;
  border-radius: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0.128rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #e5e5e5;
  width: 1.8rem;
  height: .6rem;
  font-size:.24rem
}

.home_link {
  display: block;
  width: 0.44rem;
  height: 0.44rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/home_bg.png);
  margin-top: .1rem;
}
.home_bank_t{
    color: #d40c0b;
    font-family: PingFang SC, Microsoft YaHei;
    font-size: 0.26rem;
}
.home_bank {
  display: block;
  width: 0.43rem;
  height: 0.43rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url(../images/home_bg_bank.png);
}
.home_fu{
  background-color:#fff;
  border-radius:.6rem;
  box-shadow: 0px 0px 6px 1px #00000040;
  padding: .16rem .1rem;
  position: fixed;
  z-index: 101;
  right: 0.22rem;
  bottom: 1.7rem;
}

.top_bg {
  padding: 0 0.24rem;
  background: linear-gradient( 180deg, #FFF0F3 0%, #FFF9F1 65.05%, rgba(255,236,238,0) 100%);
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.2rem;
  margin-top: 1.34rem;
}
/* 原始价样式 */
.original-price {
    font-size: 0.28rem;
    color: #878686;
    margin-left: 0.1rem;
    line-height: 1;
    text-align: right;
}
/* 下浮场景：划线原始价 */
.original-price.del {
    text-decoration: line-through;
    display: inline-block;
}
.original-price-small-del {
    font-size: 0.24rem;
    color: #878686;
    margin-left: 0.1rem;
    line-height: 1;
    text-align: right;
    text-decoration: line-through;
    display: inline-block;
}
/* 服务费样式（上浮场景） */
.fee-price {
    color:#FF163A;
    font-size:.28rem;
    margin:0.05rem 0 0 0;
    font-weight: bold;
}
.fee-price-nobold {
    color:#FF163A;
    font-size:.28rem;
    margin:0.05rem 0 0 0;
}

.index-section .list .addfee {
    color: #FF163A;
    font-size: .26rem;
    font-weight: 600;
    text-align: right;
    flex-shrink: 0;
    /* font-family: 'cu'; */
}
.show_details .t2 .addfee {
    font-size: 0.24rem;
    color: #FF163A;
    margin: 0 0.02rem;
    white-space: normal;
    display: inline-block;
}
.order_fix_btn .price-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.order_fix_btn .fee-tip {
    font-size: 0.22rem !important; /* 强制生效 */
    color: #999 !important;
    margin-top: 0.05rem !important;
    line-height: 1.2; /* 行高适配 */
}
/* 确保待支付区域和右侧价格行对齐 */
.order_fix_btn {
    align-items: center; /* 保持垂直居中 */
}
.pay_addfee{
    color:#FF163A;;font-size:.26rem;margin-left: 5px;
}
.pay_addfee-width{
    color:#FF163A;;font-size:.26rem;display: block;
    width: 100%;

}

.simple-decimal-input {
    width: 100%;
    padding: 10px;
    font-size: 16px; /* 手机不缩放 */
    border: 1px solid #ddd;
    border-radius: 6px;
    -webkit-appearance: none; /* 去掉iOS默认样式，避免变形 */
}
input[type="checkbox"]:checked + .checked_item .lab_f {
    border-color: #cd2327;
    background-color: #fff;
}
.page-suorder .xz_list .page_jyk_pay .jyk_content input[type="checkbox"]:checked + .checked_item input[type="tel"] {
    border-color: #cd2327 !important;
}
#DailyLoginPopup {
    display: block !important;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
}

#DailyLoginPopup .daily-login-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000000;
}

#DailyLoginPopup .daily-login-wrap {
    position: fixed;
    left: 38px;
    right: 37px;
    top: 215px;
    z-index: 1000001;
}

#DailyLoginPopup .daily-login-popup {
    width: 100%;
    text-align: center;
}

#DailyLoginPopup .daily-login-popup-card {
    position: relative;
    width: 100%;
    height: 335px;
    border-radius: 16px;
}

#DailyLoginPopup .daily-login-popup-bg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

#DailyLoginPopup .daily-login-popup-title {
    position: absolute;
    left: 51px;
    right: 51px;
    top: 120px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 22px;
    color: #000;
    line-height: 30px;
    text-align: center;
}

#DailyLoginPopup .daily-login-popup-text {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 65px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #000;
    line-height: 20px;
    text-align: left;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

#DailyLoginPopup .daily-login-popup-close {
    display: inline-block;
    margin: 20px auto 0;
    width: 26px;
    height: 26px;
    text-decoration: none;
}

#DailyLoginPopup .daily-login-popup-close-img {
    display: block;
    width: 100%;
    height: 100%;
}
#DailyLoginPopup{opacity:1;transition:opacity .2s ease}
#DailyLoginPopup.is-hiding{opacity:0}
/* 每日登录弹窗基础样式 */
#DailyLoginPopup {
    opacity: 1;
    transition: opacity .2s ease;
}

/* 每日登录弹窗隐藏动画 */
#DailyLoginPopup.is-hiding {
    opacity: 0;
}

/* 订单提交提示弹窗基础样式 */
#OrderSubmitTipPopup {
    display: none;
    opacity: 1;
    transition: opacity .2s ease;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000000;
}

/* 订单提交提示弹窗显示状态 */
#OrderSubmitTipPopup.is-show {
    display: block;
}

/* 订单提交提示弹窗隐藏动画 */
#OrderSubmitTipPopup.is-hiding {
    opacity: 0;
}

/* 遮罩层 */
#OrderSubmitTipPopup .daily-login-mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .55);
    z-index: 1000000;
}

/* 弹窗内容容器 */
#OrderSubmitTipPopup .daily-login-wrap {
    position: fixed;
    left: 38px;
    right: 37px;
    top: 215px;
    z-index: 1000001;
}

/* 弹窗主体 */
#OrderSubmitTipPopup .daily-login-popup {
    width: 100%;
    text-align: center;
}

/* 弹窗卡片 */
#OrderSubmitTipPopup .daily-login-popup-card {
    position: relative;
    width: 100%;
    height: 335px;
    border-radius: 16px;
}

/* 弹窗背景图 */
#OrderSubmitTipPopup .daily-login-popup-bg {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* 弹窗标题 */
#OrderSubmitTipPopup .daily-login-popup-title {
    position: absolute;
    left: 51px;
    right: 51px;
    top: 120px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 600;
    font-size: 22px;
    color: #000;
    line-height: 30px;
    text-align: center;
    font-style: normal;
}

/* 弹窗文本内容 */
#OrderSubmitTipPopup .daily-login-popup-text {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 65px;
    height: 100px;
    font-family: PingFangSC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #000;
    line-height: 20px;
    text-align: left;
    font-style: normal;
}

/* 关闭按钮 */
#OrderSubmitTipPopup .daily-login-popup-close {
    display: inline-block;
    margin: 20px auto 0;
    width: 26px;
    height: 26px;
    text-decoration: none;
}

/* 关闭按钮图标 */
#OrderSubmitTipPopup .daily-login-popup-close-img {
    display: block;
    width: 100%;
    height: 100%;
}
