.wrapper {
  height: 100%;
}

.swiper-container {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide {
  overflow: hidden;
  transform-origin: 0 0;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  z-index: 99;
  right: 1%;
}

.wrap {
  display: flex;
  position: relative;
  z-index: 6;
  width: 100%;
  height: 100%;
  padding: 60px 0 1.4rem;
}

@media (min-width: 1200px) {
  .m-top {
    position: absolute;
  }
}

/* banner */
.banner {
  position: relative;
  z-index: 1;
  max-height: 100vh;
  overflow: hidden;
}

.banner .slide-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.banner .swiper-slide i {
  display: block;
  overflow: hidden;
}

.banner .swiper-slide i img {
  width: 100%;
  transition: 1s 0.2s;
}

.banner-font {
  display: none;

}

.banner .swiper-slide-active i img {
  transform: scale(1.05);
}

.banner-page {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: 2vw;
  width: 100%;
}

.banner-page .swiper-pagination-bullet {
  display: block;
  width: 0.5vw;
  height: 0.5vw;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: ease 0.3s;
}

.banner-page .swiper-pagination-bullet-active {
  width: 1.5vw;
  opacity: 1;
  border-radius: 0.8vw;
}

.banner-prev,
.banner-next {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 2.5vw;
  height: 2.5vw;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
}

.banner-prev {
  left: 3vw;
  transform: translate3d(2vw, 0, 0);
}

.banner-next {
  right: 3vw;
  transform: translate3d(-2vw, 0, 0);
}

.banner-prev::after,
.banner-next::after {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 0.8vw;
  line-height: 1;
  color: #fff;
  font-family: "swiper-icons";
}

.banner-prev::after {
  content: "prev";
}

.banner-next::after {
  content: "next";
}

.banner .swiper-slide-active .banner-text1,
.banner .swiper-slide-active .banner-text2,
.banner .swiper-slide-active .banner-text3,
.banner .swiper-slide-active .banner-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (min-width: 1200px) {

  .banner-prev:hover,
  .banner-next:hover {
    background: #e98712;
  }

  .banner .swiper-container:hover .banner-prev,
  .banner .swiper-container:hover .banner-next {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1200px) {
  .banner {
    height: auto;
  }

  .banner-font {
    top: 0.2rem;
    width: 100%;
    padding: 0.2rem;
  }

  .banner-text1 {
    font-size: 0.4rem;
    letter-spacing: 5px;
    text-align: center;
    transform: translate3d(0, 0.4rem, 0);
  }

  .banner-text2 {
    font-size: 0.4rem;
    text-align: center;
    transform: translate3d(0, 0.4rem, 0);
  }

  .banner-text3 {
    margin: 0.2rem 0 0;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: 2px;
    text-align: center;
    transform: translate3d(0, 0.4rem, 0);
  }

  .banner-link {
    display: flex;
    justify-content: center;
    margin-top: 0.3rem;
    transform: translate3d(0, 0.4rem, 0);
  }

  .banner-link a {
    position: relative;
    width: 2.4rem;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 15px;
    transition: 0.5s;
  }

  .banner-link a:nth-child(1) {
    background: #fff url(../images/banner_icon1.png) no-repeat 2rem center/12px;
  }

  .banner-link a:nth-child(2) {
    margin-left: 0.1rem;
    background: url(../images/banner_icon2.png) no-repeat 2.4rem center/12px;
  }

  .banner-page {
    bottom: 10px;
    width: 100%;
  }

  .banner-page .swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    margin: 0 5px;
  }

  .banner-page .swiper-pagination-bullet-active {
    width: 15px;
    opacity: 1;
    border-radius: 5px;
  }

  .banner-prev,
  .banner-next {
    display: none;
  }
}

/* more */
.more {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.more::before {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.6s;
  width: 100%;
  height: 0;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  padding-top: 100%;
  transform: translateX(-50%) translateY(-50%);
}

@keyframes style1 {
  0% {
    background: rgba(0, 0, 0, 0.25);
    transform: translateX(-50%) translateY(-50%) scale(0);
  }

  to {
    background: 0 0;
    transform: translateX(-50%) translateY(-50%) scale(1);
  }
}

@media (min-width: 1200px) {
  .more:hover::before {
    animation: style1 0.75s;
    z-index: 1;
  }
}

/* part1 */
.part1 {
  padding: 0;
}

.part1-nav {
  width: 90vw;
  margin: 0 auto;
  padding: 0.5vw 0;
}

.part1-nav ul {
  display: flex;
}

.part1-nav ul li {
  width: 12.5vw;
  padding: 0.5vw;
  text-align: center;
  cursor: pointer;
}

.part1-nav ul i {
  display: block;
}

.part1-nav ul i img {
  width: 100%;
}

.part1-nav ul p {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.part1-nav ul li.active {
  background: rgba(0, 0, 0, 0.1);
}

.part1-content {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: url(../images/part1_bg.jpg) no-repeat center bottom/cover
}

.part1-tab {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 0 5vw;
  opacity: 0;
  transition: 0.3s;
}

.part1-tab.active {
  opacity: 1;
  z-index: 10;
}

.part1-tab-flex {
  display: flex;
  justify-content: space-between;
}

.part1-tab-left {
  width: 23vw;
  padding: 10vw 0 0;
}

.part1-tab-num {
  display: flex;
  align-items: flex-end;
  font-weight: bold;
  font-size: 30px;
  line-height: 36px;
  color: #000;
}

.part1-tab-num span {
  font-size: 48px;
  line-height: 1;
  color: #e98712;
}

.part1-tab-title {
  padding: 2vw 0;
  font-size: 36px;
  line-height: 48px;
  color: #e98712;
}

.part1-tab-des {
  padding: 0 0 2vw;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.part1-tab-link {
  display: flex;
  justify-content: space-between;
}

.part1-tab-link a {
  position: relative;
  width: 11vw;
  overflow: hidden;
  font-size: 16px;
  line-height: 3vw;
  text-align: center;
  border: 2px solid #e98712;
  border-radius: 30px;
}

.part1-tab-link a:nth-child(1) {
  color: #fff;
  background: #e98712;
}

.part1-tab-link a:nth-child(2) {
  color: #e98712;
  border-color: #e98712;
}

.part1-tab-right {
  padding: 5vw 0 0;
  width: 20.8vw;
}

.part1-tab-right img {
  width: 100%;
}


@media (max-width: 1200px) {
  .part1 {
    padding: 0.2rem;
  }

  .part1-nav {
    width: 100%;
    padding: 0 0 0.2rem;
  }

  .part1-nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .part1-nav ul li {
    width: 33.3%;
    padding: 1px;
    text-align: center;
    border: 1px solid #f5f5f5;
  }

  .part1-nav ul p {
    font-size: 16px;
    line-height: 30px;
    color: #000;
  }

  .part1-content {
   height: 8.6rem;
    padding: 0.2rem;
  }

  .part1-tab-flex {
    display: block;
  }

  .part1-tab-left {
    width: 100%;
    padding: 0.8rem  0 0;
  }

  .part1-tab-num {
    display: flex;
    align-items: flex-end;
    font-size: 0.3rem;
    line-height: 0.36rem;
    color: #000;
  }

  .part1-tab-num span {
    font-size: 0.4rem;
    line-height: 1;
    color: #e98712;
  }

  .part1-tab-title {
    padding: 0.2rem 0;
    font-size: 0.4rem;
    line-height: 0.48rem;
    color: #e98712;
  }

  .part1-tab-des {
    padding: 5px 0;
    font-size: 14px;
    line-height: 30px;
  }

  .part1-tab-link {
    display: block;
    padding: 0.2rem 0  0;
  }

  .part1-tab-link a {
    position: relative;
    display: block;
    width: 3.8rem;
    margin: 0.2rem 0;
    overflow: hidden;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #e98712;
    border-radius: 15px;
  }
  .part1-tab-link a:nth-child(2){
      color: #fff;
      background: #e98712;
  }

  .part1-tab-right {
    width: 100%;
    padding: 0 3rem 0 0;
  }

  .part1-tab-right img {
    width: 100%;
  }
}

/* part2 */
.part2 {
  padding: 2vw 0;
}

.part2-main {
  display: flex;
  justify-content: space-between;
  width: 90vw;
  margin: 0 auto;
}

.part2-slide {
  width: 20vw;
  padding: 2vw 1.5vw 0;
  background: #e98712 url(../images/part2_slide.jpg) no-repeat center
    bottom/cover;
}

.part2-slide-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 48px;
  color: #fff;
}

.part2-slide-detail {
  margin: 2vw 0;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}

.part2-slide-more {
  width: 8vw;
}

.part2-slide-more a {
  display: block;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #e98712;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 30px;
}

.part2-content {
  width: 68vw;
}

.part2-content ul {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5vw 0 0;
  min-height: 40vw;
}

.part2-content ul li {
  width: 25%;
  padding: 0.5vw 0.5vw 0;
}

.part2-content ul a {
  display: block;
  padding: 1vw;
  border: 1px solid #e5e5e5;
  border-radius: 0.5vw;
}

.part2-content ul i {
  display: block;
  overflow: hidden;
}

.part2-content ul i img {
  width: 100%;
  transition: 0.5s;
}

.part2-li-name {
  font-size: 18px;
  line-height: 36px;
  color: #000;
  text-align: center;
}

.part2-li-more {
  width: 6.4vw;
  margin: 1vw auto 0;
  font-size: 12px;
  line-height: 36px;
  color: #000;
  text-align: center;
  border: 1px solid #bfc1c4;
  border-radius: 20px;
}

@media (min-width: 1200px) {
  .part2-content ul a:hover {
    box-shadow: 0px 0px 10px 3px #ddd;
  }

  .part2-content ul a:hover img {
    transform: scale(1.08);
  }

  .part2-content ul a:hover .part2-li-more {
    color: #fff;
    background: #e98712;
  }
}

@media (max-width: 1200px) {
  .part2 {
    padding: 0.2rem;
  }

  .part2-main {
    display: block;
    width: 100%;
  }

  .part2-slide {
    display: none;
  }

  .part2-content {
    width: 100%;
  }

  .part2-content ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
  }

  .part2-content ul li {
    width: 50%;
    padding: 5px;
  }

  .part2-content ul a {
    display: block;
    padding: 0.2rem;
    border: 1px solid #e5e5e5;
  }

  .part2-content ul i img {
    width: 100%;
    transition: 0.5s;
  }

  .part2-li-name {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    text-align: center;
  }

  .part2-li-more {
    width: 120px;
    margin: 0.2rem auto 0;
    font-size: 12px;
    line-height: 30px;
    color: #000;
    text-align: center;
    border: 1px solid #bfc1c4;
    border-radius: 15px;
  }
}

/* part3 */
.part3 {
  padding: 6vw 0;
  background: url(../images/part3_bg.jpg) no-repeat center 0 fixed;
}

.part3-main {
  display: flex;
  justify-content: space-between;
  width: 90vw;
  margin: 0 auto;
}

.part3-left {
  width: 37vw;
}

.part3-left ul {
  display: flex;
  flex-wrap: wrap;
}

.part3-left ul li {
  width: 50%;
  padding: 2vw;
}

.part3-li-title {
  position: relative;
  margin: 0 0 1.5vw;
  padding: 0 0 1vw;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.part3-li-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2vw;
  height: 4px;
  background: #e98712;
}

.part3-li-num {
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
}

.part3-li-num span {
  font-size: 72px;
  line-height: 60px;
}

.part3-right {
  width: 38vw;
}

.part3-right-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 78px;
  color: #fff;
}

.part3-right-text {
  min-height: 10vw;
  margin: 1.5vw 0 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
}

.part3-right-more {
  width: 160px;
  margin: 1vw 0 0;
}

.part3-right-more a {
  display: block;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #e98712;
  border: 2px solid #fff;
  background: #fff;
  border-radius: 30px;
}

@media (max-width: 1200px) {
  .part3 {
    padding: 0.4rem 0.2rem;
    background: url(../images/part3_bg.jpg) no-repeat center 0 fixed/100%;
  }

  .part3-main {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .part3-left {
    width: 100%;
    order: 2;
  }

  .part3-left ul {
    display: flex;
    flex-wrap: wrap;
  }

  .part3-left ul li {
    width: 50%;
    padding: 5px;
  }

  .part3-li-title {
    position: relative;
    margin: 0 0 10px;
    padding: 0 0 0.2rem;
    font-size: 16px;
    line-height: 30px;
    color: #fff;
  }

  .part3-li-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.4rem;
    height: 2px;
    background: #e98712;
  }

  .part3-li-num {
    display: flex;
    align-items: flex-end;
    font-size: 12px;
    line-height: 12px;
    color: #fff;
  }

  .part3-li-num span {
    font-size: 24px;
    line-height: 20px;
  }

  .part3-right {
    width: 100%;
    order: 1;
    text-align: center;
  }

  .part3-right-title {
    font-weight: bold;
    font-size: 0.4rem;
    line-height: 0.48rem;
    color: #fff;
  }

  .part3-right-text {
    height: auto;
    margin: 0.2rem 0 0;
    overflow: auto;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
  }

  .part3-right-more {
    width: 120px;
    margin: 0.2rem auto;
  }

  .part3-right-more a {
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid #e98712;
    background: #e98712;
    border-radius: 18px;
  }
}

/* part4 */
.part4 {
  padding: 3vw 0;
  background: #fcf0e7;
}

.part4-title {
  font-weight: bold;
  font-size: 36px;
  line-height: 1.5;
  color: #e98712;
  text-align: center;
}

.part4-detail {
  margin: 0.5vw 0 0;
  font-size: 16px;
  line-height: 30px;
  color: #666;
  text-align: center;
}

.part4-main {
  position: relative;
  margin: 2.4vw 0 0;
  padding: 0 10vw;
  overflow: hidden;
}

.part4-banner {
  position: relative;
  overflow: visible;
}

.part4-banner .swiper-slide {
  padding: 0 0.5vw;
}

.part4-banner a {
  display: block;
  padding: 1.5vw;
  background: rgba(255, 255, 255, 0.7);
}

.new-li-time {
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.new-li-title {
  margin: 1vw 0;
  font-size: 18px;
  line-height: 1.5;
  color: #666666;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-li-img {
  overflow: hidden;
}

.new-li-img img {
  width: 100%;
}

.new-li-text {
  height: 48px;
  margin: 1vw 0 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 24px;
  color: #666666;
}

.part4-page {
  display: flex;
  justify-content: center;
  padding: 2vw 0 0;
}

.part4-page .swiper-pagination-bullet {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 4px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s;
}

.part4-page .swiper-pagination-bullet-active {
  opacity: 1;
  background: #e98712;
}

@media (max-width: 1200px) {
  .part4 {
    padding: 0.2rem;
    background: #fcf0e7;
  }

  .part4-title {
    font-weight: bold;
    font-size: 0.4rem;
    line-height: 1.5;
    color: #e98712;
    text-align: center;
  }

  .part4-detail {
    margin: 0.1rem 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #666;
    text-align: center;
  }

  .part4-main {
    position: relative;
    margin: 0.2rem 0 0;
    overflow: hidden;
  }

  .part4-banner {
    position: relative;
    overflow: visible;
  }

  .part4-banner .swiper-slide {
    padding: 0 5px;
  }

  .part4-banner a {
    padding: 0.2rem;
  }

  .new-li-time {
    font-size: 14px;
    line-height: 20px;
  }

  .new-li-title {
    margin: 0.1rem 0;
    font-size: 16px;
    line-height: 1.5;
  }

  .new-li-text {
    height: 40px;
    margin: 0.2rem 0 0;
    font-size: 14px;
    line-height: 20px;
    color: #666666;
  }

  .part4-page {
    display: flex;
    justify-content: center;
    padding: 0.4rem 0 0.2rem;
  }

  .part4-page .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    margin: 0 4px;
  }
}

/* part5 */
.part5 {
  padding: 3vw 0 0;
  background: url(../images/part5_bg.jpg) no-repeat center 0 fixed;
}

.part5-title {
  position: relative;
  margin: 0 0 1vw;
  padding: 0 0 1vw;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
}

.part5-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 2vw;
  height: 4px;
  margin-left: -1vw;
  background: #e98712;
}

