.w1680 {
  width: 1680px;
  max-width: 92%;
  margin: 0 auto;
}

body{
	background-color: #fff;
}

.w1440 {
  width: 1440px;
  max-width: 92%;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  body {
    padding-top: 1rem;
  }
}

video {
  width: 50%;
}

@media (max-width: 900px) {
  video {
    width: 90%;
  }
}

.searchBox {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  display: none;
}

.searchBox .ipt {
  width: 100%;
  height: 2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.searchBox .ipt .inpZ {
  width: 6rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(94, 94, 94, 0.261);
  padding: 0.5rem 0;
  padding: 0.1rem 0;
  justify-content: center;
}

.searchBox .ipt .inpZ input {
  width: 5rem;
  border: none;
}

.searchBox .ipt .inpZ .submit {
  width: 30px;
  height: 30px;
  background-image: url(../images/search1.png);
  background-size: 100% 100%;
  background-color: rgba(0, 0, 0, 0);
}

header {
  width: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

header .layout {
  width: 100%;
  height: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  width: auto;
  height: 0.56rem;
  display: block;
}

header .logo .logo2 {
  display: none;
}

header .column {
  display: flex;
  align-items: center;
}

header .hs {
  width: 1.5rem;
  /* border-radius: 50%; */
  /* overflow: hidden; */
	margin-right: 0.15rem;
}
header .hs img {
  width: 100%;
}

header .nav {
  display: flex;
  color: #fff;
  height: 100%;
}

header .nav .tag {
  line-height: 1rem;
  padding: 0 0.2rem;
	padding: 0 0.15rem;
  position: relative;
}



header .nav .tag .tag_a {
  position: relative;
  transition: all 0.3s;
  white-space: nowrap;
}
header .nav .tag .tag_a.on{
    color: #b62841;
}
header .nav .tag .tag_a.on::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #b62841;
  transition: all 0.3s;
}
 
@media (max-width:1300px) {
	header .nav .tag .tag_a{
		font-size: 14px;
	}
}

header .nav .tag .tag_a::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #b62841;
  transition: all 0.3s;
}

header .nav .tag .tag_a:hover {
  color: #b62841;
}

header .nav .tag .tag_a:hover::after {
  width: 100%;
}

header .nav .tag .child {
  position: absolute;
  bottom: 0.1rem;
  left: 50%;
  background-color: #ffffff;
  color: #000;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 30px));
  transition: all 0.3s;
  padding: 5px 0;
}

header .nav .tag .child::after {
  content: "";
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 9px solid #fff;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -90%);
}

header .nav .tag .child .child_a {
  width: auto;
  display: block;
  line-height: 1;
  padding: 15px 30px;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s;
}

@media (max-width:1300px) {
	header .nav .tag .child .child_a{
		font-size: 12px;
	}
}

header .nav .tag .child .child_a::after {
  content: "";
  width: 0px;
  height: 2px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #b62841;
  transition: all 0.3s;
}

header .nav .tag .child .child_a:hover {
  color: #b62841;
}

header .nav .tag .child .child_a:hover::after {
  width: calc(100% - 60px);
}

header .nav .tag:hover .child {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, 100%);
}

@media (max-width: 1000px) {
  header .nav {
    display: none;
  }
}

header .btnBox {
  display: flex;
  align-items: center;
}

header .btnBox .language {
  color: #fff;
  line-height: 1;
  padding: 0.3rem;
	padding: 0.3rem 0.2rem;
  white-space:nowrap;
}

header .btnBox .search {
  color: #fff;
  line-height: 1;
  margin-left: 0.2rem;
	margin-left: 0.1rem;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 23px;
  padding: 0.15rem 0.34rem;
  cursor: pointer;
}

header .btnBox .search img {
  width: 0.8888888889em;
  height: auto;
  margin-right: 0.1rem;
}

header .btnBox .search .search2 {
  display: none;
}



header .btnBox .close {
  width: 28px;
  z-index: 12;
  margin-left: 0.2rem;
  display: none;
}

header .btnBox .close span {
  display: block;
  height: 2px;
  background: #fff;
  margin-bottom: 8px;
  border-radius: 2px;
  transform-origin: right center;
  transition: all 0.3s;
  width: 100%;
}

header .btnBox .close span:nth-child(3) {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
	header .btnBox .search{
		display: none;
	}
  header .btnBox .close {
    display: block !important;
  }

}

header .btnBox .open span {
  background: #fff;
}

header .btnBox .open span:nth-of-type(1) {
  transform: rotate(-45deg);
}

header .btnBox .open span:nth-of-type(2) {
  width: 0;
}

header .btnBox .open span:nth-of-type(3) {
  transform: rotate(45deg);
}

header .h-nav {
  display: block;
  position: fixed;
  height: calc(100vh - 1rem);
	height: auto;
	max-height: calc(100vh - 1rem);
  width: 70%;
	width: 100%;
  background-color: #ffffff;
  top: 1rem;
  right: -70%;
	right: -100%;
  transition: all 0.5s;
  color: #000000;
  z-index: 20;
  background-color: #515151;
}

header .h-nav .HnavBox {
  line-height: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  color: #ffffff;
}

header .h-nav .HnavBox .Aicon {
  display: flex;
}

header .h-nav .HnavBox .Aicon:hover {
  background-color: #6b6b6b;
  color: #fff;
}

header .h-nav .HnavBox .Aicon .onc {
  padding: 0 0.5rem;
  width: 100%;
  line-height: 40px;
  display: block;
  color: #fff;
}

header .h-nav .HnavBox .Aicon .span1 {
  font-size: 26px;
  padding: 0 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}

header .h-nav .HnavBox .Aicon .span1 img {
  width: 1em;
}

header .h-nav .HnavBox .Aicon .span2 {
  font-size: 26px;
  padding: 0 0.5rem;
  cursor: pointer;
  display: none;
}

header .h-nav .HnavBox .Aicon .span2 img {
  width: 1em;
}

header .h-nav .HnavBox .hide {
  display: none;
}

header .h-nav .HnavBox .hide li {
  padding: 0 0.7rem;
  line-height: 40px;
}

header .h-nav .HnavBox .hide li:hover {
  background-color: #6b6b6b;
}

header .h-nav .HnavBox .hide a{
    display: block;
}

header .h-nav .k .Aicon .span1 {
  display: none;
}

header .h-nav .k .Aicon .span2 {
  display: flex;
  align-items: center;
}

header .mask {
  position: fixed;
  top: 1rem;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4509803922);
  z-index: 10;
  display: none;
}

header .h-search {
  padding:0.4rem  0.3rem;
}
header .h-search .inp {
  position: relative;
  border-radius: 1rem;
  border: 1px solid #fff;
}
header .h-search input {
  width: 100%;
  height: 0.8rem;
  text-indent: 20px;
  color: #fff;
  border: none;
  background-color: transparent;
}
header .h-search .sub {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background-image: url(../images/search1.png);
  background-repeat: no-repeat;
  background-size: 50%;
  background-position: center;
  cursor: pointer;
}


@media (max-width: 1000px) {
  header {
    background-color: #fff;
    box-shadow: 0px 0px 7px 0px rgba(202, 216, 230, 0.53);
  }

  header .logo .logo1 {
    display: none;
  }

  header .logo .logo2 {
    display: block;
  }

  header .nav {
    color: #000;
  }

  header .btnBox .language {
    color: #000;
  }

  header .btnBox .search {
    color: #000;
    background-color: #f7f7f7;
  }

  header .btnBox .search .search1 {
    display: none;
  }

  header .btnBox .search .search2 {
    display: block;
  }

  header .btnBox .close span {
    background: #000;
  }

  header .btnBox .open span {
    background: #000;
  }
}

.onHeader {
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(202, 216, 230, 0.53);
}

.onHeader .logo .logo1 {
  display: none;
}

.onHeader .logo .logo2 {
  display: block;
}

.onHeader .nav {
  color: #000;
}

.onHeader .btnBox .language {
  color: #000;
}

.onHeader .btnBox .search {
  color: #000;
  background-color: #f7f7f7;
}

.onHeader .btnBox .search .search1 {
  display: none;
}

.onHeader .btnBox .search .search2 {
  display: block;
}

.onHeader .btnBox .close span {
  background: #000;
}

.onHeader .btnBox .open span {
  background: #000;
}

.onHeader2 {
  background-color: #fff;
  box-shadow: 0px 0px 7px 0px rgba(202, 216, 230, 0.53);
}
@media (prefers-color-scheme: dark) {
	.onHeader2 {
			background-color: #fff !important;
    }
}
.onHeader2 .logo .logo1 {
  display: none;
}
.onHeader2 .logo .logo2 {
  display: block;
}
.onHeader2 .nav {
  color: #000;
}
.onHeader2 .btnBox .language {
  color: #000;
}
.onHeader2 .btnBox .search {
  color: #000;
  background-color: #f7f7f7;
}
.onHeader2 .btnBox .search .search1 {
  display: none;
}
.onHeader2 .btnBox .search .search2 {
  display: block;
}
.onHeader2 .btnBox .close span {
  background: #000;
}
.onHeader2 .btnBox .open span {
  background: #000;
}

footer {
  background-color: #515151;
	background-color: #b62841;
  padding-top: 0.8rem;
}

footer .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.4rem;
}

footer .top .nav {
  display: flex;
}

footer .top .nav ul {
  margin-left: 0.5rem;
  width: 7em;
}

footer .top .nav ul:nth-child(1) {
  margin-left: 0;
}

footer .top .nav .h1 {
  white-space: nowrap;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

footer .top .nav .h2 {
  color: rgba(255, 255, 255, 0.5);
  padding: 0.75em 0;
}

/* footer .top .nav .h2 a {
  white-space: nowrap;
} */

footer .top .nav .h2 a:hover {
  text-decoration: underline;
}

footer .top .text {
  padding-left: 1.9rem;
}

footer .top .text .p1 {
  color: rgba(255, 255, 255, 0.5);
}

footer .top .text .p2 {
  color: #ffffff;
  margin: 0.1rem 0;
}

footer .top .text .p3 {
  line-height: 225%;
  color: rgba(255, 255, 255, 0.5);
}

footer .top .text .iconList {
  display: flex;
  margin-top: 0.3rem;
}

footer .top .text .iconList .icon {
  height: 17px;
  min-width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 33px;
  position: relative;
}

footer .top .text .iconList .icon:nth-child(1) {
  margin-left: 0;
}

footer .top .text .iconList .icon .img {
  width: auto;
  height: 100%;
}

footer .top .text .iconList .icon .img2 {
  display: none;
}

footer .top .text .iconList .icon .code {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 5px;
  background-color: #fff;
  transform: translate(-50%, calc(-100% - 15px));
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}

footer .top .text .iconList .icon .code::after {
  content: "";
  display: block;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 9px solid #fff;
  z-index: 3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 90%);
}

