/* headerBox */
.headerBox {
  width: 100%;
  min-width: 1200px;
  min-height: 110px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  align-items: center;
  padding-left: 4.7%;
  transition: all 0.6s ease;
}
.headerBox .logo {
  display: block;
  height: 64px;
}
.headerBox .logo img {
  height: 100%;
  display: block;
}
.headerBox .box {
  align-items: center;
}
.headerBox .navBox .nLi {
  margin-left: 50px;
  position: relative;
}
.headerBox .navBox .nLi h3 a {
  display: block;
  line-height: 36px;
  color: #333;
  font-size: 18px;
  padding: 10px 0;
  font-weight: normal;
}
.headerBox .navBox .nLi h3 a .iconfont {
  display: inline-block;
  font-size: 12px;
  transform: translate(4px, -2px) rotate(90deg);
  transition: all 0.6s ease;
}
.headerBox .navBox .nLi .sub {
  display: none;
  width: 130px;
  position: absolute;
  top: 56px;
  transform: translateX(-50%);
  left: 50%;
  z-index: 3;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
}
.headerBox .navBox .nLi .sub ul {
  width: 100%;
  background-color: #fff;
  position: relative;
}
.headerBox .navBox .nLi .sub ul a {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  color: #333;
  padding: 10px 8px;
}
.headerBox .navBox .nLi .sub ul li:hover a {
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  color: #fff;
}
.headerBox .navBox .nLi:hover h3 a,
.headerBox .navBox .nLi.on h3 a {
  color: #0050AD;
}
.headerBox .navBox .nLi:hover h3 a .iconfont,
.headerBox .navBox .nLi.on h3 a .iconfont {
  transform: translate(4px, -2px) rotate(-90deg);
}
.headerBox .languageBox {
  position: relative;
  padding: 10px 20px;
  margin: 0 50px;
}
.headerBox .languageBox .language {
  font-size: 18px;
  line-height: 32px;
  color: #333333;
  cursor: pointer;
}
.headerBox .languageBox .language img {
  width: 32px;
  display: block;
  margin-right: 6px;
}
.headerBox .languageBox .language .iconfont {
  font-size: 12px;
  line-height: 32px;
  color: #333333;
  transform: rotate(90deg);
  margin-left: 6px;
  transition: all 0.6s ease;
}
.headerBox .languageBox .language.on .iconfont {
  transform: rotate(-90deg);
}
.headerBox .languageBox ul {
  position: absolute;
  top: 52px;
  left: 0;
  background-color: #FFFFFF;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  display: none;
}
.headerBox .languageBox ul li a {
  padding: 9px 20px;
}
.headerBox .languageBox ul li a img {
  width: 32px;
  display: block;
  margin-right: 6px;
}
.headerBox .languageBox ul li a p {
  font-size: 18px;
  line-height: 32px;
  color: #333333;
}
.headerBox .languageBox ul li.on a,
.headerBox .languageBox ul li:hover a {
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
}
.headerBox .languageBox ul li.on a p,
.headerBox .languageBox ul li:hover a p {
  color: #fff;
}
.headerBox .login {
  padding: 34px 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.6s ease;
}
.headerBox .login .iconfont {
  font-size: 22px;
  margin-right: 6px;
  line-height: 42px;
  color: #333;
}
.headerBox .login p {
  font-size: 18px;
  height: 42px;
  line-height: 42px;
  color: #333;
}
.headerBox .login p span {
  display: inline-block;
  font-size: 16px;
  color: rgba(51, 51, 51, 0.2);
  margin: 0 5px;
}
.headerBox .login:hover .iconfont,
.headerBox .login:hover p {
  color: #0050AD;
}
.is-fixed {
  min-height: 90px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2);
}
.is-fixed .login {
  padding: 24px 60px;
}
@media (max-width: 1680px) {
  .headerBox {
    padding-left: 4%;
  }
  .headerBox .logo {
    height: 60px;
  }
  .headerBox .navBox .nLi {
    margin-left: 40px;
  }
  .headerBox .navBox .nLi h3 a {
    font-size: 16px;
  }
  .headerBox .navBox .nLi .sub ul a {
    font-size: 14px;
  }
  .headerBox .languageBox {
    padding: 10px 15px;
    margin: 0 40px;
  }
  .headerBox .languageBox .language {
    font-size: 16px;
    line-height: 28px;
  }
  .headerBox .languageBox .language img {
    width: 28px;
  }
  .headerBox .languageBox .language .iconfont {
    line-height: 28px;
  }
  .headerBox .languageBox ul {
    top: 48px;
  }
  .headerBox .languageBox ul li a {
    padding: 9px 15px;
  }
  .headerBox .languageBox ul li a img {
    width: 28px;
  }
  .headerBox .languageBox ul li a p {
    font-size: 16px;
    line-height: 28px;
  }
  .headerBox .login {
    padding: 29px 50px;
  }
  .headerBox .login .iconfont {
    font-size: 20px;
  }
  .headerBox .login p {
    font-size: 16px;
  }
  .headerBox .login p span {
    font-size: 14px;
  }
  .is-fixed .login {
    padding: 24px 50px;
  }
}
@media (max-width: 1480px) {
  .headerBox {
    padding-left: 2%;
  }
  .headerBox .navBox .nLi {
    margin-left: 30px;
  }
  .headerBox .languageBox {
    margin: 0 30px;
  }
  .headerBox .login {
    padding: 29px 40px;
  }
}
@media (max-width: 1360px) {
  .headerBox {
    padding-left: 1%;
  }
  .headerBox .logo {
    height: 50px;
  }
  .headerBox .navBox .nLi {
    margin-left: 34px;
  }
  .headerBox .navBox .nLi h3 a {
    font-size: 14px;
  }
  .headerBox .languageBox {
    padding: 10px;
  }
  .headerBox .languageBox .language {
    font-size: 14px;
    line-height: 24px;
  }
  .headerBox .languageBox .language img {
    width: 24px;
  }
  .headerBox .languageBox .language .iconfont {
    line-height: 24px;
  }
  .headerBox .languageBox ul {
    top: 44px;
  }
  .headerBox .languageBox ul li a {
    padding: 9px 10px;
  }
  .headerBox .languageBox ul li a img {
    width: 24px;
  }
  .headerBox .languageBox ul li a p {
    font-size: 14px;
    line-height: 24px;
  }
  .headerBox .login {
    padding: 24px 30px;
  }
  .headerBox .login .iconfont {
    font-size: 18px;
  }
  .headerBox .login p {
    font-size: 14px;
  }
  .headerBox .login p span {
    font-size: 12px;
  }
  .is-fixed .login {
    padding: 19px 30px;
  }
}
/* indexBanner */
.indexBanner {
  width: 100%;
  overflow: hidden;
  margin-top: 110px;
}
.indexBanner::before {
  content: '';
  width: 100%;
  height: 10%;
  background-image: linear-gradient(180deg, rgba(8, 11, 111, 0) 70%, #080B6F 109%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.indexBanner a {
  display: block;
  width: 100%;
  height: calc(100vh - 110px);
  background-size: cover !important;
}
.indexBanner .swiper-pagination {
  bottom: 5% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexBanner .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 8px;
  opacity: 0.4;
  background-color: #fff;
  margin: 0 6px !important;
  border-radius: 0;
  transition: all 0.6s ease;
}
.indexBanner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 12px;
}
@media (max-width: 1680px) {
  .indexBanner {
    margin-top: 100px;
  }
}
@media (max-width: 1360px) {
  .indexBanner {
    margin-top: 90px;
  }
}
/* indexTitle */
.indexTitleBox {
  align-items: center;
}
.indexTitle .t1 {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  text-transform: uppercase;
  color: #0050AD;
}
.indexTitle .t2 {
  font-size: 40px;
  font-weight: bold;
  line-height: 44px;
  text-transform: uppercase;
  color: #333333;
  margin-top: 10px;
}
@media (max-width: 1680px) {
  .indexTitle .t1 {
    font-size: 16px;
    line-height: 20px;
  }
  .indexTitle .t2 {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1480px) {
  .indexTitle .t2 {
    font-size: 30px;
    line-height: 34px;
  }
}
/* indexMore */
.indexMore {
  height: 56px;
  align-items: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.indexMore p {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
  margin-right: 20px;
}
.indexMore .iconfont {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  color: #fff;
  font-size: 12px;
  text-align: center;
}
/* indexFbas */
.indexFbas {
  width: 100%;
  background: url(../images/fbasBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  position: relative;
}
.indexFbas img {
  width: 100%;
  display: block;
}
.indexFbas .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.indexFbas .box {
  width: 540px;
}
.indexFbas .box .indexTitle .t1 {
  color: #fff;
}
.indexFbas .box .indexTitle .t2 {
  color: #fff;
}
.indexFbas .box .txt {
  font-size: 16px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 30px;
}
.indexFbas .box ul {
  width: 100%;
}
.indexFbas .box ul li {
  width: 110px;
  margin-right: 100px;
  margin-top: 40px;
}
.indexFbas .box ul li:nth-child(3n) {
  margin-right: 0;
}
.indexFbas .box ul li .t {
  font-family: Impact;
  font-size: 40px;
  line-height: 44px;
  color: #FFFFFF;
}
.indexFbas .box ul li .p {
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
@media (max-width: 1480px) {
  .indexFbas .box ul li .t {
    font-size: 32px;
    line-height: 36px;
  }
  .indexFbas .box ul li .p {
    font-size: 14px;
    line-height: 18px;
  }
}
/* indexOpening */
.indexOpening {
  width: 100%;
  background: url(../images/openingBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}
.indexOpening .box {
  width: 100%;
  margin-top: 50px;
}
.indexOpening .openingBox {
  width: 66%;
  margin: 0;
}
.indexOpening .openingBox a {
  display: block;
  position: relative;
  background-color: #000;
}
.indexOpening .openingBox a .img {
  width: 100%;
  display: block;
  opacity: 0.6;
}
.indexOpening .openingBox a .play {
  width: 90px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.indexOpening .openingBox a .t {
  width: 70%;
  background-image: linear-gradient(90deg, #0069CC 0%, #014AA6 100%);
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexOpening .openingBox .swiper-pagination {
  width: 20%;
  height: 12px;
  bottom: 30px !important;
  right: 30px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.indexOpening .openingBox .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 8px;
  opacity: 0.4;
  background-color: #fff;
  margin: 0 6px !important;
  border-radius: 0;
  transition: all 0.6s ease;
}
.indexOpening .openingBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 12px;
}
.indexOpening .cont {
  width: 32%;
  display: block;
  background: url(../images/solid.png) bottom center no-repeat;
  background-size: 100% auto;
}
.indexOpening .cont .img {
  width: 100%;
  overflow: hidden;
}
.indexOpening .cont .img img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.indexOpening .cont .t {
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  margin-top: 7%;
  transition: all 0.6s ease;
}
.indexOpening .cont .indexMore {
  height: auto;
  border-bottom: none;
  margin-top: 7%;
}
.indexOpening .cont:hover .img img {
  transform: scale(1.1);
}
.indexOpening .cont:hover .t {
  color: #0050AD;
}
.indexOpening ul {
  width: 100%;
  margin-top: 2%;
}
.indexOpening ul li {
  width: 32%;
}
.indexOpening ul li a {
  display: block;
  position: relative;
  overflow: hidden;
}
.indexOpening ul li a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(8, 11, 111, 0) 11%, #080B6F 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexOpening ul li img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.indexOpening ul li .p {
  width: 100%;
  font-size: 20px;
  line-height: 28px;
  color: #FFFFFF;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 20px;
}
.indexOpening ul li:hover img {
  transform: scale(1.1);
}
@media (max-width: 1680px) {
  .indexOpening .openingBox a .play {
    width: 70px;
  }
  .indexOpening .openingBox a .t {
    font-size: 20px;
    line-height: 28px;
  }
  .indexOpening .cont .t {
    font-size: 20px;
    line-height: 28px;
  }
  .indexOpening ul li .p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 1480px) {
  .indexOpening .openingBox a .play {
    width: 60px;
  }
  .indexOpening .openingBox a .t {
    font-size: 18px;
    line-height: 26px;
  }
  .indexOpening .cont .t {
    font-size: 18px;
    line-height: 26px;
  }
}
/* indexPoint */
.indexPoint {
  width: 100%;
  background: url(../images/pointBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}
.indexPoint .box {
  width: 100%;
  margin-top: 50px;
}
.indexPoint .pointBox {
  width: 45%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-top: none;
  background: #fff url(../images/solid1.png) top center no-repeat;
  background-size: 100% auto;
  padding: 2%;
}
.indexPoint .pointBox .contBox {
  width: 100%;
  align-items: center;
}
.indexPoint .pointBox .contBox .img {
  width: 51.5%;
  overflow: hidden;
}
.indexPoint .pointBox .contBox .img img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.indexPoint .pointBox .contBox .cont {
  width: 45%;
}
.indexPoint .pointBox .contBox .cont .label {
  font-size: 16px;
  line-height: 20px;
  color: #080B6F;
}
.indexPoint .pointBox .contBox .cont .tit {
  font-size: 20px;
  line-height: 32px;
  color: #333333;
  margin-top: 5%;
  transition: all 0.6s ease;
}
.indexPoint .pointBox .contBox .cont .time {
  font-size: 16px;
  line-height: 20px;
  color: #080B6F;
  align-items: center;
  margin-top: 9%;
}
.indexPoint .pointBox .contBox .cont .time .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.indexPoint .pointBox .contBox:hover .img img {
  transform: scale(1.1);
}
.indexPoint .pointBox .contBox:hover .cont .tit {
  color: #080B6F;
}
.indexPoint .pointBox ul {
  width: 100%;
  border-top: 1px solid rgba(8, 11, 111, 0.2);
  margin-top: 4%;
}
.indexPoint .pointBox ul li {
  width: 100%;
  padding-top: 3%;
}
.indexPoint .pointBox ul li a {
  width: 100%;
  align-items: center;
}
.indexPoint .pointBox ul li a .t {
  width: calc(100% - 118px);
  font-size: 18px;
  line-height: 24px;
  color: #333333;
  position: relative;
  padding-left: 12px;
}
.indexPoint .pointBox ul li a .t::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #666;
  position: absolute;
  top: 10px;
  left: 0;
}
.indexPoint .pointBox ul li a .time {
  font-size: 16px;
  line-height: 20px;
  color: #999;
  align-items: center;
}
.indexPoint .pointBox ul li a .time .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.indexPoint .pointBox ul li:hover a .t {
  color: #080B6F;
}
.indexPoint .pointBox ul li:hover a .t::after {
  background-color: #080B6F;
}
.indexPoint .pointBox ul li:hover a .time {
  color: #080B6F;
}
.indexPoint .pointCont {
  display: block;
  width: 26%;
  background: url(../images/pointImgBg.jpg) center center no-repeat;
  background-size: cover;
  padding: 2.5%;
}
.indexPoint .pointCont .label {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
}
.indexPoint .pointCont .tit {
  font-size: 20px;
  line-height: 32px;
  color: #FFFFFF;
  margin-top: 4%;
}
.indexPoint .pointCont .txt {
  font-size: 16px;
  line-height: 30px;
  color: #FFFFFF;
  margin-top: 6%;
}
.indexPoint .pointCont .time {
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  align-items: center;
  margin-top: 9%;
}
.indexPoint .pointCont .time .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.indexPoint .interviewBox {
  width: 25%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.indexPoint .interviewBox .title {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
}
.indexPoint .interviewBox .interview1 {
  width: 100%;
  height: 46.5%;
  background-color: #5A85CA;
  padding: 7%;
}
.indexPoint .interviewBox .interview1 ul {
  width: 100%;
  margin-top: 2%;
}
.indexPoint .interviewBox .interview1 ul li {
  padding-top: 4%;
}
.indexPoint .interviewBox .interview1 ul li a {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  position: relative;
  padding-left: 12px;
}
.indexPoint .interviewBox .interview1 ul li a::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0;
}
.indexPoint .interviewBox .interview2 {
  display: block;
  width: 100%;
  height: 46.5%;
  background-color: #0050AD;
  padding: 7%;
  position: relative;
}
.indexPoint .interviewBox .interview2 .t {
  width: 60%;
  font-size: 18px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6%;
}
.indexPoint .interviewBox .interview2 .more {
  align-items: center;
  margin-top: 6%;
}
.indexPoint .interviewBox .interview2 .more p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-right: 20px;
}
.indexPoint .interviewBox .interview2 .more .iconfont {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #fff;
  color: #080B6F;
  font-size: 14px;
  text-align: center;
}
.indexPoint .interviewBox .interview2 .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 36px;
  text-align: center;
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
}
@media (max-width: 1680px) {
  .indexPoint .pointBox .contBox .cont .label {
    font-size: 16px;
    line-height: 20px;
  }
  .indexPoint .pointBox .contBox .cont .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .indexPoint .pointBox .contBox .cont .time {
    font-size: 14px;
    line-height: 18px;
  }
  .indexPoint .pointBox .contBox .cont .time .iconfont {
    font-size: 18px;
  }
  .indexPoint .pointBox ul li a .t {
    width: calc(100% - 106px);
    font-size: 16px;
    line-height: 22px;
  }
  .indexPoint .pointBox ul li a .time {
    font-size: 14px;
    line-height: 18px;
  }
  .indexPoint .pointBox ul li a .time .iconfont {
    font-size: 18px;
  }
  .indexPoint .pointCont .label {
    font-size: 16px;
    line-height: 20px;
  }
  .indexPoint .pointCont .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .indexPoint .pointCont .txt {
    font-size: 16px;
    line-height: 32px;
  }
  .indexPoint .pointCont .time {
    font-size: 14px;
    line-height: 18px;
  }
  .indexPoint .pointCont .time .iconfont {
    font-size: 18px;
  }
  .indexPoint .interviewBox .title {
    font-size: 18px;
    line-height: 22px;
  }
  .indexPoint .interviewBox .interview1 ul li a {
    font-size: 16px;
    line-height: 22px;
  }
  .indexPoint .interviewBox .interview2 .t {
    font-size: 16px;
    line-height: 26px;
  }
  .indexPoint .interviewBox .interview2 .more p {
    font-size: 14px;
    line-height: 22px;
    margin-right: 20px;
  }
  .indexPoint .interviewBox .interview2 .more .iconfont {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 10px;
  }
  .indexPoint .interviewBox .interview2 .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    font-size: 30px;
  }
}
@media (max-width: 1480px) {
  .indexPoint .pointBox .contBox .cont .tit {
    font-size: 18px;
    line-height: 30px;
  }
  .indexPoint .pointCont .tit {
    font-size: 18px;
    line-height: 30px;
  }
  .indexPoint .pointCont .txt {
    font-size: 14px;
    line-height: 30px;
  }
  .indexPoint .interviewBox .title {
    font-size: 16px;
    line-height: 20px;
  }
  .indexPoint .interviewBox .interview1 ul li a {
    font-size: 14px;
    line-height: 20px;
  }
  .indexPoint .interviewBox .interview2 .t {
    font-size: 14px;
    line-height: 24px;
  }
  .indexPoint .interviewBox .interview2 .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
  }
}
/* indexActivity */
.indexActivity {
  width: 100%;
  background: url(../images/activityBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 50px 0;
}
.indexActivity .indexTitle {
  text-align: center;
}
.indexActivity .activityBox {
  width: 100%;
  margin: 50px 0 0;
  padding-bottom: 62px;
}
.indexActivity .activityBox .swiper-slide .cont {
  display: block;
  width: 100%;
  padding: 0 50px;
  position: relative;
}
.indexActivity .activityBox .swiper-slide .cont .img {
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.indexActivity .activityBox .swiper-slide .cont .img img {
  width: 100%;
  display: block;
  opacity: 0.4;
  transition: all 0.6s ease;
}
.indexActivity .activityBox .swiper-slide .cont .box {
  width: 32%;
  height: 55%;
  background-image: linear-gradient(180deg, rgba(0, 105, 204, 0.8) 0%, rgba(1, 74, 166, 0.8) 100%);
  box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0;
  padding: 0 3%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.indexActivity .activityBox .swiper-slide .cont .box .tit {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 8%;
}
.indexActivity .activityBox .swiper-slide .cont .box .icon {
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  align-items: center;
  margin-top: 4%;
}
.indexActivity .activityBox .swiper-slide .cont .box .icon .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.indexActivity .activityBox .swiper-slide .cont .box .more {
  align-items: center;
  margin-top: 10%;
  margin-left: 5%;
}
.indexActivity .activityBox .swiper-slide .cont .box .more p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-right: 20px;
}
.indexActivity .activityBox .swiper-slide .cont .box .more .iconfont {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #fff;
  color: #0050AD;
  font-size: 14px;
  text-align: center;
}
.indexActivity .activityBox .swiper-slide.swiper-slide-active .cont .img img {
  opacity: 1;
}
.indexActivity .activityBox .swiper-slide.swiper-slide-active .box {
  opacity: 1;
}
.indexActivity .activityBox .arrow {
  width: 23.5%;
  height: 42px;
  position: absolute;
  top: 48%;
  right: 15.6%;
}
.indexActivity .activityBox .arrow .swiper-button-next,
.indexActivity .activityBox .arrow .swiper-button-prev {
  width: 42px;
  height: 42px;
  background-color: #fff;
  color: #0050AD;
  font-size: 26px;
}
.indexActivity .activityBox .arrow .swiper-button-next::after,
.indexActivity .activityBox .arrow .swiper-button-prev::after {
  display: none;
}
.indexActivity .activityBox .arrow .swiper-button-next {
  margin: 0;
  right: 0;
}
.indexActivity .activityBox .arrow .swiper-button-prev {
  left: 0;
  margin: 0;
  transform: rotate(-180deg);
}
.indexActivity .activityBox .swiper-pagination {
  bottom: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.indexActivity .activityBox .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 8px;
  opacity: 0.4;
  background-color: #0050AD;
  margin: 0 6px !important;
  border-radius: 0;
  transition: all 0.6s ease;
}
.indexActivity .activityBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 12px;
}
@media (max-width: 1680px) {
  .indexActivity .activityBox .swiper-slide .cont .box .tit {
    font-size: 20px;
    line-height: 24px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .icon {
    font-size: 16px;
    line-height: 22px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .icon .iconfont {
    font-size: 20px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .more p {
    font-size: 14px;
    line-height: 22px;
    margin-right: 20px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .more .iconfont {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 10px;
  }
  .indexActivity .activityBox .arrow {
    height: 36px;
  }
  .indexActivity .activityBox .arrow .swiper-button-next,
  .indexActivity .activityBox .arrow .swiper-button-prev {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}
@media (max-width: 1480px) {
  .indexActivity .activityBox .swiper-slide .cont {
    padding: 0 40px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .tit {
    font-size: 18px;
    line-height: 22px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .icon {
    font-size: 14px;
    line-height: 20px;
  }
  .indexActivity .activityBox .swiper-slide .cont .box .icon .iconfont {
    font-size: 18px;
  }
  .indexActivity .activityBox .arrow {
    height: 32px;
  }
  .indexActivity .activityBox .arrow .swiper-button-next,
  .indexActivity .activityBox .arrow .swiper-button-prev {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
/* indexMoment */
.indexMoment {
  width: 100%;
  background: url(../images/momentBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}
.indexMoment .indexTitle .t1 {
  color: #fff;
}
.indexMoment .indexTitle .t2 {
  color: #fff;
}
.indexMoment .indexMore {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.indexMoment .indexMore p {
  color: #fff;
}
.indexMoment .indexMore .iconfont {
  background-image: linear-gradient(180deg, #fff 0%, #fff 100%);
  color: #080B6F;
}
.indexMoment ul {
  width: 100%;
  margin-top: 50px;
}
.indexMoment ul li {
  width: 7%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.6s ease;
}
.indexMoment ul li .img {
  width: 998px;
  overflow: hidden;
  position: relative;
}
.indexMoment ul li .img::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexMoment ul li .img::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexMoment ul li .img img {
  width: 100%;
  display: block;
}
.indexMoment ul li .year {
  width: 100%;
  font-size: 30px;
  line-height: 34px;
  color: #FFFFFF;
  text-align: center;
  position: absolute;
  bottom: 5%;
  left: 0;
  z-index: 2;
}
.indexMoment ul li .momentBox {
  width: 998px;
  margin: 0;
  display: none;
}
.indexMoment ul li .momentBox .swiper-slide a {
  display: block;
  width: 100%;
  position: relative;
}
.indexMoment ul li .momentBox .swiper-slide a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexMoment ul li .momentBox .swiper-slide a::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.indexMoment ul li .momentBox .swiper-slide img {
  width: 100%;
  display: block;
}
.indexMoment ul li .momentBox .swiper-slide .cont {
  width: 998px;
  padding: 3% 4%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.indexMoment ul li .momentBox .swiper-slide .cont .t1 {
  font-size: 24px;
  line-height: 30px;
  color: #FFFFFF;
}
.indexMoment ul li .momentBox .swiper-slide .cont .t2 {
  font-size: 18px;
  line-height: 24px;
  color: #FFFFFF;
  margin-top: 1%;
}
.indexMoment ul li .momentBox .swiper-slide .cont .more {
  align-items: center;
  margin-top: 2%;
}
.indexMoment ul li .momentBox .swiper-slide .cont .more p {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  margin-right: 20px;
}
.indexMoment ul li .momentBox .swiper-slide .cont .more .iconfont {
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 50%;
  background-color: #fff;
  color: #080B6F;
  font-size: 14px;
  text-align: center;
}
.indexMoment ul li .momentBox .swiper-pagination {
  width: 20%;
  height: 22px;
  bottom: 30px !important;
  right: 30px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 5;
}
.indexMoment ul li .momentBox .swiper-pagination .swiper-pagination-bullet {
  width: 22px;
  height: 22px;
  opacity: 0.4;
  background-color: #fff;
  margin: 0 6px !important;
  border-radius: 50%;
  transition: all 0.6s ease;
}
.indexMoment ul li .momentBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  /*height: 22px;*/
}
.indexMoment ul li.on {
  width: 62.5%;
}
.indexMoment ul li.on .img,
.indexMoment ul li.on .year {
  display: none;
}
.indexMoment ul li.on .momentBox {
  display: block;
}
@media (max-width: 1680px) {
  .indexMoment ul li .img {
    width: 896px;
  }
  .indexMoment ul li .year {
    font-size: 26px;
    line-height: 30px;
  }
  .indexMoment ul li .momentBox {
    width: 896px;
  }
  .indexMoment ul li .cont {
    width: 896px;
  }
  .indexMoment ul li .cont .t1 {
    font-size: 26px;
    line-height: 30px;
  }
  .indexMoment ul li .cont .t2 {
    font-size: 20px;
    line-height: 24px;
  }
  .indexMoment ul li .cont .more p {
    font-size: 14px;
    line-height: 22px;
  }
  .indexMoment ul li .cont .more .iconfont {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 10px;
  }
}
@media (max-width: 1480px) {
  .indexMoment ul li .img {
    width: 768px;
  }
  .indexMoment ul li .year {
    font-size: 22px;
    line-height: 26px;
  }
  .indexMoment ul li .momentBox {
    width: 768px;
  }
  .indexMoment ul li .cont {
    width: 768px;
  }
  .indexMoment ul li .cont .t1 {
    font-size: 22px;
    line-height: 26px;
  }
  .indexMoment ul li .cont .t2 {
    font-size: 16px;
    line-height: 20px;
  }
}
/* indexPartner */
.indexPartner {
  width: 100%;
  background: url(../images/partnerBg.jpg) center center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 60px 0;
}
.indexPartner .box {
  width: 100%;
  margin-top: 60px;
}
.indexPartner .swiper-container {
  width: 100%;
  margin: 0;
}
.indexPartner .swiper-container.partner1 {
  width: 79.5%;
  margin: 30px auto;
}
.indexPartner .swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -ms-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
}
.indexPartner .swiper-container .swiper-slide {
  border: solid 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.indexPartner .swiper-container a {
  width: 100%;
  display: block;
  background-color: #ffffff;
  overflow: hidden;
}
.indexPartner .swiper-container a img {
  width: 100%;
  display: block;
}
/* footer */
.footer {
  width: 100%;
  background: url(../images/footerBg.jpg) top center no-repeat;
  background-size: cover;
  overflow: hidden;
}
.footer .topBox {
  width: 100%;
  padding: 28px 0;
}
.footer .topBox .wrap {
  align-items: center;
}
.footer .topBox .logo {
  display: block;
  height: 64px;
}
.footer .topBox .logo img {
  height: 100%;
  display: block;
}
.footer .topBox .top {
  width: 42px;
  cursor: pointer;
}
.footer .topBox .top img {
  width: 100%;
  display: block;
}
.footer .middle {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .middle ul {
  width: 450px;
  margin-top: 40px;
}
.footer .middle ul li {
  margin-right: 46px;
  margin-top: 30px;
}
.footer .middle ul li a {
  display: block;
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}
.footer .middle .codeBox {
  width: 23%;
  min-width: 270px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
}
.footer .middle .codeBox img {
  width: 150px;
  display: block;
  background-color: #ffffff;
  margin: 0 auto;
}
.footer .middle .codeBox p {
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin-top: 30px;
  text-align: center;
}
.footer .middle .contact {
  width: 28.8%;
  min-width: 410px;
  padding-left: 4%;
  padding-top: 30px;
}
.footer .middle .contact .tit {
  font-size: 20px;
  line-height: 26px;
  color: #FFFFFF;
}
.footer .middle .contact .phone {
  align-items: center;
  margin-top: 20px;
}
.footer .middle .contact .phone .iconfont {
  font-size: 36px;
  line-height: 36px;
  color: #FFFFFF;
  margin-right: 6PX;
}
.footer .middle .contact .phone p {
  font-size: 32px;
  line-height: 36px;
  color: #FFFFFF;
}
.footer .middle .contact .address {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 20px;
}
.footer .middle .contact .a {
  width: 160px;
  height: 48px;
  border-radius: 24px;
  background: #FFFFFF;
  margin-top: 30px;
}
.footer .middle .contact .a p {
  font-size: 16px;
  line-height: 30px;
  color: #080B6F;
}
.footer .middle .contact .a .iconfont {
  font-size: 20px;
  line-height: 30px;
  color: #080B6F;
  margin-left: 6px;
}
.footer .copyRight {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
}
.footer .copyRight p {
  font-size: 14px;
  line-height: 20px;
}
.footer .copyRight p span {
  color: rgba(255, 255, 255, 0.4);
}
.footer .copyRight p span.s {
  display: inline-block;
  font-size: 12px;
  line-height: 14px;
  transform: translateY(-2px);
  margin: 0 5px;
}
.footer .copyRight p a {
  color: rgba(255, 255, 255, 0.4);
}
.footer .copyRight p a.on,
.footer .copyRight p a:hover {
  color: #ffffff;
}
@media (max-width: 1680px) {
  .footer .topBox {
    padding: 20px 0;
  }
  .footer .topBox .logo {
    height: 60px;
  }
  .footer .topBox .top {
    width: 40px;
  }
  .footer .middle ul {
    margin-top: 30px;
  }
  .footer .middle ul li a {
    font-size: 16px;
    line-height: 28px;
  }
  .footer .middle .codeBox {
    padding: 30px 0;
  }
  .footer .middle .codeBox img {
    width: 130px;
  }
  .footer .middle .codeBox p {
    font-size: 14px;
    line-height: 18px;
  }
  .footer .middle .contact {
    padding-top: 20px;
  }
  .footer .middle .contact .tit {
    font-size: 20px;
    line-height: 24px;
  }
  .footer .middle .contact .phone .iconfont {
    font-size: 32px;
    line-height: 32px;
  }
  .footer .middle .contact .phone p {
    font-size: 28px;
    line-height: 32px;
  }
  .footer .middle .contact .address {
    font-size: 16px;
    line-height: 28px;
  }
  .footer .middle .contact .a {
    width: 150px;
    height: 40px;
    border-radius: 20px;
  }
  .footer .middle .contact .a p {
    font-size: 14px;
    line-height: 26px;
  }
  .footer .middle .contact .a .iconfont {
    font-size: 16px;
    line-height: 26px;
  }
  .footer .copyRight p {
    font-size: 14px;
    line-height: 18px;
  }
  .footer .copyRight p span.s {
    font-size: 10px;
    line-height: 12px;
  }
}
/* pageBanner */
.pageBanner {
  width: 100%;
  position: relative;
  margin-top: 110px;
}
.pageBanner img {
  width: 100%;
  display: block;
}
.pageBanner .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageBanner .wrap p {
  font-size: 40px;
  font-weight: bold;
  line-height: 44px;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 1680px) {
  .pageBanner {
    margin-top: 100px;
  }
  .pageBanner .wrap p {
    font-size: 36px;
    line-height: 40px;
  }
}
@media (max-width: 1480px) {
  .pageBanner .wrap p {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 1360px) {
  .pageBanner {
    margin-top: 90px;
  }
}
/* pageLoction */
.pageLoction {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.pageLoction .wrap {
  min-height: 100px;
  align-items: center;
}
.pageLoction .location {
  width: 25%;
  align-items: center;
  line-height: 20px;
  font-size: 16px;
  color: #999999;
}
.pageLoction .location .icon-weizhi {
  font-size: 20px;
  margin: 0 5px 0 0;
}
.pageLoction .location .icon-jiantou {
  font-size: 12px;
  margin: 0 6px;
}
.pageLoction .location a {
  color: #999999;
}
.pageLoction .location a:hover,
.pageLoction .location a.on {
  color: #0050AD;
}
.pageLoction .tabBox {
  width: 75%;
}
.pageLoction .tabBox li {
  width: 260px;
  position: relative;
}
.pageLoction .tabBox li::after {
  content: '';
  width: 100%;
  height: 2px;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.pageLoction .tabBox li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 0;
}
.pageLoction .tabBox li a p {
  display: inline-block;
  font-size: 18px;
  line-height: 20px;
  color: #999;
}
.pageLoction .tabBox li.on {
  background-color: #F7F8F9;
}
.pageLoction .tabBox li.on::after {
  opacity: 1;
}
.pageLoction .tabBox li.on a p {
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1680px) {
  .pageLoction .wrap {
    min-height: 90px;
  }
  .pageLoction .location {
    line-height: 20px;
    font-size: 16px;
  }
  .pageLoction .location .icon-weizhi {
    font-size: 20px;
  }
  .pageLoction .location .icon-jiantou {
    font-size: 12px;
    margin: 0 6px;
  }
  .pageLoction .tabBox li {
    width: 260px;
  }
  .pageLoction .tabBox li::after {
    height: 2px;
  }
  .pageLoction .tabBox li a {
    padding: 34px 0;
  }
  .pageLoction .tabBox li a p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1480px) {
  .pageLoction .wrap {
    min-height: 80px;
  }
  .pageLoction .location {
    line-height: 18px;
    font-size: 14px;
  }
  .pageLoction .location .icon-weizhi {
    font-size: 18px;
  }
  .pageLoction .location .icon-jiantou {
    font-size: 10px;
  }
  .pageLoction .tabBox li {
    width: 260px;
  }
  .pageLoction .tabBox li a {
    padding: 30px 0;
  }
  .pageLoction .tabBox li a p {
    font-size: 16px;
    line-height: 20px;
  }
}
/* pageTitle */
.pageTitleBox {
  align-items: center;
}
.pageTitleBox .indexMore {
  margin-top: 0;
}
.pageTitle {
  font-size: 36px;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
  color: #333333;
}
@media (max-width: 1680px) {
  .pageTitle {
    font-size: 34px;
    line-height: 38px;
  }
}
@media (max-width: 1480px) {
  .pageTitle {
    font-size: 30px;
    line-height: 34px;
  }
}
/* pageOpening */
.pageOpening {
  width: 100%;
  background: #fff url(../images/openingBg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0;
}
.pageOpening .openingBox {
  width: 100%;
  margin: 50px 0 0;
}
.pageOpening .openingBox .swiper-slide .cont {
  display: block;
  width: 100%;
  padding: 0 50px;
  position: relative;
}
.pageOpening .openingBox .swiper-slide .cont .img {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #000;
}
.pageOpening .openingBox .swiper-slide .cont .img .pic {
  width: 100%;
  display: block;
  opacity: 0.6;
}
.pageOpening .openingBox .swiper-slide .cont .img .play {
  width: 90px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pageOpening .openingBox .swiper-slide .cont .tit {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #333333;
  text-align: center;
  margin-top: 40px;
}
.pageOpening .openingBox .arrow {
  width: 70%;
  height: 64px;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.pageOpening .openingBox .arrow .swiper-button-next,
.pageOpening .openingBox .arrow .swiper-button-prev {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  color: #0069CC;
  font-size: 20px;
  overflow: hidden;
  z-index: 1;
}
.pageOpening .openingBox .arrow .swiper-button-next::after,
.pageOpening .openingBox .arrow .swiper-button-prev::after {
  content: "";
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: #f8fcff;
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: -1;
}
.pageOpening .openingBox .arrow .swiper-button-next:hover,
.pageOpening .openingBox .arrow .swiper-button-prev:hover {
  color: #fff;
}
.pageOpening .openingBox .arrow .swiper-button-next:hover::after,
.pageOpening .openingBox .arrow .swiper-button-prev:hover::after {
  opacity: 0;
}
.pageOpening .openingBox .arrow .swiper-button-next {
  margin: 0;
  right: 0;
}
.pageOpening .openingBox .arrow .swiper-button-prev {
  left: 0;
  margin: 0;
  transform: rotate(-180deg);
}
@media (max-width: 1680px) {
  .pageOpening .openingBox .swiper-slide .cont .img .play {
    width: 80px;
  }
  .pageOpening .openingBox .swiper-slide .cont .tit {
    font-size: 20px;
    line-height: 28px;
    margin-top: 30px;
  }
  .pageOpening .openingBox .arrow {
    height: 54px;
    top: 33%;
  }
  .pageOpening .openingBox .arrow .swiper-button-next,
  .pageOpening .openingBox .arrow .swiper-button-prev {
    width: 54px;
    height: 54px;
    font-size: 16px;
  }
  .pageOpening .openingBox .arrow .swiper-button-next::after,
  .pageOpening .openingBox .arrow .swiper-button-prev::after {
    width: 52px;
    height: 52px;
  }
}
@media (max-width: 1480px) {
  .pageOpening .openingBox .swiper-slide .cont {
    padding: 0 40px;
  }
  .pageOpening .openingBox .swiper-slide .cont .img .play {
    width: 70px;
  }
  .pageOpening .openingBox .swiper-slide .cont .tit {
    font-size: 18px;
    line-height: 26px;
  }
  .pageOpening .openingBox .arrow {
    height: 48px;
  }
  .pageOpening .openingBox .arrow .swiper-button-next,
  .pageOpening .openingBox .arrow .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
  .pageOpening .openingBox .arrow .swiper-button-next::after,
  .pageOpening .openingBox .arrow .swiper-button-prev::after {
    width: 46px;
    height: 46px;
  }
}
/* pageMoment */
.pageMoment {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pageMoment .momentBox {
  width: 100%;
  position: relative;
  margin-top: 50px;
}
.pageMoment .momentBox .gallery-top {
  width: 100%;
}
.pageMoment .momentBox .gallery-top .swiper-slide a {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.pageMoment .momentBox .gallery-top .swiper-slide a::after {
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 11, 111, 0) 76%, #080B6F 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.pageMoment .momentBox .gallery-top .swiper-slide a img {
  width: 100%;
  display: block;
}
.pageMoment .momentBox .gallery-top .swiper-slide a .tit {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #FFFFFF;
  position: absolute;
  bottom: 50px;
  left: 40px;
  z-index: 1;
}
.pageMoment .momentBox .gallery-thumbs {
  width: 300px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
  background-image: linear-gradient(180deg, rgba(0, 105, 204, 0.5) 0%, rgba(1, 74, 166, 0.5) 100%);
  backdrop-filter: blur(20px);
}
.pageMoment .momentBox .gallery-thumbs .swiper-wrapper {
  justify-content: space-between;
}
.pageMoment .momentBox .gallery-thumbs .swiper-wrapper .swiper-slide {
  height: auto !important;
  background-color: #000;
  cursor: pointer;
}
.pageMoment .momentBox .gallery-thumbs .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
  opacity: 0.6;
  transition: all 0.6s ease;
}
.pageMoment .momentBox .gallery-thumbs .swiper-wrapper .swiper-slide.swiper-slide-thumb-active img {
  opacity: 1;
}
@media (max-width: 1680px) {
  .pageMoment .momentBox .gallery-top .swiper-slide a .tit {
    font-size: 20px;
    line-height: 24px;
    bottom: 40px;
  }
  .pageMoment .momentBox .gallery-thumbs {
    width: 260px;
    padding: 15px;
  }
}
@media (max-width: 1480px) {
  .pageMoment .momentBox .gallery-top .swiper-slide a .tit {
    font-size: 18px;
    line-height: 22px;
    bottom: 30px;
    left: 30px;
  }
  .pageMoment .momentBox .gallery-thumbs {
    width: 220px;
    padding: 10px;
  }
}
/* pageAbout */
.pageAbout {
  width: 100%;
  background: #fff url(../images/aboutBg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0;
}
.pageAbout .titBox {
  width: 38%;
  padding-top: 10px;
}
.pageAbout .pageTitle {
  text-align: left;
}
.pageAbout .title {
  font-family: Impact;
  font-size: 200px;
  line-height: 200px;
  text-transform: uppercase;
  color: rgba(0, 80, 173, 0.04);
  margin-top: 50px;
}
.pageAbout .text {
  width: 66%;
  font-size: 18px;
  line-height: 44px;
  color: #666666;
}
.pageAbout ul {
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  padding: 50px 0;
  margin-top: 100px;
}
.pageAbout ul li {
  width: 33.3333%;
  align-items: flex-start;
  position: relative;
}
.pageAbout ul li::after {
  content: '';
  width: 1px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.pageAbout ul li:last-child::after {
  display: none;
}
.pageAbout ul li .icon {
  width: 80px;
  overflow: hidden;
  margin-right: 15px;
}
.pageAbout ul li .icon img {
  width: 100%;
  display: block;
}
.pageAbout ul li .txt span {
  font-family: Impact;
  font-size: 56px;
  line-height: 48px;
  color: #333333;
}
.pageAbout ul li .txt sup {
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  color: #333333;
  margin-left: 6px;
  transform: translateY(-26px);
}
.pageAbout ul li .txt p {
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  margin-top: 14px;
}
@media (max-width: 1480px) {
  .pageAbout .title {
    font-size: 180px;
    line-height: 180px;
  }
  .pageAbout .text {
    font-size: 16px;
    line-height: 36px;
  }
  .pageAbout ul li .icon {
    width: 60px;
  }
  .pageAbout ul li .txt span {
    font-size: 50px;
    line-height: 42px;
  }
  .pageAbout ul li .txt sup {
    font-size: 16px;
    line-height: 16px;
    transform: translateY(-22px);
  }
  .pageAbout ul li .txt p {
    font-size: 16px;
    line-height: 20px;
  }
}
/* pageFbas */
.pageFbas {
  width: 100%;
  background: #fff url(../images/aboutBg1.jpg) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 120px 0 50px;
}
.pageFbas .pageTitle {
  text-align: left;
  color: #fff;
}
.pageFbas .text {
  width: 35%;
  font-size: 18px;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.9);
}
.pageFbas ul {
  width: 100%;
  margin-top: 100px;
}
.pageFbas ul li {
  width: 30.6666%;
  margin: 0 4% 4% 0;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding: 2%;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.6s ease;
}
.pageFbas ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0050AD -58%, rgba(0, 80, 173, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageFbas ul li::before {
  content: '';
  width: 100%;
  height: 3px;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageFbas ul li:nth-child(3n) {
  margin: 0 0 4% 0;
}
.pageFbas ul li .t {
  font-family: Impact;
  font-size: 48px;
  line-height: 48px;
  color: #FFFFFF;
}
.pageFbas ul li .p {
  font-size: 18px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}
.pageFbas ul li:hover {
  border-top: 1px solid rgba(255, 255, 255, 0);
}
.pageFbas ul li:hover::after {
  opacity: 1;
}
.pageFbas ul li:hover::before {
  opacity: 1;
}
@media (max-width: 1480px) {
  .pageFbas .text {
    font-size: 16px;
    line-height: 36px;
  }
  .pageFbas ul li .counter {
    font-size: 40px;
    line-height: 40px;
  }
  .pageFbas ul li .p {
    font-size: 16px;
    line-height: 20px;
  }
}
/* pageMember */
.pageMember {
  width: 100%;
  background: #fff url(../images/memberBg.png) bottom center no-repeat;
  background-size: 100% auto;
  overflow: hidden;
  padding: 100px 0;
}
.pageMember .wrap {
  align-items: center;
}
.pageMember .imgBox {
  width: 560px;
  height: 560px;
  background: url(../images/memberImgBg.png) center center no-repeat;
  background-size: cover;
  padding: 44px;
}
.pageMember .imgBox .img {
  width: 472px;
  border-radius: 50%;
  overflow: hidden;
}
.pageMember .imgBox .img img {
  width: 100%;
  display: block;
}
.pageMember .cont {
  width: 53%;
}
.pageMember .cont .pageTitle {
  text-align: left;
}
.pageMember .cont .tit {
  font-size: 18px;
  line-height: 28px;
  color: #666666;
  margin-top: 10px;
}
.pageMember .cont .text {
  font-size: 18px;
  line-height: 44px;
  color: #666666;
  margin-top: 30px;
}
@media (max-width: 1680px) {
  .pageMember .cont .tit {
    font-size: 16px;
    line-height: 26px;
  }
  .pageMember .cont .text {
    font-size: 16px;
    line-height: 42px;
    margin-top: 20px;
  }
}
@media (max-width: 1480px) {
  .pageMember .imgBox {
    width: 488px;
    height: 488px;
    padding: 38px;
  }
  .pageMember .imgBox .img {
    width: 412px;
  }
  .pageMember .cont .text {
    line-height: 36px;
  }
}
/* pageMembers */
.pageMembers {
  width: 100%;
  background: #fff url(../images/memberBg1.jpg) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0;
}
.pageMembers ul {
  width: 100%;
}
.pageMembers ul li {
  width: 23.5%;
  margin: 0 2% 2% 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
.pageMembers ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageMembers ul li:nth-child(4n) {
  margin: 0 0 2% 0;
}
.pageMembers ul li a {
  display: block;
  padding: 60px 8%;
}
.pageMembers ul li .imgBox {
  width: 180px;
  height: 180px;
  background: url(../images/memberImgBg1.png) center center no-repeat;
  background-size: cover;
  padding: 17px;
  margin: 0 auto;
  transition: all 0.6s ease;
}
.pageMembers ul li .imgBox .img {
  width: 146px;
  border-radius: 50%;
  overflow: hidden;
}
.pageMembers ul li .imgBox .img img {
  width: 100%;
  display: block;
}
.pageMembers ul li .name {
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  margin-top: 40px;
  transition: all 0.6s ease;
}
.pageMembers ul li .p {
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  margin-top: 20px;
  transition: all 0.6s ease;
}
.pageMembers ul li:hover::after {
  opacity: 1;
}
.pageMembers ul li:hover .imgBox {
  background: url(../images/memberImgBg2.png) center center no-repeat;
  background-size: cover;
}
.pageMembers ul li:hover .name,
.pageMembers ul li:hover .p {
  color: #fff;
}
@media (max-width: 1680px) {
  .pageMembers ul li .name {
    font-size: 20px;
    line-height: 24px;
  }
  .pageMembers ul li .p {
    font-size: 16px;
    line-height: 28px;
  }
}
@media (max-width: 1480px) {
  .pageMembers ul li a {
    padding: 50px 6%;
  }
  .pageMembers ul li .imgBox {
    width: 142px;
    height: 142px;
    padding: 13px;
  }
  .pageMembers ul li .imgBox .img {
    width: 116px;
  }
  .pageMembers ul li .name {
    font-size: 18px;
    line-height: 22px;
    margin-top: 30px;
  }
  .pageMembers ul li .p {
    font-size: 14px;
    line-height: 26px;
    margin-top: 10px;
  }
}
/* pageInterview */
.pageInterview {
  width: 100%;
  background: #fff url(../images/interviewBg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0;
}
.pageInterview .box {
  width: 100%;
  margin-top: 50px;
}
.pageInterview .interviewBox {
  width: 66%;
  margin: 0;
}
.pageInterview .interviewBox .cont {
  width: 100%;
  display: block;
  position: relative;
}
.pageInterview .interviewBox .cont img {
  width: 100%;
  display: block;
}
.pageInterview .interviewBox .cont .tit {
  width: 100%;
  background: linear-gradient(90deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.pageInterview .interviewBox .cont .tit p {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #FFFFFF;
  padding: 30px 130px 30px 30px;
}
.pageInterview .interviewBox .swiper-pagination {
  width: 75px;
  height: 12px;
  bottom: 36px !important;
  right: 30px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pageInterview .interviewBox .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 8px;
  opacity: 0.4;
  background-color: #fff;
  margin: 0 0 0 10px !important;
  border-radius: 0;
  transition: all 0.6s ease;
}
.pageInterview .interviewBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 12px;
}
.pageInterview .contBox {
  width: 32%;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.pageInterview .contBox .img {
  width: 100%;
  overflow: hidden;
}
.pageInterview .contBox .img img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.pageInterview .contBox .cont {
  padding: 10% 6% 5%;
}
.pageInterview .contBox .label {
  font-size: 16px;
  line-height: 20px;
  color: #0050AD;
}
.pageInterview .contBox .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #333333;
  margin-top: 2.5%;
  transition: all 0.6s ease;
}
.pageInterview .contBox .txt {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 2.5%;
}
.pageInterview .contBox .time {
  font-size: 16px;
  line-height: 20px;
  color: #999999;
  align-items: center;
  margin-top: 8%;
}
.pageInterview .contBox .time .iconfont {
  font-size: 20px;
  margin-right: 5px;
}
.pageInterview .contBox:hover .img img {
  transform: scale(1.1);
}
.pageInterview .contBox:hover .tit {
  color: #0050AD;
}
@media (max-width: 1680px) {
  .pageInterview .interviewBox .cont .tit {
    height: 100px;
  }
  .pageInterview .interviewBox .cont .tit p {
    font-size: 20px;
    line-height: 28px;
    padding: 36px 130px 36px 30px;
  }
  .pageInterview .interviewBox .swiper-pagination {
    bottom: 44px !important;
  }
  .pageInterview .contBox .label {
    font-size: 18px;
    line-height: 22px;
  }
  .pageInterview .contBox .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .pageInterview .contBox .txt {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 1480px) {
  .pageInterview .interviewBox .cont .tit {
    height: 80px;
  }
  .pageInterview .interviewBox .cont .tit p {
    font-size: 16px;
    line-height: 24px;
    padding: 28px 110px 28px 20px;
  }
  .pageInterview .interviewBox .swiper-pagination {
    right: 20px;
    bottom: 34px !important;
  }
  .pageInterview .contBox .label {
    font-size: 14px;
    line-height: 18px;
  }
  .pageInterview .contBox .tit {
    font-size: 16px;
    line-height: 26px;
  }
  .pageInterview .contBox .txt {
    font-size: 14px;
    line-height: 24px;
  }
  .pageInterview .contBox .time {
    font-size: 14px;
    line-height: 18px;
  }
  .pageInterview .contBox .time .iconfont {
    font-size: 18px;
  }
}
/* pagePoint */
.pagePoint {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pagePoint ul {
  width: 100%;
  margin-top: 50px;
}
.pagePoint ul li {
  width: 32.33333%;
  margin-right: 1.5%;
  position: relative;
  z-index: 1;
}
.pagePoint ul li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pagePoint ul li:nth-child(3n) {
  margin-right: 0;
}
.pagePoint ul li a {
  display: flex;
  width: 100%;
}
.pagePoint ul li a .img {
  width: 100%;
  overflow: hidden;
}
.pagePoint ul li a .img img {
  width: 100%;
  display: block;
}
.pagePoint ul li a .cont {
  padding: 13% 6%;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.pagePoint ul li a .label {
  font-size: 16px;
  line-height: 20px;
  color: #0050AD;
  transition: all 0.6s ease;
}
.pagePoint ul li a .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  height: 64px;
  color: #333333;
  margin-top: 2.5%;
  transition: all 0.6s ease;
}
.pagePoint ul li a .txt {
  font-size: 16px;
  line-height: 30px;
  height: 60px;
  color: #666666;
  margin-top: 2.5%;
  transition: all 0.6s ease;
}
.pagePoint ul li a .time {
  font-size: 16px;
  line-height: 20px;
  color: #999999;
  align-items: center;
  margin-top: 8%;
  transition: all 0.6s ease;
}
.pagePoint ul li a .time .iconfont {
  font-size: 20px;
  margin-right: 5px;
}
.pagePoint ul li:nth-child(2n-1) a {
  flex-direction: column-reverse;
}
.pagePoint ul li:nth-child(2n-1) a .cont {
  margin-bottom: 10px;
}
.pagePoint ul li:nth-child(2n) a {
  flex-direction: column;
}
.pagePoint ul li:nth-child(2n) a .cont {
  margin-top: 10px;
}
.pagePoint ul li:hover::after {
  opacity: 1;
}
.pagePoint ul li:hover a .cont {
  border: 1px solid rgba(0, 0, 0, 0);
}
.pagePoint ul li:hover a .label,
.pagePoint ul li:hover a .tit,
.pagePoint ul li:hover a .txt,
.pagePoint ul li:hover a .time {
  color: #fff;
}
@media (max-width: 1680px) {
  .pagePoint ul li a .cont {
    padding: 10.7% 6%;
  }
  .pagePoint ul li a .label {
    font-size: 18px;
    line-height: 22px;
  }
  .pagePoint ul li a .tit {
    font-size: 20px;
    line-height: 32px;
    height: 64px;
  }
  .pagePoint ul li a .txt {
    font-size: 16px;
    line-height: 30px;
    height: 60px;
  }
}
@media (max-width: 1480px) {
  .pagePoint ul li a .label {
    font-size: 14px;
    line-height: 18px;
  }
  .pagePoint ul li a .tit {
    font-size: 16px;
    line-height: 28px;
    height: 56px;
  }
  .pagePoint ul li a .txt {
    font-size: 14px;
    line-height: 26px;
    height: 52px;
  }
  .pagePoint ul li a .time {
    font-size: 14px;
    line-height: 18px;
  }
  .pagePoint ul li a .time .iconfont {
    font-size: 18px;
  }
}
/* pageInterviews */
.pageInterviews {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pageInterviews .lists {
  width: 100%;
  margin-top: 50px;
  margin-bottom: 20px;
}
.pageInterviews .lists li {
  width: 32.33333%;
  margin-right: 1.5%;
  margin-bottom: 2%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}
.pageInterviews .lists li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageInterviews .lists li:nth-child(3n) {
  margin-right: 0;
}
.pageInterviews .lists li a {
  display: block;
  width: 100%;
}
.pageInterviews .lists li a .img {
  width: 100%;
  overflow: hidden;
}
.pageInterviews .lists li a .img img {
  width: 100%;
  display: block;
}
.pageInterviews .lists li a .cont {
  padding: 10.47% 6%;
}
.pageInterviews .lists li a .label {
  font-size: 16px;
  line-height: 20px;
  color: #0050AD;
  transition: all 0.6s ease;
}
.pageInterviews .lists li a .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  color: #333333;
  margin-top: 2.5%;
  transition: all 0.6s ease;
}
.pageInterviews .lists li a .txt {
  font-size: 16px;
  line-height: 30px;
  color: #666666;
  margin-top: 2.5%;
  transition: all 0.6s ease;
}
.pageInterviews .lists li a .time {
  font-size: 16px;
  line-height: 20px;
  color: #999999;
  align-items: center;
  margin-top: 8%;
  transition: all 0.6s ease;
}
.pageInterviews .lists li a .time .iconfont {
  font-size: 20px;
  margin-right: 5px;
}
.pageInterviews .lists li:hover {
  border: 1px solid rgba(0, 0, 0, 0);
}
.pageInterviews .lists li:hover::after {
  opacity: 1;
}
.pageInterviews .lists li:hover a .label,
.pageInterviews .lists li:hover a .tit,
.pageInterviews .lists li:hover a .txt,
.pageInterviews .lists li:hover a .time {
  color: #fff;
}
@media (max-width: 1680px) {
  .pageInterviews .lists li a .label {
    font-size: 18px;
    line-height: 22px;
  }
  .pageInterviews .lists li a .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .pageInterviews .lists li a .txt {
    font-size: 16px;
    line-height: 30px;
  }
}
@media (max-width: 1480px) {
  .pageInterviews .lists li a .label {
    font-size: 14px;
    line-height: 18px;
  }
  .pageInterviews .lists li a .tit {
    font-size: 16px;
    line-height: 26px;
  }
  .pageInterviews .lists li a .txt {
    font-size: 14px;
    line-height: 24px;
  }
  .pageInterviews .lists li a .time {
    font-size: 14px;
    line-height: 18px;
  }
  .pageInterviews .lists li a .time .iconfont {
    font-size: 18px;
  }
}
/* pagePoints */
.pagePoints {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pagePoints .lists {
  width: 100%;
  margin: 50px 0;
}
.pagePoints .lists li {
  width: 100%;
  margin-bottom: 2%;
  padding-bottom: 2%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.pagePoints .lists li a {
  width: 100%;
}
.pagePoints .lists li a .img {
  width: 36%;
  overflow: hidden;
}
.pagePoints .lists li a .img img {
  width: 100%;
  display: block;
  transition: all 0.6s ease;
}
.pagePoints .lists li a .cont {
  width: 61%;
  padding: 2% 0 0;
}
.pagePoints .lists li a .label {
  font-size: 16px;
  line-height: 20px;
  color: #0050AD;
}
.pagePoints .lists li a .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333333;
  margin-top: 2%;
  transition: all 0.6s ease;
}
.pagePoints .lists li a .txt {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  margin-top: 2%;
}
.pagePoints .lists li a .time {
  font-size: 16px;
  line-height: 20px;
  color: #999999;
  margin-top: 3%;
}
.pagePoints .lists li a .indexMore {
  width: 116px;
  margin-top: 5%;
}
.pagePoints .lists li:hover a .img img {
  transform: scale(1.1);
}
.pagePoints .lists li:hover a .tit {
  color: #0050AD;
}
@media (max-width: 1680px) {
  .pagePoints .lists li a .label {
    font-size: 18px;
    line-height: 22px;
  }
  .pagePoints .lists li a .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .pagePoints .lists li a .txt {
    font-size: 16px;
    line-height: 30px;
    height: 60px;
  }
  .pagePoints .lists li a .indexMore {
    width: 114px;
  }
}
@media (max-width: 1480px) {
  .pagePoints .lists li a .label {
    font-size: 14px;
    line-height: 18px;
  }
  .pagePoints .lists li a .tit {
    font-size: 16px;
    line-height: 28px;
  }
  .pagePoints .lists li a .txt {
    font-size: 14px;
    line-height: 26px;
    height: 52px;
  }
  .pagePoints .lists li a .time {
    font-size: 14px;
    line-height: 18px;
  }
}
/* pageActivity */
.pageActivity {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  padding-top: 100px;
}
.pageActivity .activityBox {
  width: 100%;
  margin: 0;
}
.pageActivity .activityBox a {
  width: 100%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  align-items: center;
}
.pageActivity .activityBox a .img {
  width: 62%;
  overflow: hidden;
}
.pageActivity .activityBox a .img img {
  width: 100%;
  display: block;
}
.pageActivity .activityBox a .box {
  width: 38%;
  padding: 0 2.4%;
}
.pageActivity .activityBox a .box .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #FFFFFF;
}
.pageActivity .activityBox a .box .txt {
  font-size: 16px;
  line-height: 32px;
  color: #FFFFFF;
  margin: 1.5% 0 6%;
}
.pageActivity .activityBox a .box .icon {
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3%;
}
.pageActivity .activityBox a .box .icon .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.pageActivity .activityBox a .box .indexMore {
  width: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 5%;
}
.pageActivity .activityBox a .box .indexMore p {
  color: #fff;
}
.pageActivity .activityBox a .box .indexMore .iconfont {
  background-image: linear-gradient(180deg, #fff 0%, #fff 100%);
  color: #014AA6;
}
.pageActivity .activityBox .swiper-pagination {
  width: 75px;
  height: 12px;
  bottom: 50px !important;
  right: 30px;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pageActivity .activityBox .swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 8px;
  opacity: 0.4;
  background-color: #fff;
  margin: 0 0 0 10px !important;
  border-radius: 0;
  transition: all 0.6s ease;
}
.pageActivity .activityBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  height: 12px;
}
.pageActivity .listsBox {
  width: 100%;
  background: url(../images/activityBg1.jpg) bottom center no-repeat;
  background-size: cover;
  margin-top: 100px;
  padding: 100px 0;
}
.pageActivity .listsBox .lists {
  margin-bottom: 20px;
}
.pageActivity .listsBox .lists li {
  width: 32%;
  margin: 0 2% 2% 0;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.6s ease;
}
.pageActivity .listsBox .lists li::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageActivity .listsBox .lists li:nth-child(3n) {
  margin: 0 0 2% 0;
}
.pageActivity .listsBox .lists li a {
  display: block;
  width: 100%;
  padding: 5% 5% 8%;
}
.pageActivity .listsBox .lists li a .img {
  width: 100%;
  overflow: hidden;
}
.pageActivity .listsBox .lists li a .img img {
  width: 100%;
  display: block;
}
.pageActivity .listsBox .lists li a .tit {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333333;
  margin-top: 6%;
  transition: all 0.6s ease;
}
.pageActivity .listsBox .lists li a .txt {
  font-size: 16px;
  line-height: 32px;
  color: #666666;
  margin: 2.5% 0 5%;
  transition: all 0.6s ease;
}
.pageActivity .listsBox .lists li a .icon {
  font-size: 16px;
  line-height: 20px;
  color: rgba(153, 153, 153, 0.8);
  margin-top: 3%;
  transition: all 0.6s ease;
}
.pageActivity .listsBox .lists li a .icon .iconfont {
  font-size: 20px;
  margin-right: 6px;
}
.pageActivity .listsBox .lists li:hover {
  border: 1px solid rgba(0, 0, 0, 0);
}
.pageActivity .listsBox .lists li:hover::after {
  opacity: 1;
}
.pageActivity .listsBox .lists li:hover a .tit,
.pageActivity .listsBox .lists li:hover a .txt,
.pageActivity .listsBox .lists li:hover a .icon {
  color: #fff;
}
.pageActivity .listsBox .lists li:hover a .icon {
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1680px) {
  .pageActivity .activityBox a .box .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .pageActivity .activityBox a .box .txt {
    font-size: 16px;
    line-height: 32px;
  }
  .pageActivity .activityBox a .box .icon {
    font-size: 14px;
    line-height: 18px;
  }
  .pageActivity .activityBox a .box .icon .iconfont {
    font-size: 18px;
  }
  .pageActivity .activityBox .swiper-pagination {
    bottom: 40px !important;
  }
  .pageActivity .listsBox .lists li a .tit {
    font-size: 20px;
    line-height: 32px;
  }
  .pageActivity .listsBox .lists li a .txt {
    font-size: 16px;
    line-height: 32px;
  }
  .pageActivity .listsBox .lists li a .icon {
    font-size: 14px;
    line-height: 18px;
  }
  .pageActivity .listsBox .lists li a .icon .iconfont {
    font-size: 18px;
  }
}
@media (max-width: 1480px) {
  .pageActivity .activityBox a .box .tit {
    font-size: 16px;
    line-height: 28px;
  }
  .pageActivity .activityBox a .box .txt {
    font-size: 14px;
    line-height: 26px;
  }
  .pageActivity .activityBox .swiper-pagination {
    bottom: 30px !important;
  }
  .pageActivity .listsBox .lists li a .tit {
    font-size: 16px;
    line-height: 28px;
  }
  .pageActivity .listsBox .lists li a .txt {
    font-size: 14px;
    line-height: 26px;
  }
}
/* pageReview */
.pageReview {
  width: 100%;
  overflow: hidden;
  padding: 80px 0 150px;
}
.pageReview .timeBox {
  background: url(../images/solid3.png) bottom center no-repeat;
  background-size: 100% auto;
  padding-bottom: 120px;
}
.pageReview .timeBox .swiper-slide {
  font-family: Impact;
  font-size: 60px;
  line-height: 80px;
  text-align: center;
  background-image: linear-gradient(180deg, rgba(0, 105, 204, 0.3) 0%, rgba(1, 74, 166, 0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pageReview .timeBox .swiper-slide.swiper-slide-active {
  font-size: 80px;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pageReview .timeBox .swiper-button-next,
.pageReview .timeBox .swiper-button-prev {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  color: #0069CC;
  font-size: 16px;
  overflow: hidden;
  z-index: 1;
  top: 0;
  margin: 13px 0 0;
}
.pageReview .timeBox .swiper-button-next::after,
.pageReview .timeBox .swiper-button-prev::after {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: -1;
}
.pageReview .timeBox .swiper-button-next:hover,
.pageReview .timeBox .swiper-button-prev:hover {
  color: #fff;
}
.pageReview .timeBox .swiper-button-next:hover::after,
.pageReview .timeBox .swiper-button-prev:hover::after {
  opacity: 0;
}
.pageReview .timeBox .swiper-button-next {
  right: 0;
}
.pageReview .timeBox .swiper-button-prev {
  left: 0;
  transform: rotate(-180deg);
}
.pageReview .reviewBigBox {
  width: 100%;
  margin: 30px 0 0;
}
.pageReview .reviewBigBox .reviewBox {
  width: 100%;
  margin: 0;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide {
  transform: scale(0.9);
  padding: 0 40px;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide a {
  display: block;
  width: 100%;
  position: relative;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide a::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide a::before {
  content: '';
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(8, 11, 111, 0) 80%, rgba(8, 11, 111, 0.6) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide a img {
  width: 100%;
  display: block;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide a .tit {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: #FFFFFF;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.pageReview .reviewBigBox .reviewBox .swiper-slide.swiper-slide-active {
  transform: scale(1);
}
.pageReview .reviewBigBox .reviewBox .arrow {
  width: 72.5%;
  height: 54px;
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next,
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  color: #0069CC;
  font-size: 16px;
  overflow: hidden;
  z-index: 1;
  top: 0;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next::after,
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev::after {
  content: "";
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: -1;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next:hover,
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev:hover {
  color: #fff;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next:hover::after,
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev:hover::after {
  opacity: 0;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next {
  margin: 0;
  right: 0;
}
.pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev {
  left: 0;
  margin: 0;
  transform: rotate(-180deg);
}
@media (max-width: 1680px) {
  .pageReview .timeBox {
    padding-bottom: 110px;
  }
  .pageReview .timeBox .swiper-slide {
    font-size: 50px;
    line-height: 70px;
  }
  .pageReview .timeBox .swiper-slide.swiper-slide-active {
    font-size: 70px;
  }
  .pageReview .reviewBigBox .reviewBox .swiper-slide a .tit {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (max-width: 1480px) {
  .pageReview .timeBox {
    padding-bottom: 90px;
  }
  .pageReview .timeBox .swiper-slide {
    font-size: 40px;
    line-height: 60px;
  }
  .pageReview .timeBox .swiper-slide.swiper-slide-active {
    font-size: 60px;
  }
  .pageReview .timeBox .swiper-button-next,
  .pageReview .timeBox .swiper-button-prev {
    width: 40px;
    height: 40px;
    margin: 10px 0 0;
    font-size: 14px;
  }
  .pageReview .timeBox .swiper-button-next::after,
  .pageReview .timeBox .swiper-button-prev::after {
    width: 38px;
    height: 38px;
  }
  .pageReview .reviewBigBox .reviewBox .swiper-slide a .tit {
    font-size: 16px;
    line-height: 20px;
    padding: 20px;
  }
  .pageReview .reviewBigBox .reviewBox .arrow {
    height: 48px;
  }
  .pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next,
  .pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev {
    width: 48px;
    height: 48px;
  }
  .pageReview .reviewBigBox .reviewBox .arrow .swiper-button-next::after,
  .pageReview .reviewBigBox .reviewBox .arrow .swiper-button-prev::after {
    width: 46px;
    height: 46px;
  }
}
/* pagePartner */
.pagePartner {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 80px 0;
}
.pagePartner ul {
  width: 100%;
}
.pagePartner ul li {
  border: solid 1px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 18.4%;
  margin: 0 2% 2% 0;
}
.pagePartner ul li:nth-child(5n) {
  margin: 0 0 2% 0;
}
.pagePartner ul li a {
  width: 100%;
  display: block;
  background-color: #ffffff;
  overflow: hidden;
}
.pagePartner ul li a img {
  width: 100%;
  display: block;
}
/* pageApply */
.pageApply {
  width: 100%;
  background: #fff url(../images/interviewBg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 80px 0;
}
.pageApply .box {
  width: 100%;
  margin-top: 50px;
  background-color: #fff;
  padding: 30px;
  font-size: 16px;
  line-height: 30px;
  color: #333;
}
/* pageOutcome */
.pageOutcome {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pageOutcome .lists {
  width: 100%;
  margin-top: 50px;
}
.pageOutcome .lists li {
  width: 49%;
  margin: 0 2% 2% 0;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2.5%;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.pageOutcome .lists li::after {
  content: '';
  width: 100%;
  height: 100%;
  background: url(../images/downloadBg1.jpg) bottom center no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.6s ease;
}
.pageOutcome .lists li:nth-child(2n) {
  margin: 0 0 2% 0;
}
.pageOutcome .lists li .cont {
  width: 80%;
}
.pageOutcome .lists li .cont .t {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333333;
  transition: all 0.6s ease;
}
.pageOutcome .lists li .cont a {
  display: block;
  width: 160px;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(270deg, #014AA6 0%, #0069CC 100%);
  font-size: 16px;
  line-height: 46px;
  color: #FFFFFF;
  text-align: center;
  margin-top: 8%;
  transition: all 0.6s ease;
}
.pageOutcome .lists li .img {
  width: 15%;
  overflow: hidden;
  box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
}
.pageOutcome .lists li .img img {
  width: 100%;
  display: block;
}
.pageOutcome .lists li:hover::after {
  opacity: 1;
}
.pageOutcome .lists li:hover .cont .t {
  color: #fff;
}
.pageOutcome .lists li:hover .cont a {
  background: linear-gradient(270deg, #fff 0%, #fff 100%);
  color: #0050AD;
}
@media (max-width: 1680px) {
  .pageOutcome .lists li .cont .t {
    font-size: 20px;
    line-height: 34px;
  }
  .pageOutcome .lists li .cont a {
    width: 140px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 40px;
  }
}
@media (max-width: 1480px) {
  .pageOutcome .lists li .cont .t {
    font-size: 16px;
    line-height: 26px;
  }
  .pageOutcome .lists li .cont a {
    width: 120px;
    height: 36px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 36px;
  }
}
/* pageResearch */
.pageResearch {
  width: 100%;
  background: #fff url(../images/downloadBg.png) bottom center no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 100px 0;
}
.pageResearch .lists {
  width: 100%;
  margin-top: 50px;
}
.pageResearch .lists li {
  width: 100%;
  margin-bottom: 20px;
  background-color: #FFFFFF;
  padding: 2.5%;
  align-items: center;
  cursor: pointer;
}
.pageResearch .lists li .cont {
  width: calc(100% - 180px);
  align-items: center;
}
.pageResearch .lists li .cont .img {
  width: 42px;
  overflow: hidden;
  margin-right: 15px;
}
.pageResearch .lists li .cont .img img {
  width: 100%;
  display: block;
}
.pageResearch .lists li .cont .t {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333333;
}
.pageResearch .lists li a {
  display: block;
  width: 160px;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(270deg, #014AA6 0%, #0069CC 100%);
  font-size: 16px;
  line-height: 46px;
  color: #0050AD;
  text-align: center;
  transition: all 0.6s ease;
  position: relative;
}
.pageResearch .lists li a::after {
  content: '';
  width: 158px;
  height: 44px;
  border-radius: 22px;
  background-color: #fff;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all 0.6s ease;
}
.pageResearch .lists li a span {
  position: relative;
  z-index: 1;
}
.pageResearch .lists li a:hover {
  color: #fff;
}
.pageResearch .lists li a:hover::after {
  opacity: 0;
}
@media (max-width: 1680px) {
  .pageResearch .lists li .cont {
    width: calc(100% - 160px);
  }
  .pageResearch .lists li .cont .t {
    font-size: 20px;
    line-height: 34px;
  }
  .pageResearch .lists li a {
    width: 140px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 40px;
  }
  .pageResearch .lists li a::after {
    width: 138px;
    height: 38px;
    border-radius: 19px;
  }
}
@media (max-width: 1480px) {
  .pageResearch .lists li .cont {
    width: calc(100% - 140px);
  }
  .pageResearch .lists li .cont .img {
    width: 32px;
  }
  .pageResearch .lists li .cont .t {
    font-size: 16px;
    line-height: 26px;
  }
  .pageResearch .lists li a {
    width: 120px;
    height: 36px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 36px;
  }
  .pageResearch .lists li a::after {
    width: 118px;
    height: 34px;
    border-radius: 17px;
  }
}
/* pageForum */
.pageForum {
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 100px 0;
}
.pageForum .lists {
  width: 100%;
  margin-top: 50px;
}
.pageForum .lists li {
  width: 32.3333%;
  margin: 0 1.5% 1.5% 0;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2%;
  align-items: center;
  cursor: pointer;
}
.pageForum .lists li:nth-child(3n) {
  margin: 0 0 1.5% 0;
}
.pageForum .lists li .img {
  width: 42px;
  overflow: hidden;
}
.pageForum .lists li .img img {
  width: 100%;
  display: block;
}
.pageForum .lists li .t {
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: #333333;
  margin-top: 3%;
}
.pageForum .lists li a {
  display: block;
  width: 160px;
  height: 46px;
  border-radius: 23px;
  background: linear-gradient(270deg, #014AA6 0%, #0069CC 100%);
  font-size: 16px;
  line-height: 46px;
  color: #0050AD;
  text-align: center;
  transition: all 0.6s ease;
  position: relative;
  margin-top: 8%;
}
.pageForum .lists li a::after {
  content: '';
  width: 158px;
  height: 44px;
  border-radius: 22px;
  background-color: #fff;
  position: absolute;
  top: 1px;
  left: 1px;
  transition: all 0.6s ease;
}
.pageForum .lists li a span {
  position: relative;
  z-index: 1;
}
.pageForum .lists li a:hover {
  color: #fff;
}
.pageForum .lists li a:hover::after {
  opacity: 0;
}
@media (max-width: 1680px) {
  .pageForum .lists li .t {
    font-size: 20px;
    line-height: 34px;
  }
  .pageForum .lists li a {
    width: 140px;
    height: 40px;
    border-radius: 20px;
    font-size: 16px;
    line-height: 40px;
  }
  .pageForum .lists li a::after {
    width: 138px;
    height: 38px;
    border-radius: 19px;
  }
}
@media (max-width: 1480px) {
  .pageForum .lists li .img {
    width: 32px;
  }
  .pageForum .lists li .t {
    font-size: 16px;
    line-height: 26px;
  }
  .pageForum .lists li a {
    width: 120px;
    height: 36px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 36px;
  }
  .pageForum .lists li a::after {
    width: 118px;
    height: 34px;
    border-radius: 17px;
  }
}
/* pageContact */
.pageContact {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.pageContact .map {
  width: 100%;
}
.pageContact #map {
  width: 100%;
  height: 760px;
}
.pageContact .contact {
  position: absolute;
  top: 50%;
  left: calc((100% - 1560px) / 2);
  transform: translateY(-50%);
  z-index: 999;
  width: 22.1%;
  background: #fff url(../images/solid2.png) top center no-repeat;
  background-size: 100% auto;
  padding: 3.5% 2%;
  box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
}
.pageContact .contact .title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: #333333;
  position: relative;
  padding-bottom: 30px;
}
.pageContact .contact .title::after {
  content: '';
  width: 60px;
  height: 2px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
}
.pageContact .contact .cont {
  width: 100%;
  margin-top: 24px;
}
.pageContact .contact .cont .icon {
  align-items: center;
}
.pageContact .contact .cont .icon .iconfont {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-image: linear-gradient(180deg, #0069CC 0%, #014AA6 100%);
  font-size: 16px;
  line-height: 36px;
  text-align: center;
  color: #fff;
  margin-right: 16px;
}
.pageContact .contact .cont .icon p {
  font-size: 18px;
  line-height: 22px;
  color: rgba(51, 51, 51, 0.8);
}
.pageContact .contact .cont .t {
  font-size: 20px;
  line-height: 24px;
  color: #333333;
  margin-top: 12px;
}
@media (max-width: 1680px) {
  .pageContact #map {
    height: 700px;
  }
  .pageContact .contact {
    left: calc((100% - 1400px) / 2);
  }
  .pageContact .contact .title {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 20px;
  }
  .pageContact .contact .title::after {
    width: 50px;
  }
  .pageContact .contact .cont .icon .iconfont {
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  .pageContact .contact .cont .icon p {
    font-size: 16px;
    line-height: 20px;
  }
  .pageContact .contact .cont .t {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 1480px) {
  .pageContact #map {
    height: 660px;
  }
  .pageContact .contact {
    left: calc((100% - 1200px) / 2);
  }
  .pageContact .contact .title {
    font-size: 16px;
    line-height: 24px;
  }
  .pageContact .contact .title::after {
    width: 40px;
  }
  .pageContact .contact .cont .icon .iconfont {
    width: 24px;
    height: 24px;
    font-size: 10px;
    line-height: 24px;
    margin-right: 10px;
  }
  .pageContact .contact .cont .icon p {
    font-size: 14px;
    line-height: 18px;
  }
  .pageContact .contact .cont .t {
    font-size: 14px;
    line-height: 18px;
  }
}
/* pageDeatil */
.pageDeatil {
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
  background-color: #fff;
}
.pageDeatil .title {
  text-align: center;
  font-size: 28px;
  line-height: 38px;
  color: #333;
  font-weight: bold;
  margin-bottom: 30px;
}
.pageDeatil .date {
  color: #999;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px dashed #ddd;
  padding: 0 0 30px;
  margin-bottom: 40px;
}
.pageDeatil .date span {
  margin: 0 20px;
}
.pageDeatil .text {
  font-size: 18px;
  line-height: 38px;
  color: #333;
}
.pageDeatil .text img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.pageDeatil .text video {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.pageDeatil .box {
  width: 100%;
  border-top: 1px dashed #ddd;
  padding: 40px 0 0;
  margin-top: 40px;
}
.pageDeatil .box p {
  margin-bottom: 20px;
}
.pageDeatil .box a {
  color: #999;
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  transition: all 0.6s ease;
}
.pageDeatil .box a:hover {
  color: #0050AD;
}
@media (max-width: 1680px) {
  .pageDeatil {
    padding: 60px 0;
  }
  .pageDeatil .title {
    font-size: 24px;
    line-height: 38px;
  }
  .pageDeatil .text {
    font-size: 16px;
    line-height: 32px;
  }
}