.part5-detail {
  font-size: 30px;
  line-height: 48px;
  color: #fff;
  text-align: center;
}

.part5-more {
  width: 200px;
  margin: 3vw auto 3vw;
}

.part5-more a {
  display: block;
  font-size: 16px;
  line-height: 48px;
  text-align: center;
  color: #fff;
  border: 2px solid #fff;
  background: #ff7e00;
  border-color: #ff7e00;
  border-radius: 30px;
}

@media (max-width: 1200px) {
  .part5 {
    padding: 0.4rem 0.2rem 0;
    background: url(../images/part5_bg.jpg) no-repeat center 0 fixed/100%;
  }

  .part5-title {
    position: relative;
    margin: 0 0 0.2rem;
    padding: 0 0 0.2rem;
    font-weight: bold;
    font-size: 0.5rem;
    line-height: 1.5;
    color: #fff;
    text-align: center;
  }

  .part5-title::after {
    width: 0.4rem;
    height: 2px;
    margin-left: -0.2rem;
  }

  .part5-detail {
    font-size: 0.4rem;
    line-height: 0.5rem;
  }

  .part5-more {
    margin: 0.4rem auto;
  }

  .part5-more a {
    display: block;
    font-size: 14px;
    line-height: 30px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    background: #ff7e00;
    border-color: #ff7e00;
    border-radius: 15px;
  }
}