footer .top .text .iconList .icon .code img {
  width: 100px;
  height: auto;
  max-width: none;
}

footer .top .text .iconList .icon:hover .img1 {
  display: none;
}

footer .top .text .iconList .icon:hover .img2 {
  display: block;
}

footer .top .text .iconList .icon:hover .code {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, calc(-100% - 15px));
}



@media (max-width: 1200px) {
  footer .top .text .iconList {
    /* justify-content: center; */
  }

	footer .top .text .iconList .icon .code::after{
		display: none !important
	}

	footer .top .text .iconList .icon:hover .code {
		opacity: 1;
		pointer-events: all;
		left: 0;
		transform: translate(0, calc(-100% - 15px)) !important;
	}
}

@media (max-width: 1200px) {
  footer .top .nav {
    display: none;
  }

  footer .top .text {
    padding-left: 0;
  }
}

footer .bottom {
  color: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0;
}

.page1 .mySwiper1 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page1 .mySwiper1 .swiper-slide {
  position: relative;
  width: 100%;
  max-height: 100%;
  height: auto;
}

.page1 .mySwiper1 .swiper-slide  .imgs{
	position: relative;
	padding-top: calc(920 / 1920 * 100%);
	overflow: hidden;
	min-height: 200px;
}

.page1 .mySwiper1 .swiper-slide .banner {
  width: 100%;
  height: 100%;

  -o-object-fit: cover;
  object-fit: cover;

	position: absolute;
left: 0;
top: 0;
}

.page1 .mySwiper1 .swiper-slide .text {
  max-width: 100%;
  width: 1200px;
	width: 1400px;
  text-align: center;
  position: absolute;
  top: 21.2765957447%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  line-height: 1.5;
}

.page1 .mySwiper1 .swiper-slide .text1 {
  top: 32.276596%;
  left: auto;
  transform: translateX(0);
  right: 0;
}

.page1 .mySwiper1 .swiper-slide .text2 {
  top: 57.276596%;
  left: 5%;
  transform: translateX(0);
  text-align: left;
}

@media (max-width: 700px) {
  .page1 .mySwiper1 .swiper-slide .text {
    font-size: 20px;
		font-size: 16px;
  }
}

.page1 .mySwiper1 .swiper-pagination {
  bottom: 8.5106382979%;
}

.page1 .mySwiper1 .swiper-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 1;
  background-color: #5d6375;
}

.page1 .mySwiper1 .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

@media (max-width: 1200px) {
  .page1 .mySwiper1 {
    padding-top: 1rem;
  }
}

.page1 .product {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
}

.page1 .product .left {
  width: 20.8333333333%;
  padding: 2.3958333333% 0;
  height: 100%;
  background-color: #b62841;
  padding-top: calc(2.3958333333% + 1rem);
}

