html,body{
    /* font-family:"Microsoft YaHei", Helvetica, Arial, sans-serif; */
    font-family:"PingFangSC-Regular", sans-serif,"pingfangsc";
}
body{
    background-color: #f7f7f7;
    line-height: normal;
}
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.fl{
    float:left;
}
.fr{
    float:right;
}
.modal-backdrop{
  z-index: 850 !important;
}
.modal{
  z-index: 900 !important;
}
#myModal{
  overflow:auto;
}

/**input 兼容性**/
/**
 *  修改google浏览器，默认的聚焦黄色背景为白色
 */
input:-webkit-autofill,select:-webkit-autofill {  
  -webkit-box-shadow: 0 0 0px 1000px white  inset !important;  
} 


input{
  outline-color: invert ;
  outline-style: none ;
  outline-width: 0px ;
  border: none ;
  border-style: none ;
  text-shadow: none ;
  -webkit-appearance: none ;
  -webkit-user-select: text ;
  outline-color: transparent ;
  box-shadow: none;
}

/* Chrome浏览器 */
input::-webkit-input-placeholder {
  color: #a3a3a3;
}

/* 火狐浏览器 */
input::-moz-placeholder {
  color: #a3a3a3;
}

/* IE */
input:-ms-input-placeholder {
  color: #a3a3a3;
}
/* Chrome浏览器 */
textarea::-webkit-input-placeholder {
  color: #a3a3a3;
}

/* 火狐浏览器 */
textarea::-moz-placeholder {
  color: #a3a3a3;
}

/* IE */
textarea:-ms-input-placeholder {
  color: #a3a3a3;
}
/* ==================
          布局
 ==================== */

/*  -- flex弹性布局 -- */

.flex {
    display: flex;
}

.basis-xs {
    flex-basis: 20%;
}

.basis-sm {
    flex-basis: 40%;
}

.basis-smm{
    flex-basis: 25%;
}
.basis-df {
    flex-basis: 50%;
}

.basis-lg {
    flex-basis: 60%;
}

.basis-lgg{
    flex-basis: 75%;
}
.basis-xl {
    flex-basis: 80%;
}

.flex-sub {
    flex: 1;
}

.flex-twice {
    flex: 2;
}

.flex-treble {
    flex: 3;
}

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

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

.align-start {
    align-items: flex-start;
}

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

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

.align-stretch {
    align-items: stretch;
}

.self-start {
    align-self: flex-start;
}

.self-center {
    align-self: flex-center;
}

.self-end {
    align-self: flex-end;
}

.self-stretch {
    align-self: stretch;
}

.align-stretch {
    align-items: stretch;
}

.justify-start {
    justify-content: flex-start;
}

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

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

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

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

/* grid布局 */

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

.grid.grid-square {
    overflow: hidden;
}

