/* 
* 玩乐相关页面样式
*/

/* 顶部导航栏 */
.topnav {
  height: 0.5rem;
  line-height: 0.5rem;
  border-bottom:1px solid #e5e5e5;
  background: #fff;
  overflow: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.topnav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  color: #5a5b5e;
  padding: 0 0.19rem;
  font-size: 0.18rem;
  text-align: center;
}
.topnav-item.active {
  color: #3a3b3d;
  border-bottom: #ffd006 solid 0.03rem;
  border-radius: 0.02rem;
}
/* 景点展示列表 */
.catelist {
    display: none;
    position: relative;
    top: 0;
    /* height: 5.25rem; */
    height: 81vh;
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: #fff;
    font-family: PingFangSC-Regular,PingFang SC;
}
.catelist .hd {
  position: relative;
  top: 1px;
  left: 0;
  width: 0.93rem;
  height: 1px;
  min-height: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: scroll;
  float: left;
  box-sizing: border-box;
  border-right: 1px solid #e5e5e5;
}

.catelist .hd ul li {
  display: block;
  width: 100%;
  height: 0.62rem;
  line-height: 0.62rem;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  padding: 0rem 0.09rem;
  font-size: 0.16rem;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #5a5b5e;
  box-sizing: border-box;
}

.catelist .hd ul li.on {
  background: linear-gradient(180deg, rgba(255, 194, 6, 0.4) 0%, rgba(255, 251, 235, 1) 100%);
}

.catelist .bd {
    padding: 0.09rem 0.1rem;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 1px;
    min-height: 100%;
    box-sizing: border-box;
}
.catelist .bd>ul {
  overflow: hidden;
}

/* 商品图片遮罩层 */
 /* 父盒子 */
 .bd-item {
    float: left;
    position: relative;
    width: 1.16rem;
    height: 1.38rem;
    margin: 0.09rem 0.06rem;
}
.bd-item img {
    width: 100%;
    height: 100%;
}
/* 蒙层文字 */
.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 0.16rem;
    background: rgba(101, 101, 101, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}