@charset "utf-8";
/*简介*/
.introBoxBg {
  position: relative;
  z-index: 1;
  background-color: #f4f6f8;
}
.introBoxBg::before {
  position: absolute;
  z-index: -1;
  top: 0;
  margin-top: -6.7%;
  right: 0;
  width: 8.16rem;
  height: 5.33rem;
  display: block;
  content: "";
  background: url(../images/aboutbg.png) right 0 no-repeat;
  background-size: contain ;
}
.introBox .coni {
  margin-top: 3%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 7.1%;
}
@media (max-width: 767px) {
  .introBox .coni {
    margin-bottom: 3rem;
    display: block;
    margin-top: 1rem;
  }
}
.introBox .coni .pic {
  width: 45.7%;
  position: relative;
  z-index: 0;
}
.introBox .coni .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .introBox .coni .pic {
    width: 100%;
  }
}
.introBox .coni .txt {
  width: 50%;
  padding: 2.3% 0 3%;
}
@media (max-width: 767px) {
  .introBox .coni .txt {
    width: 100%;
    padding: 1.5rem;
    margin-right: auto;
  }
}
.introBox .coni .txt .title {
  line-height: 1.4;
}
.introBox .coni .txt .title2 {
  line-height: 1.4;
  font-weight: bold;
  color: #1a5fdb;
}
.introBox .coni .txt .intro {
  line-height: 1.8;
  color: #666;
}
.introBox .coni .txt .intro p {
  margin-top: 2%;
}
.introBox .coni .txt .intro p:nth-child(1) {
  margin-top: 4%;
}
/*品牌业务*/
.bussBox {
  background: #000 url(../images/bussbg.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
}
.bussBox .con {
  padding: 15% 0 15.8%;
  margin: 0 auto;
  width: 98%;
  max-width: 1045px;
}
.bussBox .con .title {
  font-weight: bold;
}
.bussBox .con .txt {
  margin-top: 2.8%;
  line-height: 1.7;
}
.bussBox .con .txt p {
  margin-top: 0.5em;
}
.bussBox .con .txt p:nth-child(1) {
  margin-top: 0;
}
.bussBox .con .btnw {
  margin-top: 6.3%;
}
/*产品系列*/
.prose2Box {
  background-color: #fff;
}
.prose2Box .list {
  margin-top: 1%;
  margin-bottom: 13.6%;
}
@media (max-width: 767px) {
  .prose2Box .list {
    margin-top: 1rem;
    margin-bottom: 3rem;
  }
}
.prose2Box .list ul {
  display: flex;
  flex-wrap: wrap;
}
.prose2Box .list li {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 0;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  width: 48%;
  margin-right: 4%;
  margin-top: 4%;
}
.prose2Box .list li:nth-child(2n) {
  margin-right: 0;
}
.prose2Box .list li::before {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .prose2Box .list li {
    width: 100%;
    margin-right: 0;
  }
}
.prose2Box .list li .pic {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  overflow: hidden;
}
.prose2Box .list li .pic img {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s;
}
.prose2Box .list li .txt {
  color: #fff;
  position: relative;
  z-index: 3;
  padding: 7% 12.2% 0;
}
.prose2Box .list li .txt .name {
  font-weight: bold;
  height: 1.5em;
  overflow: hidden;
}
.prose2Box .list li .txt .intro {
  margin-top: 4%;
  line-height: 1.9;
  height: 5.7em;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.prose2Box .list li .txt2 {
  color: #fff;
  margin: 4% auto 0 0;
  position: relative;
  z-index: 3;
  width: 51%;
  padding: 4.5% 0;
  background-color: #0052d9;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  .prose2Box .list li .txt2 {
    width: 80%;
  }
}
.prose2Box .list li .txt2 .nameSub {
  flex: 1;
  margin: 0 5% 0 24.4%;
  line-height: 1.9;
  height: 3.9em;
  overflow: hidden;
}
@media (max-width: 767px) {
  .prose2Box .list li .txt2 .nameSub {
    margin-left: 16%;
  }
}
.prose2Box .list li .txt2 .nameSub .txts {
  overflow: hidden;
  height: 1.9em;
}
.prose2Box .list li:hover .pic img {
  -ms-transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  transform: scale(1.05, 1.05);
}
/*发展历程*/
.histBox {
  background-color: #f4f6f8;
}
.histBox .container {
  overflow: visible;
}
.histBox .list {
  padding: 5.9% 0 6.6%;
}
@media (max-width: 767px) {
  .histBox .list {
    padding: 3rem 0 6rem;
  }
}
.histBox .list ul {
  position: relative;
  z-index: 0;
  height: 0;
  padding-top: 24.2%;
  background: url(../images/hist_line.png) center center no-repeat;
  background-size: contain;
}
.histBox .list li {
  position: absolute;
  left: 0;
  top: 0;
  width: 15em;
  text-align: center;
  margin-left: -7.5em;
  display: flex;
  flex-direction: column;
}
.histBox .list li .dot {
  width: 1em;
  height: 1em;
  margin: 0 auto;
  background-color: #fff;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 0.3em rgba(0, 9, 201, 0.2);
  -webkit-box-shadow: 0 0 0.3em rgba(0, 9, 201, 0.2);
  box-shadow: 0 0 0.3em rgba(0, 9, 201, 0.2);
}
.histBox .list li .year {
  margin-top: 0.3em;
  margin-bottom: 0.15em;
  font-weight: bold;
}
.histBox .list li .name {
  color: #666;
}
.histBox .list li:nth-child(1) {
  left: 10.6%;
  margin-top: 17.4%;
}
.histBox .list li:nth-child(2) {
  left: 33.1%;
  margin-bottom: 7.3%;
  top: auto;
  bottom: 0;
}
.histBox .list li:nth-child(3) {
  left: 51.2%;
  margin-top: 9.3%;
}
.histBox .list li:nth-child(4) {
  left: 67%;
  margin-bottom: 9.1%;
  top: auto;
  bottom: 0;
}
.histBox .list li:nth-child(5) {
  left: 89.4%;
  margin-top: 4.6%;
}
.histBox .list li:nth-child(2n) {
  display: flex;
  flex-direction: column-reverse;
}
.histBox .list li:nth-child(2n) .year {
  margin-bottom: 0.6em;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .histBox .list li {
    width: 5em;
    margin-left: -2.5em;
  }
  .histBox .list li:nth-child(2) {
    margin-bottom: 6.3%;
  }
  .histBox .list li:nth-child(3) {
    margin-top: 8.3%;
  }
  .histBox .list li:nth-child(4) {
    margin-bottom: 8.1%;
  }
  .histBox .list li:nth-child(5) {
    margin-top: 4%;
  }
}
/*发展历程 轮播*/
.swiper-hist-w {
  margin-top: 7%;
  position: relative;
  z-index: 0;
  margin-bottom: 7.1%;
  background: url(../images/hist_line2.png) center center no-repeat;
}
@media (max-width: 767px) {
  .swiper-hist-w {
    margin-bottom: 3rem;
    display: block;
    margin-top: 1rem;
  }
}
.swiper-hist-w .line {
  width: 100%;
  height: 2px;
  background-color: #dadada;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 0;
  margin-top: -1px;
}
.swiper-hist {
  position: relative;
  z-index: 0;
}
.swiper-hist .itemGroup {
  height: 29em;
  position: relative;
  z-index: 0;
  margin: 0 2em;
}
@media (max-width: 767px) {
  .swiper-hist .itemGroup {
    height: 40em;
  }
}
.swiper-hist .itemGroup .item {
  position: absolute;
  left: 3.3;
  bottom: 50%;
  padding-bottom: 6.1%;
  width: 38.6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .swiper-hist .itemGroup .item {
    display: block;
  }
}
.swiper-hist .itemGroup .item .lines {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin-top: 13%;
  width: 2px;
  background-color: #1a5fdb;
}
.swiper-hist .itemGroup .item .lines .dot::after {
  width: 10px;
  height: 10px;
  display: block;
  content: "";
  background-color: #1a5fdb;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.swiper-hist .itemGroup .item .lines .dot {
  position: absolute;
  width: 1.6em;
  height: 1.6em;
  display: block;
  content: "";
  left: -0.8em;
  bottom: -0.8em;
  border: 2px solid #1a5fdb;
  margin-left: 1px;
  margin-bottom: 1px;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-hist .itemGroup .item .pic {
  margin-left: 6.5%;
  position: relative;
  z-index: 0;
  width: 40.7%;
  padding-top: 25.9%;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  overflow: hidden;
}
.swiper-hist .itemGroup .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .swiper-hist .itemGroup .item .pic {
    width: auto;
    margin-left: 1em;
    margin-right: 0;
    padding-top: 50%;
  }
}
.swiper-hist .itemGroup .item .txt {
  width: 47.4%;
}
@media (max-width: 767px) {
  .swiper-hist .itemGroup .item .txt {
    width: auto;
    margin-left: 1em;
  }
}
.swiper-hist .itemGroup .item .txt .time {
  color: #1a5fdb;
}
.swiper-hist .itemGroup .item:nth-child(1) .lines .dot {
  bottom: auto;
  top: -0.8em;
}
.swiper-hist .itemGroup .item:nth-child(2) {
  left: 14.6%;
  bottom: auto;
  top: 50%;
  padding-top: 6.1%;
  padding-bottom: 0;
}
.swiper-hist .itemGroup .item:nth-child(2) .lines {
  margin-top: 0;
  margin-bottom: 13%;
}
.swiper-hist .itemGroup .item:nth-child(3) {
  left: 48.6%;
}
.swiper-hist .itemGroup .item:nth-child(3) .lines .dot {
  bottom: auto;
  top: -0.8em;
}
.swiper-hist .itemGroup .item:nth-child(4) {
  left: 60.1%;
  bottom: auto;
  top: 50%;
  padding-top: 6.1%;
  padding-bottom: 0;
}
.swiper-hist .itemGroup .item:nth-child(4) .lines {
  margin-top: 0;
  margin-bottom: 13%;
}
.swiper-hist-w .container {
  overflow: visible;
  position: relative;
  z-index: 0;
}
.swiper-hist-w .swiper-button-next,
.swiper-hist-w .swiper-button-prev {
  z-index: 10;
  position: absolute;
  left: 48.6%;
  right: auto;
  top: 50%;
  margin-top: -1.5em;
  width: 3em;
  height: 3em;
  background-color: #fff;
  color: #d4d4d4;
  text-align: center;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  transition: all 1s;
}
.swiper-hist-w .swiper-button-next:hover,
.swiper-hist-w .swiper-button-prev:hover {
  background-color: #1a5fdb;
  color: #fff;
}
.swiper-hist-w .swiper-button-next {
  right: -5.6em;
  left: auto;
}
@media (max-width: 1260px) {
  .swiper-hist-w .swiper-button-next {
    right: -3em;
  }
}
@media (max-width: 767px) {
  .swiper-hist-w .swiper-button-next {
    right: 0.2em;
  }
}
.swiper-hist-w .swiper-button-prev {
  left: -5.6em;
}
@media (max-width: 1260px) {
  .swiper-hist-w .swiper-button-prev {
    left: -3em;
  }
}
@media (max-width: 767px) {
  .swiper-hist-w .swiper-button-prev {
    left: 0.2em;
  }
}
.swiper-hist-w .swiper-button-next span,
.swiper-hist-w .swiper-button-prev span {
  font-size: 1.4em;
  display: block;
}
.swiper-hist-w .swiper-button-disabled {
  opacity: 0.4;
}
/*品牌服务*/
.servBox {
  background-color: #fff;
}
.servBox .coni {
  background-color: #f4f6f8;
  margin-top: 7.1%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 7.1%;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
  overflow: hidden;
}
@media (max-width: 767px) {
  .servBox .coni {
    margin-bottom: 3rem;
    display: block;
    margin-top: 3rem;
  }
}
.servBox .coni .pic {
  width: 50%;
  position: relative;
  z-index: 0;
}
.servBox .coni .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .servBox .coni .pic {
    width: 100%;
    padding-top: 59.4%;
  }
}
.servBox .coni .txt {
  width: 42.9%;
  margin-right: 2.7%;
  padding: 5.7% 0 5.7%;
}
@media (max-width: 767px) {
  .servBox .coni .txt {
    width: auto;
    padding: 1.5rem 1rem;
    margin-right: auto;
  }
}
.servBox .coni .txt .title {
  line-height: 1.4;
  font-weight: bold;
}
.servBox .coni .txt .intro {
  line-height: 1.8;
  color: #666;
}
.servBox .coni .txt .intro p {
  margin-top: 2%;
}
.servBox .coni .txt .intro p:nth-child(1) {
  margin-top: 4%;
}
/*品牌*/
.brandBox {
  background-color: #f4f6f8;
}
.brandBox .list {
  margin-top: 7%;
  padding-bottom: 7%;
}
.brandBox .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 767px) {
  .brandBox .list {
    padding-bottom: 3rem;
    margin-top: 3rem;
  }
}
.brandBox .list li {
  display: block;
  background-color: #fff;
  width: 31.6%;
  overflow: hidden;
  margin-right: 2.6%;
  position: relative;
  z-index: 0;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
@media (max-width: 767px) {
  .brandBox .list li {
    width: 100%;
  }
}
.brandBox .list li:nth-child(3n) {
  margin-right: 0;
}
.brandBox .list li .pic {
  width: 36%;
  padding-top: 38%;
  position: absolute;
  z-index: 0;
  bottom: 0;
  right: 4.7%;
  margin-bottom: 3%;
}
.brandBox .list li .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brandBox .list li .txt {
  text-align: center;
  padding: 15.5% 10.3% 17.5%;
}
.brandBox .list li .txt .name {
  font-weight: bold;
}
.brandBox .list li .txt .intro {
  margin-top: 3.7%;
  color: #666;
  line-height: 1.9;
}
/*地图*/
.map2Box {
  background-color: #fff;
}
.map2Box .con {
  padding: 7.1% 0;
}
@media (max-width: 767px) {
  .map2Box .con {
    padding: 3rem 0;
  }
}
.map2Box .con img {
  max-width: 100%;
  height: auto;
}
/*品牌概况*/
.survBox {
  background-color: #f4f6f8;
}
.survBox .titBox {
  padding-top: 6%;
}
@media (max-width: 767px) {
  .survBox .titBox {
    padding-top: 3rem;
  }
}
.survBox .list {
  margin-top: 1%;
  padding-bottom: 7%;
}
.survBox .list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
@media (max-width: 767px) {
  .survBox .list {
    padding-bottom: 3rem;
  }
}
.survBox .list li {
  display: block;
  margin-top: 2%;
  background-color: #fff;
  width: 18.4%;
  overflow: hidden;
  margin-right: 2%;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .survBox .list li {
    width: 48%;
  }
  .survBox .list li:nth-child(5n) {
    margin-right: 2%;
  }
  .survBox .list li:nth-child(2n) {
    margin-right: 0;
  }
  .survBox .list li:nth-child(5) {
    width: 100%;
  }
}
.survBox .list li:nth-child(5n) {
  margin-right: 0;
}
.survBox .list li .pic {
  width: 2em;
  padding-top: 2em;
  position: absolute;
  z-index: 0;
  top: 0.9em;
  right: 0.9em;
}
.survBox .list li .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.survBox .list li .txt {
  padding: 1.8em 1em 1em;
}
.survBox .list li .txt .num {
  color: #666;
  min-height: 3em;
}
/*人物介绍*/
.teamBox {
  margin-top: 7%;
  position: relative;
  z-index: 0;
  margin-bottom: 7.1%;
}
@media (max-width: 767px) {
  .teamBox {
    margin-bottom: 3rem;
    display: block;
    margin-top: 1rem;
  }
}
.teamBox .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .teamBox .item {
    display: block;
  }
}
.teamBox .item .pic {
  width: 40.5%;
  padding-top: 43.5%;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  .teamBox .item .pic {
    width: 100%;
    padding-top: 87%;
  }
}
.teamBox .item .pic img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.teamBox .item .pic::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 1px;
  left: 1px;
  width: 78.3%;
  padding-top: 36%;
  background-color: #1a5fdb;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
