@charset "UTF-8";

/* 加载中 body 有loading类名 时候元素样式 */
body.-loading {
  pointer-events: none;
}

body.-loading .o-header__logo img {
  opacity: 0;
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
}
body.-loading .o-header__nav-content {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
}

/* 加载完成 body 没有loading类名 时候元素样式 */

body:not(.-loading) .o-header__logo img {
  transition: opacity 0.3s, transform 0.3s;
}
body:not(.-loading) .o-header__logo {
  pointer-events: auto;
}

body:not(.-loading) .o-header__nav-content {
  transition: opacity 0.3s, transform 0.3s;
}
body:not(.-loading) .o-header__list {
  pointer-events: auto;
}
body:not(.-loading) .o-header__list * {
  pointer-events: auto;
}

/* 全局变量 */
:root {
  --primary-color: #d10066;
  --white-color: #fff;
  --line-coloer: #e8e8e8;
  --more-color: #999999;
  --footer-color: #333333;
}
.container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1440px;
  }
}
.pic img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.pic_h img {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
}
.pad {
  padding: 1rem 0;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.text_one_hide {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text_two_hide {
  white-space: wrap;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 头部开始-------------------------------- */
.o-header {
  width: 100%;
  height: 1rem;
}
.o-header__main {
  width: 100%;
  /* height: 1.05rem; */
  height: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: var(--primary-color);
}

/* 一级导航 */
.o-header__nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  box-sizing: border-box;
}
.o-header__logo {
  width: 2.7rem;
  transition: transform 0.4s 0.4s;
  transform-origin: left;
  position: relative;
  z-index: 4;
}
.rightBox {
  width: calc(100% - 2.7rem);
}
.o-header__nav-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.o-header__list {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.4s ease;
  pointer-events: none;
  position: relative;
}
.header__list * {
  pointer-events: none;
}
.o-header__list > li {
  cursor: pointer;
  position: relative;
}
.o-header__list > li .o-header__item {
  width: 100%;
  white-space: nowrap;
  color: #fffffd;
  padding: 0 0.22rem;
  /* line-height: 1rem; */
  transition: color 0.3s cubic-bezier(0.43, 0.195, 0.02, 1);
  display: block;
  font-size: 0.17rem;
  letter-spacing: 0.01rem;
}

.a-drop-pop {
  width: 100%;
  position: absolute;
  left: 0;
  visibility: hidden;
  /* top: .61rem; */
  padding-top: 0.44rem;
  pointer-events: none;
  cursor: auto;
  /* background-color: palegoldenrod; */
}
.a-drop-pop__content {
  width: 100%;
  padding: 0 0.01rem;
  background-color: #ffffff;
}
.o-header__item::after {
  width: 0.15rem;
  height: 0.15rem;
  content: "";
  position: absolute;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/public/triangle.png) no-repeat center / contain;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 2;
}

.a-drop-pop__item {
  width: 100%;
  text-align: center;
  position: relative;
}

.a-drop-pop__item .a-drop-pop__text {
  width: 100%;
  text-align: center;
  color: #494949;
  line-height: 0.4rem;
  font-size: 0.16rem;
  display: block;
  cursor: pointer;
  border-top: 0.01rem solid transparent;
}
.a-drop-pop.ani {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.43, 0.195, 0.02, 1), transform 1s cubic-bezier(0.43, 0.195, 0.02, 1), color 0.3s cubic-bezier(0.43, 0.195, 0.02, 1);
  transform: translateY(25px);
  display: block;
}
/* 导航悬浮 */
.o-header__list > li:hover .o-header__item {
  color: #f8e2a9;
}
.o-header__list > li:hover .o-header__item::after {
  opacity: 1;
}
.o-header__list > li:hover .a-drop-pop.ani {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}
.o-header__list > li.firstList .o-header__item::after {
  display: none;
}
.o-header__list > li.firstList .a-drop-pop {
  display: none;
}

.a-drop-pop__item:hover .a-drop-pop__text {
  color: #fff;
  background-color: #ca2f68;
  border-color: #be9ac1;
}
/* 没有二级菜单不显示 下拉面板 */

/* header动画类名 */
.o-header.-at-top .o-header__main {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

/* 汉堡菜单按钮 */
/* 基础样式 */
.o-header__hamburger {
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
  pointer-events: all;
  position: relative;
  margin-left: 0.2rem;
  background-color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s;
  cursor: pointer;
  transform: scale(1);
  display: none;
}

/* 汉堡图标线条的公共样式 */
.o-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 17px;
  transition: width 0.3s, opacity 0.3s, transform 0.3s;
  transition-delay: 0.2s;
}

.o-header__hamburger span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7d212a;
  transition: transform 0.3s;
  transform-origin: center;
}

