.navCity {
  width: 1200px;
  margin: 0 auto;

}

.navCity_tit {
    width: 100%;
    height: 40px;
    background-color: #ff4400;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

    .navCity_tit .left a {
        
        text-decoration: none;
        color: #ffffff;
        line-height: 40px;
        border-right: 1px solid #c83905;
        padding: 0 15px;
        position: relative;
    }
      
        .navCity_tit .left a::before {
            content: "";
            width: 1px;
            background-color: rgb(255, 145, 84);
            display: inline;
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
        }

.navCity_tit .left a img {
  margin-bottom: 3px;
  vertical-align: middle;
}
.navCity_tit .left a:hover{
  text-decoration: underline;
}
        .navCity_tit .left a:nth-of-type(1) {
            padding-left: 0;
            cursor: default;
            text-decoration:none;
        }

.navCity_tit .left a:nth-of-type(4) {
  border: none;
}

.navCity_tit .left a:nth-of-type(4)::before {
  content: none;
}

.navCity_tit .right {
  display: flex;
  line-height: 40px;
}

.navCity_tit .right img {
  vertical-align: middle;
  margin: 0 8px 3px 8px;
}

.navCity_tit .right .weixin {
  margin: 0 20px 0 40px;
  position: relative;
}

.navCity_tit .right .weixin .erweima {
  width: 250px;
  height: 270px;
  background-color: #FFFFFF;
  
  box-sizing: border-box;
  text-align: center;
  position: absolute;
  display: none;
}
    .navCity_tit .right .weixin .erweima img{
        width:80%;
        margin-top:20px;
    }

    .navCity_tit .right .weixin .erweima p {
        color:black;
        font-weight: normal;
        font-size: 16px;
        line-height:20px;
    }

.navCity_tit .right .weixin:hover .erweima {
  display: block;
  z-index:999;
}

.navCity_con {
    /*padding: 20px 10px 0 10px;*/
    padding: 0px 0px 5px 0px;
    background-color:#F7F7F7;
    font-size: 14px;
    /* display: flex;
  flex-wrap: wrap;*/
}

.navCity_con dl {
  display: flex;
  margin: 0;
  /*margin-bottom: 5px;*/
  align-items: center;
  flex-wrap:wrap;
  justify-content:space-between;
  padding-top:5px;
}

    .navCity_con dl dt {
        background-color: #ff4400;
        padding: 1px 3px 1px 3px;
        margin-right: 5px;
        color: #FFFFFF;
    }

.navCity_con dl dd {
  margin: 0;
  margin-right: 4px;
}

.navCity_con dl dd a {
  color: black;
  text-decoration: none;
}

.navCity_con dl dd a:hover {
  color: #ff4400;
  text-decoration: underline;
}