.banner-page .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}
.banner-page .swiper-pagination-bullet-active {
  width: 16px;
  border-radius: 100px;
  background: #ffffff;
}
.n-title {
  font-size: 24px;
}
.more {
  color: var(--base-color);
  font-size: 13px;
}
.green {
  color: var(--base-color);
}
.news {
  margin-top: 70px;
}
.news .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.news .content {
  display: flex;
  justify-content: space-between;
}
.news .text-box {
  flex: 0 0 565px;
  max-width: 565px;
  padding: 15px 0;
}
.news .text-box .news-cell {
  display: flex;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dotted rgba(120, 133, 128, 0.3);
}
.news .text-box .news-cell:last-child {
  border: none;
  padding: 0;
}
.news .text-box .news-cell .imgs {
  margin-right: 16px;
}
.news .text-box .news-cell .imgs .new-icon-on {
  display: none;
}
.news .text-box .news-cell .info {
  width: calc(100% - 16px - 35px);
}
.news .text-box .news-cell .info .title {
  font-size: 16px;
  margin-bottom: 5px;
}
.news .text-box .news-cell .info .des {
  font-size: 13px;
  color: rgba(51, 51, 51, 0.5);
}
.news .text-box .news-cell:hover .imgs .new-icon-on {
  display: block;
}
.news .text-box .news-cell:hover .imgs .new-icon {
  display: none;
}
.news .text-box .news-cell:hover .info .title {
  color: var(--base-color);
  font-weight: bold;
}
.news .text-box .news-cell:hover .info .des {
  font-size: 14px;
  color: #333;
}
.news .image-box {
  position: relative;
  flex: 0 0 555px;
  height: 370px;
  border-radius: 5px;
  overflow: hidden;
}
.news .image-box .swiper-container {
  width: 100%;
  height: 100%;
}
.news .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news .image-box .text {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 40px;
  background: rgba(29, 38, 47, 0.6);
  padding: 0 16px;
  color: #fff;
}
.duty {
  margin-top: 80px;
  background: #f5fff9;
  padding: 60px 0;
}
.duty .intro {
	font-size: 16px;
	line-height: 28px;
  margin-top: 20px;
  color: rgba(51, 51, 51, 0.7);
}
.duty .jz-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.duty .jz-box .jz-cell {
  list-style: none;
  padding: 4px 30px 6px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 16px;
}
.duty .jz-box .jz-cell.active,
.duty .jz-box .jz-cell:hover {
  background: var(--base-color);
  color: #fff;
  font-weight: bold;
}
.duty .project-box {
  overflow: hidden;
}
.duty .project-box .p-cell {
  display: inline-block;
  width: 390px;
  margin-right: 10px;
  margin-top: 30px;
}
.duty .project-box .p-cell:nth-child(3n) {
  margin-right: 0;
}
.duty .project-box .p-cell .img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.duty .project-box .p-cell .img img {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
}
.duty .project-box .p-cell .img .badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px 0 5px 0;
  background: rgba(0, 0, 0, 0.5);
}
.duty .project-box .p-cell .info {
  width: 100%;
  font-size: 13px;
  margin-top: 10px;
  padding: 0 10px;
}
.duty .project-box .p-cell .info .title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.duty .project-box .p-cell .info .green {
  font-size: 14px;
}
.duty .project-box .p-cell .info .des {
  margin: 5px 0 16px;
  color: rgba(51, 51, 51, 0.5);
  height: 34px;
  overflow: hidden;
}
.duty .project-box .project-more {
  float: right;
  margin-top: 12px;
}
.tag-box {
  margin-top: 80px;
  padding-bottom: 60px;
}
.tag-box .nav {
  display: flex;
  align-items: baseline;
  margin-bottom: 40px;
  font-size: 16px;
}
.tag-box .nav span {
  margin: 0 20px;
  color: rgba(51, 51, 51, 0.3);
}
.tag-box .nav .t-title {
  cursor: pointer;
}
.tag-box .content {
  position: relative;
  overflow: hidden;
}
.tag-box .content::after,
.tag-box .content::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}
.tag-box .content::after {
  right: 0;
  background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}