/* 未激活状态下的线条位置 */
.o-header__hamburger:not(.-active) span:nth-of-type(1) {
  transform: translate(-50%, -50%) translateY(-5px);
}

.o-header__hamburger:not(.-active) span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}

.o-header__hamburger:not(.-active) span:nth-of-type(3) {
  transform: translate(-50%, -50%) translateY(5px);
}

/* 激活状态下的样式 */
.o-header__hamburger.-active span {
  transition-delay: 0s;
}

.o-header__hamburger.-active span::before {
  transition-delay: 0.2s;
}

.o-header__hamburger.-active span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}

.o-header__hamburger.-active span:nth-of-type(1)::before {
  transform: rotate(45deg);
}

.o-header__hamburger.-active span:nth-of-type(2) {
  opacity: 0;
}

.o-header__hamburger.-active span:nth-of-type(3) {
  transform: translate(-50%, -50%);
  transition-delay: 0.1s;
}

.o-header__hamburger.-active span:nth-of-type(3)::before {
  transform: rotate(-45deg);
}  

/* 
.o-header__hamburger {
  --bg-color: #f5f5f5;
  --text-color: var(--primary-color);
  --line-width: 17px;
  --line-height: 2px;

  display: none;
  flex-shrink: 0;
  height: 0.5rem;
  width: 1.08rem;
  margin-left: 0.2rem;
  text-align: center;
  line-height: 0.5rem;
  pointer-events: auto;
  z-index: 1010;
  background-color: var(--bg-color);
  border-radius: 0.25rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.o-header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: var(--line-height);
  opacity: 0;
  background-color: var(--text-color);
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}

.o-header__hamburger .open {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  opacity: 1;
  color: var(--text-color);
  background-color: transparent;
  white-space: nowrap;
  pointer-events: none;
  font-size: 0.17rem;
  font-weight: bold;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease-out, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.o-header__hamburger span:nth-of-type(2) {
  transform: translate(-50%, -50%);
}

.o-header__hamburger span:nth-of-type(3) {
  transform: translate(-50%, -50%) translateY(5px);
} */

/* 激活状态 */
/* 
.o-header__hamburger.-active {
  width: 0.5rem;
  border-radius: 50%;
}

.o-header__hamburger.-active .open {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.o-header__hamburger.-active span {
  width: var(--line-width);
  opacity: 1;
  transition-delay: 0.1s;
}

.o-header__hamburger.-active span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(45deg);
  transition-delay: 0.1s;
}

.o-header__hamburger.-active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  transition-delay: 0.2s;
} */

/* 桌面端悬停效果 */
/* @media (min-width: 1199px) { */
.o-header__hamburger:hover {
  transform: scale(1.05);
}
/* } */
.o-site-menu {
  width: 100%;
  height: 100vh;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  /* z-index: 100; */
}

.o-site-menu__main {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  /* background-color: #d10065; */
  background-color: #99064d;
  /* background: rgba(0, 63, 136, .9); */
  transition: transform 0.6s cubic-bezier(0.43, 0.195, 0.02, 1);
  transform: translateY(-100%);
}

.nav-items {
  width: 100%;
  padding-top: 1rem;
  box-sizing: border-box;
}

.firstListMenu {
  width: 17.08rem;
  max-width: 94%;
  padding: 0;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

@media (max-width: 1199px) {
  .firstListMenu {
    padding: 0 20px 0 20px;
    width: 100%;
    max-width: 100%;
  }
}

.firstListMenu a {
  height: 0.8rem;
  line-height: 0.8rem;
  font-size: 0.24rem;
  color: #fff;
  letter-spacing: 0.02rem;
}
.firstListMenu.down_el a {
  pointer-events: none;
}
.firstListMenu .icon,
.child_second .icon {
  width: 0.23rem;
}
.firstListMenu .icon img,
.child_second .icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease-in-out;
}

.child_first .child_second {
  width: 100%;
  padding: 0 25px;
  background-color: #a80252;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.child_second li {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.child_second li a {
  font-size: 0.23rem;
  color: #fff;
  letter-spacing: 0.02rem;
  padding: 0.2rem 0;
  box-sizing: border-box;
}
.child_second.active {
  max-height: 1000px;
}
.down_el.active .icon_img {
  transform: scaleY(-1);
}