/* part6 */
.part6 {
  padding: 3vw 0;
}

.part6-title {
  width: 90vw;
  margin: 0 auto;
  padding: 1.5vw;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  background: #ff7e00;
  border-radius: 0.5vw 0.5vw 0 0;
}

.part6-ul {
  display: flex;
  width: 90vw;
  margin: 0 auto 3vw;
}

.part6-li {
  width: 50%;
  padding: 0 0.5vw;
}

.part6-li-box {
  padding: 1.5vw;
  background: #f5f5f5;
  border-bottom: 5px solid #ff7e00;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: 0.3s;
}

.part6-li-name {
  padding: 0 0 1vw;
  font-size: 24px;
  line-height: 1.5;
  color: #ff7e00;
  border-bottom: 1px solid #ff7e00;
}

.part6-li-font {
  display: flex;
  justify-content: space-between;
  padding: 1vw 0;
}

.part6-li-text {
  flex-grow: 1;
  padding-right: 1vw;
  font-size: 16px;
  line-height: 30px;
  color: #646464;
}

.part6-li-link {
  width: 200px;
  flex-shrink: 0;
}

.part6-li-link a {
  display: block;
  font-size: 16px;
  line-height: 36px;
  color: #fff;
  text-align: center;
  background: #e98712;
  border-radius: 20px;
}