.tag-box .content::before {
  left: 0;
}
.tag-box .content .item {
  white-space: nowrap;
  margin-bottom: 40px;
}
.tag-box .content .item:last-child {
  margin-bottom: 0;
}
.tag-box .content .item:nth-child(2n) {
  padding-left: 90px;
}
.tag-box .content .item .cell {
  display: inline-flex;
  align-items: center;
  margin-right: 80px;
}
.tag-box .content .item .cell img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 100%;
  margin-right: 10px;
}
.tag-box .content .item .cell p {
  margin-bottom: 5px;
  font-size: 14px;
}
.tag-box .content .item .cell .money {
  font-size: 16px;
}
.tag-box .content .item .cell .money .num {
  font-weight: bold;
  font-size: 22px;
}
.tag-box .content.zs {
  display: none;
}
.tag-box .content.zs .item .cell img {
  width: auto;
  border-radius: 0;
}
.tag-box .content.zs .item .cell .money {
  font-size: 12px;
}
.tag-box .tag-more {
  margin-top: 40px;
  float: right;
}
.map-box {
  background: url(../images/map-bg.png) no-repeat center center/cover;
  margin-top: 80px;
  padding-top: 60px;
}
.map-box .n-title {
  color: #fff;
}
.map-box .maps {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(7, 46, 27, 0.5);
  margin-top: 30px;
}
.map-box .maps .map {
  position: relative;
}
.map-box .maps .map .map-bg {
  width: 440px;
  height: 450px;
}
.map-box .maps .map .hn-mappao {
  position: absolute;
  display: none;
}
.map-box .maps .map .hn-mappao .hnmap-tree {
  width: 28px;
  position: absolute;
  left: 0;
  top: 0;
}
.map-box .maps .map .hn-mappao .hnmap-pao {
  position: absolute;
  width: 125px;
  left: -48px;
  top: -134px;
}
.map-box .maps .map .hn-mappao .hnmap-pao img {
  width: 100%;
}
.map-box .maps .map .hn-mappao .hnmap-pao p {
  position: absolute;
  top: 45px;
  text-align: center;
  width: 50%;
  left: 25%;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  word-wrap: break-word;
}
.map-box .maps .map .hn-mappao .hnmap-pao.active {
  animation: Updown 1s infinite alternate;
}
@keyframes Updown {
  from {
    top: -130px;
  }
  to {
    top: -145px;
  }
}
.show-iframe {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}
.show-iframe .popup {
  border-radius: 15px;
  background: #fff;
  width: 320px;
  padding: 40px 20px;
}
.show-iframe .popup .title {
  text-align: center;
  margin-bottom: 15px;
}
.show-iframe .popup .intro {
  text-align: center;
}
.show-iframe .popup .intro img {
  width: 200px;
}
.show-iframe .popup .intro p {
  color: rgba(51, 51, 51, 0.7);
}
.show-iframe.on {
  display: flex;
}
.show-detail {
  display: inline-block;
  border-radius: 1000px;
  background: var(--base-color);
  font-weight: bold;
  color: #fff;
  padding: 6px 16px;
  margin-right: 20px;
  cursor: pointer;
}
.duty .duty-info {
  background: rgba(var(--base-rgb-color), 0.06);
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0 10px;
}
.duty .duty-info .des {
  font-size: 17px;
  font-weight: bold;
}
.duty .duty-info .convert {
  margin-top: 10px;
}
.duty .duty-info .convert .zs {
  font-weight: bold;
}

.clan-slider {
  display: none;
  position: fixed;
  bottom: 30%;
  right: 1%;
  z-index: 1000;
}

.clan-slider .item {
  position: relative;
  cursor: pointer;
  margin-bottom: 10px;
}

.clan-slider .item.wechat:hover .clan-slider-tips-wechat {
  display: block;
}

.clan-slider .clan-slider-tips-wechat {
  display: none;
  position: absolute;
  border: 1px solid #029517;
  bottom: 0;
  right: 50px;
  background-color: #fff;
}

.clan-slider .clan-slider-tips-wechat p {
  text-align: center;
  margin-top: -12px;
  padding-bottom: 5px;
}
