html,body {
  width: 100%;
  margin: 0 auto;
  font-family: "Helvetica Neue",HelveticaNeue,"Helvetica-Neue",Helvetica,"BBAlpha Sans",sans-serif;
  overflow-x: hidden;
  font-size: 0.26rem;
  color: #2D2D33;
}
html,div,h1,h2,h3,h4,p,img,a,audio,article,aside,section,header,button,ul,li,dl,dt,dd,span,nav,span,strong {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(95, 75, 75, 0);
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  font-weight: normal;
}

a {
  text-decoration: none;
}
/*正常的未被访问过的链接*/
a:link {
  text-decoration: none;
}
/*已经访问过的链接*/
a:visited {
  text-decoration: none;
}
/*鼠标划过(停留)的链接*/
a:hover {
  text-decoration: none;
}
/* 正在点击的链接，鼠标在元素上按下还没有松开*/
a:active {
  text-decoration: none;
}
/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
  text-decoration: none;
}
ul,li,dl,dt,dd,ol{
  list-style: none;
}
em,i {
  list-style: normal;
  font-style: normal;
}
a {
  text-decoration: none;
}
img {
  -webkit-touch-callout: none;
  width: 100%;
}
video {
  width: 100%;
}
.hidden {
  display: none!important;
}
@media screen and (min-width: 320px) {
  html { font-size: 42.6667px; }
}

@media screen and (min-width: 360px) {
  html { font-size: 48.1333px; }
}

@media only screen and (min-width: 375px) and (max-width: 383px) and (orientation: portrait) {
  html { font-size: 50px; }
}

@media only screen and (min-width: 384px) and (max-width: 413px) and (orientation: portrait) {
  html { font-size: 52px; }
}

@media only screen and (min-width: 414px) and (max-width: 736px) and (orientation: portrait) {
  html { font-size: 55.3333px; }
}
.clearfix{
  zoom:1;
}
.clearfix::after{
  content: '';
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.goTop {
  display: block;
  position: fixed;
  bottom: 1rem;
  right: 0.2rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #cdcdcd url("../img/goTop.png") no-repeat 50% 50%;
  background-size: 0.6rem 0.6rem;
  z-index: 99;
}
.hint-text {
  display: none;
  position: fixed;
  z-index: 101;
  left: 50%;
  top: 50%;
  padding: 10px 15px;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, .6);
  transform: translate3d(-50%,-50%,0);
  border-radius: 8px;
}

.tagBox {
  padding: 0 0.3rem;
  margin-top: 0.3rem;
}
.tagBox .tagSingle {
  height: 0.6rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 0 .2rem;
  margin: 0 0.2rem 0.2rem 0;
  font-size: 0.24rem;
  border-radius: .3rem;
  background:rgba(245,245,245,0.5);
  float: left;
}
.tagBox .tagSingle a {
  display: flex;
  display: -webkit-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: .24rem;
  font-weight:400;
  color: #6A6A77;
}

/*发布按钮*/
#postBtn {
  display: inline-block;
  width: 2.38rem;
  height: 1.18rem;
  background: url("../img/postBtn.png") no-repeat;
  background-size: contain;
  position: fixed;
  bottom: 0.6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}
/*app打开按钮*/
#appBtn {
  width: 3.02rem;
  height: 1.2rem;
  background: url("../img/appBtn.png") no-repeat;
  background-size: cover;
  position: fixed;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
}
/*加载中*/
.loading {
  display: none;
  width: 100%;
  height: 1.4rem;
  font-size: 0.28rem;
  color: #999;
  text-align: center;
  line-height: 1.4rem;
  background: #f6f6f6;
}
.waitLoading {
  /*display: none;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: 999;
}
.waitLoading .content {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
  text-align: center;
  padding-top: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: rgba(0,0,0,0.6);
  border-radius: .07rem;
  /*line-height: 1.4rem;*/
}
.waitLoading .content img {
  width: 0.4rem;
  height: 0.4rem;
  display: inline-block;
  -webkit-animation: loading 1s linear infinite;
  animation: loading 2s linear infinite;
  /*vertical-align: -0.09rem;*/
}
.waitLoading .content .msg {
  font-size: 0.26rem;
  color: #fff;
  text-align: center;
  display:block;
  padding-top: .2rem;
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading img {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.1rem;
  display: inline-block;
  -webkit-animation: loading 1s linear infinite;
  animation: loading 1s linear infinite;
  vertical-align: -0.09rem;
}

/*地图容器*/
#mapContainer{
  width:0rem;
  height:0rem;
  display: none;
}

