﻿/********************* 公共样式s *********************/

﻿@charset "utf-8";

body {
  font: .24rem/1.5 Arial, "Microsoft YaHei", "微软雅黑", sans-serif;
  color: #333;
  background-color: #f3f3f3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #333;
}

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

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

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

img:not([src]),
img[src=""] {
  opacity: 0;
}

.show {
  display: block!important;
}

.hide,
.none {
  display: none!important;
}
.header-topdown{
  display: none;
}

[v-cloak] {
  display: none;
}

.visibShow {
  visibility: visible;
}

.visibNone {
  visibility: hidden;
}

.v-top {
  display: inline-block;
  vertical-align: top;
}

.v-middle {
  display: inline-block;
  vertical-align: middle;
}

.lh-1 {
  line-height: 1;
}

.o-hidden {
  overflow: hidden;
}

.clearfix:after,
.clearfix:before {
  content: "";
  display: table
}

.clearfix:after {
  clear: both;
  overflow: hidden;
  height: 0
}

.fixWrap {
  max-width: 768px;
  min-width: 320px;
  margin-left: auto;
  margin-right: auto;
}


/* color */

.c-3 {
  color: #333;
}

.c-6 {
  color: #666;
}

.c-9 {
  color: #999;
}

.c-c {
  color: #ccc;
}

.c-blue {
  color: #0070ff;
}

.c-red {
  color: #ff3333;
}

.bgc-white {
  background-color: #fff;
}


/* text */

.text-middle {
  vertical-align: middle;
  display: inline-block;
}

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

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

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

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

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


/* font */

.fz-22 {
  font-size: .22rem;
}

.fz-24 {
  font-size: .24rem;
}

.fz-26 {
  font-size: .26rem;
}

.fz-28 {
  font-size: .28rem;
}


/* 边距 */

.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: .1rem !important;
}

.mt-20 {
  margin-top: .2rem !important;
}

.mr-10 {
  margin-right: .1rem !important;
}