.teamBox .item .txt {
  width: 50%;
  padding: 2.3% 0 3%;
}
@media (max-width: 767px) {
  .teamBox .item .txt {
    width: 100%;
    padding: 1.5rem 0;
    margin-right: auto;
  }
}
.teamBox .item .txt .title {
  font-weight: bold;
  line-height: 1.4;
}
.teamBox .item .txt .name {
  text-align: right;
  line-height: 1.1;
  color: #666;
}
.teamBox .item .txt .posi {
  text-align: right;
  margin-top: 8%;
  border-top: 1px solid #dadada;
  line-height: 1.1;
  color: #666;
}
.teamBox .item .txt .posi span {
  position: relative;
  top: -0.7em;
  background-color: #f4f6f8;
  display: inline-block;
  padding-left: 3.6em;
}
.teamBox .item .txt .intro {
  margin-top: 5.6%;
  line-height: 1.9;
  color: #666;
}
.teamBox .item .txt .intro p {
  margin-top: 2%;
}
.teamBox .item .txt .intro p:nth-child(1) {
  margin-top: 4%;
}
.teamBox .swiper-button-next,
.teamBox .swiper-button-prev {
  z-index: 10;
  position: absolute;
  left: 48.6%;
  bottom: 0;
  top: auto;
  margin: 0;
  margin-left: 4.7em;
  width: 3em;
  height: 3em;
  background-color: #fff;
  color: #d4d4d4;
  text-align: center;
  background-image: none;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  transition: all 1s;
}
.teamBox .swiper-button-next:hover,
.teamBox .swiper-button-prev:hover {
  background-color: #1a5fdb;
  color: #fff;
}
.teamBox .swiper-button-prev {
  left: 48.6%;
  margin: 0;
}
.teamBox .swiper-button-next span,
.teamBox .swiper-button-prev span {
  font-size: 1.4em;
  display: block;
}
/*公司简介*/
.compBox {
  background: url(../images/compbg.jpg) center center no-repeat;
  background-size: cover;
  color: #fff;
  text-align: center;
  height: 914px;
}
@media (max-width: 767px) {
  .compBox {
    height: auto;
  }
}
.compBox .con {
  padding: 128px 0 10%;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}