.toast {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0);
  z-index: 9999;
}
.toast .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: rgba(0,0,0,.7);
  max-width: 4rem;
  padding: .2rem .4rem;
  border-radius: .1rem;
}
.toast .content .title {
  color: #ffffff;
  font-size: .26rem;
}
.confirmContainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}
.confirmContainer .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width:5.94rem;
  height:3.80rem;
  margin-left: -2.97rem;
  margin-top: -1.9rem;
  padding: .44rem .4rem;
  background:rgba(255,255,255,1);
  box-shadow:0px .11rem .2rem 0px rgba(0,0,0,0.11);
  border-radius: .18rem;

}
.confirmContainer .content .title {
  font-size:.32rem;
  font-weight:500;
  color:rgba(45,45,51,1);
  padding: .62rem 0 1.05rem 0;
  text-align: center;
}
.confirmContainer.descCon .content .title {
  padding: .2rem 0 .3rem 0;
}
.confirmContainer.descCon .content .descText {
  font-size: .32rem;
  font-weight:500;
  color:rgba(74,74,83,1);
  padding-bottom: .58rem;
  text-align: center;

}
.confirmContainer .content .btns {
  /*display: flex;*/
  /*flex-direction: row;*/
  /*justify-content: space-between;*/
}
.confirmContainer .content .btns .btn {
  display: inline-block;
  /*margin: 0 .12rem;*/
  width:2.45rem;
  height:.8rem;
  line-height: .8rem;
  text-align: center;
  border-radius: .04rem;
  font-size:.32rem;
  font-weight:500;
}
.confirmContainer .content .btns .btn.left {
  color: #6A6A77;
  background:rgba(245,248,250,1);
  float: left;
}
.confirmContainer .content .btns .btn.right {
  color:rgba(255,255,255,1);
  background:rgba(59,106,251,1);
  float: right;
}
.maskView {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 99;
}
/*品牌&型号选择器*/
.brandSelector {
  position: fixed;
  background: #ffffff;
  bottom: -120vh;
  width: 100%;
  z-index: 10000;
  overflow: hidden;
  -webkit-overflow-scrolling : touch;
}

.brandSelector.downUp {
  animation: downUp .2s ease-in forwards;
}
.brandSelector.upDown {
  animation: upDown .2s ease-in forwards;
}