.grid.grid-square .cu-tag {
    position: absolute;
    right: 0;
    top: 0;
    border-bottom-left-radius: 3px;
    padding: 3px 6px;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.grid.grid-square>view>text[class*="cuIcon-"] {
    font-size: 26px;
    position: absolute;
    color: #8799a3;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.grid.grid-square>view {
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}
.grid.grid-square>view.bg-img image {
    width: 100%;
    height: 100%;
    position: absolute;
}
.grid.col-1.grid-square>view {
    padding-bottom: 100%;
    height: 0;
    margin-right: 0;
}

.grid.col-2.grid-square>view {
    padding-bottom: calc((100% - 10px)/2);
    height: 0;
    width: calc((100% - 10px)/2);
}

.grid.col-3.grid-square>view {
    padding-bottom: calc((100% - 20px)/3);
    height: 0;
    width: calc((100% - 20px)/3);
}

.grid.col-4.grid-square>view {
    padding-bottom: calc((100% - 30px)/4);
    height: 0;
    width: calc((100% - 30px)/4);
}

.grid.col-5.grid-square>view {
    padding-bottom: calc((100% - 40px)/5);
    height: 0;
    width: calc((100% - 40px)/5);
}

.grid.col-2.grid-square>view:nth-child(2n),
.grid.col-3.grid-square>view:nth-child(3n),
.grid.col-4.grid-square>view:nth-child(4n),
.grid.col-5.grid-square>view:nth-child(5n) {
    margin-right: 0;
}

.grid.col-1>view {
    width: 100%;
}

.grid.col-2>view {
    width: 50%;
}

.grid.col-3>view {
    width: 33.33%;
}

.grid.col-4>view {
    width: 25%;
}

.grid.col-5>view {
    width: 20%;
}

/*  -- 内外边距 -- */
.margin-0 {
    margin: 0;
  }
  
  .margin-xs {
    margin: 0.13333rem;
  }
  
  .margin-sm {
    margin: 0.26667rem;
  }
  
  .margin {
    margin: 0.4rem;
  }
  
  .margin-lg {
    margin: 0.53333rem;
  }
  
  .margin-xl {
    margin: 0.66667rem;
  }
  
  .margin-top-xs {
    margin-top: 0.13333rem;
  }
  
  .margin-top-sm {
    margin-top: 0.26667rem;
  }
  
  .margin-top {
    margin-top: 0.4rem;
  }
  
  .margin-top-lg {
    margin-top: 0.53333rem;
  }
  
  .margin-top-xl {
    margin-top: 0.66667rem;
  }
  
  .margin-right-xs {
    margin-right: 0.13333rem;
  }
  
  .margin-right-sm {
    margin-right: 0.26667rem;
  }
  
  .margin-right {
    margin-right: 0.4rem;
  }
  
  .margin-right-lg {
    margin-right: 0.53333rem;
  }
  
  .margin-right-xl {
    margin-right: 0.66667rem;
  }
  
  .margin-bottom-xs {
    margin-bottom: 0.13333rem;
  }
  
  .margin-bottom-sm {
    margin-bottom: 0.26667rem;
  }
  
  .margin-bottom {
    margin-bottom: 0.4rem;
  }
  
  .margin-bottom-lg {
    margin-bottom: 0.53333rem;
  }
  
  .margin-bottom-xl {
    margin-bottom: 0.66667rem;
  }
  
  .margin-left-xs {
    margin-left: 0.13333rem;
  }
  
  .margin-left-sm {
    margin-left: 0.26667rem;
  }
  
  .margin-left {
    margin-left: 0.4rem;
  }
  
  .margin-left-lg {
    margin-left: 0.53333rem;
  }
  
  .margin-left-xl {
    margin-left: 0.66667rem;
  }
  
  .margin-lr-xs {
    margin-left: 0.13333rem;
    margin-right: 0.13333rem;
  }
  
  .margin-lr-sm {
    margin-left: 0.26667rem;
    margin-right: 0.26667rem;
  }
  
  .margin-lr {
    margin-left: 0.4rem;
    margin-right: 0.4rem;
  }
  
  .margin-lr-lg {
    margin-left: 0.53333rem;
    margin-right: 0.53333rem;
  }
  
  .margin-lr-xl {
    margin-left: 0.66667rem;
    margin-right: 0.66667rem;
  }
  
  .margin-tb-xs {
    margin-top: 0.13333rem;
    margin-bottom: 0.13333rem;
  }
  
  .margin-tb-sm {
    margin-top: 0.26667rem;
    margin-bottom: 0.26667rem;
  }
  
  .margin-tb {
    margin-top: 0.4rem;
    margin-bottom: 0.4rem;
  }
  
  .margin-tb-lg {
    margin-top: 0.53333rem;
    margin-bottom: 0.53333rem;
  }
  
  .margin-tb-xl {
    margin-top: 0.66667rem;
    margin-bottom: 0.66667rem;
  }
  
  .padding-0 {
    padding: 0;
  }
  
  .padding-xs {
    padding: 0.13333rem;
  }
  
  .padding-sm {
    padding: 0.26667rem;
  }
  
  .padding {
    padding: 0.4rem;
  }
  
  .padding-lg {
    padding: 0.53333rem;
  }
  
  .padding-xl {
    padding: 0.66667rem;
  }
  
  .padding-top-xs {
    padding-top: 0.13333rem;
  }
  
  .padding-top-sm {
    padding-top: 0.26667rem;
  }
  
  .padding-top {
    padding-top: 0.4rem;
  }
  
  .padding-top-lg {
    padding-top: 0.53333rem;
  }
  
  .padding-top-xl {
    padding-top: 0.66667rem;
  }
  
  .padding-right-xs {
    padding-right: 0.13333rem;
  }
  
  .padding-right-sm {
    padding-right: 0.26667rem;
  }
  
  .padding-right {
    padding-right: 0.4rem;
  }
  
  .padding-right-lg {
    padding-right: 0.53333rem;
  }
  
  .padding-right-xl {
    padding-right: 0.66667rem;
  }
  
  .padding-bottom-xs {
    padding-bottom: 0.13333rem;
  }
  
  .padding-bottom-sm {
    padding-bottom: 0.26667rem;
  }
  
  .padding-bottom {
    padding-bottom: 0.4rem;
  }
  
  .padding-bottom-lg {
    padding-bottom: 0.53333rem;
  }
  
  .padding-bottom-xl {
    padding-bottom: 0.66667rem;
  }
  
  .padding-left-xs {
    padding-left: 0.13333rem;
  }
  
  .padding-left-sm {
    padding-left: 0.26667rem;
  }
  
  .padding-left {
    padding-left: 0.4rem;
  }
  
  .padding-left-lg {
    padding-left: 0.53333rem;
  }
  
  .padding-left-xl {
    padding-left: 0.66667rem;
  }
  
  .padding-lr-xs {
    padding-left: 0.13333rem;
    padding-right: 0.13333rem;
  }
  
  .padding-lr-sm {
    padding-left: 0.26667rem;
    padding-right: 0.26667rem;
  }
  
  .padding-lr {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  
  .padding-lr-lg {
    padding-left: 0.53333rem;
    padding-right: 0.53333rem;
  }
  
  .padding-lr-xl {
    padding-left: 0.66667rem;
    padding-right: 0.66667rem;
  }
  
  .padding-tb-xs {
    padding-top: 0.13333rem;
    padding-bottom: 0.13333rem;
  }
  
  .padding-tb-sm {
    padding-top: 0.26667rem;
    padding-bottom: 0.26667rem;
  }
  
  .padding-tb {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  
  .padding-tb-lg {
    padding-top: 0.53333rem;
    padding-bottom: 0.53333rem;
  }
  
  .padding-tb-xl {
    padding-top: 0.66667rem;
    padding-bottom: 0.66667rem;
  }

/* 门店拼团 */

/* ==================
          背景
 ==================== */

.line-red::after,
.lines-red::after {
    border-color: #e54d42;
}

.line-orange::after,
.lines-orange::after {
    border-color: #f37b1d;
}

.line-yellow::after,
.lines-yellow::after {
    border-color: #fbbd08;
}

.line-olive::after,
.lines-olive::after {
    border-color: #8dc63f;
}

.line-green::after,
.lines-green::after {
    border-color: #39b54a;
}

.line-cyan::after,
.lines-cyan::after {
    border-color: #1cbbb4;
}

.line-blue::after,
.lines-blue::after {
    border-color: #0081ff;
}

.line-purple::after,
.lines-purple::after {
    border-color: #6739b6;
}

.line-mauve::after,
.lines-mauve::after {
    border-color: #9c26b0;
}

.line-pink::after,
.lines-pink::after {
    border-color: #e03997;
}

.line-brown::after,
.lines-brown::after {
    border-color: #a5673f;
}

.line-grey::after,
.lines-grey::after {
    border-color: #8799a3;
}

.line-gray::after,
.lines-gray::after {
    border-color: #aaaaaa;
}

.line-black::after,
.lines-black::after {
    border-color: #333333;
}

.line-white::after,
.lines-white::after {
    border-color: #ffffff;
}

.bg-red {
    background-color: #e54d42;
    color: #ffffff;
}

.bg-orange {
    background-color: #f37b1d;
    color: #ffffff;
}

.bg-yellow {
    background-color: #fbbd08;
    color: #333333;
}

.bg-olive {
    background-color: #8dc63f;
    color: #ffffff;
}

.bg-green {
    background-color: #39b54a;
    color: #ffffff;
}

.bg-cyan {
    background-color: #1cbbb4;
    color: #ffffff;
}

.bg-blue {
    background-color: #0081ff;
    color: #ffffff;
}

.bg-purple {
    background-color: #6739b6;
    color: #ffffff;
}

.bg-mauve {
    background-color: #9c26b0;
    color: #ffffff;
}

.bg-pink {
    background-color: #e03997;
    color: #ffffff;
}

.bg-brown {
    background-color: #a5673f;
    color: #ffffff;
}

.bg-grey {
    background-color: #8799a3;
    color: #ffffff;
}

.bg-gray {
    background-color: #f0f0f0;
    color: #333333;
}

.bg-black {
    background-color: #333333;
    color: #ffffff;
}

.bg-white {
    background-color: #ffffff;
    color: #666666;
}

.bg-shadeTop {
    background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
    color: #ffffff;
}

.bg-shadeBottom {
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1));
    color: #ffffff;
}

.bg-red.light {
    color: #e54d42;
    background-color: #fadbd9;
}

.bg-orange.light {
    color: #f37b1d;
    background-color: #fde6d2;
}

.bg-yellow.light {
    color: #fbbd08;
    background-color: #fef2ced2;
}

.bg-olive.light {
    color: #8dc63f;
    background-color: #e8f4d9;
}

.bg-green.light {
    color: #39b54a;
    background-color: #d7f0dbff;
}

.bg-cyan.light {
    color: #1cbbb4;
    background-color: #d2f1f0;
}

.bg-blue.light {
    color: #0081ff;
    background-color: #cce6ff;
}

.bg-purple.light {
    color: #6739b6;
    background-color: #e1d7f0;
}

.bg-mauve.light {
    color: #9c26b0;
    background-color: #ebd4ef;
}

.bg-pink.light {
    color: #e03997;
    background-color: #f9d7ea;
}

.bg-brown.light {
    color: #a5673f;
    background-color: #ede1d9;
}

.bg-grey.light {
    color: #8799a3;
    background-color: #e7ebed;
}

.bg-gradual-red {
    background-image: linear-gradient(45deg, #f43f3b, #ec008c);
    color: #ffffff;
}

.bg-gradual-orange {
    background-image: linear-gradient(45deg, #ff9700, #ed1c24);
    color: #ffffff;
}

.bg-gradual-green {
    background-image: linear-gradient(45deg, #39b54a, #8dc63f);
    color: #ffffff;
}

.bg-gradual-purple {
    background-image: linear-gradient(45deg, #9000ff, #5e00ff);
    color: #ffffff;
}

.bg-gradual-pink {
    background-image: linear-gradient(45deg, #ec008c, #6739b6);
    color: #ffffff;
}

.bg-gradual-blue {
    background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
    color: #ffffff;
}
.bg-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-mask {
    background-color: #333333;
    position: relative;
}
.bg-mask::after {
    content: "";
    border-radius: inherit;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.bg-mask view,
.bg-mask cover-view {
    z-index: 5;
    position: relative;
}

.bg-video {
    position: relative;
}

.bg-video video {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

/* ==================
          文本
 ==================== */

 .text-xs {
    font-size: 0.26667rem;
  }
  
.text-sm {
font-size: 0.32rem;
}

.text-df {
font-size: 0.37333rem;
}

.text-lg {
font-size: 0.42667rem;
}

.text-xl {
font-size: 0.48rem;
}

.text-xxl {
font-size: 0.58667rem;
}

.text-sl {
font-size: 0.26667rem;
}

.text-xsl {
font-size: 1.6rem;
}

.text-Abc {
    text-transform: Capitalize;
}

.text-ABC {
    text-transform: Uppercase;
}

.text-abc {
    text-transform: Lowercase;
}

.text-price::before {
    content: "¥";
    font-size: 80%;
    margin-right: 2px;
}

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

.text-bold {
    font-weight: bold;
}

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

.text-content {
    line-height: 1.6;
}

.text-left {
    text-align: left;
}

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

.text-red,
.line-red,
.lines-red {
    color: #e54d42;
}

.text-orange,
.line-orange,
.lines-orange {
    color: #f37b1d;
}

.text-yellow,
.line-yellow,
.lines-yellow {
    color: #fbbd08;
}

.text-olive,
.line-olive,
.lines-olive {
    color: #8dc63f;
}

.text-green,
.line-green,
.lines-green {
    color: #39b54a;
}

.text-cyan,
.line-cyan,
.lines-cyan {
    color: #1cbbb4;
}

.text-blue,
.line-blue,
.lines-blue {
    color: #0081ff;
}

.text-purple,
.line-purple,
.lines-purple {
    color: #6739b6;
}

.text-mauve,
.line-mauve,
.lines-mauve {
    color: #9c26b0;
}

.text-pink,
.line-pink,
.lines-pink {
    color: #e03997;
}

.text-brown,
.line-brown,
.lines-brown {
    color: #a5673f;
}

.text-grey,
.line-grey,
.lines-grey {
    color: #8799a3;
}

.text-gray,
.line-gray,
.lines-gray {
    color: #aaaaaa;
}

.text-black,
.line-black,
.lines-black {
    color: #333333;
}

.text-white,
.line-white,
.lines-white {
    color: #ffffff;
}
.img-xl{
    width: 100%;
}
.text-decoration{
    text-decoration:line-through;
}
.hidden{
  display: none !important;
}