.part6-li-ewm {
  width: 5vw;
}

.part6-li-ewm img {
  width: 100%;
}

.part6-map {
  position: relative;
  z-index: 5;
  width: 90vw;
  margin: 0 auto;
}

#container {
  height: 300px;
}

@media (min-width: 1200px) {
  .part6-li:hover .part6-li-box {
    padding: 2vw 1.5vw;
    background: #fff;
    box-shadow: 0px 0 25px 0px rgb(0 0 0 / 8%);
    transform: translate3d(0, -0.5vw, 0);
  }

  #container {
    height: 500px;
  }
}

@media (max-width: 1200px) {
  .part6 {
    padding: 0.2rem;
  }

  .part6-title {
    width: 100%;
    padding: 0.2rem;
    font-size: 0.6rem;
    line-height: 1.5;
    border-radius: 0.1rem 0.1rem 0 0;
  }

  .part6-ul {
    display: block;
    width: 100%;
    height: auto;
  }

  .part6-li {
    width: 100%;
    padding: 0.1rem 0;
  }

  .part6-li-box {
    padding: 0.3rem;
    border-bottom: 5px solid #ff7e00;
  }

  .part6-li-name {
    padding: 0 0 0.2rem;
    font-size: 16px;
    line-height: 1.5;
    color: #ff7e00;
    border-bottom: 1px solid #ff7e00;
  }

  .part6-li-font {
    display: flex;
    justify-content: space-between;
    padding: 0.2rem 0;
  }

  .part6-li-text {
    width: 4.8rem;
    font-size: 14px;
    line-height: 24px;
    color: #646464;
  }

  .part6-li-link a {
    display: block;
    font-size: 14px;
    line-height: 30px;
    border-radius: 15px;
  }

  .part6-li-ewm {
    width: 1.5rem;
  }

  .part6-li-ewm img {
    width: 100%;
  }

  .part6-map {
    width: 100%;
    padding: 0.1rem 0 0;
  }
}
