html {
    font-size: 62.5%;
    
}


/* 去除iPhone中默认的input样式 */
input {
    /* -webkit-appearance: none; */
    resize: none;
  }
  /* 取消链接高亮 */
  body,
  div,
  ul,
  li,
  ol,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  textarea,
  select,
  p,
  dl,
  dt,
  dd,
  a,
  img,
  button,
  form,
  table,
  th,
  tr,
  td,
  tbody,
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section {
    -webkit-tap-highlight-color: transparent;
  }
  /* 设置HTML5元素为块元素 */
  article,
  aside,
  details,
  figure,
  figcaption,
  footer,
  header,
  hgroup,
  menu,
  nav,
  section {
    display: block;
  }
  /* 图片自适应 */
  img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */
    -ms-interpolation-mode: bicubic;
    /* 照顾IE图片缩放失真 */
    vertical-align: middle;
  }
  *:focus {
    outline: none;
  }
  /* 清零 */
  body,
  div,
  ul,
  li,
  ol,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  input,
  textarea,
  select,
  p,
  dl,
  dt,
  dd,
  a,
  img,
  button,
  form,
  table,
  th,
  tr,
  td,
  tbody,
  article,
  aside,
  details,
  figure,
  figcaption,
  header,
  footer,
  hgroup,
  menu,
  nav,
  section {
    margin: 0;
    padding: 0;
    border: none;
  }
  body {
    font-family: Helvetica Neue, Tahoma, Arial, PingFangSC-Regular, Hiragino Sans GB, Microsoft Yahei, sans-serif;
    color: rgba(0, 0, 0, 0.54);
    font-size: 1.6rem;
  }
  em,
  i {
    font-style: normal;
  }
  strong,
  h1 ~ h6 {
    font-weight: normal;
  }
  .clearfix:after {
    content: "";
    display: block;
    visibility: hidden;
    height: 0;
    clear: both;
  }
  .clearfix {
    zoom: 1;
  }
  a,
  a:hover {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.54);
  }
  ul,
  li,
  ol {
    list-style: none;
  }
  fieldset,
  img {
    border: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  caption,
  th {
    text-align: left;
  }
  q:before,
  q:after {
    content: "";
  }
  input:password {
    ime-mode: disabled;
  }
  * {
    box-sizing: border-box;
  }



.wrap{
    width: 96%;
    margin: 0 auto;
}
.bgf5f5f5{
  background: #f5f5f5;
}
.bgfff{
  background: #fff;
}
.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f2f2f2;
    padding:1.5rem 2rem;
}
.header .logo{
    width: 4.5rem;
}
.header .search_box{
    background: #fff;
    flex: 1;
    margin: 0 2rem;
    padding: 1rem 2rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
}
.header .iconfont{
    font-size: 2.4rem;
    color: #888;
}
.footer_bar_t{
  height: 7rem;
}
.footer_bar{
  background: #fff;
  position: fixed;
  bottom: 0;
  padding: 1rem 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0px -2px 5px #eaeaea;
}
.footer_bar .item{
  width: 25%;
  text-align: center;
  color: #888;
}
.footer_bar .item .icon{
  font-size: 2.4rem;
}
.footer_bar .item .title{
  font-size: 1.4rem;
}
.footer_bar .item_current{
  color: #ff6709;
}

.footer_bar .item_current .icon{
  color: #ff6709;
}

.public_goods_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.public_goods_box .item {
  width: 49%;
  text-align: center;
  margin: 1rem 0;
  box-shadow: 0 2px 5px 0px #E9E9E9;
  padding: 1rem;
}
.public_goods_box .item .pic{
  position: relative;
    height: 0;
    padding-bottom: 100%;
    width: 100%;
}
.public_goods_box .item .pic img{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.public_goods_box .item .title {
  font-size: 1.6rem;
  margin-top: 1rem;
  white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.public_goods_box .item .price_box {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
.public_goods_box .item .price_box .icon {
  font-size: 1.4rem;
  color: #ff6709;
}
.public_goods_box .item .price_box .price {
  font-size: 2rem;
  color: #ff6709;
}
.public_goods_box .item .price_box .market_price {
  color: #aaa;
  text-decoration: line-through;
  font-size: 1.4rem;
  margin-left: 1rem;
}

.public_goods_box2{
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  padding-top: 0;
}
.public_goods_box2 .item{
  width: 32%;
  text-align: center;
}
.public_goods_box2 .item .title{
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.87);
  margin-top: .5rem;
  white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.public_goods_box2 .item .price{
  color: #ff6700;
  font-size: 1.6rem;
  margin-top: .5rem;
} 
.recommend_title{
  padding: 1rem;
  font-size: 1.4rem;
}

.normal-header{
  background-color: rgb(242, 242, 242);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
.normal-header .iconfont{
  font-size: 2.2rem;
}
.normal-header .text{
  font-size: 1.6rem;
}

.cart_header{
  background-color: #ff6700;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  color: #fff;
}
.cart_header .iconfont{
  font-size: 2.2rem;
}
.cart_header .text{
  font-size: 1.6rem;
}

/* 公共搜索框 */
.search_bar{
  background: #f5f5f5;
  width: 100%;
  display: flex;
  padding: 1rem;
  align-items: center;
  height: 4.5rem;
}

.search_bar .return{
  display: inline-block;
}

.search_bar .return .iconfont{
  font-size: 2.2rem;
}

.search_bar .search_form{
  margin-left: 2rem;
  background: #fff;
  flex: 1;
  display: flex;
  justify-content: space-between;
}

.search_bar .search_form .input{
  background: #fff;
  padding: 1rem;
}

.search_bar .search_form .btn{
  background: #fff;
  margin-right: 1rem;
}

.search_bar .search_form .btn .iconfont{
  font-size: 2rem;
  color: #aaa;
}
.position{
  padding: 1.5rem 1rem;
  font-size: 1.4rem;
}
.index_title_box{
  text-align: center;
  margin: 15px 0;
  width: 100%;
}
.index_title_box .title{
  font-size: 2.4rem;
}
.index_title_box .text{
  font-size: 1.5rem;
  margin-top: 5px;
}

.jiange{
  background: #f5f5f5;
  height: 1rem;
}

/*分页样式*/  
.pagination{text-align:center;margin-top:20px;margin-bottom: 20px;}  
.pagination li{margin:0px 10px; border:1px solid #e6e6e6;padding: 5px 8px;display: inline-block;}  
.pagination .active{background-color: #ff5b00;color: #fff;}  
.pagination .disabled{} 