.page1 .product .left .mySwiper2 {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page1 .product .left .mySwiper2 .swiper-slide {
  width: 43%;
  height: auto;
  padding-top: 43%;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  opacity: 0.2;
}

.page1 .product .left .mySwiper2 .swiper-slide img {
  max-width: 80%;
  max-height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
}

.page1 .product .left .mySwiper2 .swiper-slide-active {
  opacity: 1;
}

.page1 .product .rifht {
  width: 79.1666666667%;
  height: 100%;
  padding: 0 4.1666666667%;
  padding-top: 1rem;
  display: flex;
  align-items: center;
}

.page1 .product .rifht .swiperBox {
  width: 100%;
  height: auto;
  display: none;
}

.page1 .product .rifht .swiperBox .mySwiper {
  display: none;
}

.page1 .product .rifht .onSwiperBox {
  display: block;
}

.page1 .product .rifht .onSwiperBox .mySwiper {
  display: block;
}

.page1 .product .rifht .mySwiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page1 .product .rifht .mySwiper .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.page1 .product .rifht .mySwiper .swiper-slide .img {
  width: 55.1470588235%;
  padding-top: 43.3823529412%;
  position: relative;
}

.page1 .product .rifht .mySwiper .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page1 .product .rifht .mySwiper .swiper-slide .text {
  flex: 1;
  padding-left: 5.5147058824%;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .h2 {
  margin-top: 0.65rem;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .h3 {
  line-height: 1.875em;
  color: #888888;
  margin-top: 0.2rem;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .btn {
  display: inline-flex;
  align-items: center;
  background-color: #b62841;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .btn span {
  line-height: 1;
  color: #fff;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .btn:hover {
  box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page1 .product .rifht .mySwiper .swiper-slide .text .pagination {
  margin-top: 1.1rem;
}

.page1 .product .rifht .mySwiper .swiper-slide .text .pagination .page {
  color: #b62841;
}

.page1 .product .rifht .mySwiper .swiper-button {
  display: flex;
  position: absolute;
  bottom: 10.1694915254%;
  left: 24.4852941176%;
  z-index: 2;
}

.page1 .product .rifht .mySwiper .swiper-button .button {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background-color: #2b2957;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page1 .product .rifht .mySwiper .swiper-button .button img {
  width: 0.07rem;
  height: auto;
}

.page1 .product .rifht .mySwiper .swiper-button .button:hover {
  background-color: #b62841;
}

.page1 .product .rifht .mySwiper .swiper-button .button-next {
  margin-right: 0.12rem;
}

.page1 .product .rifht .mySwiper .swiper-button .button-next img {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .page1 .product .left {
    width: 100%;
    padding: 20px 0;
  }

  .page1 .product .left .mySwiper2 .swiper-slide {
    width: 100px;
    padding-top: 100px;
  }

  .page1 .product .rifht {
    width: 100%;
    padding: 4.1666666667%;
  }
}

@media (max-width: 900px) {
  .page1 .product .left {
    width: 100%;
    padding: 20px 0;
  }

  .page1 .product .left .mySwiper2 .swiper-slide {
    width: 70px;
    padding-top: 70px;
  }

  .page1 .product .rifht {
    width: 100%;
    padding: 4.1666666667%;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .img {
    width: 100%;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text {
    padding-left: 0;
    padding: 20px 0;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .h2 {
    margin-top: 0.65rem;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .h3 {
    line-height: 1.875em;
    color: #888888;
    margin-top: 0.2rem;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .btn {
    display: inline-flex;
    align-items: center;
    background-color: #b62841;
    padding: 7px;
    padding-left: 25px;
    border-radius: 25px;
    margin-top: 0.5rem;
    transition: all 0.3s;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .btn span {
    line-height: 1;
    color: #fff;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .btn img {
    margin-left: 0.35rem;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .btn:hover {
    box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .pagination {
    margin-top: 1.1rem;
  }

  .page1 .product .rifht .mySwiper .swiper-slide .text .pagination .page {
    color: #b62841;
  }

  .page1 .product .rifht .mySwiper .swiper-button {
    display: none;
  }
}

@media (max-width: 500px) {
  .page1 .product .left {
    padding: 10px 0;
  }

  .page1 .product .left .mySwiper2 .swiper-slide {
    width: 60px;
    padding-top: 60px;
  }
}

.page1 .about {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
      align-items: center;
  padding-top: 1rem;
}
.page1 .about .abox {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.page1 .about .left {
  width: 50%;
  height: 100%;
  /*display: flex;*/
  /*flex-direction: column;*/
  /*justify-content: center;*/
  /*align-items: flex-start;*/
}

.page1 .about .left .text {
  padding: 0 12.5%;
}

.page1 .about .left .text .h2 {
  color: #b62841;
  margin-top: 0.7rem;
}

.page1 .about .left .text .h3 {
  line-height: 1.6666666667em;
  color: #666666;
  margin-top: 0.18rem;
}

.page1 .about .left .text .btn {
  display: inline-flex;
  align-items: center;
  background-color: #b62841;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.page1 .about .left .text .btn span {
  line-height: 1;
  color: #fff;
}

.page1 .about .left .text .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page1 .about .left .text .btn:hover {
  box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page1 .about .left .tagBox {
  width: 100%;
  display: flex;
  background-color: #b62841;
  margin-top: 0.7rem;
  padding: 0.38rem 0;
}

.page1 .about .left .tagBox .tag {
  flex: 1;
  text-align: center;
  position: relative;
}

.page1 .about .left .tagBox .tag::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
}

.page1 .about .left .tagBox .tag:nth-child(1)::after {
  display: none;
}

.page1 .about .left .tagBox .tag .icon {
  width: auto;
  height: 0.56rem;
  display: inline-block;
}

.page1 .about .left .tagBox .tag .name {
  margin-top: 0.2rem;
  color: #ffffff;
}

/*.page1 .about .right {*/
/*  width: 50%;*/
/*  height: auto;*/
/*}*/

/*.page1 .about .right img {*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  -o-object-fit: cover;*/
/*  object-fit: cover;*/
/*}*/

.page1 .about .right {
  width: 50%;
	width: 45%;
  height: auto;
	position: relative;
	background-color: #000;
}

.page1 .about .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
	position: absolute;
}

.page1 .about .right .vdo {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	position: absolute;
}

.page1 .about .right .vtn {
	position: absolute;
	left: 5%;
	top: 50%;
	transform: translate(0%, -50%);
	/* bottom: 5%; */
	color: #fff;
	border-radius: 1rem;
	padding: 0.18rem 0.25rem;
	background: rgba(255, 255, 255, 0.15);
	border: 2px solid #ffffff;
	/* border-radius: 50%;
	cursor: pointer;
	width: 1em;
	height: 1em;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url(../images/icon-2.png); */
}


@media (max-width: 1200px) {
  .page1 .about {
    padding-top: 0;
    flex-direction: column-reverse;
  }

  .page1 .about .left {
    width: 100%;
    margin-top: 20px;
  }

  .page1 .about .right {
    width: 100%;
  }
  
  .page1 .about .right .vdo{
      position: relative;
  }
}

.page1 .serve {
  padding-top: 1rem;
  width: 100%;
  height: 100%;
}

.page1 .serve .mySwiper01 {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.page1 .serve .mySwiper01 .swiper-slide {
  width: 76.5625%;
  height: auto;
  padding: 6.25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.page1 .serve .mySwiper01 .swiper-slide .mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.page1 .serve .mySwiper01 .swiper-slide .text {
  display: none;
}

.page1 .serve .mySwiper01 .swiper-slide .h2 {
  margin-top: 0.65rem;
}

.page1 .serve .mySwiper01 .swiper-slide .h3 {
  line-height: 1.875em;
  margin-top: 0.2rem;
}

.page1 .serve .mySwiper01 .swiper-slide .btn {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.page1 .serve .mySwiper01 .swiper-slide .btn span {
  line-height: 1;
  color: #000;
}

.page1 .serve .mySwiper01 .swiper-slide .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page1 .serve .mySwiper01 .swiper-slide .btn:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page1 .serve .mySwiper01 .swiper-slide-active .mask {
  display: none;
}

.page1 .serve .mySwiper01 .swiper-slide-active .text {
  display: block;
}

.page1 .serve .mySwiper01 .swiper-button-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #232058;
  left: 76.5625%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -100%);
  margin-top: 0;
  background-image: none;
  display: flex; align-items: center; justify-content: center;
}

.page1 .serve .mySwiper01 .swiper-button-next::after {
  content: "";
  background-image: url(../images/icon2.png);
  width: 7px;
  height: 13px;
  background-size: 100% 100%;
}

.page1 .serve .mySwiper01 .swiper-button-next:hover {
  background-color: #b62841;
}

.page1 .serve .mySwiper01 .swiper-button-prev {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #232058;
  left: 76.5625%;
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translate(-50%, 6px);
  margin-top: 0;
  background-image: none;
  display: flex; align-items: center; justify-content: center;
}

.page1 .serve .mySwiper01 .swiper-button-prev::after {
  content: "";
  background-image: url(../images/icon2.png);
  transform: rotate(180deg);
  width: 7px;
  height: 13px;
  background-size: 100% 100%;
}

.page1 .serve .mySwiper01 .swiper-button-prev:hover {
  background-color: #b62841;
}

.page1 .serve .mySwiper01 .swiper-num {
  display: inline-block;
  width: auto;
  color: #fff;
  position: absolute;
  bottom: 13.2558139535%;
  left: 6.25%;
  z-index: 2;
}

@media (max-width: 1200px) {
  .page1 .serve .mySwiper01 .swiper-slide {
    width: 100%;
    padding-bottom: 1.5rem;
  }

  .page1 .serve .mySwiper01 .swiper-slide .mask {
    display: none;
  }

  .page1 .serve .mySwiper01 .swiper-button-next,
  .page1 .serve .mySwiper01 .swiper-button-prev {
    display: none;
  }

  .page1 .serve .mySwiper01 .swiper-num {
    bottom: 0.5rem;
  }
}

@media (max-width: 1200px) {
  .page1 .serve {
    padding-top: 0;
  }
}

.page1 .news {
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  background-image: url(../images/banner10.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page1 .news .layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page1 .news .title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page1 .news .title .t1 {
  line-height: 1;
}

.page1 .news .title .btn {
  display: inline-flex;
  align-items: center;
  background-color: #b62841;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  transition: all 0.3s;
}

.page1 .news .title .btn span {
  line-height: 1;
  color: #fff;
}

.page1 .news .title .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page1 .news .title .btn:hover {
  box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page1 .news .mySwiper02 {
  overflow: hidden;
  position: relative;
  margin-top: 0.8rem;
}

.page1 .news .mySwiper02 .swiper-slide {
  padding-bottom: 0.53rem;
}

.page1 .news .mySwiper02 .swiper-slide .img {
  width: 100%;
  padding-top: 60.8365019011%;
  position: relative;
}

.page1 .news .mySwiper02 .swiper-slide .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page1 .news .mySwiper02 .swiper-slide .img .time {
  background-color: #b62841;
  position: absolute;
  left: 0;
  top: 6.25%;
  padding: 0.17rem 0.2rem;
  color: #ffffff;
  z-index: 2;
  border-radius: 0 0.4rem 0.4rem 0;
}

.page1 .news .mySwiper02 .swiper-slide .h1 {
  margin-top: 0.35rem;
}

.page1 .news .mySwiper02 .swiper-slide .h2 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.16rem;
}

.page1 .news .mySwiper02 .swiper-slide:hover .h1 {
  color: #b62841;
}

.page1 .news .mySwiper02 .swiper-slide:hover .h2 {
  color: #b62841;
}

.page1 .news .mySwiper02 .swiper-pagination {
  top: auto;
  bottom: 0;
  background: #d1d5e2;
}

.page1 .news .mySwiper02 .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #b62841;
}

.page1 .cooperate {
  background-image: url(../images/banner32.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 1rem 0;
  width: 100%;
  height: 100%;
}

.page1 .cooperate .layout {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page1 .cooperate .title {
  text-align: center;
}

.page1 .cooperate .mySwiper03 {
  margin-top: 0.6rem;
  overflow: hidden;
  position: relative;
  padding-bottom: 0.7rem;
}

.page1 .cooperate .mySwiper03 .swiper-slide {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  height: auto;
}

.page1 .cooperate .mySwiper03 .swiper-slide .icon {
  width: 15.5952380952%;
  height: 0;
  padding-top: 8.3333333333%;
  position: relative;
  margin-left: 1.2857142857%;
  margin-bottom: 1.2857142857%;
}

.page1 .cooperate .mySwiper03 .swiper-slide .icon:nth-child(6n+1) {
  margin-left: 0;
}

.page1 .cooperate .mySwiper03 .swiper-slide .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 700px) {
  .page1 .cooperate .mySwiper03 .swiper-slide .icon {
    width: 32%;
    padding-top: 16.6666666667%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  .page1 .cooperate .mySwiper03 .swiper-slide .icon:nth-child(6n+1) {
    margin-left: 2%;
  }

  .page1 .cooperate .mySwiper03 .swiper-slide .icon:nth-child(3n+1) {
    margin-left: 0;
  }
}

.page1 .cooperate .mySwiper03 .swiper-pagination-bullet {
  background-color: #bbbbbb;
  opacity: 1;
}

.page1 .cooperate .mySwiper03 .swiper-pagination-bullet-active {
  background-color: #bd3d54;
}

.page1 .fp-tableCell {
  display: block;
}

@media (max-width: 1200px) {
  .page1 .fp-section {
    height: auto !important;
  }

  .page1 .fp-section .fp-tableCell {
    height: auto !important;
  }
}

.page2 .banner {
  width: 100%;
  padding-top: 34.375%;
 
	/*padding-top: 18%;*/
  position: relative;
}

.page2 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .nav .layout {
  display: flex;
}

.page2 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page2 .nav .layout .tag:hover {
  color: #b62841;
}

.page2 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page2 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page2 .system {
  background-color: #f7f8fa;
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

.page2 .system .h1 {
  text-align: center;
}

.page2 .system .list {
  display: flex;
  flex-wrap: wrap;
}

.page2 .system .list .item {
  width: 14.9305555556%;
  margin-left: 2.0833333333%;
  background-color: #ffffff;
  text-align: center;
  padding-top: 0.7rem;
  padding-bottom: 0.6rem;
  margin-top: 0.9rem;
  position: relative;
}

.page2 .system .list .item:nth-child(1) {
  margin-left: 0;
}

.page2 .system .list .item .icon {
  width: auto;
  height: 0.8rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page2 .system .list .item .p1 {
  margin-bottom: 0.22rem;
  padding: 0 0.5em;
}

.page2 .system .list .item .p2 {
  line-height: 1.8571428571em;
  color: #555555;
  padding: 0 0.5em;
}

@media (max-width: 1200px) {
  .page2 .system .list .item {
    width: 32%;
    margin-left: 2%;
  }

  .page2 .system .list .item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  .page2 .system .list .item {
    width: 48%;
    margin-left: 4% !important;
  }

  .page2 .system .list .item:nth-child(2n+1) {
    margin-left: 0 !important;
  }
}

.page2 .team {
  padding-top: 0.7rem;
  padding-bottom: 1rem;
}

.page2 .team .h1 {
  text-align: center;
  line-height: 1;
}

.page2 .team .content {
  margin-top: 0.6rem;
}

.page2 .team .content .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.page2 .team .content .item:nth-child(2n+2) {
  flex-direction: row-reverse;
}

.page2 .team .content .item .text {
  width: 45.8333333333%;

	line-height: 1.75;
}

.page2 .team .content .item .text .t1 {
  display: flex;
  align-items: center;
  margin-bottom: 0.21rem;
}

.page2 .team .content .item .text .t1 img {
  margin-right: 0.2rem;
  width: auto;
  height: 2em;
}

.page2 .team .content .item .text .p1 {
  line-height: 1.75em;
}

.page2 .team .content .item .text .drop {
  padding-left: 0.22rem;
  position: relative;
}

.page2 .team .content .item .text .drop::after {
  content: "";
  display: block;
  width: 0.09rem;
  height: 0.09rem;
  border-radius: 50%;
  background-color: #bd3d54;
  position: absolute;
  top: 0.6em;
  left: 0;
}

.page2 .team .content .item .imgs {
  width: 50%;
}

.page2 .team .content .item .img {
  position: relative;
  padding-top: 54.1666666667%;
}

.page2 .team .content .item .img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s;
}

@media (max-width: 1000px) {
  .page2 .team .content .item .text {
    width: 100%;
    padding: 0.5rem 0;
  }

  .page2 .team .content .item .imgs {
    width: 100%;
  }
}

.page2 .cooperate {
  background-color: #f7f8fa;
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

.page2 .cooperate .h1 {
  text-align: center;
  line-height: 1;
}

.page2 .cooperate .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.6rem;
}

.page2 .cooperate .list .icon {
  width: 15.5952380952%;
  height: 0;
  padding-top: 8.3333333333%;
  position: relative;
  margin-left: 1.2857142857%;
  margin-bottom: 1.2857142857%;
}

.page2 .cooperate .list .icon:nth-child(6n+1) {
  margin-left: 0;
}

.page2 .cooperate .list .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 700px) {
  .page2 .cooperate .list .icon {
    width: 32%;
    padding-top: 16.6666666667%;
    margin-left: 2%;
    margin-bottom: 2%;
  }

  .page2 .cooperate .list .icon:nth-child(6n+1) {
    margin-left: 2%;
  }

  .page2 .cooperate .list .icon:nth-child(3n+1) {
    margin-left: 0;
  }
}

.page2 .achievement {
  display: flex;
  flex-wrap: wrap;
}

.page2 .achievement .left {
  width: 28.125%;
  padding-left: 12.5%;
  padding-right: 3%;
  padding-top: 1.4rem;
  background-color: #b62841;
  padding-bottom: 2.25rem;
}

.page2 .achievement .left .h1 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.page2 .achievement .left .tag {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 0.22rem 0.1rem;
  color: #ffffff;
  line-height: 1;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  margin-top: 0.4rem;
  cursor: pointer;
}

.page2 .achievement .left .tag:hover {
  color: #b62841;
  background-color: #ffffff;
}

.page2 .achievement .left .onTag {
  color: #b62841;
  background-color: #ffffff;
}

.page2 .achievement .right {
  width: 71.875%;
  padding-left: 3.125%;
  padding-right: 12.5%;
  padding-top: 0.75rem;
  padding-bottom: 0.7rem;
}

.page2 .achievement .right .p1 {
  color: #555555;
  line-height: 1.75em;
}

.page2 .achievement .rbox {
  width: 100%;
  position: absolute;
  left: -200vw;
}

.page2 .achievement .rbox.show {
  position: relative;
  left: 0;
}

.page2 .achievement .mySwiper1 {
  overflow: hidden;
  position: relative;
  margin-top: 0.4rem;
  padding-bottom: 0.4rem;
}

.page2 .achievement .mySwiper1 .swiper-slide {
  padding-top: 33.2407407407%;
  position: relative;
  background-color: #f7f8fa;
}

.page2 .achievement .mySwiper1 .swiper-slide img {
  max-width: 80%;
  max-height: 80%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page2 .achievement .mySwiper1 .swiper-pagination {
  bottom: 0;
}

.page2 .achievement .mySwiper1 .swiper-pagination-bullet {
  background-color: #b62841;
}

@media (max-width: 900px) {
  .page2 .achievement .left {
    width: 100%;
    padding: 4%;
  }

  .page2 .achievement .left .h1 {
    margin-bottom: 0;
  }

  .page2 .achievement .right {
    width: 100%;
    padding: 4%;
  }

  .page2 .achievement .right .mySwiper1 .swiper-slide {
    padding-top: 107.8078078078%;
  }

  .page2 .achievement .tags {
    text-align: center;
  }
}

.page2 .institution {
  padding-top: 1rem;
  padding-bottom: 1.2rem;
  background-color: #f7f8fa;
}

.page2 .institution .layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}

.page2 .institution .text {
  width: 38.1944444444%;

	line-height: 1.5;
}

.page2 .institution .text .h1 {
  margin-bottom: 0.5rem;
	line-height: 1.2;
}

.page2 .institution .text .p2 {
  color: #b62841;
  font-weight: bold;
  margin-top: 0.3rem;
  margin-bottom: 0.1rem;
}

.page2 .institution .text .p3 {
  color: #555555;
  line-height: 1.75em;
}

.page2 .institution .imgList {
  width: 55.5555555556%;
  display: flex;
}

.page2 .institution .imgList .item {
  width: 32.5%;
  margin-left: 1.25%;
}

.page2 .institution .imgList .item:nth-child(1) {
  margin-left: 0;
}

.page2 .institution .imgList .item .img1 {
  width: 100%;
  padding-top: 69.2307692308%;
  margin-bottom: 3.8461538462%;
  position: relative;
}

.page2 .institution .imgList .item .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .institution .imgList .item .img2 {
  width: 100%;
  padding-top: 115.3846153846%;
  position: relative;
}

.page2 .institution .imgList .item .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .institution .imgList .item .img3 {
  width: 100%;
  padding-top: 92.3076923077%;
  margin-bottom: 3.8461538462%;
  position: relative;
}

.page2 .institution .imgList .item .img3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .institution .imgList .item .img4 {
  width: 100%;
  padding-top: 92.3076923077%;
  position: relative;
}

.page2 .institution .imgList .item .img4 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .institution .imgList .item .img5 {
  width: 100%;
  padding-top: 69.2307692308%;
  margin-bottom: 3.8461538462%;
  position: relative;
}

.page2 .institution .imgList .item .img5 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page2 .institution .imgList .item .img6 {
  width: 100%;
  padding-top: 115.3846153846%;
  position: relative;
}

.page2 .institution .imgList .item .img6 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 1000px) {
  .page2 .institution .text {
    width: 100%;
  }

  .page2 .institution .imgList {
    width: 100%;
    margin-top: 0.5rem;
  }
}

.page3 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
	/*padding-top: 18%;*/
  position: relative;
}

.page3 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page3 .nav .layout {
  display: flex;
}

.page3 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page3 .nav .layout .tag:hover {
  color: #b62841;
}

.page3 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page3 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page3 .content {
  display: flex;
  flex-wrap: wrap;
}

.page3 .content .left {
  width: 30.2083333333%;
  padding: 0.6rem 0;
  padding-left: 4%;
  padding-right: 1.5625%;
  display: flex;
  justify-content: flex-end;
}

.page3 .content .left .menuBox {
  width: 310px;
  max-width: 100%;
}

.page3 .content .left .title {
  display: flex;
}

.page3 .content .left .title .tag {
  margin-right: 0.2rem;
  line-height: 1;
}

.page3 .content .left .title .onTag {
  color: #b62841;
}

.page3 .content .left .menu {
  margin-top: 0.5rem;
}

.page3 .content .left .menu .menu-item {
  margin-bottom: 0.4rem;
}

.page3 .content .left .menu .menu-item .father {
  display: flex;
  justify-content: space-between;
  line-height: 1;
  color: #333333;
  cursor: pointer;
}

.page3 .content .left .menu .menu-item .father .icon {
  width: 0.14rem;
  min-width: 12px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.page3 .content .left .menu .menu-item .father .icon2 {
  display: none;
}

.page3 .content .left .menu .menu-item .child {
  padding-top: 0.3rem;
  padding-left: 0.3rem;
  display: none;
}

.page3 .content .left .menu .menu-item .child .child_item {
  display: block;
  line-height: 225%;
  color: #666666;
}

.page3 .content .left .menu .menu-item .child .child_item:hover {
  color: #b62841;
}

.page3 .content .left .menu .on-menu-item .father {
  color: #b62841;
}

.page3 .content .left .menu .on-menu-item .father .icon1 {
  display: none;
}

.page3 .content .left .menu .on-menu-item .father .icon2 {
  display: block;
}

.page3 .content .right {
  width: 69.7916666667%;
  background-color: #f7f8fa;
  padding-right: 4%;
  padding-left: 3.125%;
  padding-top: 0.6rem;
  padding-bottom: 1.35rem;
}

.page3 .content .right .right_content {
  width: 1040px;
  max-width: 100%;
}

.page3 .content .right .h2 {
  margin-top: 0.2rem;
  color: #666666;
  line-height: 1.75em;
}

.page3 .content .right .item {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 0.3rem;
  padding-bottom: 0.4rem;
  margin-top: 0.4rem;
}

.page3 .content .right .item .img {
  width: 40.3846153846%;
  padding: 0 3.8461538462%;
}

.page3 .content .right .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.page3 .content .right .item .text {
  width: 59.6153846154%;
  padding-left: 6.7307692308%;
  padding-right: 11.5384615385%;
}

.page3 .content .right .item .text .t2 {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.18rem;
}

.page3 .content .right .item .text .t2 .t3 {
  min-width: 50%;
  color: #666666;
  line-height: 175%;
  white-space: nowrap;
}

.page3 .content .right .item .text .btn {
  display: inline-flex;
  align-items: center;
  background-color: #bbbbbb;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  margin-top: 0.36rem;
  transition: all 0.3s;
}

.page3 .content .right .item .text .btn span {
  line-height: 1;
  color: #fff;
}

.page3 .content .right .item .text .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page3 .content .right .item .text .btn .icon2 {
  display: none;
}

.page3 .content .right .item:hover .text .btn {
  background-color: #b62841;
}

.page3 .content .right .item:hover .text .btn .icon1 {
  display: none;
}

.page3 .content .right .item:hover .text .btn .icon2 {
  display: block;
}

.page3 .content .right .paging {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.page3 .content .right .paging .page {
  width: 0.46rem;
  height: 0.46rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
}

.page3 .content .right .paging .page img {
  width: 8px;
  height: auto;
}

.page3 .content .right .paging .page .img2 {
  display: none;
}

.page3 .content .right .paging .page:hover {
  background-color: #b62841;
  color: #ffffff;
}

.page3 .content .right .paging .page:hover .img1 {
  display: none;
}

.page3 .content .right .paging .page:hover .img2 {
  display: block;
}

.page3 .content .right .paging .next img {
  transform: rotate(180deg);
}

.page3 .content .right .paging .onPage {
  background-color: #b62841;
  color: #ffffff;
}

.page3 .content .right .paging .onPage .img1 {
  display: none;
}

.page3 .content .right .paging .onPage .img2 {
  display: block;
}

.page3 .content .right .paging .tail {
  width: auto;
  height: 0.46rem;
  min-height: 30px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.page3 .content .right .paging .tail:hover {
  color: #fff;
  background-color: #b62841;
  border-radius: 23px;
}

@media (max-width: 1000px) {
  .page3 .content .left {
    width: 100%;
    padding: 4%;
    border-top: 1px solid #dddddd;
  }

  .page3 .content .left .menuBox {
    width: 100%;
  }

  .page3 .content .left .title {
    justify-content: center;
  }

  .page3 .content .right {
    width: 100%;
    padding: 4%;
  }
}

@media (max-width: 600px) {
  .page3 .content .right .item .img {
    width: 100%;
  }

  .page3 .content .right .item .text {
    width: 100%;
    padding: 4%;
  }
}

.page4 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
	/*padding-top: 18%;*/
  position: relative;
}

.page4 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page4 .nav .layout {
  display: flex;
}

.page4 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page4 .nav .layout .tag:hover {
  color: #b62841;
}

.page4 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page4 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page4 .content {
  display: flex;
  flex-wrap: wrap;
}

.page4 .content .left {
  width: 30.2083333333%;
  padding: 0.6rem 0;
  padding-left: 4%;
  padding-right: 1.5625%;
  display: flex;
  justify-content: flex-end;
}

.page4 .content .left .menuBox {
  width: 310px;
  max-width: 100%;
}

.page4 .content .left .title {
  display: flex;
}

.page4 .content .left .title .tag {
  margin-right: 0.2rem;
  line-height: 1;
}

.page4 .content .left .title .onTag {
  color: #b62841;
}

.page4 .content .left .menu {
  margin-top: 0.5rem;
}

.page4 .content .left .menu .menu-item {
  margin-bottom: 0.4rem;
}

.page4 .content .left .menu .menu-item .father {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1;
  color: #333333;
  cursor: pointer;
}

.page4 .content .left .menu .menu-item .father .icon {
  width: 0.14rem;
}

.page4 .content .left .menu .menu-item .father .icon2 {
  display: none;
}

.page4 .content .left .menu .menu-item .child {
  padding-top: 0.3rem;
  padding-left: 0.3rem;
  display: none;
}

.page4 .content .left .menu .menu-item .child .child_item {
  display: block;
  line-height: 225%;
  color: #666666;
}

.page4 .content .left .menu .menu-item .child .child_item:hover {
  color: #b62841;
}

.page4 .content .left .menu .on-menu-item .father {
  color: #b62841;
}

.page4 .content .left .menu .on-menu-item .father .icon1 {
  display: none;
}

.page4 .content .left .menu .on-menu-item .father .icon2 {
  display: block;
}

.page4 .content .right {
  width: 69.7916666667%;
  background-color: #f7f8fa;
  padding-right: 4%;
  padding-left: 3.125%;
  padding-top: 0.6rem;
  padding-bottom: 1.35rem;
}

.page4 .content .right .right_content {
  width: 1040px;
  max-width: 100%;
  background-color: #ffffff;
  padding: 0 0.4rem;
  padding-top: 0.6rem;
  padding-bottom: 2.6rem;
}

.page4 .content .right .h1 {
  text-align: center;
}

.page4 .content .right .mySwiper1 {
  width: 680px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  margin-top: 0.3rem;
}

.page4 .content .right .mySwiper1 .swiper-slide {
  width: 100%;
  padding-top: 55.8823529412%;
  position: relative;
}

.page4 .content .right .mySwiper1 .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page4 .content .right .mySwiper1 .swiper-pagination-bullet {
  background-color: #b62841;
}

.page4 .content .right .h2 {
  margin-top: 0.4rem;
  color: #666666;
  line-height: 1.75em;
}

@media (max-width: 1000px) {
  .page4 .content .left {
    width: 100%;
    padding: 4%;
    border-top: 1px solid #dddddd;
  }

  .page4 .content .left .menuBox {
    width: 100%;
  }

  .page4 .content .left .title {
    justify-content: center;
  }

  .page4 .content .right {
    width: 100%;
    padding: 4%;
  }
}

.page5 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
	/*padding-top: 18%;*/
  position: relative;
}

.page5 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page5 .nav .layout {
  display: flex;
}

.page5 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page5 .nav .layout .tag:hover {
  color: #b62841;
}

.page5 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page5 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page5 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.8rem;
  padding-bottom: 0.85rem;
}

.page5 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page5 .content .title {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.page5 .content .title .tag {
  padding: 0.16rem 0.52rem;
  background-color: #bbbbbb;
  border-radius: 25px;
  color: #fff;
  margin-left: 0.42rem;
}

.page5 .content .title .tag:nth-child(1) {
  margin-left: 0;
}

.page5 .content .title .tag:hover {
  background-color: #b62841;
}

.page5 .content .title .onTag {
  background-color: #b62841;
}

.page5 .content .list {
  display: flex;
  flex-wrap: wrap;
}

.page5 .content .list .item {
  width: 31.4583333333%;
  margin-left: 2.8125%;
  margin-top: 0.6rem;
}

.page5 .content .list .item:nth-child(3n+1) {
  margin-left: 0;
}

.page5 .content .list .item .img {
  width: 100%;
  padding-top: 60.9271523179%;
  position: relative;
  overflow: hidden;
}

.page5 .content .list .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.page5 .content .list .item .p1 {
  margin-top: 0.3rem;
}

.page5 .content .list .item .p2 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.1rem;
}

.page5 .content .list .item:hover .img img {
  transform: scale(1.3);
}

.page5 .content .list .item:hover .p1 {
  color: #b62841;
}

@media (max-width: 900px) {
  .page5 .content .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page5 .content .list .item:nth-child(3n+1) {
    margin-left: 4%;
  }

  .page5 .content .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .page5 .content .list .item {
    width: 100%;
    margin-left: 0;
  }

  .page5 .content .list .item:nth-child(3n+1) {
    margin-left: 0;
  }

  .page5 .content .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.page5 .content .paging {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

.page5 .content .paging .page {
  width: 0.46rem;
  height: 0.46rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
}

.page5 .content .paging .page img {
  width: 8px;
  height: auto;
}

.page5 .content .paging .page .img2 {
  display: none;
}

.page5 .content .paging .page:hover {
  background-color: #b62841;
  color: #ffffff;
}

.page5 .content .paging .page:hover .img1 {
  display: none;
}

.page5 .content .paging .page:hover .img2 {
  display: block;
}

.page5 .content .paging .next img {
  transform: rotate(180deg);
}

.page5 .content .paging .onPage {
  background-color: #b62841;
  color: #ffffff;
}

.page5 .content .paging .onPage .img1 {
  display: none;
}

.page5 .content .paging .onPage .img2 {
  display: block;
}

.page5 .content .paging .tail {
  width: auto;
  height: 0.46rem;
  min-height: 30px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.page5 .content .paging .tail:hover {
  color: #fff;
  background-color: #b62841;
  border-radius: 23px;
}

.page6 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
	/*padding-top: 18%;*/
  position: relative;
}

.page6 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page6 .nav .layout {
  display: flex;
}

.page6 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page6 .nav .layout .tag:hover {
  color: #b62841;
}

.page6 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page6 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page6 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.8rem;
  padding-bottom: 0.85rem;
}

.page6 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page6 .content .paging {
  display: flex;
  justify-content: center;
  margin-top: 0.7rem;
}

.page6 .content .paging .page {
  width: 0.46rem;
  height: 0.46rem;
  min-width: 30px;
  min-height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.15rem;
}

.page6 .content .paging .page img {
  width: 8px;
  height: auto;
}

.page6 .content .paging .page .img2 {
  display: none;
}

.page6 .content .paging .page:hover {
  background-color: #b62841;
  color: #ffffff;
}

.page6 .content .paging .page:hover .img1 {
  display: none;
}

.page6 .content .paging .page:hover .img2 {
  display: block;
}

.page6 .content .paging .next img {
  transform: rotate(180deg);
}

.page6 .content .paging .onPage {
  background-color: #b62841;
  color: #ffffff;
}

.page6 .content .paging .onPage .img1 {
  display: none;
}

.page6 .content .paging .onPage .img2 {
  display: block;
}

.page6 .content .paging .tail {
  width: auto;
  height: 0.46rem;
  min-height: 30px;
  padding: 0 30px;
  display: flex;
  align-items: center;
}

.page6 .content .paging .tail:hover {
  color: #fff;
  background-color: #b62841;
  border-radius: 23px;
}

.page6 .list {
  display: flex;
  flex-wrap: wrap;
}

.page6 .list .item {
  width: 31.4583333333%;
  margin-left: 2.8125%;
  margin-top: 0.58rem;
}

.page6 .list .item:nth-child(3n+1) {
  margin-left: 0;
}

.page6 .list .item:hover .img img {
  transform: scale(1.3);
}

.page6 .list .item:hover .p1 {
  color: #b62841;
}

.page6 .list .img {
  width: 100%;
  padding-top: 60.9271523179%;
  position: relative;
  overflow: hidden;
}

.page6 .list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.page6 .list .img .ic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  width: 0.4rem;
  height: 0.4rem;
  z-index: 3;
}

.page6 .list .p1 {
  margin-top: 0.3rem;
}

.page6 .list .p2 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.1rem;
}

.page6 .list .p3 {
  color: #666666;
  line-height: 1.875em;
  margin-top: 0.05rem;
}

@media (max-width: 900px) {
  .page6 .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page6 .list .item:nth-child(3n+1) {
    margin-left: 4%;
  }

  .page6 .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .page6 .list .item {
    width: 100%;
    margin-left: 0;
  }

  .page6 .list .item:nth-child(3n+1) {
    margin-left: 0;
  }

  .page6 .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.page7 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
 
  position: relative;
}

.page7 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page7 .nav .layout {
  display: flex;
}

.page7 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page7 .nav .layout .tag:hover {
  color: #b62841;
}

.page7 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page7 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page7 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.9rem;
  padding-bottom: 1rem;
}

.page7 .content .layout {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.page7 .content .left {
  width: 69.4444444444%;
}

.page7 .content .left .h1 {
  color: #333333;
}

.page7 .content .left .time {
  margin-top: 0.13rem;
  color: #666666;
}

.page7 .content .left .text {
  line-height: 1.75em;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 0.3rem;
  margin-top: 0.4rem;
  padding-bottom: 0.5rem;
  color: #666666;
}

.page7 .content .left .text img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.page7 .content .left .btnBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.page7 .content .left .btnBox .btn1 a {
  display: block;
  line-height: 225%;
  color: #666666;
}

.page7 .content .left .btnBox .btn1 a:hover {
  color: #b62841;
}

.page7 .content .left .btnBox .btn2 {
  display: inline-flex;
  align-items: center;
  background-color: #b62841;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  transition: all 0.3s;
}

.page7 .content .left .btnBox .btn2 span {
  line-height: 1;
  color: #fff;
}

.page7 .content .left .btnBox .btn2 img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page7 .content .left .btnBox .btn2:hover {
  box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page7 .content .right {
  width: 25%;
}

.page7 .content .right .item {
  margin-top: 0.3rem;
  display: block;
}

.page7 .content .right .item .img {
  width: 100%;
  padding-top: 60.5555555556%;
  position: relative;
  overflow: hidden;
}

.page7 .content .right .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
}

.page7 .content .right .item .p2 {
  line-height: 1.6666666667em;
  margin-top: 0.1rem;
}

.page7 .content .right .item:hover .img img {
  transform: scale(1.3);
}

.page7 .content .right .item:hover .p2 {
  color: #b62841;
}

@media (max-width: 900px) {
  .page7 .content .left {
    width: 100%;
  }

  .page7 .content .left .btnBox .btn2 {
    margin-top: 0.3rem;
  }

  .page7 .content .right {
    width: 100%;
    margin-top: 0.5rem;
  }

  .page7 .content .list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .page7 .content .list .item {
    width: 48%;
  }
}

.page8 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page8 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page8 .nav .layout {
  display: flex;
}

.page8 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page8 .nav .layout .tag:hover {
  color: #b62841;
}

.page8 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page8 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page8 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
}

.page8 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page8 .content .text {
  /* display: flex; */
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
	text-align: center;
  margin-top: 0.5rem;
	line-height: 2;
}

.page8 .content .text .item {
  /* width: 47.2222222222%; */
	
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;

}

.page8 .content .text .item p {
	/* max-width: 50%; */
	width: 100%;
	text-align: left;
	/* min-width: 35%; */
}

.page8 .content .text .item .t1 {
  line-height: 2.25em;
  padding-left: 0.3rem;
  position: relative;
}

.page8 .content .text .item .t1::after {
  content: "";
  display: inline-block;
  line-height: 2.25em;
  width: 0.75em;
  height: 0.75em;
  background-image: url(../images/icon26.png);
  background-size: 100% 100%;
  position: absolute;
  top: 0.75em;
  left: 0;
}

@media (max-width: 900px) {
  .page8 .content .text .item {
    width: 100%;
 
  }

	.page8 .content .text .item .t1 {
		width: 100%;
		max-width: none;
	}
}

.page8 .content .list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.2rem;
}

.page8 .content .list .item {
  width: 23.4722222222%;
  margin-left: 2.0347222222%;
  margin-top: 0.32rem;
}

.page8 .content .list .item:nth-child(4n+1) {
  margin-left: 0;
}

.page8 .content .list .item .img {
  width: 100%;
  padding-top: 73.9644970414%;
  position: relative;
  overflow: hidden;
}

.page8 .content .list .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.page8 .content .list .item .p1 {
  background-color: #f7f8fa;
  padding: 0.2rem 0;
  text-align: center;
}

.page8 .content .list .item:hover .p1 {
  background-color: #b62841;
  color: #fff;
}

.page8 .content .list .item:hover .img img {
  transform: scale(1.3);
}

@media (max-width: 900px) {
  .page8 .content .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page8 .content .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.page9 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page9 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page9 .nav .layout {
  display: flex;
}

.page9 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page9 .nav .layout .tag:hover {
  color: #b62841;
}

.page9 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page9 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page9 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.9rem;
  padding-bottom: 1.2rem;
}

.page9 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page9 .content .text {
  max-width: 100%;
  width: 1070px;
  margin: 0 auto;
  text-align: center;
  line-height: 225%;
  margin-top: 0.2rem;
  color: #333333;
}

.page9 .content .text .p2 {
  color: #b62841;
}

.page9 .content .list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.2rem;
}

.page9 .content .list .item {
  width: 23.4722222222%;
  margin-left: 2.0347222222%;
  margin-top: 0.32rem;
}

.page9 .content .list .item:nth-child(4n+1) {
  margin-left: 0;
}

.page9 .content .list .item .img {
  width: 100%;
  padding-top: 73.9644970414%;
  position: relative;
  overflow: hidden;
}

.page9 .content .list .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.page9 .content .list .item .p1 {
  background-color: #f7f8fa;
  padding: 0.2rem 0;
  text-align: center;
}

.page9 .content .list .item:hover .img img {
  transform: scale(1.3);
}

.page9 .content .list .item:hover .p1 {
  background-color: #b62841;
  color: #fff;
}

@media (max-width: 900px) {
  .page9 .content .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page9 .content .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

.page10 {
  /* padding-bottom: 1.2rem; */
}

.page10 .nav .layout {
  display: flex;
}

.page10 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page10 .nav .layout .tag:hover {
  color: #b62841;
}

.page10 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page10 .nav .layout .onTag:hover {
  color: #ffffff;
}


.page10 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page10 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page10 .title {
  padding-top: 0.8rem;
  padding-bottom: 18px;
}

.page10 .title .t1 {
  text-align: center;
}

.page10 .title .t2 {
  display: flex;
  justify-content: space-between;
  margin-top: 0.6rem;
}

.page10 .title .t2 .tag {
  display: block;
  width: 49.3055555556%;
  text-align: center;
  line-height: 0.6rem;
  background-color: #bbbbbb;
  color: #fff;
}

.page10 .title .t2 .tag:hover {
  background-color: #b62841;
}

.page10 .title .t2 .onTag {
  background-color: #b62841;
  color: #ffffff;
  position: relative;
}

.page10 .title .t2 .onTag::after {
  content: "";
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #b62841;
  z-index: 3;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 90%);
}

.page10 .title .t2 .onTag:hover {
  color: #ffffff;
}

.page10 .content {
  background-image: url(../images/banner92.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 2.5rem;
  display: none;
	margin-top: 0.5rem;
}

.page10 .content .layout .text {
  width: 798px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.page10 .content .layout .itemBox{
  width: 33.3333333333%;
}

.page10 .content .layout .item {
  padding-top: 0.7rem;
  width: 100%;
  color: #ffffff;
}
.page10 .content .layout .item .p1{
  height: 2.4em;
}

.page10 .content .layout .item .p2 {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.page10 .content .layout .item .p2 img {
  width: 1.125em;
  height: auto;
  margin-right: 0.19rem;
}

.page10 .content .layout .item .p2 span {
  word-break: break-all;
	white-space: nowrap;
}

@media (max-width: 900px) {
  .page10 .content .layout .text{
    display: block;
  }
  .page10 .content .layout .itemBox{
    display: flex;
    width: 100%;
  }
  .page10 .content .layout .item {
    width: 50%;
  }
}

.page10 .onContent {
  display: block;
}

.page11 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page11 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page11 .address {
  width: 100%;
  display: inline-flex;
  background-color: #f7f8fa;
  flex-wrap: wrap;
}

.page11 .address .left {
  width: 50%;
  padding: 1rem 0;
  padding-left: 12.5%;
  padding-right: 5.2083333333%;
}

.page11 .address .left .p2 {
  color: #b62841;
  margin-top: 0.85rem;
}

.page11 .address .left .p3 {
  display: flex;
  align-items: center;
  margin-top: 0.55rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e4e4e4;
}

.page11 .address .left .p3 .icon {
  width: 0.6rem;
  height: auto;
}

.page11 .address .left .p3 .text {
  line-height: 1.6666666667;
  margin-left: 0.3rem;
  color: #333333;
}

.page11 .address .left .p3 .text .t1 {
  color: #bbbbbb;
}

.page11 .address .left .p4 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e4e4e4;
}

.page11 .address .left .p4 .item {
  margin-top: 0.3rem;
  display: flex;
  align-items: center;
}

.page11 .address .left .p4 .item .icon {
  width: 0.6rem;
  height: auto;
}

.page11 .address .left .p4 .item .text {
  line-height: 1.6666666667;
  margin-left: 0.3rem;
  color: #333333;
}

.page11 .address .left .p4 .item .text .t1 {
  color: #bbbbbb;
}

.page11 .address .right {
  width: 50%;
}

.page11 .address .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .page11 .address .left {
    width: 100%;
    padding: 4%;
  }

  .page11 .address .right {
    width: 100%;
  }
}

.page11 .list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.4rem;
  padding-bottom: 1.2rem;
}

.page11 .list .item {
  width: 23.5416666667%;
  margin-left: 1.9444444444%;
  background-color: #f7f8fa;
  padding: 0.3rem;
  padding-bottom: 0.5rem;
  margin-top: 0.4rem;
}

.page11 .list .item:nth-child(4n+1) {
  margin-left: 0;
}

.page11 .list .item .h1 {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e7eaf2;
  position: relative;
}

.page11 .list .item .h1::after {
  content: "";
  width: 1em;
  height: 3px;
  background-color: #bc2a2c;
  position: absolute;
  left: 0;
  bottom: 0;
}

.page11 .list .item .h2 {
  display: flex;
  align-items: flex-start;
  margin-top: 0.24rem;
}

.page11 .list .item .h2 .icon {
  width: 1.125em;
  height: auto;
  margin-right: 0.2rem;
}

.page11 .list .item .h2 span {
  min-height: 1.2em;
  word-break: break-all;
}

@media (max-width: 1200px) {
  .page11 .list .item {
    width: 32%;
    margin-left: 2%;
  }

  .page11 .list .item:nth-child(4n+1) {
    margin-left: 2%;
  }

  .page11 .list .item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .page11 .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page11 .list .item:nth-child(4n+1) {
    margin-left: 4%;
  }

  .page11 .list .item:nth-child(3n+1) {
    margin-left: 4%;
  }

  .page11 .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .page11 .list .item {
    width: 100%;
    margin-left: 0 !important;
  }
}

.page12 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page12 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page12 .title {
  margin-top: 0.95rem;
}

.page12 .title .h1 {
  text-align: center;
}

.page12 .title .h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.page12 .title .h2 .tag {
  padding: 0.17rem 0.53rem;
  background-color: #bbbbbb;
  border-radius: 0.5rem;
  color: #fff;
  margin-left: 0.42rem;
}

.page12 .title .h2 .tag:nth-child(1) {
  margin-left: 0;
}

.page12 .title .h2 .tag:hover {
  background-color: #b62841;
}

.page12 .title .h2 .onTag {
  background-color: #b62841;
}

.page12 .img1 {
  width: 100%;
  height: auto;
  margin-top: 0.6rem;
}

.page12 .list {
  display: flex;
  flex-wrap: wrap;
  padding-top: 0.1rem;
  padding-bottom: 1.2rem;
}

.page12 .list .item {
  width: 30.9722222222%;
  margin-left: 3.5416666667%;
  background-color: #f7f8fa;
  padding: 0.3rem;
  padding-bottom: 0.5rem;
  margin-top: 0.4rem;
}

.page12 .list .item:nth-child(3n+1) {
  margin-left: 0;
}

.page12 .list .item .h1 {
  padding-bottom: 0.3rem;
  border-bottom: 1px solid #e7eaf2;
  position: relative;
}

.page12 .list .item .h1::after {
  content: "";
  width: 1em;
  height: 3px;
  background-color: #bc2a2c;
  position: absolute;
  left: 0;
  bottom: 0;
}

.page12 .list .item .h2 {
  display: flex;
  align-items: center;
  margin-top: 0.24rem;
}

.page12 .list .item .h2 .icon {
  width: 1.125em;
  height: auto;
  margin-right: 0.2rem;
}

.page12 .list .item .h2 span {
  min-height: 1.2em;
  word-break: break-all;
}

@media (max-width: 1200px) {
  .page12 .list .item {
    width: 32%;
    margin-left: 2%;
  }

  .page12 .list .item:nth-child(4n+1) {
    margin-left: 2%;
  }

  .page12 .list .item:nth-child(3n+1) {
    margin-left: 0;
  }
}

@media (max-width: 900px) {
  .page12 .list .item {
    width: 48%;
    margin-left: 4%;
  }

  .page12 .list .item:nth-child(4n+1) {
    margin-left: 4%;
  }

  .page12 .list .item:nth-child(3n+1) {
    margin-left: 4%;
  }

  .page12 .list .item:nth-child(2n+1) {
    margin-left: 0;
  }
}

@media (max-width: 600px) {
  .page12 .list .item {
    width: 100%;
    margin-left: 0 !important;
  }
}

.page13 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page13 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page13 .nav .layout {
  display: flex;
}

.page13 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page13 .nav .layout .tag:hover {
  color: #b62841;
}

.page13 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page13 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page13 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}

.page13 .content .title {
  line-height: 1;
  text-align: center;
}

.page13 .content form {
  background-color: #f7f8fa;
  margin-top: 0.55rem;
  padding: 4.1666666667%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.page13 .content form .text {
  width: 39.3939393939%;
  z-index: 3;
}

.page13 .content form .text .inp {
  width: 100%;
  display: flex;
  background-color: #ffffff;
  padding: 0 0.3rem;
  margin-top: 18px;
  position: relative;
}

.page13 .content form .text .inp:nth-child(1) {
  margin-top: 0;
}

.page13 .content form .text .inp .name {
  width: 4em;
  padding: 0.2rem 0;
}

.page13 .content form .text .inp input {
  flex: 1;
  border: none;
  margin-left: 0.3rem;
}

.page13 .content form .text .inp textarea {
  flex: 1;
  border: none;
  margin-left: 0.3rem;
  padding: 0.22rem 0;
  line-height: 1.2;
}

.page13 .content form .text .inp .icon {
  width: auto;
  height: 60%;
  position: absolute;
  top: 50%;
  right: 0.1rem;
  transform: translateY(-50%);
}

.page13 .content form .text .btn {
  display: inline-flex;
  align-items: center;
  background-color: #b62841;
  padding: 7px;
  padding-left: 25px;
  border-radius: 25px;
  margin-top: 0.3rem;
  transition: all 0.3s;
  border: none;
}

.page13 .content form .text .btn span {
  line-height: 1;
  color: #fff;
}

.page13 .content form .text .btn img {
  margin-left: 0.35rem;
  width: 0.36rem;
  height: auto;
}

.page13 .content form .text .btn:hover {
  box-shadow: 0 -3px 0 0 rgba(24, 24, 24, 0.15) inset, 0 3px 10px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.page13 .content form .img {
  width: 52.8787878788%;
  margin-left: 4.5454545455%;
  z-index: 3;
}

.page13 .content form .img img {
  width: 100%;
}

.page13 .content form .red {
  width: 10.9375%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #b62841;
}

@media (max-width: 900px) {
  .page13 .content form {
    flex-direction: column-reverse;
  }

  .page13 .content form .text {
    width: 100%;
  }

  .page13 .content form .img {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page13 .content form .red {
    display: none;
  }
}

.page14 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page14 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page14 .nav {
  position: -webkit-sticky;
  position: sticky;
  top: 1rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 7px 0px rgba(202, 216, 230, 0.53);
  z-index: 10;
}

.page14 .nav .layout {
  display: flex;
  flex-wrap: wrap;
	align-items: center;
}

.page14 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page14 .nav .layout .tag:hover {
  color: #b62841;
}

.page14 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page14 .nav .layout .onTag:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .page14 .nav .layout .tag {
    width: 33.3333333333%;
    flex: none;
		line-height: 1;
		padding: 0.2rem 0;
  }
}

.page14 .introduction {
	padding-top: 0.8rem;
  padding-bottom: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  background-color: #f7f8fa;
  position: relative;
}

.page14 .introduction .introduction_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .introduction .img {
  width: 46.875%;
}

.page14 .introduction .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page14 .introduction .text {
  width: 53.125%;
  padding-left: 5.2083333333%;
  padding-top: 4.6875%;
  padding-bottom: 6.25%;
  padding-right: 7.2916666667%;
}

.page14 .introduction .text .p1 {
  /* font-weight: bold; */
  color: #333333;
}

.page14 .introduction .text .p2 {
  color: #b62841;
  margin-top: 0.2rem;
}

.page14 .introduction .text .p3 {
  margin-top: 0.54rem;
  line-height: 2;
  color: #333333;
}

@media (max-width: 900px) {
  .page14 .introduction .img {
    width: 100%;
  }

  .page14 .introduction .text {
    width: 100%;
  }
}

.page14 .architecture {
  padding-top: 0.8rem;
  padding-bottom: 1.3rem;
  position: relative;
}

.page14 .architecture .architecture_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .architecture .h1 {
  /* font-weight: bold; */
  text-align: center;
}

.page14 .architecture img {
  width: 100%;
  margin-top: 0.5rem;
}

.page14 .mission {
  position: relative;
	padding-top: 0.8rem;
  padding-bottom: 1.3rem;
	margin-top: 0.8rem;
}

.page14 .mission .mission_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .mission .h1 {
  /* font-weight: bold; */
  color: #333333;
  padding-left: 12.5%;
}

.page14 .mission .text {
  background-color: #f7f8fa;
  width: 87.5%;
  padding-left: 12.5%;
  padding-bottom: 1.3rem;
  margin-top: 0.6rem;
}

.page14 .mission .text .item {
  width: 32.1428571429%;
  display: flex;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.page14 .mission .text .item .left {
  width: 0.6rem;
  margin-right: 0.4rem;
	flex-shrink: 0;
}

.page14 .mission .text .item .right {
  color: #333333;
}

.page14 .mission .text .item .right .r2 {
  margin-top: 0.15rem;
  line-height: 1.5;
}

.page14 .mission .img1 {
  width: 53.125%;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1000px) {
  .page14 .mission .h1 {
    padding: 0 4%;
  }

  .page14 .mission .text {
    width: 100%;
    padding: 4%;
  }

  .page14 .mission .text .item {
    width: 100%;
  }

  .page14 .mission .img1 {
    width: 100%;
    position: static;
  }
}

.page14 .plan {
  padding-top: 0.9rem;
 padding-top: 0.8rem;
  padding-bottom: 1.3rem;
  position: relative;
}

.page14 .plan .plan_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .plan .p1 {
  /* font-weight: bold; */
  text-align: center;
}

.page14 .plan .p2 {
  text-align: center;
  max-width: 100%;
  width: 970px;
  margin: 0 auto;
  color: #333333;
  line-height: 1.75;
  margin-top: 0.25rem;
}

.page14 .plan .imgBox {
  margin-top: 0.5rem;
  position: relative;
}

.page14 .plan .imgBox img {
  width: 100%;
}

.page14 .plan .imgBox .text {
  width: 5.7rem;
  background-color: #b62841;
  padding: 0.5rem;
  color: #ffffff;
  line-height: 2.25;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

@media (max-width: 1100px) {
  .page14 .plan .imgBox .text {
    width: 100%;
    position: static;
    transform: none;
  }
}

.page14 .honor {
  padding-top: 1rem;
	padding-top: 0.8rem;
 
  padding-bottom: 1.3rem;
  position: relative;
}

.page14 .honor .sss {
  position: relative;
}

.page14 .honor .swiper-slide {
  display: flex;
  flex-wrap: wrap;
}
.page14 .honor .cy {
  width: 25%;
  padding: 1%;
}

.page14 .honor .button {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #2b2957;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page14 .honor .button img {
  width: 6px;
  height: auto;
}
.page14 .honor .button:hover {
  background-color: #b62841;
}
.page14 .honor .button-next {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translate(calc(-100% - 0.6rem), -50%);
}
.page14 .honor .button-next img {
  transform: rotate(180deg);
}
.page14 .honor .button-prev {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(calc(100% + 0.6rem), -50%);
  z-index: 2;
}

.page14 .honor .honor_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .honor .p1 {
  /* font-weight: bold; */
  text-align: center;
}

.page14 .honor .mySwiper1 {
  position: relative;
  margin-top: 1rem;
  padding-bottom: 1.1rem;
	overflow: hidden;
}

.page14 .honor .mySwiper1 .swiper-slide {
  /*width: 25%;*/
  display: flex;
  flex-wrap: wrap;
}

.page14 .honor .mySwiper1 .swiper-slide .cy{
width:25%;
padding: 1%;
}

.page14 .honor .mySwiper1 .swiper-slide img {
  width: 100%;
}

.page14 .honor .mySwiper1 .swiper-pagination {
  bottom: 0;
  top: auto;
}

.page14 .honor .mySwiper1 .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: #b62841;
}


@media (max-width: 1200px) {
  .page14 .honor .mySwiper1 {
    overflow: hidden;
  }
}


@media (max-width: 1500px){
	.page14 .honor .button-next {
		position: absolute;
		left: 0;
		/* left: auto; */
		/* right: 0; */
		top: 50%;
		z-index: 22;
		transform: translate(0, -50%) !important;
	}
	.page14 .honor .button-prev {
		position: absolute;
		left: 0;
		left: auto;
		right: 0;
		top: 50%;
		transform: translate(0, -50%) !important;
		z-index: 22;
	}
}

.page14 .scenery {
  padding: 0 12.5%;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
  position: relative;
}

.page14 .scenery .scenery_anchor {
  position: absolute;
  top: -2rem;
}

.page14 .scenery .p1 {
  /* font-weight: bold; */
  text-align: center;
}

.page14 .scenery .swiperBox {
  position: relative;
}

.page14 .scenery .swiperBox .mySwiper2 {
  overflow: hidden;
  position: relative;
  margin-top: 0.6rem;
}

.page14 .scenery .swiperBox .mySwiper2 .swiper-slide {
  padding-top: calc(438 / 1440 * 100%);
  overflow: hidden;
  position: relative;
}

@media (max-width:700px) {
  .page14 .scenery .swiperBox .mySwiper2 .swiper-slide {
    padding-top: calc(438 / 697 * 100%);
  }
}

.page14 .scenery .swiperBox .mySwiper2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page14 .scenery .swiperBox .button {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #2b2957;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page14 .scenery .swiperBox .button img {
  width: 6px;
  height: auto;
}

.page14 .scenery .swiperBox .button:hover {
  background-color: #b62841;
}

.page14 .scenery .swiperBox .button-next {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  transform: translate(calc(-100% - 0.6rem), -50%);
}

.page14 .scenery .swiperBox .button-next img {
  transform: rotate(180deg);
}

.page14 .scenery .swiperBox .button-prev {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(calc(100% + 0.6rem), -50%);
  z-index: 2;
}

.page14 .scenery .swiperBox .swiper-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  opacity: 0;
}

.page14 .scenery .swiperBox .swiper-pagination-bullet {
  margin: 0 3px;
}

@media (max-width: 900px) {
  .page14 .scenery .swiperBox .button {
    display: none;
  }

  .page14 .scenery .swiperBox .swiper-pagination {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .page14 .scenery {
    padding: 0 4%;
    padding-top: 0.8rem;
    padding-bottom: 1.2rem;
  }
}

.page15 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page15 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page15 .nav .layout {
  display: flex;
}

.page15 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page15 .nav .layout .tag:hover {
  color: #b62841;
}

.page15 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page15 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page15 .content {
  background-color: #f7f8fa;
  padding-top: 0.8rem;
  padding-bottom: 1.2rem;
}

.page15 .content .title {
  line-height: 1;
  text-align: center;
}

.page15 .content .top {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.55rem;
}

.page15 .content .top .img1 {
  width: 55.5555555556%;
}

.page15 .content .top .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page15 .content .top .text {
  background-color: #ffffff;
  width: 44.4444444444%;
  padding: 0.45rem 4.1666666667%;
}

.page15 .content .top .text .p1 {
  color: #b62841;
}

.page15 .content .top .text .p2 {
  /* display: flex; */
  /* justify-content: space-between; */
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0.35rem;
}

.page15 .content .top .text .p2 .item {
  color: #333333;
  line-height: 2.25;

	display: flex;
	justify-content: space-between;
}

.page15 .content .top .text .p2 .item p {
	width: 50%;
	padding-right: 1%;
}

.page15 .content .top .text .p3 {
  color: #b62841;
  margin-top: 0.63rem;
}

.page15 .content .top .text .p3 a {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .page15 .content .top .img1 {
    width: 100%;
  }

  .page15 .content .top .text {
    width: 100%;
  }
}

.page15 .content .list {
  margin-top: 0.7rem;
}

.page15 .content .list .item {
  background-color: #ffffff;
  margin-top: 0.2rem;
}

.page15 .content .list .item .title {
  padding: 0.3rem 0.4rem;
  cursor: pointer;
}

.page15 .content .list .item .title .p1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.page15 .content .list .item .title .p1 .time {
  color: #888888;
}

.page15 .content .list .item .title .p2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #888888;
  margin-top: 0.3rem;
}

.page15 .content .list .item .title .p2 .name {
  display: flex;
}

.page15 .content .list .item .title .p2 .name .tag {
  margin-right: 0.4rem;
  position: relative;
  line-height: 1;
}

.page15 .content .list .item .title .p2 .name .tag:nth-child(1)::after {
  display: none;
}

.page15 .content .list .item .title .p2 .name .tag::after {
  content: "";
  width: 1px;
  height: 80%;
  background-color: #e5e5e5;
  position: absolute;
  left: -0.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.page15 .content .list .item .title .p2 .btn {
  line-height: 1;
  display: flex;
  align-items: center;
}

.page15 .content .list .item .title .p2 .btn img {
  width: 1em;
  margin-left: 0.1rem;
  transition: all 0.5s;
}

.page15 .content .list .item .on-title .p2 .btn img {
  transform: rotate(180deg);
}

.page15 .content .list .item .text {
  width: 100%;
  border-top: 1px solid #f7f8fa;
  padding: 0.3rem 0.4rem;
  display: none;
}

.page15 .content .list .item .text .t1 {
  color: #b62841;
  margin-bottom: 0.08rem;
  margin-top: 0.22rem;
}

.page15 .content .list .item .text .t1:nth-child(1) {
  margin-top: 0;
}

.page15 .content .list .item .text .t2 {
  color: #666666;
  line-height: 1.75;
}
.page15 .content .list .item .text p{
  color: #666666;
  line-height: 1.75;
}

.page16 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page16 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page16 .nav .layout {
  display: flex;
}

.page16 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page16 .nav .layout .tag:hover {
  color: #b62841;
}

.page16 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page16 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page16 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.8rem;
  padding-bottom: 1.5rem;
}

.page16 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page16 .content .h2 {
  color: #333333;
  line-height: 2.25;
  width: 712px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 0.3rem;
}

.page16 .content .layout {
  margin-top: 1rem;
}

.page16 .content .layout:nth-child(1) {
  margin-top: 0;
}

.page16 .content .list {
  display: flex;
  flex-wrap: wrap;
}

.page16 .content .list .item {
  width: 31.5277777778%;
  margin-left: 2.7083333333%;
  background-color: #f5f5f5;
  padding: 2.7777777778% 3.4722222222%;
  margin-top: 0.7rem;
}

.page16 .content .list .item:nth-child(3n+1) {
  margin-left: 0;
}

.page16 .content .list .item .icon {
  width: 21.186440678%;
  margin: 0 auto;
  display: block;
}

.page16 .content .list .item .p1 {
  color: #333333;
  margin-top: 0.3rem;
  text-align: center;
  /* font-weight: bold; */
}

.page16 .content .list .item .p2 {
  color: #666666;
  line-height: 1.875;
  margin-top: 0.2rem;
}

@media (max-width: 700px) {
  .page16 .content .list .item {
    width: 100%;
    margin-left: 0;
  }
}

.page16 .content .img1 {
  width: 100%;
  margin-top: 0.6rem;
}

.page17 .banner {
  width: 100%;
  padding-top: 34.375%;
	/*padding-top: 18%;*/
  position: relative;
}

.page17 .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.page17 .nav .layout {
  display: flex;
}

.page17 .nav .layout .tag {
  flex: 1;
  text-align: center;
  line-height: 0.7rem;
}

.page17 .nav .layout .tag:hover {
  color: #b62841;
}

.page17 .nav .layout .onTag {
  background-color: #b62841;
  color: #ffffff;
}

.page17 .nav .layout .onTag:hover {
  color: #ffffff;
}

.page17 .content {
  border-top: 1px solid #f2f2f2;
  padding-top: 0.8rem;
  padding-bottom: 0.85rem;
}

.page17 .content .h1 {
  line-height: 1;
  text-align: center;
}

.page17 .content .title {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.page17 .content .title .tag {
  padding: 0.16rem 0.52rem;
  background-color: #bbbbbb;
  border-radius: 25px;
  color: #fff;
  margin-left: 0.42rem;
}

.page17 .content .title .tag:nth-child(1) {
  margin-left: 0;
}

.page17 .content .title .tag:hover {
  background-color: #b62841;
}

.page17 .content .title .onTag {
  background-color: #b62841;
}

.page17 .content .item {
  margin-top: 0.6rem;
}

.page17 .content .item .p1 {
  color: #333333;
}

.page17 .content .item .tableBox {
  overflow-x: auto;
  overflow-y: hidden;
}

.page17 .content .item table {
  width: 100%;
  min-width: 700px;
  border: none;
  margin-top: 0.3rem;
}

.page17 .content .item table tr,
.page17 .content .item table th,
.page17 .content .item table td {
  border: none;
}

.page17 .content .item table .r1 {
  background-color: #b62841;
  color: #ffffff;
}

.page17 .content .item table .r1 th {
  padding: 0.21rem 0;
  text-align: left;
}

.page17 .content .item table .r1 .t1 {
  width: 25%;
  padding-left: 5.5555555556%;
}

.page17 .content .item table .r1 .t2 {
  width: 75%;
  padding-right: 5.5555555556%;
}

.page17 .content .item table .r2 {
  background-color: #f5f5f5;
  border-top: 1px solid #ffffff;
}

.page17 .content .item table .r2 td {
  padding: 0.21rem 0;
  text-align: left;
}

.page17 .content .item table .r2 .d1 {
  width: 25%;
  padding-left: 5.5555555556%;
}

.page17 .content .item table .r2 .d2 {
  width: 75%;
  padding-right: 5.5555555556%;
}

.home-side {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e4f1f9;
  z-index: 30;
  color: #201b1b;
  padding: 0.05rem 0.25rem;
  text-align: center;
  font-size: 0;
  transition: all 0.3s;
}
.home-side:hover {
  transform: translateY(calc(-50% - 5px));
  box-shadow: 0 3px 0.1rem rgba(228, 241, 249, 0.5);
  transition: all 0.3s;
}
.home-side .hs {
  display: block;
}
.home-side .img img {
  width: 1.2rem;
  display: inline-block;
}
.home-side .hte {
  line-height: 1.5;
  margin-top: 0.1rem;
}

@media (max-width:900px) {
	.nav .layout{
		align-items: normal !important;
		flex-wrap: wrap;
	}
	.nav .layout .tag {
    width: 33.3333333333% !important;
    flex: none !important;
		line-height: 1 !important;
		padding: 0.2rem 0 !important;
		line-height: 1.2 !important;

		display: inline-flex;
		align-items: center;
		justify-content: center;
  }

	.page16 .nav .layout .tag,.page10 .nav .layout .tag,.page15 .nav .layout .tag,.page3 .nav .layout .tag,.page2 .nav .layout .tag,.page5 .nav .layout .tag{
		width: 50% !important;

	}
}

main{
	padding-top: 1rem;
}
@media (max-width:900px) {
	main{
		padding-top: 1rem;
	}
}


/*视频容器样式*/
.v-a {
  position: fixed;
  left: 0;
  top: 120%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999999999;
  transition: top 0.5s ease-in-out;
}

.v-a.show {
  top: 0;
}

.v-a.show .v-e {
  visibility: visible;
}

.v-a.show .v-f {
  display: block;
}

.v-b {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.v-c {
  display: block;
  width: 60px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  position: absolute;
  right: 10%;
  top: 5%;
  cursor: pointer;
  z-index: 10000;
}

.v-e {
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0px;
  bottom: 0px;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.v-f {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  -o-object-fit: contain;
     object-fit: contain;
  max-height: calc(100% - 80px);
  transform: translate(-50%, -50%);
}

.vdo-list {
  display: flex;
  flex-wrap: wrap;
}
.vdo-list .li {
  width: 31.4583333333%;
  margin-left: 2.8125%;
  margin-top: 0.58rem;
}
.vdo-list .li:nth-child(3n+1) {
  margin-left: 0;
}
.vdo-list .li:hover .img img {
  transform: scale(1.3);
}
.vdo-list .li:hover .p1 {
  color: #b62841;
}
.vdo-list .dd {
  position: relative;
  cursor: pointer;
}
.vdo-list .img {
  width: 100%;
  padding-top: 60.9271523179%;
  position: relative;
  overflow: hidden;
}
.vdo-list .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.vdo-list .txt {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0.2rem 0.2rem;
  text-align: center;
}
.vdo-list .h3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 900px) {
  .vdo-list .li {
    width: 48%;
    margin-left: 4%;
  }
  .vdo-list .li:nth-child(3n+1) {
    margin-left: 4%;
  }
  .vdo-list .li:nth-child(2n+1) {
    margin-left: 0;
  }
}
@media (max-width: 600px) {
  .vdo-list .li {
    width: 100%;
    margin-left: 0;
  }
  .vdo-list .li:nth-child(3n+1) {
    margin-left: 0;
  }
  .vdo-list .li:nth-child(2n+1) {
    margin-left: 0;
  }
}