@media (max-width: 767px) {
  .compBox .con {
    padding-top: 2rem;
  }
}
.compBox .con .title {
  font-weight: bold;
}
.compBox .con .txt {
  margin: 2.8% 8.6% 0;
  line-height: 2;
}
@media (max-width: 767px) {
  .compBox .con .txt {
    margin-left: 0;
    margin-right: 0;
    font-size: 12px;
    line-height: 1.3;
  }
}
.compBox .con .txt p {
  margin-top: 1em;
}
.compBox .con .txt p:nth-child(1) {
  margin-top: 0;
}
.compBox .con .txt b {
  font-size: 1.12em;
}
/*我们的品牌*/
.myBrandBox {
  background: url(../images/mybrandbg.jpg.png) right bottom no-repeat;
  background-size: auto 100% ;
}
.myBrandBox .title {
  line-height: 1.4;
  font-weight: bold;
}
.myBrandBox .coni {
  margin-top: 2.8%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 7.1%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .myBrandBox .coni {
    margin-bottom: 3rem;
    display: block;
    margin-top: 3rem;
  }
}
.myBrandBox .coni .pic {
  width: 50%;
  position: relative;
  z-index: 0;
  overflow: hidden;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
  border-radius: 0.5em;
}
.myBrandBox .coni .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .myBrandBox .coni .pic {
    width: 100%;
    padding-top: 59.4%;
  }
}
.myBrandBox .coni .txt {
  width: 42.9%;
  padding: 6.4% 0;
}
@media (max-width: 767px) {
  .myBrandBox .coni .txt {
    width: auto;
    padding: 1.5rem 1rem 0;
    margin-right: auto;
  }
}
.myBrandBox .coni .txt .title2 {
  line-height: 1.4;
  font-weight: bold;
}
.myBrandBox .coni .txt .intro {
  margin-top: 4.5%;
  line-height: 1.8;
  color: #666;
}
.myBrandBox .coni .txt .btnBlue {
  margin-top: 11.5%;
}
.BMap_bubble_top {
  font-size: 1.2em;
}
.BMap_bubble_title {
  margin-right: 8px;
  width: auto !important;
  text-align: center;
  font-weight: bold;
  font-size: 1em;
}
