/* 标题 */
.item-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 25px;
  margin: 10px 0 0;
  position: relative;
  &::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -6px;
    border-radius: 5px;
    width: 12px;
    height: 3px;
    background-color: #ff501b;
  }
}
.item-title img {
  width: 140px;
  margin-bottom: -10px;
}
/* banner */
.banner {
  width: 100%;
}
/* 主体 */
.main {
  width: 960px;
  margin: 40px auto 0;
}
.main .about-left p {
  margin-bottom: 50px;
  font-size: 22px;
  line-height: 0;
  letter-spacing: 2px;
}
.about-left, .about-right{
  height: 300px;
}
 .about-right {
  text-align: center;
  margin-top: 10px;
}
 .about-right img {
  width: 200px;
}
.about-right p {
  font-size: 22px;
  color: #333;
  margin-top: 4px;
}

/* 服务中心 */
.city {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.city .city-name {
  width: 60%;
  text-align: center;
  background: linear-gradient(to right bottom, #ff7a2d, #ff501b);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
  letter-spacing: 3px;
  margin: 0 auto 26px;
}
.city-chongqing, .city-chengdu{
  margin:auto;
}
.district {
  display: flex;
  justify-content: space-between;
  width: 432px;
  height: 113px;
   background: linear-gradient(to right bottom, #ff7a2d, #ff501b);
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 1px 1px 1px 1px #ccc;

   .dist_left {
    width: 160px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    img {
      width: 100%;
      height: 100%;
    }
  } 
  .dist_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px ;
    cursor: pointer;
    justify-content: space-between;
    .headline {
      font-size: 18px;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: space-between;

      div{
        img{
          width: 16px;
          height: 16px;
          vertical-align: middle;
        }
        span{
          font-size: 12px;
          background-color: #fff;
          color: #ff501b;
          padding: 1px 10px;
          border-radius: 8px;
        }
      }
    }

    .detail {
      font-size: 16px;
      color:rgb(230, 230, 230);
    }
  }
 
}

/* 地图和图片放大 */
.magnifblow {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  .blow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1192px;
    height: 672px;
    .reduce {
      position: absolute;
      top: 20px;
      left: 20px;
      width: 30px;
      height: 30px;
      background: url("../image/contactUs/return.png") no-repeat;
      cursor: pointer;
      z-index: 99999;
    }
  }
}

.outlet {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  .store {
    width: 1000px;
    max-height: 460px;
    margin: 10% auto 0;
    .picture {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
    }
  }

  .enlarge-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    visibility: hidden;
    padding: 0 60px;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 1);
    .bigimg {
      height: 100%;
    }
    .bigImgicon {
      width: 40px;
      height: 40px;
      cursor: pointer;
    }
    .closeBigImg {
      position: absolute;
      top: 20px;
      right: 60px;
    }
  }
}

.back {
  display: block;
  width: 46px;
  height: 46px;
  margin: 30px auto;
  cursor: pointer;
}
