/*reset css*/

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td,
iframe {
  margin: 0;
  padding: 0;
}
img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  display: block;
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
fieldset,
img {
  border: 0;
}
address,
caption,
cite,
dfn,
em,
th,
var,
i,
em {
  font-style: normal;
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}
a,
label,
button,
input,
select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input,
select,
button {
  font: 100% tahoma, \5b8b\4f53, arial;
  vertical-align: baseline;
  border-radius: 0;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
input[type="file"] > input[type="button"]::-moz-focus-inner {
  border: none;
}
input[type=checkbox],
input[type=radio] {
  vertical-align: middle;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  margin: 0;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}
textarea {
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  overflow: auto;
  resize: none;
  font: 100% tahoma, \5b8b\4f53, arial;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  outline: none;
}
html,
body {
  height: 100%;
  font-size: 12px;
  color: #333;
  background-color: #f5f5f5;
}

/*css 原子类*/
/*项目字体*/
html {
    font-family: Helvetica, Tahoma, Arial, "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
    font-family: Helvetica, Tahoma, Arial, "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
}

/*定位类型*/
.rel {position: relative;}
.abs {position: absolute;}


/*display 属性*/
.inline {display: inline;}
.block {display: block;}
.inline-block {display: inline-block;}


/*flex*/
.flex {display: flex;}


.flex1{
    flex: 1 1 0;
}


.flex2{
    flex: 2 1 0;
}

.flex-base {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-end;
}

.flex-right {
    justify-content: flex-end !important;
}


.flex-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-around;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.layout-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-column{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}


.flex-column-c{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.flex-end {
    align-items: flex-end;
}
.flex-shrink{flex-shrink: 0;}


/*文字定位*/
.tl {text-align: left;}
.tc {text-align: center;}
.tr {text-align: right;}

/*垂直对齐位置*/
.vam {vertical-align:middle;}


/*删除线*/
.line-through {text-decoration:line-through;}

/*浮动相关*/
.fl{float: left;}
.fr{float: right;}
.cb {clear:both;}
.clearfix:after {}


/*color*/
.c3{color: #333;}
.c6{color: #666;}
.c8{color: #888;}
.c9{color: #999;}
.ca{color: #aaa;}
.cc{color: #ccc;}
.cd{color: #ddd;}
.ce{color: #eee;}

.c-white{color: #fff;}
.color4{color: #b6a380;}
.color5{color: #6f5f5c;}

/*background-color*/
.bgc-white {
  background-color: #fff;
}


.red {color: #f00;}
.white {color: #fff;}
.c-primary {color: #fc6a7b;}

.w10r {
  width: 1rem;
}

.w8r {
  width: .8rem;
}

.w6r {
  width: .6rem;
}

.w4r {
  width: .4rem;
}


/*width*/
.w5p {width: 5%}
.w10p {width: 10%}
.w20p {width: 20%}
.w25p {width: 25%}
.w33p {width: 33.3%}
.w50p {width: 50%}
.w75p {width: 75%}
.w80p {width: 80%}
.w100p {width: 100%}

/*height*/
.h8r {
  height: .8rem;
}
.h100p {height: 100%}


/*z-index*/
.z-10{z-index: 10}
/*font-weight*/
.fw6{ font-weight: 600;}
.fw9{ font-weight: 900;}

.nowrap {
    white-space:nowrap; text-overflow:ellipsis; overflow:hidden;
}

/*border*/
.border-top {border-top: 1px solid #eee}
.border-bottom {border-bottom: 1px solid #eee}
.border-dashed-a {border-bottom: 1px dashed #aaa }



.f2r {font-size: .2rem;}
.f24r {font-size: .24rem;}
.f26r {font-size: .26rem;}
.f3r {font-size: .3rem;}
.f32r {font-size: .32rem;}
.f4r {font-size: .4rem;}
.fw7 {font-weight: 700;}



.mt1r {margin-top: .1rem}
.mt2r {margin-top: .2rem}
.mt5r {margin-top: .5rem}
.mt10r {margin-top: 1rem}
.ml1r {margin-left: .1rem}
.ml2r {margin-left: .2rem}
.mr2r {margin-right: .2rem}
.ml5r {margin-left: .5rem}
.p1r {padding: .1rem;}
.p2r {padding: .2rem;}
.pt2r {padding-top: .2rem;}


.w5r {width: .5rem;}
.w6r {width: .6rem;}
.w10r {width: 1rem;}
.w20r {width: 2rem;}



.mi-info-div {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.top8r {top: .8rem;}
.top10r {top: 1rem;}
.bottom8r {bottom: .8rem;}
.bottom10r {bottom: 1rem;}
.bottom12r {bottom: 1rem;}



.m-slider {
    width: 100%;
    position: relative;
    overflow-x: hidden;
}


.slider-wrapper {
   height: 4rem !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    position: relative;
    z-index: 1;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    align-items: center;
}

.slider-item {
    width: 100%;
    height: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


.slider-item img {
    width: 100%; 
}


.slider-pagination {
    width: 100%;
    z-index: 2;
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: .2rem auto;

}



.slider-pagination > .slider-pagination-item {
    margin: 0 .08rem;
    width: .16rem;
    height: .16rem;
    display: inline-block;
    border-radius: 100%;
    background-color: #aaa;
}

.slider-pagination > .slider-pagination-item-active {
  background-color: #fc6a7b;
}

@media (min-width: 768px) { 
    .mi-info-div {
        width: 768px!important;
        margin-left: -384px;
        left: 50% !important;
    }

    .nav-2 {
        position: absolute;
        width: 768px !important;
        margin-left: -384px;
        left: 50% !important;
    }
}


.text-center {text-align: center;}
.text-right {text-align: right;}


.of-hidden {
  overflow: hidden;
}


.max-btn {
    margin:.5rem 0;
    margin-left: 3%;
    width: 94%;
    height: .8rem;
    line-height: .8rem;
    border-radius: .05rem;
    background-color: #fc6a7b;
    text-align: center;
    color: #fff;
    font-size: .3rem;
}

.nocheck {
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border:1px solid #aaa;
    border-radius: 50%;
}

.check {
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background-color: #fc6a7b;
    text-align: center;
    line-height: .24rem;
}

.check:before {
    display: inline-block;
    content: '';
    width: .16rem;
    height: .12rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);

}

.icon-return {
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-top:2px solid #fff;
    border-left:2px solid #fff;
    transform: rotate(-45deg);
}


.good-box {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    margin-left: .1rem;
    border-radius: .1rem;
    overflow: hidden;
}

.good-box img {
    max-width: 100%;
    max-height: 100%;
}

.good-item {
    border-top: 1px solid #ddd;
}



.good-detail {
    height: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.good-others {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: space-between;
}


.spinner {
    display: flex;
    align-items: center;
    
}

.spinner input{
    width: .6rem;
    border:none;
    border:1px solid #eee;
    text-align: center;
    padding: .1rem;
}

.spinner p {
    border:1px solid #eee;
    font-size: .3rem;
    padding: .06rem .12rem .08rem;
    background-color: #eee;
    width: .5rem;
    text-align: center;
}

.spinner p:first-child {
    border-right: none;
    border-radius: .05rem 0 0 .05rem;
}

.spinner p:last-child {
    border-left: none;
    border-radius: 0 .05rem .05rem  0;
}

/*下划线*/
.u-line {
    text-decoration:underline;
}


input[type="radio"], input[type="checkbox"]:not(.switch) {
  -webkit-appearance: none;
  -moz-appearance: none;
  /*position: relative;
  vertical-align: top;
  margin-left: 10px;
  margin-right: 5px;
  font-size: 24px;*/
  display: inline-block;
    width: .3rem;
    height: .3rem;
    border:1px solid #aaa;
    border-radius: 50%;
}


/*.checkbox:before {
    content: "\e901";
    color: #D9D9D9;
}

.checkbox:checked:before{
    color: #4285f4;
    content: "\e900";
}
*/


/*input[type="radio"]:before {
    content: "\e903";
    color: #D9D9D9;
}*/


input[type="radio"]:checked{
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background-color: #fc6a7b;
    text-align: center;
    line-height: .16rem;
}

input[type="radio"]:checked:before{
    display: inline-block;
    content: '';
    width: .16rem;
    height: .12rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}


input[type="checkbox"]:checked{
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background-color: #fc6a7b;
    text-align: center;
    line-height: .16rem;
}

input[type="checkbox"]:checked:before{
    display: inline-block;
    content: '';
    width: .16rem;
    height: .12rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}

/*.nocheck {
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border:1px solid #aaa;
    border-radius: 50%;
}

.check {
    display: inline-block;
    width: .3rem;
    height: .3rem;
    border-radius: 50%;
    background-color: #fc6a7b;
    text-align: center;
    line-height: .24rem;
}

.check:before {
    display: inline-block;
    content: '';
    width: .16rem;
    height: .12rem;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(-45deg);
}*/