*{
  font-size: 0.26rem;
}

/* 遮罩层样式 */
.black-mask{
  position: fixed;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -99;
  background-color: rgba(0,0,0,0.4);
}

/* 导航栏样式开始 */
.nav-bar{
  position: fixed;
  top: 0;
  width: 7.5rem;
  height: 1rem;
  display: flex;
  z-index: 10;
  background-color: #2245b9;
  justify-content: space-between;
  align-items: center;
  padding-left: 0.39rem;
  padding-right: 0.3rem;
}

.left-back-icon{
  width: 0.21rem;
  height: 0.38rem;
  background-image: url(../images/arrow.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.nav-menu-icon{
  background-image: url(../images/nav-icon.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 0.38rem;
  height: 0.34rem;
}

.nav-title{
  font-size: 0.36rem;
  color: #fff;
}
/* 导航栏样式结束 */

/* 菜单列表弹出层 */
.nav-dialog{
  position: fixed;
  top: 1rem;
  width: 7.5rem;
  background-color: #fff;
  padding: 0 0.4rem;
  z-index: 99;
}
.nav-dialog .item{
  position: relative;
  line-height: 1.14rem;
  color: #333;
  border-bottom: 0.01rem #e5e5e5 solid;
}
.nav-dialog .item a{
  font-size: 0.36rem;
}
.nav-dialog .item:nth-last-child(1){
  border-bottom: none;
}
.nav-dialog .item::after{
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 0.16rem;
  height: 0.28rem;
  background-image: url(../images/arrow.png);
  background-repeat: no-repeat;
  background-position-y: -0.29rem;
  background-size: 100% auto;
}
/* 菜单列表弹出层结束 */

/* 绝对定位盒子 */
.mapBox{
  position: relative;
}

/* 开办企业 */
.kbqy-dropdown{
  position: relative;
  top: 1.4rem;
}
.kbqy-item-box{
  width: 100%;
  overflow: hidden;
  border-radius: 0.08rem;
  background-color: #fff;
  box-shadow: 0 0.1rem 0.2rem rgba(51, 72, 229, 0.15);
  transition: all 0.5s;
}

.kbqy-item-box .item{
  border-bottom: 0.01rem solid #e5e5e5;
  line-height: 0.8rem;
  padding: 0 0.32rem;
  height: 0.8rem;
  box-sizing: border-box;
  font-size: 0.3rem;
}
.kbqy-item-box .itemClick{
  font-size: 0.32rem;
  border-bottom: 0.01rem solid #e5e5e5;
  line-height: 0.8rem;
  padding: 0 0.32rem;
  height: 0.8rem;
  box-sizing: border-box;
}

.kbqy-item-box .item:last-child{
  border-bottom: none;
}

.kbqy-item-box .itemClick{
  border-bottom: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kbqy-item-box .itemClick::after{
  content: '';
  display: block;
  width: 0.16rem;
  height: 0.28rem;
  background-image: url(../images/arrow.png);
  background-size: 100% auto;
  background-position-y: -0.29rem;
}

.kbqy-item-box .active{
  background-color: #2245b9;
  color: #fff;
  background-position-y: 0;
}

.kbqy-item-box .active::after{
  background-position-y: 0 !important;
}
/* 开办企业样式结束 */

/* 政策文件列表开始 */
.zcwj-list-box{
  position: absolute;
  top: 2.5rem;
  z-index: -999;
}
.zcwj-item-box{
  background-color: #fff;
  border-radius: 0.08rem;
  box-shadow: 0 0.1rem 0.2rem rgba(51, 72, 229, 0.15);
  margin-bottom: 0.64rem;
}

.zcwj-list-box .zcwj-item-box .item{
  height: 0.85rem;
  box-sizing: border-box;
  padding: 0 0.3rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.01rem solid #e5e5e5;
  display: flex;
}

.zcwj-list-box .zcwj-item-box .item:nth-last-child(1){
  border-bottom: none;
}

.zcwj-list-box .zcwj-item-box .item a{
  width: 4.7rem;
  line-height: 0.85rem;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.zcwj-list-box .zcwj-item-box .item span{
  color: #999;
  font-size: 0.25rem;
}