.mr-20 {
  margin-right: .2rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-10 {
  margin-bottom: .1rem !important;
}

.mb-20 {
  margin-bottom: .2rem !important;
}

.ml-10 {
  margin-left: .1rem !important;
}

.ml-20 {
  margin-left: .2rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-10 {
  padding-top: .1rem !important;
}

.pt-20 {
  padding-top: .2rem !important;
}

.pr-10 {
  padding-right: .1rem !important;
}

.pr-20 {
  padding-right: .2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-10 {
  padding-bottom: .1rem !important;
}

.pb-20 {
  padding-bottom: .2rem !important;
}

.pl-10 {
  padding-left: .1rem !important;
}

.pl-20 {
  padding-left: .2rem !important;
}


/* flex */

.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inlineFlexBox {
  display: -webkit-box;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flexJustifyCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flexAround {
  -webkit-box-pack: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flexBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flexAlignCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

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

.flexColumn {
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}


/*加载更多*/

.load-nomore {
  padding: .3rem 0;
  text-align: center;
}

.load-nomore-line {
  width: 5.7rem;
  height: .02rem;
  margin: 0 auto;
  background-color: #ccc;
}

.load-nomore-words {
  width: 2.8rem;
  font-size: .26rem;
  color: #888;
  margin: -.18rem auto 0 auto;
  padding: 0 .2rem;
  background-color: #fff;
}

.loading {
  margin: .3rem 0;
  width: .52rem;
  height: .52rem;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: loading 1s steps(12) infinite;
  animation: loading 1s steps(12) infinite;
  background: transparent url(../fonts/77179cf058d745049252ad14ade97dfb.woff) no-repeat;
  background-size: 100%;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}




/********************* 顶部加padding *********************/
.titlemain {
  padding-top: .9rem;
}
[class*=van-hairline] {
  position: relative;
}
[class*=van-hairline]::after {
  content: ' ';
  position: absolute;
  pointer-events: none;
  box-sizing: border-box;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  -webkit-transform: scale(.5);
  transform: scale(.5);
  border: 0 solid #ebedf0;
}
.van-hairline--bottom::after{border-bottom-width:1px}
.van-hairline--top::after{border-top-width:1px}
.wrapper {
  position: relative;
  max-width: 768PX;
  min-width: 320PX;
  margin: 0 auto;
}

.wrapper-default {
  padding-top: .9rem;
}

.main {
  position: relative;
}

.main-bgwhite {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
}

.main-bgwhite-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: .9rem;
  background-color: #fff;
}

.main-botnav {
  padding-bottom: .9rem;
}

.main-botbtn {
  padding-bottom: 1.08rem;
}

.bread {
  margin: 0 .2rem;
  padding: 0 .2rem;
  height: .6rem;
  line-height: .6rem;
  border-radius: .12rem;
  color: #ccc;
  background-color: #fff;
  overflow: hidden;
}

.bread-home {
  font-size: .24rem;
}

.bread-item {
  color: #ccc;
}

.img {
  width: 1rem;
  height: .24rem;
  line-height: .24rem;
}
.img img {
  width: 1rem;
  height: .24rem;
  vertical-align: middle;
}

.text {
  overflow: hidden;
  text-overflow: ellipsis; 
  white-space: nowrap; 
  width: 1.2rem;
}

.bread-item::after {
  content: ">";
  margin-left: .08rem;
}

.bread-item:last-child::after {
  content: "";
}

.icon-rec {
  display: inline-block;
  background-image: url('../images/icon-rec.png');
  background-repeat: no-repeat;
  background-size: .26rem .6rem;
}
.icon-rec-hht {
  width: .26rem;
  height: .28rem;
  background-position: 0 0;
}

.icon-rec-rz {
  width: .26rem;
  height: .28rem;
  background-position: 0 -.32rem;
}

.icon-mrec {
  display: inline-block;
  background-image: url('../images/icon-rec.png');
  background-repeat: no-repeat;
  background-size: .24rem 1.04rem;
}
.icon-mrec-hht {
  width: .24rem;
  height: .26rem;
  background-position: 0 0;
}
.icon-mrec-hht-gray {
  background-position: 0 -.26rem;
}
.icon-mrec-rz {
  width: .24rem;
  height: .26rem;
  background-position: 0 -.52rem;
}
.icon-mrec-rz-gray {
  background-position: 0 -.78rem;
}

.icon-srec {
  display: inline-block;
  background-image: url('../images/icon-rec.png');
  background-repeat: no-repeat;
  background-size: .22rem .96rem;
}
.icon-srec-hht {
  width: .22rem;
  height: .24rem;
  background-position: 0 0;
}
.icon-srec-hht-gray {
  background-position: 0 -.24rem;
}
.icon-srec-rz {
  width: .22rem;
  height: .24rem;
  background-position: 0 -.48rem;
}
.icon-srec-rz-gray {
  background-position: 0 -.72rem;
}


.nodata1 {
  width: 2rem;
  height: 1.6rem;
}



/*********************van-reset*********************/
.wrapper  .van-pagination {
    font-size: .28rem;
    line-height: .66rem;
  }

  .wrapper  .van-pagination__item {
    height: .66rem;
    color: #111;
    border-radius: .1rem;
    box-shadow: 0 0 .1rem 0 rgba(0, 0, 0, .1);

    
  }
  .wrapper  .van-pagination__item:after {
    content: none;
  }
  .wrapper  .van-pagination__page-desc {
    flex: initial;
    min-width: 1.3rem;
    height: .66rem;
    margin: 0 .2rem;
    padding: 0 .1rem;
    color: #777;
    background-color: #fff;
    border-radius: .1rem;
    box-shadow: 0 0 .1rem 0 rgba(0, 0, 0, .1);
  }

  .wrapper  .van-pagination__item:active {
    color: #fff;
    background-color: #ff9800;
  }

  .wrapper  .van-pagination__item--disabled,
  .wrapper  .van-pagination__item--disabled:active {
    color: #aaa;
    background-color: #fff;
    border-radius: .1rem;
    box-shadow: 0 0 .1rem 0 rgba(0, 0, 0, .1);
  }

.wrapper  .van-button--loading .van-loading {
    width: .4rem !important;
    height: .4rem !important;
  }


.van-dialog__confirm,
.van-dialog__confirm:active {
  color: #ff5700;
}

.van-dialog__header {
  color: #111;
}

.van-toast--default {
  width: auto;
}
/********************* 公共样式e *********************/

/********************* 头部采神宝s *********************/
.index-logo {
  height: 0.9rem;
  background: #fff;
}

.index-logo-link {
  display: block;
  width: 100%;
  height: 0.9rem;
  position: relative;
}

.index-logo-banner {
  display: block;
  width: 100%;
  height: 0.9rem;
}
.index-logo-c::after {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  background: url('../images/icon-delete.png') no-repeat center;
  background-size: 0.28rem 0.28rem;
  position: absolute;
  top: 0rem;
  right: 0rem;
}

.index-logo-l::after {
  content: '';
  width: 1.6rem;
  height: 0.65rem;
  background: transparent;
  background-size: 0.28rem 0.28rem;
  position: absolute;
  top: 0.1rem;
  left: 0.2rem;
}

/********************* 头部采神宝e *********************/

/********************* 头部标题 返回 三点 s *********************/
.header {
  height: 0.9rem;
  position: fixed;
  z-index: 11;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 0.02rem solid #f3f3f3;
}
.header-absolute {
  position: absolute;
}

.header-l,
.header-r,
.header-nav {
  position: absolute;
  top: 0;
  line-height: 0.88rem;
  height: 0.88rem;
}

.header-l {
  left: 0;
    background: url(../images/2020721031.png) no-repeat center;
    width: .8rem;
    height: .88rem;
    background-size: .44rem;
}

.header-l a { display:inline-block;}

.header-r {
  right: 0;
  background: url(../images/2020-7-21028.png) no-repeat center;
    width: .8rem;
    height: .88rem;
    background-size: .44rem;
}

.header-c {
  flex: 1;
  margin-left: 0.8rem;
  margin-right: 0.8rem;
  overflow: hidden;
}

.header-back {
  font-size: 0.36rem!important;
  box-sizing: content-box;
  display: inline-block;
  height: 0.88rem;
  padding: 0 0.18rem 0 0.22rem;
  width: 0.4rem;
  cursor: pointer;
}

.header-title {
  color: #333;
  font-size: 0.32rem;
  line-height: 0.88rem;
  text-align: center;
}

.header-more {
  font-size: 0.44rem!important;
  box-sizing: content-box;
  display: inline-block;
  height: 0.88rem;
  padding: 0 0.2rem 0 0.16rem;
  cursor: pointer;
}

.header .header-topdown {
  width: 3rem;
  position: absolute;
  top: 0.94rem;
  right: 0.1rem;
}

.header .header-topdown-triangle {
  width: 0;
  height: 0;
  border-width: 0 0.13rem 0.13rem;
  border-style: solid;
  border-color: transparent transparent rgba(255, 255, 255, 0.95);
  position: absolute;
  right: 0.29rem;
  top: 0;
  z-index: 1;
}

.header .header-topdown-con {
  margin-top: 0.12rem;
  border-radius: 0.08rem;
  background: rgba(255, 255, 255, 0.95);
}

.header .header-topdown-con a { position:relative;}
.header .header-topdown-con a:before {content:""; display:inline-block; width:25px; height:25px; position:absolute; top:.2rem; left:.2rem;}
.header .header-topdown-con a:nth-child(1):before { background:url(../images/2020721056.png) no-repeat center;background-size:.3rem;}
.header .header-topdown-con a:nth-child(2):before { background:url(../images/2020721052.png) no-repeat center;background-size:.36rem;}
.header .header-topdown-con a:nth-child(3):before { background:url(../images/2020721055.png) no-repeat center;background-size:.36rem;}
.header .header-topdown-con a:nth-child(4):before { background:url(../images/2020721053.png) no-repeat center;background-size:.36rem;}
.header .header-topdown-con a:nth-child(5):before { background:url(../images/2020721054.png) no-repeat center;background-size:.3rem;}

.header .topdown-item {
  display: block;
  font-size: 0.3rem;
  line-height: 0.94rem;
}

.header .topdown-icon {
  font-size: 0.36rem;
  padding: 0 0.25rem 0 0.55rem;
}

.header .van-hairline--surround::after {
  border-radius: 0.16rem;
}

.header .share-copy {
  padding: 0.2rem;
}

.header #pageUrl {
  position: absolute;
  opacity: 0;
}
/********************* 头部标题 返回 三点 e *********************/

/********************* 底线s *********************/
.divider {
  text-align: center;
  padding: 0.5rem 0;
}
.divider-con {
  font-size: 0.24rem;
  padding: 0 1.4rem;
  line-height: 1;
  color: #999;
  position: relative;
}
.divider-con::before {
  content: '';
  width: 1.2rem;
  height: 0.02rem;
  background-color: #ddd;
  position: absolute;
  top: 0.12rem;
  left: 0;
}
.divider-con::after {
  content: '';
  width: 1.2rem;
  height: 0.02rem;
  background-color: #ddd;
  position: absolute;
  top: 0.12rem;
  right: 0;
}
.divider-white .divider-con {
  color: #fff;
}

.divider-white .divider-con::before {
  background-color: #fff;
}

.divider-white .divider-con::after {
  background-color: #fff;
}
/********************* 底线e *********************/

/********************* 面包屑s *********************/

/********************* 面包屑e *********************/

/********************* 底部footer s *********************/
.footer {
  background-color: #fff;
}
.footer-top {
  color: #333;
  font-size: .26rem;
  padding: 0 .2rem;
  height: .8rem;
  line-height: .8rem;
}
.footer-top-sep {
  line-height: 1;
  color: #ccc;
  margin: -.04rem .18rem 0;
}
.footer-top-reg {
  color: #FF8400;
}

.footer-top-icon {
  font-size: .24rem!important;
}
.footer-top-msg {
  color: #999;
}
.footer-top-back {
  color: #999;
}
.footer-con {
  font-size: .24rem;
  padding: .6rem 0 .34rem 0;
  color: #999;
  text-align: center;
}
.footer-con-line1 {
  line-height: 1;
  margin-bottom: .32rem;
}

.footer-con-line2 {
  font-size: .22rem;
  margin-bottom: .1rem;
}

.footer-con-line3 {
  font-size: .22rem;
}
.footer-con-line3 a{
  color: #999;
}
.footer-con-link {
  display: inline-block;
  color: #999;
  margin-right: .12rem;
  padding-right: .12rem;
  border-right: .02rem solid #999;
}
.footer-con-link:last-child {
  border: 0;
  margin: 0;
  padding: 0;
}
.footer-con-href {
  color: #999;
}
/********************* 底部footer e *********************/

/********************* 底部导航s *********************/
.bottom-nav {
  width: 100%;
  height: 0.98rem;
  background-color: #fff;
  padding: 0 0.1rem;
  position: fixed;
  bottom: 0;
  z-index: 9;
  border-top: 1px solid #eee;
}
.bottom-nav-item {
  font-size: 0.2rem;
  padding-top: 0.1rem;
  color: #777;
  text-align: center;
}

.bottom-nav-icon {
  display: block;
  height: 0.42rem;
  margin: 0.05rem auto;
}

.bottom-nav .van-hairline--top::after {
  border-color: #cfcfcf;
}
.fontColor {
  color: #e9b249;
}
/********************* 底部导航e *********************/

/********************* 搜索框s *********************/
.search-false {
  display: block;
  font-size: 0.24rem;
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  padding-left: 0.2rem;
  background-color: #f9f9f9;
  border-radius: 0.6rem;
  color: #a9a9a9;
  text-align: left;
  position: relative;
}

.search-false-icon {
  font-size: 0.32rem;
  padding-right: 0.08rem;
  color: #b7b7b7;
  display: inline-block;
}

.search-false-words {
  font-size: 0.24rem;
  display: inline-block;
  vertical-align: top;
}

.search-false-inheader {
  margin-top: 0.15rem;
  background-color: #f3f3f3;
}

.search-false-del {
  font-size: 0.3rem;
  color: #c5c5c5;
  padding-left: 0.1rem;
  position: absolute;
  top: 0;
  right: 0.2rem;
}



/* 大搜搜索页面搜索框 */
.search-box {
  padding: .14rem 0 .14rem .3rem;
}

.search-input-box {
  display: block;
  width: 6rem;
  height: .64rem;
  background-color: #f3f3f3;
  border-radius: .64rem;
  padding: 0 .68rem;
  position: relative;
}

.search-input {
  font-size: .26rem;
  width: 100%;
  padding: .13rem 0;
  color: #333;
  background-color: #f3f3f3;
  border: 0;

  
}
.search-input-icon {
  font-size: .32rem;
  color: #333;
  position: absolute;
  top: .08rem;
  left: .25rem;
  transition: color .1s linear;
}

.search-input-del {
  font-size: .3rem;
  color: #c5c5c5;
  padding-left: .1rem;
  position: absolute;
  top: .1rem;
  right: .2rem;
}
.search-btn {
  font-size: .3rem;
  height: .64rem;
  line-height: .64rem;
  color: #999;
  text-align: center;
}

.search-btn-s{
  color: #ff6700;
}



/********************* 搜索框e *********************/


/********************* 大搜头部s *********************/
.searchres-search{
  padding-top: 0.14rem;
}
.searchres-search .search-false {
  background-color: #f3f3f3;
}

.searchres-search .search-false-icon {
  color: #333;
}

.searchres-search .search-false-words {
  color: #333;
  width:80%;
}
/* 搜索的顶部筛选 */
.searchres-sort-item {
  font-size: 0.28rem;
  height: 0.8rem;
  line-height: 0.8rem;
  color: #333;
  background: #fff;
  text-align: center;
  position: relative;
}
.searchres-sort-item.act {
  color: #ff5700;
}
.searchres-sort-price {

}
.searchres-sort-price i {
  font-size: 0.12rem;
  position: absolute;
  right: 0.76rem;
  color: #ccc;
}

.searchres-sort-price i:first-child {
  top: -0.08rem;
}

.searchres-sort-price i:last-child {
  top: 0.06rem;
}

.searchres-sort-price .active {
  color: #ff6700;
}
.searchres-sort-display i{
    font-size: 0.28rem;
    margin-right: 0.04rem;
}

/* 搜索的热点词 */
.searchres-hot {
  margin-top: 0.1rem;
  padding: 0 0 0 0.2rem;
  background-color: #fff;
}
.searchres-hot-tit {
  height: 0.7rem;
  line-height: 0.7rem;
}
.searchres-hot-tit i {
  font-size: 0.28rem;
  color: #ff803e;
  vertical-align: middle;
  margin-right: 0.04rem;
}

.searchres-hot-tit span {
  font-size: 0.24rem;
  color: #666;
  vertical-align: middle;
}
.searchres-hot-item {
  font-size: 0.24rem;
  width: 2.22rem;
  height: 0.62rem;
  line-height: 0.62rem;
  margin: 0 .2rem 0.2rem 0;
  padding: 0 0.2rem;
  background-color: #fafafa;
  border-radius: 0.31rem;
  text-align: center;
  color: #555;

  
}
.searchres-hot-item:nth-of-type(3n) {
  margin-right: 0;
}

.searchres-hot.searchres-hotbig .searchres-hot-item {
  display: block;
  width: 100%;
  height: 0.62rem;
  line-height: 0.62rem;
}

/* 搜索的选项卡 */
.searchres-keywords-tit {
  padding: 0.22rem 0 0.1rem 0;
  position: relative;
}

.act span{
  color: #111;
  border-bottom: .05rem solid #FF9900;
}

.searchres-keywords-tword {
  font-size: 0.32rem;
  color: #999;
  text-align: center;
}
.searchres-keywords-tword span {
  display: inline-block;
  height: 100%;
}

.searchres-keywords-line {
  width: 1rem;
  height: 0.05rem;
  border-radius: 0.02rem;
  background-color: #FF9900;
  position: absolute;
  bottom: 0;
  transition: left 0.2s;
}

.searchres-keywords-con {
  margin: 0.1rem .2rem .2rem;
  background-color: #fff;
  border-radius: 0.12rem;
}

.searchres-rec {
  padding: 0.2rem 0 0 0.2rem;
  background-color: #fff;
  border-radius: 0.12rem;
}
.searchres-rec-item {
  font-size: 0.24rem;
  width: 2.1rem;
  height: 0.64rem;
  line-height: 0.64rem;
  margin: 0 .2rem 0.2rem 0;
  padding: 0 0.2rem;
  color: #555;
  background-color: #f7f8f9;
  border-radius: 0.1rem;
  text-align: center;
}
.searchres-rec-item:nth-of-type(3n) {
  margin-right: 0;
}


/********************* 大搜头部s *********************/


/* 分页 */
.pagination-pd {
  margin: 0.7rem 0 0.5rem 0;
}
.s-pagination-button {
  font-size: 0.28rem;
  height: 0.66rem;
  padding: 0 0.1rem;
  color: #111;
  background-color: #fff;
  border: 0;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  user-select: none;
  position: relative;
  line-height: .66rem;
  text-align: center;
}

.s-pagination-button:disabled {
  color: #aaa
}

.s-pagination-button:active {
  color: #fff;
  background-color: #ff9800;
}

.s-pagination-page {
  font-size: 0.28rem;
  min-width: 1.3rem;
  height: 0.66rem;
  line-height: .66rem;
  margin: 0 0.2rem;
  padding: 0 0.1rem;
  text-align: center;
  color: #777;
  background-color: #fff;
  border-radius: 0.1rem;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  position: relative;
}

.s-pagination-select {
  width: 100%;
  height: .66rem;
  position: absolute;
  top: 0;
  left: 0;
  appearance: none;
  opacity: 0;
}

.pagination-pd {
  padding: 0 .2rem;
}

/* 搜索结果为空s */
.show_no img {
  width: 2.03rem;
  height: 1.62rem;
  display: block;
  margin: 2.9rem auto .3rem;
}

.show_no p {
  text-align: center;
}

.show_no .first_p {
  font-size: .28rem;
  margin-bottom: .2rem;
}

.show_no .last_p {
  font-size: .24rem;
  color: #666;
}
/* 搜索结果为空e */


/* 电话弹窗样式 */
/* 弹窗 */
.vip-box {
  background-color: transparent;
  overflow: initial;
  z-index: 12;
}

.vip-con {
  width: 5.2rem;
  height: 6.41rem;
  background: url('../images/vip-bg.png') no-repeat;
  background-size: 5.2rem 6.41rem;
  position: relative;
}

.vip-close {
  width: .5rem;
  height: .5rem;
  background: url('../images/phonecall-close.png') no-repeat;
  background-size: .5rem .5rem;
  position: absolute;
  top: -.6rem;
  right: -.5rem;
}

.vip-tipword {
  font-size: .32rem;
  line-height: 1.7;
  color: #ff6700;
  padding: 2.76rem 0 .32rem 0;
  text-align: center;
}

.vip-tipword-two {
  text-align: center;
  font-size: .26rem;
  color: #666;
  padding-bottom: .64rem;
}

.vip-btn {
  display: block;
  width: 3.4rem;
  height: .74rem;
  margin: 0 auto;
}

.overflow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 11;
}

.overflow-one {
  position: absolute;
  top: 4.5rem;
  left: 0.8rem;
  position: fixed;
  width: 6rem;
  border-radius: 0.1rem;
  z-index: 123213211312123;
  background: #fff;
}

.overflow-one-title {
  height: 0.8rem;
  line-height: 0.6rem;
  padding: 0.1rem 0.3rem;
}

.overflow-one-title i {
  color: #ff7700;
  font-size: 0.32rem;
}

.overflow-one-title span {
  color: #555;
  font-size: 0.32rem;
}



.overflow-one ul li {
  border-top: 1px solid #f5f5f5;
  padding: 0 0.3rem;
  height: 1.2rem;
  line-height: 1.2rem;
  overflow: hidden;
}

.overflow-one ul li p {
  float: left;
  font-size: 0.36rem;
  color: #555;
}

.overflow-one-btn {
  float: right;
  color: #fff;
  width: 1.4rem;
  height: 0.5rem;
  line-height: 0.5rem;
  border-radius: 0.25rem;
  border: none;
  background: #4b89f7;
  font-size: 0.2rem;
}

.addHide {
  display: none;
}
.phonecall-box {
  background-color: transparent;
  overflow: initial;
  z-index: 12;
}

.phonecall-con {
  width: 5.2rem;
  height: 6.41rem;
  background: url('../images/phonecall-bg.png') no-repeat;
  background-size: 5.2rem 6.41rem;
  position: relative;
}

.phonecall-close,.pop-close {
  width: .5rem;
  height: .5rem;
  background: url('../images/phonecall-close.png') no-repeat;
  background-size: .5rem .5rem;
  position: absolute;
  top: -.6rem;
  right: -.5rem;
}







.phonecall-tipword {
  font-size: .44rem;
  line-height: 1.5;
  color: #ff6700;
  padding: 3.06rem 0 .04rem 0;
  text-align: center;
}

.phonecall-btn {
  display: block;
  width: 3.4rem;
  height: .74rem;
  margin: 0 auto;
}

/* 验证码 */
.van-popup-img {
  position: fixed;
  top: 50%;
  left: 50%;
  max-height: 100%;
  overflow-y: auto;
  background-color: #fff;
  transition: .3s ease-out;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
}
.imgcode {
  width: 5rem;
  height: 3.46rem;
  padding: 0 0.1rem;
  border-radius: 0.1rem;
  background-color: #f3f3f3;
  overflow-y: visible;
  overflow-y: initial;
  text-align: center;
  z-index: 1;
}
.imgcode .color {
  color: red;
}


.imgcode-tit {
  font-size: 0.32rem;
  color: #111;
  padding: 0.28rem 0 0.16rem 0;
}
.imgcode-tip {
  font-size: 0.28rem;
  color: #999;
  padding: 0 0 0.22rem 0;
}
.imgcode-item {
  padding: 0 0.2rem 0.3rem;
}
.imgcode-item-l {
  margin-right: 0.2rem;
  padding-top: 0.2rem;
  background-color: #fff;
}
.imgcode-item-input {
  font-size: 0.26rem;
  width: 2.4rem;
  border: 0;
  text-align: center;
}
.imgcode-item-img {
  width: 1.8rem;
  height: 0.76rem;
}
.imgcode-sub {
  width: 100%;
  color: #fff;
  position: relative;
  padding: 0;
  display: inline-block;
  box-sizing: border-box;
  text-align: center;
  -webkit-appearance: none;
  font-size: 0.3rem;
  height: 0.76rem;
  line-height: 0.76rem;
  border: 0;
  border-radius: 0.1rem;
  background: linear-gradient(to right, #f5ad19, #f87c18);
}
.van-button::before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  width: 100%;
  height: 100%;
  border: inherit;
  border-color: #000;
  background-color: #000;
  border-radius: inherit;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.imgcode-close {
  width: 0.44rem;
  height: 0.94rem;
  background:  url('../images/imgcode-close.png') no-repeat;
  background-size: 100% 100%;
  position: absolute;
  bottom: -0.94rem;
  left: 2.3rem;
}
.van-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.7);
}



/* 普通提示 */
.pt-tip {
  position: fixed;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  background-color: rgba(0,0,0,.7);
  transition: .3s ease-out;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  padding: 0.2rem 0.4rem;
  border-radius: 0.05rem;
  text-align: center;
  -webkit-border-radius: 0.05rem;
  -moz-border-radius: 0.05rem;
  -ms-border-radius: 0.05rem;
  -o-border-radius: 0.05rem;
  color: #fff;
  z-index: 2;
  font-size: 0.28rem;
}

/* 叹号提示 */
.th-tip {
  position: fixed;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  background-color: rgba(0,0,0,.5);
  transition: .3s ease-out;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate3d(-50%,-50%,0);
  transform: translate3d(-50%,-50%,0);
  padding: 0.4rem 0.5rem .3rem;
  border-radius: 0.1rem;
  text-align: center;
  -webkit-border-radius: 0.1rem;
  -moz-border-radius: 0.1rem;
  -ms-border-radius: 0.1rem;
  -o-border-radius: 0.1rem;
  color: #fff;
  z-index: 2050;
}
.th-tip div {
  width: .7rem;
  height: .7rem;
  background: url('../images/th.png') no-repeat;
  background-size: 100% 100%;
  margin: 0 auto .2rem;
}
.th-tip p {
  font-size: .28rem;
  display: inline-block;
}
/* 对号提示 */
.tr-tip div {
  background: url(../images/tip-right.png) no-repeat;
  background-size: 100% 100%;
}