/* 打开状态 */
.o-site-menu._open {
  pointer-events: all;
}
.o-site-menu._open .o-site-menu__main {
  transform: translateY(0);
}
.o-site-menu._open .firstListMenu {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.o-site-menu._open .firstListMenu:nth-of-type(1) {
  transition-delay: 0.6s;
}
.o-site-menu._open .firstListMenu:nth-of-type(2) {
  transition-delay: 0.7s;
}
.o-site-menu._open .firstListMenu:nth-of-type(3) {
  transition-delay: 0.8s;
}
.o-site-menu._open .firstListMenu:nth-of-type(4) {
  transition-delay: 0.9s;
}
.o-site-menu._open .firstListMenu:nth-of-type(5) {
  transition-delay: 1s;
}
.o-site-menu._open .firstListMenu:nth-of-type(6) {
  transition-delay: 1.1s;
}
.o-site-menu._open .firstListMenu:nth-of-type(7) {
  transition-delay: 1.2s;
}
.o-site-menu._open .firstListMenu:nth-of-type(8) {
  transition-delay: 1.3s;
}
.o-site-menu._open .firstListMenu:nth-of-type(9) {
  transition-delay: 1.4s;
}

/* banner开始----------------------------------------------- */
.bannerArea {
  width: 100%;
  position: relative;
}

.banner {
  width: 100%;
  position: relative;
  overflow: visible;
  /* height: 906px; */
  z-index: 0;
  /* padding-top: 1.05rem; */
  background-color: var(--primary-color);
}

/* @media (max-width: 1919px) {
  .banner {
    height: 655px;
  }
}
@media (max-width: 1439px) {
  .banner {
    height: 680px;
  }
}
@media (max-width: 1199px) {
  .banner {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .banner {
    height: 360px;
  }
} */

.banner .swiper-slide {
  width: 100%;
  height: 100%;
  will-change: opacity;
  contain: paint;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-property: opacity;
  pointer-events: auto;
}
.banner .swiper-slide .img_hezi {
  width: 100%;
  /* height: 100%; */
  display: block;
  padding-bottom: 33%;
}
.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: 1;
}
.banner_pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 13;
}
.banner_pagination .swiper-pagination {
  bottom: 0;
}
.bannerArea .swiper-pagination > .swiper-pagination-bullet::before,
.bannerArea .swiper-pagination > .swiper-pagination-bullet::after {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}

.bannerArea .swiper-pagination > .swiper-pagination-bullet {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  margin: 0 0.12rem;
  transition: all 0.5s cubic-bezier(0.43, 0.195, 0.02, 1);
  position: relative;
  background-color: transparent;
  /* background-color: orange; */
  opacity: 1;
  pointer-events: auto;
}

.bannerArea .swiper-pagination > .swiper-pagination-bullet::before,
.bannerArea .swiper-pagination > .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.4s ease;
  border-radius: 50%;
}

/* 未激活状态指示器 */
.bannerArea .swiper-pagination > .swiper-pagination-bullet::after {
  width: 0.2rem;
  height: 0.2rem;
  background-color: #e2669a;
  opacity: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
}

/* 激活状态指示器 */
.bannerArea .swiper-pagination > .swiper-pagination-bullet::before {
  width: 0.4rem;
  height: 0.4rem;
  background: url(../images/pages/index/bullet_active.png) no-repeat center / contain;
  opacity: 0;
}

.bannerArea .swiper-pagination > .swiper-pagination-bullet.on::before {
  opacity: 1;
}

.bannerArea .swiper-pagination > .swiper-pagination-bullet.on::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .bannerArea .swiper-pagination > .swiper-pagination-bullet {
    width: 0.3rem;
    height: 0.3rem;
    margin: 0 0.05rem;
  }
  /* 未激活状态指示器 */
  .bannerArea .swiper-pagination > .swiper-pagination-bullet::after {
    width: 0.15rem;
    height: 0.15rem;
  }
  /* 激活状态指示器 */
  .bannerArea .swiper-pagination > .swiper-pagination-bullet::before {
    width: 0.3rem;
    height: 0.3rem;
  }
}
/* banner结束----------------------------------------------- */

/* 信息资讯开始----------------------------------------------- */