@keyframes downUp {
  0% {
    display: block;
    bottom: -100%;
  }
  100% {
    bottom: 0;
    display: none;
  }
}
@keyframes upDown {
  0% {
    bottom: 0;
    display: block;
  }
  100% {
    bottom: -100%;
    display: none;
  }
}
.brandSelector .brandSelector-listCon {
  position: relative;
  padding-top: 1.1rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-title {
  position: absolute;
  top: 0;
  width: 100%;
  height:1.1rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  background:rgba(255,255,255,1);
  z-index: 9999;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-title .close {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: row;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: .3rem;
  content: '';
  width: 1rem;
  height: 100%;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-title .close:after{
  display: inline-block;
  content: '';
  width: .4rem;
  height: .4rem;
  background: url("../img/close.png") center center no-repeat;
  background-size: 100%;
}
.brandSelector .brandSelector-listCon .back .backBtn {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: row;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
  padding-left: .3rem;
  content: '';
  width: 2.5rem;
}
.brandSelector .brandSelector-listCon .back .backBtn span {
  display: inline-block;
  padding-left: .34rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 100%;
  font-size: .3rem;
  font-weight:400;
  color:rgba(74,74,83,1);
  width: 100%;
}
.brandSelector .brandSelector-listCon .back .backBtn:before{
  display: inline-block;
  content: '';
  width: .36rem;
  height: .31rem;
  background: url("../img/icon-back.png") center center no-repeat;
  background-size: 100%;
}
.brandSelector .brandSelector-listCon .alphabetList {
  position: absolute;
  top: 50%;
  right: 0;
  width: .51rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 999;
}
.brandSelector .brandSelector-listCon .alphabetList ul {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  align-items: center;
  -webkit-align-items: center;
}
.brandSelector .brandSelector-listCon .alphabetList ul li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 .21rem 0 0;
  font-size: .22rem;
  font-weight:400;
  color:rgba(74,74,83,1);
}
.brandSelector .brandSelector-listCon .alphabetList.modelAlp ul li {
  padding: .05rem .21rem .05rem .21rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list {
  overflow: scroll;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl {
  padding-bottom: 1rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock {
  background: #ffffff;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .title{
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
  height: .68rem;
  font-size: .28rem;
  font-weight:400;
  color:rgba(158,164,175,1);
  background:rgba(243,243,243,1);
  padding: 0 .3rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotBrandList{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: .24rem 0 .4rem 0;
  /*justify-content: space-around;*/
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotBrandList li {
  width: 30%;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: .20rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotBrandList li img {
  width: 1.42rem;
  height: .59rem;
  margin-bottom: .1rem;
  object-fit: contain;
  overflow: hidden;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotBrandList li span {
  font-size: .24rem;
  font-weight:400;
  color:rgba(45,45,51,1);
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotModel{
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding: .4rem 0.18rem;
  /*justify-content: space-around;*/
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotModel li {
  /*width: 30%;*/
  display: flex;
  display: -webkit-flex;
  margin: 0 .12rem .34rem .12rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotModel li span{
  /*display: flex;*/
  /*display: -webkit-flex;*/
  /*-webkit-flex-direction: row;*/
  /*flex-direction: row;*/
  /*align-items: center;*/
  /*-webkit-align-items: center;*/
  /*justify-content: center;*/
  /*-webkit-justify-content: center;*/
  /*width: 1.95rem;*/
  /*height: .58rem;*/
  display: inline-block;
  padding: .1rem .3rem;
  background:rgba(243,243,243,1);
  font-size: .28rem;
  font-weight:400;
  color:rgba(106,106,119,1);
  border-radius: 0.04rem;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .hotModel li.active span {
  font-weight:500;
  color:#3a6afb;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .otherList {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .otherList li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  height: .98rem;
  border-bottom: .01rem solid rgba(220,226,238,0.6);
  margin-left: .3rem;
}
.blockSelector .brandSelector-listCon .brandSelector-listCon-title {
  border-bottom: 0.01rem solid rgba(243,243,243,1);
}
.blockSelector .listUl {
  padding-top: .3rem;
}
.blockSelector .listUl li {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  padding: 0 0 .3rem 0.4rem;
}
.blockSelector .listUl li .img{
  width: .96rem;
  height: .96rem;
  background:rgba(250,250,250,1);
  margin-right: .28rem;
}
.blockSelector .listUl li .img .imgbg {
  width: 100%;
  height: 100%;
}
.blockSelector .listUl li .info{
  display: flex;
  display: -webkit-flex;
  width: 5.51rem;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.blockSelector .listUl li .info .title {
  font-size: .32rem;
  font-weight:500;
  color:rgba(45,45,51,1);
}
.blockSelector .listUl li .info .ph {
  display: inline-block;
  /*width: 2.7rem;*/
  font-size: .24rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight:400;
  color:rgba(74,74,83,1);
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .otherList li:last-child {
  border-bottom: none;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .otherList li {
  font-size: .28rem;
  color: #4a4a53;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-list .listUl .brandSelectorBlock .otherList li.active {
  font-weight:500;
  color:#3a6afb;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-btnCon {
  position: absolute;
  bottom: 0;
  width: 100%;
  height:1.32rem;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  background:rgba(255,255,255,1);
  box-shadow:0 -.02rem .06rem 0 rgba(0,0,0,0.07);
  z-index: 9999;
}
.brandSelector .brandSelector-listCon .brandSelector-listCon-btnCon .brandSelector-listCon-btn {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-align-items: center;
  width:6.9rem;
  height: .92rem;
  background:rgba(59,106,251,1);
  border-radius: .04rem;
  font-size: .34rem;
  font-weight:500;
  color:rgba(255,255,255,1);
  letter-spacing: .08rem;
}
.tips {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1rem;
  align-items: center;
  -webkit-align-items: center;
  background: #ffffff;
}
.emptynew {
  padding: 1.96rem 0;
  background: #ffffff;

}
.emptynew .emptyImage {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  /*padding: 1.96rem 0 .6rem 0;*/
}
.emptynew .emptyImage img{
  width: 1.94rem;
  height: 1.78rem;
  margin: 0 auto;
}
.emptynew .tip {
  font-size: .3rem;
  font-weight:400;
  color:rgba(158,164,175,1);
  letter-spacing: 0.01rem;
  text-align: center;
  background: #ffffff;
}
.navBarBox {
  width: 100%;
  background: #ffffff;
  position: relative;
}
.navBarBox.fixTop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 31;
}
.nav-bar {
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
  align-items: center;
  -webkit-align-items: center;
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  width: 100%;
  height: .88rem;
  border-bottom: 0.01rem solid #F3F3F3;
}
.nav-bar .nav-bar-icon {
  display: inline-block;
  width: .6rem;
  /*height: .88rem;*/
}
.nav-bar .nav-bar-icons {
  display: flex;
  display: -webkit-flex;
  height: .62rem;
  margin: 0 .2rem;
  border-radius: .31rem;
  border: .02rem solid rgba(233,233,233,1);
  overflow: hidden;
}
.nav-bar .nav-bar-icon {
  width: .68rem;
  height: .6rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.nav-bar .nav-bar-icons .nav-bar-icon {
  position: relative;
  padding: 0 .17rem;
  box-sizing: border-box;
}
.nav-bar .nav-bar-icons .nav-bar-icon.nav-bar-back::after {
  display: inline-block;
  content: '';
  width: .32rem;
  height: .3rem;
  background: url("../img/nav-bar-icon-back.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .nav-bar-icons .nav-bar-icon.nav-bar-home::after {
  display: inline-block;
  content: '';
  width: .36rem;
  height: .34rem;
  background: url("../img/nav-bar-icon-home.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .nav-bar-icons .nav-bar-icon.nav-bar-home::before{
  position: absolute;
  left: 0;
  display: inline-block;
  content: '';
  width: .02rem;
  height: .36rem;
  background: rgba(233,233,233,1);
}
.nav-bar .nav-bar-icon.nav-bar-more::after{
  display: inline-block;
  content: "";
  width: .08rem;
  height: .34rem;
  background: url("../img/nav-bar-icon-more.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .nav-bar-icon.nav-bar-more {
  padding: 0 .3rem;
  box-sizing: border-box;
}
.nav-bar .nav-bar-content {
  display: inline-block;
  flex: 1;
  -webkit-flex: 1;
}
.nav-bar .nav-bar-content .nav-bar-search {
  width:100%;
  height: .6rem;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  background:rgba(240,240,240,1);
  border-radius: .3rem;
  font-size: .28rem;
  font-weight:400;
  color:rgba(106,106,119,1);
}
.nav-bar .nav-bar-content .nav-bar-search::before {
  display: inline-block;
  content: '';
  width: .28rem;
  height: .3rem;
  margin: 0 .1rem 0 .26rem;
  background: url("../img/nav-bar-icon-search.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .more-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 11;
}
.nav-bar .more-menu.hide {
  display: none;
}
.nav-bar .more-menu .more-menu-container {
  position: absolute;
  top: 0.88rem;
  right: .1rem;
  width: 5.47rem;
  height:auto;
  background:rgba(254,255,254,1);
  border-radius:.1rem;
}
.nav-bar .more-menu .more-menu-container::before {
  position: absolute;
  top: -.12rem;
  right: .12rem;
  display: inline-block;
  content: "";
  width: .26rem;
  height: .13rem;
  background: url("../img/nav-bar-icon-sjx.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .more-menu .more-menu-container .more-menu-row {
  padding: 0 .4rem;
  border-bottom: .02rem solid rgba(243,243,243,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row:last-of-type {
  border-bottom: none;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-tab {
  display: table;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-tab .more-menu-tab-item {
  display: table-cell;
  vertical-align: middle;
  padding: .2rem .81rem .2rem 0;
  white-space: nowrap;
  font-size: .28rem;
  font-weight:400;
  color:rgba(74,74,83,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-tab .more-menu-tab-item:last-of-type {
  padding-right: 0;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-other {
  padding: .3rem .4rem;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-other .desc {
  font-size: .28rem;
  font-weight:400;
  color:rgba(59,106,251,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-other .desc::after {
  display: inline-block;
  content: "";
  width: .13rem;
  height: .21rem;
  margin-left: .08rem;
  background: url("https://upbbsimg.cehome.com/forum/202004/17/142342l3q5kx6b5jl55xqz.png") center center no-repeat;
  background-size: 100%;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user {
  padding: .3rem .4rem;
  box-sizing: border-box;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .no-login {
  display: table;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .no-login.hide {
  display: none;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .login-success.hide {
  display: none;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .avatar {
  display: block;
  width: .62rem;
  height: .62rem;
  border-radius: 50%;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .no-login .btn {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  padding: 0 .3rem ;
  height: .62rem;
  font-size: .28rem;
  font-weight:400;
  color:rgba(74,74,83,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .no-login .btn:first-of-type::after{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  display: inline-block;
  content: "";
  width: .02rem;
  height: .2rem;
  background:rgba(243,243,243,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .login-success {
  display: table;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .login-success .username {
  font-size: .32rem;
  font-weight:500;
  color:rgba(74,74,83,1);
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .login-success .item {
  display: table-cell;
  vertical-align: middle;
}
.nav-bar .more-menu .more-menu-container .more-menu-row.more-menu-user .login-success .item.username {
  padding: 0 .2rem;
  font-size: .32rem;
  font-weight:500;
  color:rgba(74,74,83,1);
}
/* 选择登录框 */
#loginChoose {
  display: none;
}
.loginMask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  z-index: 40;
}
.loginBox {
  width: 6.4rem;
  padding: 0.48rem;
  background: #ffffff;
  border-radius: 0.15rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loginBox p {
  text-align: center;
  font-size: 0.2rem;
  line-height: 0.28rem;
  color: #4A4A53;
}
.loginBox .loginTitle {
  font-size: 0.36rem;
  color: #2D2D33;
  height: 0.5rem;
  line-height: 0.5rem;
}
.loginBox .loginBtn {
  margin: 0.32rem auto 0;
  width: 5.44rem;
  height: 0.98rem;
  background: #ffffff;
  line-height: 0.98rem;
  color: #3B6AFB;
  border: 0.02rem solid #3B6AFB;
  font-size: 0.36rem;
  border-radius: 0.08rem;
}
.loginBox .loginBtn.app {
  background: #3B6AFB;
  color: #ffffff;
}
.loginBox .loginTip {
  font-size: 0.24rem;
  color: #3B6AFB;
  margin: 0.12rem 0;
}
.loginBox .loginClose {
  position: absolute;
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  right: 0.2rem;
  top: 0.2rem;
  background: url("../img/x.png") no-repeat center center;
  background-size: 0.28rem 0.28rem;
}
/*顶部app下载*/

.downloadApp {
  z-index: 9;
  display: -webkit-box;
  width: 100%;
  height: 1rem;
}
.downloadApp.hidden, .downloadApp.closed {
  display: none;
}
.downloadApp .banner {
  width: 6.82rem;
  height: 1rem;
  /*background: rgba(0,0,0,0.7);*/
  font-size: .3rem;
  color: #ffffff;
  display: -webkit-box;
}
.downloadApp .banner::before {
  content: ' ';
  display: block;
  width: 6.82rem;
  height: 1rem;
  background: url("../img/downloadBaner.png") no-repeat center center;
  background-size: 6.82rem 1rem;
}
.downloadApp .close {
  display: block;
  -webkit-box-flex: 1;
  height: 1rem;
  background: rgba(0,0,0,0.7) url("../img/closeDownload.png") center center no-repeat;
  background-size: 100%;
}
.inviteMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9;
  display: none;
}
.inviteMask .inviteImage {
  width: 7.02rem;
  position: absolute;
  bottom: 0.3rem;
  left: 50%;
  transform: translateX(-50%);
}

/* 确认弹窗样式 */
#popConfirm {
  display: none;
}
#popConfirm .confirmMask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 30;
}
#popConfirm .confirmBox {
  width: 5rem;
  background: #ffffff;
  border-radius: 0.18rem;
  box-shadow: 0 0.11rem 0.2rem 0 rgba(0, 0, 0, 0.11);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-top: 0.3rem;
}
#popConfirm .confirmBox .title {
  font-size: 0.32rem;
  font-weight: 500;
  color: #4a4a53;
  text-align: center;
}
#popConfirm .confirmBox .content {
  font-size: 0.26rem;
  color: #2D2D33;
  padding: 0.2rem 0.2rem 0.3rem;
  text-align: center;
}
#popConfirm .confirmBox .btns {
  height: 1rem;
  border-top: 0.01rem solid #F5F8FA;
  display: flex;
  align-items: center;
}
#popConfirm .confirmBox .btns span {
  flex: 1;
  text-align: center;
  height: 100%;
  line-height: 1rem;
  font-size: 0.32rem;
}
#popConfirm .confirmBox .btns span:first-of-type {
  border-right: 0.01rem solid #F5F8FA;
}
#popConfirm .confirmBox .btns span.submit {
  color: #3B6AFB;
  font-weight: 500;
}