.newsArea .container.flex {
  align-items: normal;
}
.block_news,
.block_announce {
  width: calc(50% - 0.1rem);
  position: relative;
}
.block_top {
  width: 100%;
}
.block_top .title {
  height: 0.45rem;
  line-height: 0.45rem;
  text-align: center;
  font-size: 0.23rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  letter-spacing: 0.01rem;
  padding: 0rem 0.15rem;
  font-family: "sys", "Microsoft Yahei", sans-serif;
}
.block_top .line {
  flex: 1;
  height: 1px;
  background-color: var(--line-coloer);
}
/* .block_top .line::before {
  width: 100%;
  height: 0.01rem;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--line-coloer);
  transition: all 0.3s;
}
.block_top .line::after {
  width: 100%;
  height: 0.02rem;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left center;
  transition: all 0.3s;
} */
.block_top .more {
  font-size: 0.15rem;
  color: var(--more-color);
  margin-left: 0.05rem;
  transition: all 0.5s cubic-bezier(0.43, 0.195, 0.02, 1);
}
.block_top .more em {
  font-style: normal;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.block_content {
  width: 100%;
  /* height: 100%; */
  margin-top: 0.4rem;
  /* background-color: palegoldenrod; */
}
.block_news .block_content {
  border: 1px solid #dddcdc;
  padding-bottom: 0.2rem;
  position: relative;
  cursor: pointer;
}
.newsBanner {
  width: 100%;
}
.newsBanner .swiper-container {
  width: 100%;
  overflow: hidden;
}
.newsBanner .swiper-container .swiper-wrapper {
  width: 100%;
}
.newsBanner .swiper-slide {
  padding-bottom: 60%;
}
.newsBanner .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100%;
  display: block;
  transition: all 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.switchBtn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color:pink; */
}
.newsSwiperArea .news_btn_prev,
.newsSwiperArea .news_btn_next {
  width: 0.5rem;
  cursor: pointer;
  /* background-color: orange; */
}
.newsSwiperArea .news_btn_prev:before,
.newsSwiperArea .news_btn_next:after {
  display: none;
}

.newsSwiperArea .swiper-pagination {
  width: 50%;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  /* z-index: 10; */
}
.newsSwiperArea .swiper-pagination .swiper-pagination-bullet {
  width: 0.1rem;
  height: 0.1rem;
  background-color: #edc1d2;
  opacity: 1;
  margin: 0 0.05rem;
}
.newsSwiperArea .swiper-pagination .swiper-pagination-bullet.active {
  background-color: var(--primary-color);
}
.swiperInfo {
  width: 100%;
  padding: 0.2rem 0.3rem 0.2rem;
}
.swiperTitle {
  width: 100%;
  height: 0.64rem;
  font-size: 0.22rem;
  line-height: 0.32rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.swiperTitle span {
  position: relative;
  background-image: linear-gradient(#d10066, #d10066);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  /* padding: 4px 0; */
  transition: background-size 0.3s;
}
/* .swiperTitle span::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #838385;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
} */

/* 通知公告 */
.block_announce {
  /* background-color: pink; */
  position: relative;
}
.block_announce .block_content {
  width: 100%;
  height: calc(100% - 0.85rem);
  /* height: 100%; */
  position: absolute;
  right: 0;
  top: 0.85rem;
  margin-top: 0;
  /* overflow: hidden; */
  /* background-color: orange; */
}
.container_announce {
  position: relative;
}
.container_announce .block_announce {
  width: calc(50% - 0.1rem);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.announceList {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background-color: lightcoral; */
  /* justify-content: space-between; */
}

.announceItem {
  width: 100%;
  height: calc((100% - 0.8rem) / 5);
  /* height: 100%; */
  padding: 0.2rem 0.22rem 0.12rem;
  border: 0.01rem solid #dddcdc;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 0.2rem;
}
.announceItem:last-child {
  margin-bottom: 0;
}

.announceItemTitle {
  width: 100%;
  font-size: 0.17rem;
  color: #333;
}

/* 公告时间 */
.announceItemTime {
  width: 100%;
  font-size: 0.14rem;
  color: #888;
  margin-top: 0.2rem;
}

/* @media (min-width: 1199px) { */
.block_top .more:hover {
  color: var(--primary-color);
  transform: translateX(0.06rem);
}
.block_top .more:hover .icon_add {
  transform: rotate(360deg);
}

.block_news .block_content:hover .swiper-slide img {
  scale: 1.05;
}
.block_news .block_content:hover .swiperInfo .swiperTitle span {
  color: var(--primary-color);
  background-size: 100% 1px;
}
.announceItem:hover {
  border-color: var(--primary-color);
}
.announceItem:hover .announceItemTitle {
  color: var(--primary-color);
}
/* } */

/* 信息资讯结束----------------------------------------------- */

/* 展演活动开始----------------------------------------------- */
.displayList {
  width: 100%;
  /* display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.2rem; */
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}
.displayItem {
  /* width: 100%; */
  width: 32%;
  margin-right: 2%;
  margin-bottom: 0.2rem;
  cursor: pointer;
  border: 0.01rem solid #dddcdc;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.displayItem:nth-child(3n) {
  margin-right: 0;
}
.displayItemImg {
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  overflow: hidden;
}
.displayItemImg img {
  width: 100%;
  min-height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scale: 1;
}
.displayItemTitle {
  width: 100%;
  font-size: 0.16rem;
  color: #333;
  padding: 0.2rem 0.12rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* @media (min-width: 1199px) { */
.displayItem:hover {
  border-color: #db4089;
}
.displayItem:hover .displayItemTitle {
  color: #db4089;
}
.displayItem:hover .displayItemImg img {
  scale: 1.05;
}
/* } */

/*展演活动手机端  */
.displayList-mobile {
  display: none;
}
.displayList-mobile .displayList {
  flex-wrap: nowrap;
  margin-top: 0;
}
.displayList-mobile .displayItem {
  margin: 0;
}
.display-pagination {
  width: 100%;
  margin-top: 0.2rem;
}
.display-pagination .swiper-pagination {
  position: static;
}

@media (min-width: 768px) {
  .display-pagination .swiper-pagination::after {
    content: "";
    display: inline-block;
    width: 0.13rem;
    height: 0.13rem;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    margin: 0 0.1rem;
  }
}

.display-pagination .swiper-pagination-bullet {
  width: 0.13rem;
  height: 0.13rem;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid var(--primary-color);
  margin: 0 0.1rem !important;
}
.display-pagination .swiper-pagination-bullet.active {
  background-color: var(--primary-color);
}
/* 展演活动结束----------------------------------------------- */
/* 友情链接开始----------------------------------------------- */
.linkList {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 0.2rem;
}
.linkItem {
  width: 100%;
  cursor: pointer;
  padding: 0.25rem 0.1rem;
  border: 0.01rem solid #dddcdc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.linkImg {
  height: 0.3rem;
}
.linkImg img {
  width: auto;
  height: 100%;
  display: block;
}
.linkTitle {
  width: 100%;
  font-size: 0.16rem;
  color: #333;
  text-align: center;
}
.linkTitle .icon {
  border: 0.08rem solid #666666;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  margin-left: 0.1rem;
  position: relative;
  top: 0.04rem;
}
.linkTitle.flexCenter {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* @media (min-width: 1199px) { */
.linkItem:hover {
  border-color: #db4089;
}
.linkItem:hover .linkTitle {
  color: #db4089;
}
/* } */
/* 友情链接结束----------------------------------------------- */

/* 底部开始----------------------------------------------- */
footer {
  width: 100%;
  margin-top: 1.5rem;
  background-color: var(--footer-color);
  color: var(--white-color);
  padding: 0.4rem 0 0.4rem;
  line-height: 0.24rem;
  font-size: 0.14rem;
  text-align: center;
}
footer .up {
  width: 100%;
  padding-bottom: 0.3rem;
  border-bottom: 0.01rem solid #5c5c5c;
}
footer .up span {
  margin-left: 0.2rem;
}
footer .down {
  width: 100%;
  color: #d0d0d0;
  margin-top: 0.5rem;
}
footer .down p {
  margin-bottom: 0.05rem;
}
footer .down p span {
  margin-left: 0.2rem;
}
/* 底部结束----------------------------------------------- */

/* 协会页面开始 ----------------------------------------------- */

.bannerBox {
  width: 100%;
  position: relative;
  overflow: visible;
  height: 400px;
  z-index: 0;
  /* margin-top: 1.05rem; */
  /* padding-top: 1.05rem; */
  background-color: var(--primary-color);
}

@media (max-width: 1919px) {
  .bannerBox {
    height: 384px;
  }
}
@media (max-width: 1600px) {
  .bannerBox {
    height: 352px;
  }
}
@media (max-width: 1439px) {
  .bannerBox {
    height: 345px;
  }
}
@media (max-width: 1200px) {
  .bannerBox {
    height: 312px;
  }
}
@media (max-width: 991px) {
  .bannerBox {
    height: 298px;
  }
}
@media (max-width: 767px) {
  .bannerBox {
    height: auto;
  }
}

.bannerImg {
  width: 100%;
  height: 100%;
  /* padding-bottom: 10%; */
  overflow: hidden;
  position: relative;
}
.bannerImg img {
  width: 100%;
  /* height: auto;
  min-height: 100%; */
  height: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 767px) {
  .bannerImg {
    padding-bottom: 26.64%;
  }
  .bannerImg img {
    position: absolute;
    left: 0;
    top: 0;
  }
}

.bannerText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
  text-align: center;
  font-size: 0.4rem;
  letter-spacing: 0.04rem;
  font-weight: bold;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.page_public {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.page_public footer {
  margin-top: 0;
}
.page_public main,
.page_public .contentArea {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mainContent {
  flex: 1;
  margin-top: 70px;
  min-height: 400px;
  display: flex;
  justify-content: space-between;
}
.slideBar {
  width: 200px;
  flex-shrink: 0;
}
.slideBar ul {
  width: 100%;
}
.slideBar ul li {
  width: 100%;
  font-size: 13px;
  text-align: center;
  box-sizing: border-box;
  color: #585858;
}
.slideBar ul li .hide {
  visibility: hidden;
}
.slideBar ul li a {
  color: #585858;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: orange; */
}
.slideBar ul li:nth-child(1) {
  font-size: 17px;
  color: #fff;
  font-weight: bold;
  padding: 25px 0;
  background-color: #d10066;
}
.slideBar ul li:nth-child(n + 2) {
  /* padding: 20px; */
  height: 54px;
  line-height: 54px;
  border-bottom: 1px solid #e9e9e9;
  cursor: pointer;
}
.slideBar ul li.active {
  color: #d10066;
}
.slideBar ul li.active a {
  color: #d10066;
}
.blockArea {
  width: calc(100% - 200px);
  flex-shrink: 0;
  border-left: 1px solid #e9e9e9;
  box-sizing: border-box;
  padding: 0 0 200px 80px;
  position: relative;
  /* background-color: palegoldenrod; */
}
.navLink {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 12px;
  color: #9c9c9c;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9e9e9;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  right: 0;
}
.navLink img {
  width: 11px;
  height: auto;
  display: block;
  margin-right: 5px;
}
.navLink a {
  color: #9c9c9c;
  margin-left: 7px;
}
.navLink a:nth-of-type(n + 2):before {
  content: ">";
  padding: 0 0.1rem;
  color: #9c9c9c;
}
.navLink a:hover {
  color: #8d8c8c;
}
.navLink .cur_a {
  color: #d10066;
}
.navLink .cur_a:hover {
  color: #d10066;
}
.show_area {
  width: 100%;
  padding-top: 80px;
  box-sizing: border-box;
}
.area_title {
  text-align: center;
  font-size: 28px;
  color: #515151;
}
.area_title span {
  display: block;
}
.area_title .area_title_en {
  font-size: 18px;
  margin-top: 15px;
}
.articleText {
  margin-top: 45px;
  font-size: 15px;
  line-height: 26px;
  color: #4b4b4b;
  text-align: justify;
  /* text-indent: 2em; */
}
.articleText h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
}
.articleText p {
  font-size: 15px;
  line-height: 33px;
  color: #4b4b4b;
  text-align: justify;
  /* margin-top: 15px; */
  text-indent: 2em;
}
.articleText p b {
  font-weight: bold;
}
.articleText img {
  max-width: 100%;
  margin: 25px auto;
  display: block;
  cursor: pointer;
}
.articleText .notIndent {
  text-indent: 0;
}

/* 协会页面结束 ----------------------------------------------- */

/* 四、新闻开始----------------- */
.page_news .blockArea,
.page_announce .blockArea {
  padding: 0 0 150px 80px;
}
.newsList {
  margin: 60px auto 0;
}
.news_item {
  width: 100%;
  display: block;
  background-color: #fff;
  margin-bottom: 30px;
  display: flex;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
  transition: all 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news_item .item_left {
  width: 260px;
  height: 158px;
  flex-shrink: 0;
  position: relative;
}
.news_item .item_left .newsImg {
  width: 100%;
  height: 158px;
  overflow: hidden;
}
.news_item .item_left .newsImg img {
  width: 100%;
  min-height: 158px;
  display: block;
  transition: all 0.735s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  scale: 1;
}
.news_item .item_left .dateBox {
  background-color: #d10066;
}
.news_item .item_right {
  width: calc(100% - 260px);
  padding: 25px 25px 0px 25px;
  box-sizing: border-box;
}

.news_item .newsTitle {
  font-size: 19px;
  font-weight: bold;
  color: #484848;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  cursor: pointer;
}

.news_item .newsInfo {
  width: 100%;
  height: 44px;
  margin-top: 20px;
  color: #676767;
  line-height: 22px;
  font-size: 13px;
  text-align: justify;
}
.news_item .info_detail {
  margin-top: 20px;
  color: #676767;
  font-size: 13px;
}

.page_announce .news_item {
  padding: 35px 30px;
}
.page_announce .news_item .item_left {
  width: 80px;
  height: auto;
}
.page_announce .news_item .dateBox {
  width: 100%;
  border: 0.01rem solid #d10066;
}
.page_announce .news_item .date_day,
.page_announce .news_item .date_year {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  background-color: var(--primary-color);
}
.page_announce .news_item .date_year {
  font-size: 15px;
  color: #727171;
  background-color: #fff7fa;
}

.page_announce .news_item .item_right {
  width: calc(100% - 80px);
  padding: 0 0 0 30px;
}
/* @media (min-width: 1199px) { */
.news_item:hover {
  background-color: #fff7fa;
  border-color: #db4089;
}
.news_item:hover .newsImg img {
  scale: 1.05;
}
.news_item:hover .newsTitle {
  color: #db4089;
}
/* } */

.page_newsDetail .info_detail {
  margin-top: 40px;
  font-size: 14px;
  color: #a4a4a4;
  text-align: center;
}
.page_newsDetail .info_detail span {
  margin: 0 10px;
}
.articleText {
  margin-top: 60px;
  font-size: 15px;
  line-height: 26px;
  color: #4b4b4b;
  text-align: justify;
  text-indent: 2em;
}
.articleText p {
  margin-bottom: 20px;
}

.page_policeRule .announceItem {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem;
  margin-bottom: 0.2rem;
}
.page_policeRule .announceItemTitle {
  width: calc(100% - 1.2rem);
}
.page_policeRule .announceItemTime {
  width: 1rem;
  margin-top: 0;
  text-align: end;
}

.page_teachTrain .announceItem {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem;
  margin-bottom: 0.2rem;
}
.page_teachTrain .announceItem_l {
  width: calc(100% - 1.2rem);
  padding-right: 0.2rem;
}
.page_teachTrain .announceItem_r {
  width: 1.2rem;
}
.page_teachTrain .announceItem_r .lookDetail {
  width: 100%;
  height: 0.4rem;
  text-align: center;
  line-height: 0.4rem;
  color: var(--primary-color);
  border: 0.01rem solid var(--primary-color);
  border-radius: 0.2rem;
  font-size: 0.14rem;
}
.page_teachTrain .info_detail {
  margin-top: 0.2rem;
  font-size: 0.14rem;
  color: #333;
  display: flex;
  flex-wrap: wrap;
  line-height: 0.2rem;
}
.page_teachTrain .info_detail span:nth-child(1) {
  margin-right: 0.4rem;
}

/* @media (min-width: 1199px) { */
.announceItem:hover .lookDetail {
  background-color: var(--primary-color);
  color: var(--white-color);
}
/* } */

/* 会员页面 */
.page_member .area_content {
  width: 85%;
  margin: 0.6rem auto 0;
}
.areaTitle {
  text-align: center;
  font-size: 0.3rem;
  letter-spacing: 0.01rem;
  margin: 1rem 0;
  color: #545454;
}

.applyImg {
  width: 80%;
  margin: 0.6rem auto 0;
}
.member-tips {
  width: 100%;
  text-align: center;
  color: #656565;
  font-size: 15px;
  line-height: 26px;
}
.vipNumber,
.findpwd {
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
}
.apply-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.apply-nav .nav-item {
  width: 230px;
  height: 46px;
  border-radius: 23px;
  font-size: 16px;
  color: #d10066;
  border: 1px solid #d10066;
  background-color: transparent;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
  margin: 0 50px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.apply-nav .nav-item::after,
.apply-nav .nav-item > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.apply-nav .nav-item::after {
  content: attr(data-text);
  color: #d10066;
  opacity: 0;
  transform: translateY(25%);
}

.apply-nav .nav-item > span {
  opacity: 1;
  transform: translateY(0);
}

/* @media (min-width: 1199px) { */
.apply-nav .nav-item:hover {
  border-color: #d10066;
  background-color: rgba(209, 0, 102, 0.1);
}

.apply-nav .nav-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.apply-nav .nav-item:hover > span {
  opacity: 0;
  transform: translateY(-25%);
}
/* } */
.apply-nav .nav-item.active {
  color: #fff;
  background-color: var(--primary-color);
}
.apply-nav .nav-item.active::after {
  color: #fff;
}
.loginContent {
  width: 100%;
  margin: 60px auto 0;
  border: 2px dashed var(--primary-color);
  padding: 60px 0 80px;
}

.loginContent .loginContentTitle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 22px;
  letter-spacing: 2px;
}
.loginContent .loginContentTitle span {
  position: relative;
}
.loginContent .loginContentTitle span:before,
.loginContent .loginContentTitle span:after {
  display: block;
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: -20px;
}
.loginContent .loginContentTitle span:after {
  left: auto;
  right: -20px;
}

.formArea {
  width: 70%;
  margin: 50px auto 0;
}
.formItem {
  width: 100%;
  margin-bottom: 26px;
}

.formItem input {
  display: block;
  width: 100%;
  height: 52px;
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 19px;
  color: #333333;
}
.formItem input::placeholder {
  color: #9e9e9e;
  letter-spacing: 1px;
  font-size: 15px;
}

.formItem input::-moz-placeholder {
  color: #9e9e9e;
  letter-spacing: 1px;
  font-size: 15px;
}

.formItem input::-ms-input-placeholder {
  color: #9e9e9e;
  letter-spacing: 1px;
  font-size: 15px;
}

.formItem input::-webkit-input-placeholder {
  color: #9e9e9e;
  letter-spacing: 1px;
  font-size: 15px;
}

.formItemFlex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.formItemFlex input {
  width: calc(70% - 26px);
}
.formItemFlex .sendCode {
  width: 30%;
  height: 52px;
  line-height: 52px;
  background-color: var(--primary-color);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: none;
}
.loginBtn {
  width: 100%;
  height: 52px;
  line-height: 52px;
  background-color: var(--primary-color);
  border-radius: 8px;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 4px;
  margin-top: 50px;
}

/* 申报指南弹窗样式 */
.application-guide-modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 400;
  display: none;
}
.application-guide-modal.active {
  display: block;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modal-container {
  width: 800px;
  margin: 5vh auto 0;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.application-guide-modal.active .modal-container {
  transform: scale(1);
}
.modal-close {
  width: 45px;
  /* margin: 10% auto 0; */
  margin: 0 auto;
}

.modal-close img {
  display: block;
  width: 100%;
}

.modal-content {
  width: 100%;
  background-color: #ffffff;
  padding: 30px 50px;
  box-sizing: border-box;
  border-radius: 8px;
  margin-top: 1%;
}

.modal-content img {
  display: block;
  width: 130px;
  margin: 0 auto 30px;
}

.modal-content p {
  font-size: 15px;
  color: #333333;
  text-align: justify;
  line-height: 1.7;
  margin-top: 15px;
}

.block_item_unit_table .member-tips {
  margin: 35px 0;
}
.block_item_unit_table .area_content {
  width: 100%;
}
.member-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member-nav-item {
  width: 230px;
  height: 46px;
  font-size: 16px;
  color: #d10066;
  border: 1px solid #d10066;
  background-color: transparent;
  text-align: center;
  line-height: 46px;
  cursor: pointer;
}
.member-nav-item:nth-child(1) {
  border-radius: 5px 0 0 5px;
}
.member-nav-item:nth-child(2) {
  border-radius: 0 5px 5px 0;
}
.member-nav-item.active {
  color: #fff;
  background-color: var(--primary-color);
}

.memberList {
  width: 100%;
  border-top: 1px solid #333333;
  border-left: 1px solid #333333;
  display: none;
}
.memberList.active {
  display: block;
}
.memberList li {
  width: 100%;
  display: flex;
  /* align-items: center; */
  border-bottom: 1px solid #333333;
}
.memberList li div {
  padding: 10px 10px;
  font-size: 16px;
  border-right: 1px solid #333333;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.memberList li .unitName {
  width: 35%;
}
.memberList li .memberNum {
  width: 35%;
}
.memberList li .memberInfo {
  width: 30%;
}

/* 找回密码弹窗 */
.findBg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.6);
}
.findResult {
  width: 600px;
  padding: 40px 35px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
}

.findResult input {
  width: 100%;
  height: 50px;
  background-color: #eeeeee;
  border-radius: 6px;
  font-size: 15px;
  color: #333;
  padding: 0 20px;
  box-sizing: border-box;
  border: none;
  outline: none;
}

.findStep {
  transition: opacity 0.3s ease;
  opacity: 1;
}

.findStep.fade-out {
  opacity: 0;
}

.findStep.fade-in {
  opacity: 1;
}

.resInfo {
  width: 100%;
  font-size: 15px;
  color: #333;
  line-height: 24px;
  margin-bottom: 20px;
}
.res_item {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.res_item .res_left {
  width: 100px;
  font-size: 16px;
}

.stepEnterNewPwd .res_left{
  align-self: flex-start;
  line-height: 50px;
}
.res_item .res_right {
  width: calc(100% - 100px);
}
.res_right .inputTips {
  display: block;
  width: 100%;
  font-size: 14px;
  margin-top: 10px;
  padding-left: 5px;
  box-sizing: border-box;
  color: var(--primary-color);
}

.res_send {
  display: flex;
  justify-content: space-between;
}
.res_send input {
  width: 70%;
}
.res_send button {
  width: calc(30% - 20px);
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 6px;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--primary-color);
  outline: none;
  border: none;
}

.resetTips {
  width: 100%;
  text-align: center;
  font-size: 15px;
  margin: 10px auto;
}
.resetTips a {
  text-decoration: underline;
  cursor: pointer;
  color: var(--primary-color);
  margin: 0 3px;
}

.nextStep {
  width: 50%;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 6px;
  font-size: 15px;
  color: #ffffff;
  background-color: var(--primary-color);
  margin: 40px auto 0;
  cursor: pointer;
}

.closeFindBg {
  position: absolute;
  right: 0;
  top: -40px;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.closeFindBg img {
  width: 100%;
  height: 100%;
  display: block;
}

/* @media (min-width: 1199px) { */
.sendCode:hover,
.loginBtn:hover {
  opacity: 0.9;
}
/* } */
