.rel {
  position: relative;
}
.abs {
  position: absolute;
}
.fixed {
  position: fixed;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.regular {
  font-family: "regular";
}
.medium {
  font-family: "medium";
}
.widget {
  margin: 0!important;
}
.row {
  margin-left: 0!important;
  margin-right: 0!important;
}
.container-fluid {
  padding-right: 0!important;
  padding-left: 0!important;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0!important;
  padding-left: 0!important;
}
.flex {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.flex-wrap {
  flex-flow: wrap;
}
.flex-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.inline-block {
  display: inline-block;
}
.block {
  display: block;
}
.hide {
  display: none;
}
.txt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 一行省略溢出显示省略号*/
.bold {
  font-weight: 700;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.txt-right {
  text-align: right;
}
.ss span {
  position: relative;
  z-index: 1;
}
.ss i {
  display: block;
  -moz-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
.ss i:before {
  position: relative;
  content: '';
  display: block;
  margin-top: 100%;
}
.ss i:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 50%;
}
.ss:hover i {
  -moz-animation: anim-out 0.75s;
  -webkit-animation: anim-out 0.75s;
  animation: anim-out 0.75s;
}
.ss:hover i:after {
  -moz-animation: anim-out-pseudo 0.75s;
  -webkit-animation: anim-out-pseudo 0.75s;
  animation: anim-out-pseudo 0.75s;
}
.img_rotate {
  -moz-animation: rotate 15s infinite linear;
  -webkit-animation: rotate 15s infinite linear;
  animation: rotate 15s infinite linear;
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.linear {
  transition-timing-function: linear;
  -o-transition-timing-function: linear;
  -moz-transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
}
.ease {
  transition-timing-function: ease;
  -o-transition-timing-function: ease;
  -moz-transition-timing-function: ease;
  -webkit-transition-timing-function: ease;
}
.ease-in {
  transition-timing-function: ease-in;
  -o-transition-timing-function: ease-in;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-timing-function: ease-in;
}
.ease-out {
  transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
}
.ease-in-out {
  transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
}
@-webkit-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-moz-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-ms-keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes anim-out {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-moz-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@-ms-keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes anim-out-pseudo {
  0% {
    background: rgba(0, 0, 0, 0.25);
  }
  100% {
    background: 0 0;
  }
}
@keyframes fadeOfOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_top {
  0% {
    -webkit-transform: translate(0, 30px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_left {
  0% {
    -webkit-transform: translate(30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@-webkit-keyframes am_right {
  0% {
    -webkit-transform: translate(-30px, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0px);
    opacity: 1;
  }
}
@keyframes upDown {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(-10px);
  }
}
.before {
  opacity: 0;
  visibility: hidden;
}
.after {
  opacity: 1;
  visibility: visible;
}
.upper {
  text-transform: uppercase;
}
.middle {
  vertical-align: middle;
}
.background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.coverbackground {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
/*banner*/
.ind-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ind-banner .swiper-slide {
  position: relative;
}
.ind-banner .swiper-slide a {
  display: block;
  width: 100%;
  height: 100%;
}
.ind-banner .swiper-slide .img img {
  width: 100%;
}
.ind-banner .onebox {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 30%;
  z-index: 2;
}
.ind-banner .onebox .en {
  font-size: var(--fs24);
  line-height: 0.42rem;
  font-family: 'Mont-EL';
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.15rem;
  letter-spacing: 5px;
}
.ind-banner .onebox .cn {
  margin: 0;
  font-size: 0.52rem;
  line-height: 0.68rem;
  color: #fff;
  font-weight: bold;
}
.ind-banner .onebox .more {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs16);
  color: #004ea2;
  position: relative;
  overflow: hidden;
  border-radius: 0.48rem;
  width: 1.56rem;
  height: 0.52rem;
  margin-top: 1rem;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more em {
  margin-left: 0.15rem;
  display: block;
  width: 10px;
  height: 10px;
  background: url(../img/ico2.png) no-repeat;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.ind-banner .onebox .more:hover {
  background: #004ea2;
  color: #fff;
}
.ind-banner .onebox .more:hover em {
  background: url(../img/ico2on.png) no-repeat;
}
.ind-banner .onebox {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  visibility: hidden;
  transition: all 1.4s ease;
  -webkit-transition: all 1.4s ease;
  -moz-transition: all 1.4s ease;
  -ms-transition: all 1.4s ease;
  -o-transition: all 1.4s ease;
  transition-delay: 1s;
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ind-banner .swiper-slide-active .onebox {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.ind-banner .swiper-pagination {
  width: 100%;
  left: 0;
  margin-left: 0;
  bottom: 0.4rem;
  z-index: 2;
}
.ind-banner .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  opacity: 1;
  background: #fff;
  border: none;
  border-radius: 50%;
  margin: 0 10px!important;
  overflow: hidden;
}
.ind-banner .swiper-pagination-bullet-active {
  background: #004ea2;
}
@media (max-width: 1600px) {
  .ind-banner .onebox {
    margin-left: -8rem;
  }
}
@media (max-width: 1004px) {
  .ind-banner .swiper-slide .img {
    height: 7rem;
  }
  .ind-banner .swiper-slide .img img {
    height: 100%;
    object-fit: cover;
  }
  .ind-banner .onebox {
    left: 0.3rem;
    right: 0.3rem;
    margin-left: 0;
    top: 18%;
  }
  .ind-banner .onebox .en {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .ind-banner .onebox .cn {
    font-size: var(--fs20);
    line-height: 0.48rem;
  }
  .ind-banner .onebox .more {
    display: none;
  }
  .ind-banner .swiper-pagination {
    bottom: 0.3rem;
  }
  .ind-banner .swiper-pagination-bullet {
    margin: 0 0.1rem !important;
  }
}
.indTxt {
  text-align: center;
}
.indTxt .title {
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.64rem;
  margin-bottom: 0;
}
.indTxt .zi {
  font-size: var(--fs24);
  line-height: 0.42rem;
}
.indexP1 {
  padding: 1.2rem 0 1rem;
}
.indexP1 .indTxt {
  margin-bottom: 0.4rem;
}
.live-action {
  position: relative;
  width: 100%;
}
.live-action .swiper-container {
  overflow: hidden;
}
.live-action li {
  padding: 5px 0;
}
.live-action li a {
  padding: 0.35rem 0.3rem 0;
  height: 4.5rem;
  background: #f7f7f7;
  overflow: hidden;
  display: block;
  position: relative;
}
.live-action li .imgDiv {
  margin: 0 auto;
  width: 3.4rem;
  height: 3.4rem;
  position: relative;
  overflow: hidden;
}
.live-action li .imgDiv img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  transition: All 1s ease;
}
.live-action li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.1rem;
  height: 0.42rem;
  line-height: 0.42rem;
  text-align: center;
  font-size: var(--fs24);
  color: #333;
}
.live-action li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.live-action .se {
  position: absolute;
  width: 0.64rem;
  height: 0.64rem;
  border: #eee solid 2px;
  border-radius: 50%;
  top: 50%;
  margin-top: -0.64rem;
  z-index: 2;
  outline: none;
}
.live-action .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: #fff url(../images/nimg9_left.png) center no-repeat;
}
.live-action .prev:hover {
  border: #004ea2 solid 2px;
  background: #004ea2 url(../images/nimg9_lefton.png) center no-repeat;
}
.live-action .next {
  right: 50%;
  margin-right: -8.6rem;
  background: #fff url(../images/nimg9_right.png) center no-repeat;
}
.live-action .next:hover {
  border: #004ea2 solid 2px;
  background: #004ea2 url(../images/nimg9_righton.png) center no-repeat;
}
.live-action .swiper-pagination {
  margin-top: 0.4rem;
  position: relative;
  bottom: 0!important;
}
.live-action .swiper-pagination-bullet {
  position: relative;
  width: 20px;
  height: 5px;
  opacity: 1;
  border-radius: 4px;
  background: #dfdfdf;
  margin-left: 5px!important;
  margin-right: 5px;
}
.live-action .swiper-pagination-bullet-active {
  width: 50px;
  background: #004ea2;
}
.indexP2 {
  position: relative;
  overflow: hidden;
}
.indexP2 .indTxt {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 1.2rem;
  text-align: left;
  z-index: 2;
}
.indexP2 .indTxt .title {
  color: #fff;
  margin-bottom: 0.1rem;
}
.indexP2 .indTxt .zi {
  color: #fff;
}
.indexP2 .swiper-slide {
  position: relative;
}
.indexP2 .swiper-slide .pic {
  position: relative;
}
.indexP2 .swiper-slide .pic::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.indexP2 .swiper-slide .pic img {
  width: 100%;
  height: 9.5rem;
  object-fit: cover;
}
.indexP2 .swiper-slide .info {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  top: 35%;
  z-index: 3;
}
.indexP2 .swiper-slide .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #fff;
  font-weight: bold;
}
.indexP2 .swiper-slide .msg {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.2rem;
  font-size: var(--fs16);
  line-height: 0.3rem;
  height: 0.9rem;
  color: #fff;
}
.indexP2 .swiper-slide .more {
  margin-top: 0.6rem;
  width: 1.8rem;
}
.indexP2 .swiper-slide .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  border: #fff solid 1px;
  font-size: var(--fs16);
  color: #fff;
}
.indexP2 .swiper-slide .more a:hover {
  border: #004ea2 solid 1px;
  background: #004ea2;
}
.indexP2 .swiper-slide .more a span {
  position: relative;
  z-index: 1;
}
.indexP2 .swiper-slide .more a em {
  margin-left: 0.12rem;
  display: block;
  width: 14px;
  height: 10px;
  background: url(../images/ico1.png) no-repeat;
}
.indexP2 .swiper-slide .name,
.indexP2 .swiper-slide .msg,
.indexP2 .swiper-slide .more {
  transform: translateY(1rem);
  -webkit-transform: translateY(1rem);
  -moz-transform: translateY(1rem);
  -ms-transform: translateY(1rem);
  -o-transform: translateY(1rem);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.indexP2 .swiper-slide.swiper-slide-active .name,
.indexP2 .swiper-slide.swiper-slide-active .msg,
.indexP2 .swiper-slide.swiper-slide-active .more {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}
.indexP2 .tab-box {
  position: absolute;
  left: 50%;
  margin-left: -7.68rem;
  bottom: 0.4rem;
  width: 15.36rem;
  height: 1.75rem;
  z-index: 2;
}
.indexP2 .tab-box a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  float: left;
  width: 33.33%;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 0.28rem;
  font-size: var(--fs24);
  color: #fff;
  height: 1.75rem;
  position: relative;
  z-index: 1;
}
.indexP2 .tab-box a::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.indexP2 .tab-box a:last-child::after {
  display: none;
}
.indexP2 .tab-box a .ico {
  height: 0.36rem;
  margin-bottom: 0.25rem;
}
.indexP2 .tab-box a.on {
  background: #004ea2;
}
.indexP3 {
  padding: 1.2rem 0 0.8rem;
  overflow: hidden;
}
.indexP3 .indTxt {
  margin-bottom: 0.5rem;
}
.indexP3 .lunbo {
  position: relative;
  overflow: hidden;
}
.indexP3 .lunbo .imgList {
  width: 40.6rem;
  position: relative;
  left: 50%;
  margin-left: -20.4rem;
}
.indexP3 .lunbo .swiper-slide {
  position: relative;
  overflow: hidden;
}
.indexP3 .lunbo .swiper-slide .img {
  width: 13rem;
  height: 7.2rem;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.indexP3 .lunbo .swiper-slide .img::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  background-image: linear-gradient(360deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.indexP3 .lunbo .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.indexP3 .lunbo .swiper-slide .layer {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 2;
  padding: 0 0.75rem;
  bottom: 0.4rem;
  color: #fff;
}
.indexP3 .lunbo .swiper-slide .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  margin-bottom: 0.15rem;
}
.indexP3 .lunbo .swiper-slide .msg {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.indexP3 .lunbo .se {
  display: block;
  width: 0.64rem;
  height: 0.64rem;
  position: absolute;
  z-index: 3;
  top: 50%;
  border: #eee solid 2px;
  border-radius: 50%;
  margin-top: -0.32rem;
  outline: none;
}
.indexP3 .lunbo .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: #fff url(../images/nimg9_left.png) center no-repeat;
}
.indexP3 .lunbo .prev:hover {
  border: #fff solid 2px;
  background: #fff url(../images/nimg9_left2.png) center no-repeat;
}
.indexP3 .lunbo .next {
  right: 50%;
  margin-right: -8.6rem;
  background: #fff url(../images/nimg9_right.png) center no-repeat;
}
.indexP3 .lunbo .next:hover {
  border: #fff solid 1px;
  background: #fff url(../images/nimg9_right2.png) center no-repeat;
}
.indexP4 {
  height: 9rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.8rem;
}
.indexP4 .parallax-bg {
  position: absolute;
  top: -80%;
  left: 0;
  width: 100%;
  height: 115%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP4 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  text-align: center;
  height: 100%;
}
.indexP4 .title {
  font-size: var(--fs60);
  line-height: 0.72rem;
  color: #fff;
  margin: 0 0 0.3rem;
  font-weight: bold;
}
.indexP4 .msg {
  font-size: var(--fs30);
  color: #fff;
  line-height: 0.48rem;
}
.indexP5 {
  height: 7.6rem;
  position: relative;
  overflow: hidden;
}
.indexP5 .parallax-bg {
  position: absolute;
  top: -80%;
  left: 0;
  width: 100%;
  height: 105%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.indexP5 .parallax-bg::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-image: linear-gradient(90deg, rgba(0, 78, 162, 0.55) 0%, transparent 100%);
  background-blend-mode: normal, normal;
}
.indexP5 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.indexP5 .indTxt {
  text-align: left;
}
.indexP5 .indTxt .title {
  color: #fff;
  margin-bottom: 0.1rem;
}
.indexP5 .indTxt .zi {
  color: #fff;
}
.indexP5 .content {
  margin-top: 0.3rem;
  width: 5.76rem;
  color: #fff;
  line-height: 0.3rem;
  font-size: var(--fs16);
}
.indexP5 .more {
  margin-top: 0.7rem;
  width: 1.8rem;
}
.indexP5 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  background: #fff;
  font-size: var(--fs16);
  color: #004ea2;
}
.indexP5 .more a span {
  position: relative;
  z-index: 1;
}
.indexP5 .more a em {
  margin-left: 0.12rem;
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/ico2.png) no-repeat;
}
.indexP6 {
  padding: 1.3rem 0 1.2rem;
}
.indexP6 .toptop {
  position: relative;
}
.indexP6 .indTxt {
  text-align: left;
}
.indexP6 .indTxt .title {
  color: #333;
}
.indexP6 .indTxt .zi {
  color: #666;
}
.indexP6 .more {
  position: absolute;
  right: 0;
  top: 0.25rem;
  width: 1.8rem;
}
.indexP6 .more a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.5rem;
  border-radius: 0.48rem;
  border: #333 solid 2px;
  font-size: var(--fs16);
  color: #333;
}
.indexP6 .more a span {
  position: relative;
  z-index: 1;
}
.indexP6 .more a em {
  margin-left: 0.12rem;
  display: block;
  width: 13px;
  height: 13px;
  background: url(../images/ico2on.png) no-repeat;
  transition: All 0.5s ease;
}
.indexP6 .more a:hover {
  border: #004ea2 solid 2px;
  background: #004ea2;
  color: #fff;
}
.indexP6 .more a:hover em {
  background: url(../images/ico3.png) no-repeat;
}
.indexP6 .list {
  margin-top: 0.45rem;
}
.indexP6 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.indexP6 .list li {
  width: calc((100% - 0.76rem) / 2);
  margin-right: 0.76rem;
  margin-top: 0.2rem;
}
.indexP6 .list li:nth-child(2n) {
  margin-right: 0;
}
.indexP6 .list li:nth-child(-n+2) {
  margin-top: 0;
}
.indexP6 .list li a {
  position: relative;
  display: block;
  padding: 0.25rem 1.1rem 0 0.55rem;
  height: 1.6rem;
  border-radius: 4px;
  border-bottom-right-radius: 0.48rem;
  box-shadow: 0 0 0.2rem rgba(120, 120, 120, 0.13);
}
.indexP6 .list li a::after {
  content: '';
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0.3rem;
  bottom: 0.22rem;
  width: 0.9rem;
  height: 0.83rem;
  background: url(../images/nimg90Bg.png) no-repeat;
  background-size: 0.9rem;
  transition: All 0.5s ease;
}
.indexP6 .list li a .time {
  font-size: var(--fs18);
  line-height: 0.24rem;
  color: rgba(153, 153, 153, 0.4);
  font-family: 'Mont-M';
}
.indexP6 .list li a .name {
  /* 多行省略溢出显示省略号*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #333;
  margin-top: 5px;
  font-size: var(--fs20);
  line-height: 0.34rem;
  height: 0.68rem;
}
.indexP6 .list li a:hover {
  background: #004ea2;
}
.indexP6 .list li a:hover::after {
  opacity: 1;
  visibility: visible;
}
.indexP6 .list li a:hover .time {
  color: rgba(255, 255, 255, 0.4);
}
.indexP6 .list li a:hover .name {
  color: #fff;
}
.indexP7 {
  height: 4.5rem;
  position: relative;
  overflow: hidden;
  background: center no-repeat;
  background-size: cover;
}
.indexP7::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.indexP7 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  z-index: 1;
  text-align: center;
  height: 100%;
}
.indexP7 .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #fff;
  margin: 0 0 0.3rem;
}
.indexP7 .msg {
  font-size: var(--fs18);
  color: #fff;
  line-height: 0.24rem;
  margin-bottom: 0.35rem;
}
.indexP7 .btnDiv ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.indexP7 .btnDiv li {
  margin: 0 0.1rem;
}
.indexP7 .btnDiv li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.2rem;
  height: 0.6rem;
  font-size: var(--fs16);
  color: #fff;
  border-radius: 0.48rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}
.indexP7 .btnDiv li a em {
  margin-left: 0.1rem;
  width: 0.16rem;
  height: 0.16rem;
  background: url(../images/ico4.png) no-repeat;
  background-size: 0.16rem;
}
.indexP7 .btnDiv li a:hover {
  background: #004ea2;
}
@media (max-width: 1600px) {
  .live-action .prev {
    margin-left: -8.9rem;
  }
  .live-action .next {
    margin-right: -8.9rem;
  }
  .indexP2 .indTxt {
    margin-left: -8rem;
  }
  .indexP2 .swiper-slide .info {
    margin-left: -8rem;
  }
  .indexP2 .tab-box {
    margin-left: -8rem;
    width: 16rem;
  }
}
@media (max-width: 1004px) {
  .indTxt .title {
    font-size: var(--fs24);
    line-height: 0.72rem;
    margin-bottom: 0.1rem;
  }
  .indTxt .zi {
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .indexP1 {
    padding: 1rem 0 0.9rem;
  }
  .indexP1 .indTxt {
    margin-bottom: 0.5rem;
  }
  .live-action li {
    padding: 3px 0;
  }
  .live-action li a {
    padding: 0.35rem 0.2rem 0;
    height: 3.2rem;
  }
  .live-action li .imgDiv {
    width: 2rem;
    height: 2rem;
  }
  .live-action li .name {
    height: 0.52rem;
    line-height: 0.52rem;
    font-size: var(--fs16);
  }
  .live-action .se {
    width: 0.9rem;
    height: 0.9rem;
    border: #eee solid 1px;
    margin-top: -0.8rem;
  }
  .live-action .prev {
    left: 0;
    margin-left: 0;
  }
  .live-action .prev:hover {
    border: #004ea2 solid 1px;
  }
  .live-action .next {
    right: 0;
    margin-right: 0;
  }
  .live-action .next:hover {
    border: #004ea2 solid 1px;
  }
  .indexP2 .indTxt {
    left: var(--offset);
    margin-left: 0;
    top: 10%;
  }
  .indexP2 .swiper-slide .pic img {
    height: 80vh;
  }
  .indexP2 .swiper-slide .info {
    left: var(--offset);
    right: var(--offset);
    margin-left: 0;
    top: 2.5rem;
  }
  .indexP2 .swiper-slide .name {
    font-size: var(--fs18);
    line-height: 0.64rem;
  }
  .indexP2 .swiper-slide .msg {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: var(--fs14);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP2 .swiper-slide .more {
    margin-top: 0.3rem;
    width: 2.4rem;
  }
  .indexP2 .swiper-slide .more a {
    height: 0.86rem;
    font-size: var(--fs14);
    color: #fff;
  }
  .indexP2 .swiper-slide .more a em {
    margin-left: 0.15rem;
  }
  .indexP2 .tab-box {
    left: 0;
    margin-left: 0;
    bottom: 0;
    width: 100%;
    height: 1.4rem;
  }
  .indexP2 .tab-box a {
    line-height: 0.36rem;
    font-size: var(--fs15);
    height: 1.4rem;
  }
  .indexP2 .tab-box a .ico {
    margin-bottom: 0.2rem;
  }
  .indexP2 .tab-box a .ico img {
    width: 0.48rem;
  }
  .indexP3 {
    padding: 1rem 0 0.8rem;
  }
  .indexP3 .indTxt {
    margin-bottom: 0.6rem;
  }
  .indexP3 .lunbo {
    padding: 0 0.3rem 1.2rem;
    overflow: hidden;
  }
  .indexP3 .lunbo .imgList {
    width: 100%;
    left: 0;
    margin-left: 0;
  }
  .indexP3 .lunbo .swiper-slide .img {
    width: 100%;
    height: 4.2rem;
  }
  .indexP3 .lunbo .swiper-slide .layer {
    padding: 0 0.25rem;
    bottom: 0.3rem;
  }
  .indexP3 .lunbo .swiper-slide .name {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .indexP3 .lunbo .swiper-slide .msg {
    font-size: var(--fs13);
    line-height: 0.46rem;
  }
  .indexP3 .lunbo .se {
    width: 0.9rem;
    height: 0.9rem;
    top: auto;
    bottom: 0;
    margin-top: 0;
    border: #edecec solid 1px;
  }
  .indexP3 .lunbo .prev {
    margin-left: -1.1rem;
  }
  .indexP3 .lunbo .prev:hover {
    border: #004ea2 solid 1px;
  }
  .indexP3 .lunbo .next {
    margin-right: -1.1rem;
  }
  .indexP3 .lunbo .next:hover {
    border: #004ea2 solid 1px;
  }
  .indexP4 {
    height: 7rem;
    margin-bottom: 0.6rem;
  }
  .indexP4 .parallax-bg {
    top: -60%;
  }
  .indexP4 .title {
    font-size: var(--fs26);
  }
  .indexP4 .msg {
    font-size: var(--fs17);
    line-height: 0.56rem;
  }
  .indexP5 {
    height: 6.4rem;
  }
  .indexP5 .parallax-bg {
    top: -60%;
    left: 0;
    width: 100%;
    height: 105%;
    /* 比容器高，便于移动 */
    background-size: cover;
    background-position: center;
    z-index: -1;
  }
  .indexP5 .content {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    margin-top: 0.2rem;
    width: 70%;
    line-height: 0.48rem;
    font-size: var(--fs14);
    height: 1.44rem;
  }
  .indexP5 .more {
    margin-top: 0.35rem;
    width: 2.4rem;
  }
  .indexP5 .more a {
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP5 .more a em {
    margin-left: 0.16rem;
  }
  .indexP6 {
    padding: 1rem 0 0.9rem;
  }
  .indexP6 .toptop {
    position: relative;
    padding-right: 3rem;
  }
  .indexP6 .more {
    position: absolute;
    right: 0;
    top: 0.1rem;
    width: 2.4rem;
  }
  .indexP6 .more a {
    height: 0.86rem;
    border: #333 solid 1px;
    font-size: var(--fs14);
  }
  .indexP6 .more a em {
    margin-left: 0.16rem;
  }
  .indexP6 .more a:hover {
    border: #004ea2 solid 1px;
  }
  .indexP6 .list li {
    width: 100%;
    margin-right: 0;
  }
  .indexP6 .list li:nth-child(1) {
    margin-top: 0;
  }
  .indexP6 .list li:nth-child(2) {
    margin-top: 0.2rem;
  }
  .indexP6 .list li a {
    padding: 0.3rem 0.4rem 0 0.3rem;
    height: 2rem;
  }
  .indexP6 .list li a::after {
    content: '';
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 0.3rem;
    bottom: 0.22rem;
    width: 0.9rem;
    height: 0.83rem;
    background: url(../images/nimg90Bg.png) no-repeat;
    background-size: 0.9rem;
    transition: All 0.5s ease;
  }
  .indexP6 .list li a .time {
    font-size: var(--fs15);
    line-height: 0.42rem;
  }
  .indexP6 .list li a .name {
    font-size: var(--fs16);
    line-height: 0.48rem;
    height: 0.96rem;
  }
  .indexP7 {
    height: 4.5rem;
  }
  .indexP7 .title {
    font-size: var(--fs24);
    margin: 0 0 0.2rem;
  }
  .indexP7 .msg {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .indexP7 .btnDiv li a {
    width: 2.76rem;
    height: 0.86rem;
    font-size: var(--fs14);
  }
  .indexP7 .btnDiv li a em {
    margin-left: 0.15rem;
    width: 0.24rem;
    height: 0.24rem;
    background-size: 0.24rem;
  }
}
.contact {
  padding: 1rem 0 1.3rem;
  background: url(../images/contactBg.jpg) no-repeat center center;
  background-size: cover;
}
.contact .banner {
  border-radius: 0.16rem;
  overflow: hidden;
  position: relative;
}
.contact .banner .imgDiv {
  position: relative;
}
.contact .banner .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}
.contact .banner .imgDiv img {
  width: 100%;
}
.contact .banner .info {
  position: absolute;
  left: 1.2rem;
  top: 0;
  height: 100%;
  z-index: 2;
  display: flex;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  align-items: center;
  -webkit-align-items: center;
}
.contact .banner .cn {
  color: #fff;
  font-size: var(--fs60);
  line-height: 0.72rem;
  margin: 0 0 0.15rem;
}
.contact .banner .en {
  font-size: var(--fs30);
  line-height: 0.42rem;
  color: #fff;
}
.contact .mxfDiv {
  margin-top: 1.3rem;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.contact .conDiv {
  width: 25%;
}
.contact .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.56rem;
  color: #333;
  font-weight: bold;
  margin: 0 0 0.4rem;
}
.contact .conDiv .tips {
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.contact .conDiv .list {
  margin-top: 0.7rem;
}
.contact .conDiv .list li {
  padding-bottom: 0.4rem;
}
.contact .conDiv .list li:last-child {
  padding-bottom: 0;
}
.contact .conDiv .list li .zi {
  font-size: var(--fs18);
  line-height: 0.3rem;
}
.contact .conDiv .list li .num {
  font-size: var(--fs24);
  color: #004ea2;
  line-height: 0.32rem;
  font-family: 'Poppins-M';
}
.contact .conDiv .list li .wen {
  font-size: var(--fs16);
  line-height: 0.24rem;
  color: #004ea2;
}
.contact .rightDiv {
  width: 65%;
}
.contact .form ul {
  margin-right: -0.2rem;
}
.contact .form ul::after {
  content: '';
  display: block;
  clear: both;
}
.contact .form li {
  float: left;
  width: 50%;
  margin-bottom: 0.2rem;
}
.contact .form li:last-child {
  margin-bottom: 0;
}
.contact .form li .box {
  margin-right: 0.2rem;
}
.contact .form li .input1 {
  width: 100%;
  height: 0.8rem;
  border-radius: 4px;
  padding-left: 0.35rem;
  font-size: var(--fs18);
  color: #999;
}
.contact .form li .input1::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li .input1:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li .input1::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li .input1:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li textarea {
  display: block;
  width: 100%;
  height: 2.4rem;
  border-radius: 4px;
  padding: 0.2rem 0.35rem 0;
  font-size: var(--fs18);
  line-height: 0.32rem;
  color: #999;
  font-family: inherit;
}
.contact .form li textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li textarea:-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form li textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
.contact .form .li01 {
  width: 100%;
}
.contact .btnDiv {
  margin-top: 0.6rem;
  width: 2rem;
}
.contact .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.6rem;
  background: #004ea2;
  border-radius: 0.48rem;
  color: #fff;
  font-size: var(--fs18);
}
@media (max-width: 1004px) {
  .contact {
    padding: 0.8rem 0 0.9rem;
  }
  .contact .banner {
    border-radius: 0.24rem;
  }
  .contact .banner .imgDiv {
    height: 2.5rem;
  }
  .contact .banner .imgDiv img {
    height: 100%;
    object-fit: cover;
  }
  .contact .banner .info {
    left: 0.3rem;
  }
  .contact .banner .cn {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin: 0 0 0.1rem;
  }
  .contact .banner .en {
    font-size: var(--fs18);
    line-height: 0.52rem;
  }
  .contact .mxfDiv {
    margin-top: 0.65rem;
    display: block;
  }
  .contact .conDiv {
    width: auto;
  }
  .contact .conDiv .title {
    display: none;
  }
  .contact .conDiv .tips {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
  .contact .conDiv .list {
    margin-top: 0.6rem;
  }
  .contact .conDiv .list ul {
    display: flex;
    display: -webkit-flex;
    flex-flow: wrap;
  }
  .contact .conDiv .list li {
    width: 50%;
    padding-right: 0.2rem;
  }
  .contact .conDiv .list li:last-child {
    width: auto;
  }
  .contact .conDiv .list li .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .contact .conDiv .list li .num {
    font-size: var(--fs18);
    line-height: 0.48rem;
  }
  .contact .conDiv .list li .wen {
    font-size: var(--fs13);
    line-height: 0.42rem;
  }
  .contact .rightDiv {
    padding-top: 0.7rem;
    width: auto;
  }
  .contact .form ul {
    margin-right: 0;
  }
  .contact .form li {
    float: none;
    width: auto;
    margin-bottom: 0.3rem;
  }
  .contact .form li .box {
    margin-right: 0;
  }
  .contact .form li .input1 {
    height: 0.96rem;
    padding-left: 0.25rem;
    font-size: var(--fs14);
  }
  .contact .form li textarea {
    height: 3.5rem;
    padding: 0.2rem 0.25rem 0;
    font-size: var(--fs14);
    line-height: 0.42rem;
  }
  .contact .btnDiv {
    width: 2.6rem;
  }
  .contact .btnDiv a {
    height: 0.9rem;
    font-size: var(--fs15);
  }
}
.recipe {
  position: relative;
  padding: 2rem 0 1.1rem;
  background: url(../images/recipeBg.jpg) no-repeat center center;
  background-size: cover;
}
.recipe .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #004ea2;
  font-weight: bold;
  margin-bottom: 0.65rem;
}
.recipe .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.recipe .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.4rem;
}
.recipe .list li:nth-child(-n+3) {
  margin-top: 0;
}
.recipe .list li:nth-child(3n) {
  margin-right: 0;
}
.recipe .list li .imgDiv {
  border-radius: 0.1rem;
  height: 3rem;
  overflow: hidden;
}
.recipe .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.recipe .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  margin-top: 0.2rem;
  line-height: 0.36rem;
  transition: All 0.5s ease;
}
.recipe .list li .name em {
  font-size: var(--fs14);
}
.recipe .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.recipe .list li:hover .name {
  color: #004ea2;
}
@media (max-width: 1004px) {
  .recipe {
    padding: 0.9rem 0;
  }
  .recipe .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .recipe .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.35rem;
  }
  .recipe .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .recipe .list li:nth-child(3) {
    margin-top: 0.35rem;
  }
  .recipe .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .recipe .list li:nth-child(2n) {
    margin-right: 0;
  }
  .recipe .list li .imgDiv {
    border-radius: 0.2rem;
    height: 2rem;
  }
  .recipe .list li .name {
    white-space: normal;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .recipe .list li .name em {
    font-size: var(--fs12);
  }
}
.videoBox {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/videoBg.jpg) no-repeat center center;
  background-size: cover;
}
.videoBox .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.65rem;
}
.videoBox .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.videoBox .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.45rem;
  cursor: pointer;
}
.videoBox .list li:nth-child(-n+3) {
  margin-top: 0;
}
.videoBox .list li:nth-child(3n) {
  margin-right: 0;
}
.videoBox .list li .imgDiv {
  position: relative;
  border-radius: 0.1rem;
  height: 2.8rem;
  overflow: hidden;
}
.videoBox .list li .imgDiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.3rem;
  margin-top: -0.3rem;
  width: 0.6rem;
  height: 0.6rem;
  background: url(../images/play.png) no-repeat;
  background-size: 100%;
}
.videoBox .list li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.videoBox .list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  margin-top: 0.3rem;
  line-height: 0.3rem;
  transition: All 0.5s ease;
}
.videoBox .list li .videoDiv {
  display: none;
}
.videoBox .list li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.videoBox .list li:hover .name {
  color: #004ea2;
}
.readmore {
  margin-top: 0.65rem;
}
.readmore a {
  display: block;
  text-align: center;
  color: #004ea2;
  font-size: var(--fs16);
}
.readmore a span {
  height: 1px;
  -webkit-transform: scaleY(0.5);
  transform: scaleY(0.5);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  overflow: hidden;
  background: url(../images/dot.jpg) no-repeat;
  background-size: 0 1px;
  background-position: 100% 100%;
  transition: background-size 0.7s ease;
}
.readmore a img {
  width: 0.34rem;
  margin-right: 0.2rem;
}
.readmore a:hover span {
  background-size: 100% 1px;
  background-position: 0 100%;
}
.video-box {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
.video-box.on {
  display: flex;
  display: -webkit-box;
  /* Chrome 4+, Safari 3.1, iOS Safari 3.2+ */
  display: -moz-box;
  /* Firefox 17- */
  display: -webkit-flex;
  /* Chrome 21+, Safari 6.1+, iOS Safari 7+, Opera 15/16 */
  display: -moz-flex;
  /* Firefox 18+ */
  display: -ms-flexbox;
  /* IE 10 */
}
.shipinLayer {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  position: relative;
}
.shipinLayer .close {
  position: absolute;
  display: block;
  right: 10px;
  top: 10px;
  width: 30px;
  height: 30px;
  z-index: 1;
  background: url(../images/close2.png) no-repeat;
  transition: All 0.5s ease;
}
.shipinLayer .close:hover {
  transform: rotate(-90deg);
}
.shipinLayer .baozhe {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 100%;
  height: 5.6rem;
  background: #000;
}
.shipinLayer iframe {
  width: 100%;
  height: 5.6rem;
}
.shipinLayer video {
  max-width: 100%;
  max-height: 5.6rem;
}
@media (max-width: 1004px) {
  .videoBox {
    padding: 0.9rem 0;
  }
  .videoBox .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .videoBox .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.35rem;
  }
  .videoBox .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .videoBox .list li:nth-child(3) {
    margin-top: 0.35rem;
  }
  .videoBox .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .videoBox .list li:nth-child(2n) {
    margin-right: 0;
  }
  .videoBox .list li .imgDiv {
    border-radius: 0.2rem;
    height: 2rem;
  }
  .videoBox .list li .imgDiv::after {
    width: 0.9rem;
    height: 0.9rem;
    margin-left: -0.45rem;
    margin-top: -0.45rem;
  }
  .videoBox .list li .name {
    white-space: normal;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .readmore {
    margin-top: 0.8rem;
  }
  .readmore a img {
    width: 0.56rem;
  }
  .shipinLayer {
    width: 94%;
    padding: 1rem 0.3rem 0.5rem;
  }
  .shipinLayer .close {
    right: 0.3rem;
    top: 0.2rem;
    width: 0.6rem;
    height: 0.6rem;
    background-size: 0.6rem;
  }
  .shipinLayer .baozhe {
    height: 4rem;
  }
  .shipinLayer iframe {
    height: 4rem;
  }
  .shipinLayer video {
    max-height: 4rem;
  }
}
.shoplinks {
  padding-bottom: 0.6rem;
  position: relative;
}
.shoplinks::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #a5acb2;
}
.shoplinks ul {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}
.shoplinks ul li {
  margin: 0 0.7rem;
  font-size: var(--fs48);
}
.shoplinks ul li a {
  display: block;
  line-height: 0.5rem;
  color: #333;
}
.shoplinks ul li a:hover {
  color: #004ea2;
}
.shoplinks ul li .on {
  color: #004ea2;
  font-weight: bold;
}
.shoplinks2::after {
  display: none;
}
.store {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/contactBg.jpg) no-repeat center center;
  background-size: cover;
}
.store .list {
  position: relative;
  padding: 0.4rem 0 0.6rem;
}
.store .list::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #a5acb2;
}
.store .list:last-child {
  padding: 0.4rem 0 0;
}
.store .list:last-child::after {
  display: none;
}
.store .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.store .list li {
  width: calc((100% - 1rem) / 3);
  margin-right: 0.5rem;
  margin-top: 0.3rem;
  cursor: pointer;
}
.store .list li:nth-child(-n+3) {
  margin-top: 0;
}
.store .list li:nth-child(3n) {
  margin-right: 0;
}
.store .list li .imgDiv {
  border-radius: 0.12rem;
  overflow: hidden;
}
.store .list li .imgDiv img {
  width: 100%;
  transition: All 1s ease;
}
.store .list li:hover .imgDiv img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
@media (max-width: 1004px) {
  .shoplinks ul li {
    margin: 0 0.4rem;
    font-size: var(--fs18);
  }
  .store {
    padding: 0.9rem 0;
  }
  .store .list {
    padding: 0.5rem 0 0.7rem;
  }
  .store .list:last-child {
    padding: 0.5rem 0 0;
  }
  .store .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.25rem;
  }
  .store .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .store .list li:nth-child(3) {
    margin-top: 0.25rem;
  }
  .store .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .store .list li:nth-child(2n) {
    margin-right: 0;
  }
  .store .list li .imgDiv {
    border-radius: 0.16rem;
  }
}
.provincelist {
  position: relative;
  height: 0.55rem;
}
.provincelist::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 1px;
  background: #a4acb2;
}
.provincelist ul {
  overflow: hidden;
  height: 0.55rem;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 3px;
}
.provincelist ul::-webkit-scrollbar {
  height: 3px;
}
.provincelist ul::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}
.provincelist ul::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.provincelist li {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: var(--fs24);
  margin-right: 0.7rem;
}
.provincelist li:last-child {
  margin-right: 0;
}
.provincelist li a {
  position: relative;
  display: block;
  line-height: 0.24rem;
  color: #333;
  height: 0.55rem;
  min-width: 0.6rem;
  text-align: center;
}
.provincelist li a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 2px;
  background: #004ea2;
}
.provincelist li a:hover {
  color: #004ea2;
}
.provincelist li .aNow {
  color: #004ea2;
  font-weight: bold;
}
.provincelist li .aNow::after {
  width: 100%;
  left: 0;
}
.shop {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/contactBg.jpg) no-repeat center center;
  background-size: cover;
}
.shop .title {
  text-align: center;
  color: #333;
  font-size: var(--fs48);
  line-height: 0.5rem;
  margin-bottom: 0.55rem;
  font-weight: bold;
}
.shop .list {
  padding-top: 0.6rem;
}
.shop .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.shop .list li {
  width: calc((100% - 1rem) / 3);
  background: #fff;
  border-radius: 0.1rem;
  min-height: 2.7rem;
  padding: 0.4rem 0.5rem 0.3rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  transition: All 0.5s ease;
}
.shop .list li:nth-child(-n+3) {
  margin-top: 0;
}
.shop .list li:nth-child(3n) {
  margin-right: 0;
}
.shop .list li .name {
  line-height: 0.32rem;
  font-size: var(--fs24);
  color: #333;
  font-weight: bold;
  padding-bottom: 0.2rem;
  border-bottom: #eaeaea solid 1px;
  transition: All 0.5s ease;
}
.shop .list li .msg {
  margin-top: 0.3rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  transition: All 0.5s ease;
}
.shop .list li:hover {
  background: #004ea2;
}
.shop .list li:hover .name {
  color: #fff;
  border-bottom: #2f6db0 solid 1px;
}
.shop .list li:hover .msg {
  color: #fff;
}
@media (max-width: 1004px) {
  .provincelist {
    height: 0.85rem;
  }
  .provincelist::after {
    bottom: 4px;
  }
  .provincelist ul {
    height: 0.85rem;
  }
  .provincelist li {
    font-size: var(--fs16);
    margin-right: 0.45rem;
  }
  .provincelist li a {
    line-height: 0.42rem;
    height: 0.85rem;
    min-width: 0.76rem;
  }
  .provincelist li a::after {
    bottom: 8px;
  }
  .shop {
    padding: 0.9rem 0;
  }
  .shop .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .shop .list li {
    width: 100%;
    margin-right: 0;
    margin-top: 0.3rem;
    padding: 0.4rem 0.35rem 0.3rem;
  }
  .shop .list li:nth-child(1) {
    margin-top: 0;
  }
  .shop .list li:nth-child(2),
  .shop .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .shop .list li .name {
    line-height: 0.48rem;
    font-size: var(--fs17);
  }
  .shop .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.recipeP1 {
  padding-bottom: 1.2rem;
  background: url(../images/recipeP1.jpg) center no-repeat;
  background-size: cover;
}
.recipeP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.7rem;
}
.recipeP1 .imgDiv {
  width: 50%;
  border-radius: 8px;
  overflow: hidden;
}
.recipeP1 .imgDiv img {
  width: 100%;
}
.recipeP1 .conDiv {
  width: 43%;
}
.recipeP1 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #004ea2;
  margin: 0;
}
.recipeP1 .name em {
  padding-left: 0.1rem;
  font-size: var(--fs24);
}
.recipeP1 .msg {
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
  margin: 0.15rem 0 0.65rem;
}
.recipeP1 .lie ul {
  display: flex;
}
.recipeP1 .lie li {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-direction: column;
  -webkit-flex-direction: column;
  margin: 0 0.3rem 0.2rem 0;
  min-width: 1.5rem;
  padding: 0.12rem 0.2rem;
  border-radius: 0.16rem;
  border: #ff720b solid 2px;
  text-align: center;
  color: #ff720b;
  font-size: var(--fs18);
}
.recipeP1 .lie li img {
  margin-bottom: 0.12rem;
}
.recipeP2 {
  padding: 1.2rem 0;
}
.recipeP2 .wrap {
  padding: 0 0.68rem;
}
.recipeP2 .title {
  font-weight: bold;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin-bottom: 0.3rem;
}
.recipeP2 .zi {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  padding-bottom: 0.5rem;
}
.recipeP2 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.recipeP2 .pjDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-bottom: 1.2rem;
}
.recipeP2 .pjDiv .imgDiv {
  order: 1;
}
.recipeP2 .imgDiv {
  width: 4.6rem;
}
.recipeP2 .imgDiv img {
  width: 100%;
}
.recipeP2 .conDiv {
  width: 52.5%;
}
.recipeP2 .conDiv .content {
  padding-top: 0.4rem;
  font-size: var(--fs18);
  line-height: 0.48rem;
  color: #333;
}
.recipeP2 .conDiv .content img,
.recipeP2 .conDiv .content input {
  max-width: 100%;
}
.recipeP2 .tab2 {
  position: relative;
}
.recipeP2 .tab2::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #d3d3d3;
}
.recipeP2 .tab2::after {
  content: '';
  display: block;
  clear: both;
}
.recipeP2 .tab2 li {
  float: left;
  position: relative;
  z-index: 1;
  font-size: var(--fs30);
  line-height: 0.4rem;
  color: #333;
  padding-bottom: 0.3rem;
  margin-right: 1rem;
  transition: All 0.5s ease;
}
.recipeP2 .tab2 li:last-child {
  margin-right: 0;
}
.recipeP2 .tab2 li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 3px;
  background: #004ea2;
  transition: All 0.5s ease;
}
.recipeP2 .tab2 .liNow {
  color: #004ea2;
}
.recipeP2 .tab2 .liNow::after {
  width: 100%;
  left: 0;
}
.recipeP2 .tabContent2 {
  animation: am_top 0.8s ease-out 0.1s backwards;
  -webkit-animation: am_top 0.8s ease-out 0.1s backwards;
}
.recipeP2 .tips {
  padding: 0.5rem 0.6rem;
  background: #004ea2;
  color: #fff;
}
.recipeP2 .tips .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  font-weight: bold;
}
.recipeP2 .tips .msg {
  margin-top: 0.12rem;
  font-size: var(--fs18);
  line-height: 0.36rem;
}
.recipeP3 {
  background: #f8f8f8;
  padding: 1.2rem 0;
}
.recipeP3 .toptop {
  position: relative;
  padding-bottom: 0.6rem;
}
.recipeP3 .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin: 0;
}
.recipeP3 .arrowDiv {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.recipeP3 .arrowDiv .se {
  display: block;
  float: left;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  border: #95c4e8 solid 2px;
}
.recipeP3 .arrowDiv .se:hover {
  border: #0075cf solid 2px;
}
.recipeP3 .arrowDiv .prev {
  background: url(../images/nimg15_left.png) center no-repeat;
  margin-right: 0.3rem;
}
.recipeP3 .arrowDiv .prev:hover {
  background: #0075cf url(../images/nimg15_lefton.png) center no-repeat;
}
.recipeP3 .arrowDiv .next {
  background: url(../images/nimg15_right.png) center no-repeat;
}
.recipeP3 .arrowDiv .next:hover {
  background: #0075cf url(../images/nimg15_righton.png) center no-repeat;
}
.recipeP3 .imgList {
  overflow: hidden;
}
.recipeP3 .imgList li {
  width: calc((100% - 0.96rem) / 3);
  margin-right: 0.48rem;
}
.recipeP3 .imgList li .imgDiv {
  border-radius: 0.1rem;
  height: 3rem;
  overflow: hidden;
}
.recipeP3 .imgList li .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: All 1s ease;
}
.recipeP3 .imgList li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
  font-size: var(--fs18);
  color: #333;
  margin-top: 0.2rem;
  line-height: 0.36rem;
  transition: All 0.5s ease;
}
.recipeP3 .imgList li .name em {
  font-size: var(--fs14);
}
.recipeP3 .imgList li:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.recipeP3 .imgList li:hover .name {
  color: #004ea2;
}
@media (max-width: 1004px) {
  .recipeP1 {
    padding: 0.9rem 0;
  }
  .recipeP1 .mxfDiv {
    display: block;
    margin-top: 0;
  }
  .recipeP1 .imgDiv {
    width: 100%;
    border-radius: 0.24rem;
  }
  .recipeP1 .conDiv {
    width: auto;
    margin-top: 0.6rem;
  }
  .recipeP1 .name {
    font-size: var(--fs22);
  }
  .recipeP1 .name em {
    font-size: var(--fs16);
  }
  .recipeP1 .msg {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .recipeP1 .lie li {
    margin: 0 0.2rem 0.2rem 0;
    border: #ff720b solid 1px;
    font-size: var(--fs14);
  }
  .recipeP1 .lie li img {
    width: 0.9rem;
  }
  .recipeP2 {
    padding: 0.9rem var(--offset);
  }
  .recipeP2 .wrap {
    padding: 0;
  }
  .recipeP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
  }
  .recipeP2 .zi {
    font-size: var(--fs15);
    line-height: 0.48rem;
    padding-bottom: 0.6rem;
  }
  .recipeP2 .mxfDiv {
    display: block;
    margin-bottom: 0.8rem;
  }
  .recipeP2 .pjDiv {
    display: block;
    margin-bottom: 0.8rem;
  }
  .recipeP2 .imgDiv {
    width: 100%;
  }
  .recipeP2 .conDiv {
    width: 100%;
    padding-top: 0.6rem;
  }
  .recipeP2 .conDiv .content {
    font-size: var(--fs15);
    line-height: 0.64rem;
  }
  .recipeP2 .tab2 li {
    font-size: var(--fs16);
    line-height: 0.56rem;
    padding-bottom: 0.3rem;
    margin-right: 0.4rem;
  }
  .recipeP2 .tab2 li::after {
    height: 2px;
  }
  .recipeP2 .tips {
    padding: 0.5rem 0.4rem;
  }
  .recipeP2 .tips .name {
    font-size: var(--fs22);
  }
  .recipeP2 .tips .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .recipeP3 {
    padding: 0.9rem 0;
  }
  .recipeP3 .title {
    font-size: var(--fs22);
    line-height: 0.9rem;
  }
  .recipeP3 .arrowDiv .se {
    width: 0.9rem;
    height: 0.9rem;
    border: #95c4e8 solid 1px;
  }
  .recipeP3 .arrowDiv .se:hover {
    border: #0075cf solid 1px;
  }
  .recipeP3 .imgList li {
    width: 100%;
    margin-right: 0;
  }
  .recipeP3 .imgList li .imgDiv {
    border-radius: 0.2rem;
    height: 3.8rem;
  }
  .recipeP3 .imgList li .name {
    white-space: normal;
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .recipeP3 .imgList li .name em {
    font-size: var(--fs12);
  }
}
.news {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/newsBg.jpg) no-repeat center center;
  background-size: cover;
}
.news .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin-bottom: 0.65rem;
  font-weight: bold;
}
.news .list {
  padding-bottom: 0.6rem;
}
.news .list li {
  margin-top: 0.2rem;
}
.news .list li:first-child {
  margin-top: 0;
}
.news .list li a {
  position: relative;
  display: block;
  height: 1rem;
  background: #fff;
  padding: 0 2.6rem 0 2.3rem;
}
.news .list li a .time {
  position: absolute;
  left: 0.45rem;
  top: 0;
  line-height: 1rem;
  font-size: var(--fs18);
  color: #999;
  transition: All 0.5s ease;
}
.news .list li a .name {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 1rem;
  font-size: var(--fs20);
  line-height: 0.32rem;
  color: #333;
  transition: All 0.5s ease;
}
.news .list li a .more {
  position: absolute;
  right: 1rem;
  top: 0;
  padding-right: 0.5rem;
  font-size: var(--fs16);
  color: #666;
  line-height: 1rem;
  background: url(../images/nimg24_1.png) right center no-repeat;
  transition: All 0.5s ease;
}
.news .list li a:hover {
  background: #004ea2;
}
.news .list li a:hover .time {
  color: #fff;
}
.news .list li a:hover .name {
  color: #fff;
}
.news .list li a:hover .more {
  color: #fff;
  background: url(../images/nimg24_1on.png) right center no-repeat;
}
@media (max-width: 1004px) {
  .news {
    padding: 1rem 0 0.9rem;
  }
  .news .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .news .list {
    padding-bottom: 0.8rem;
  }
  .news .list li a {
    height: auto;
    padding: 0.3rem;
  }
  .news .list li a .time {
    position: relative;
    left: 0;
    line-height: 0.52rem;
    font-size: var(--fs14);
  }
  .news .list li a .name {
    display: block;
    height: auto;
    font-size: var(--fs16);
    line-height: 0.52rem;
  }
  .news .list li a .more {
    display: none;
  }
}
.newshow {
  padding-bottom: 1.3rem;
  background-image: linear-gradient(180deg, #e7f4ff 0%, #fff 100%);
  background-blend-mode: normal, normal;
}
.newshow .pageNow {
  margin-bottom: 0.7rem;
}
.newshow .w1152 {
  width: 11.52rem;
  margin: 0 auto;
}
.newshow .name {
  font-size: var(--fs36);
  line-height: 0.48rem;
  color: #004ea2;
  font-weight: bold;
  margin-bottom: 0.3rem;
}
.newshow .time {
  font-size: var(--fs24);
  line-height: 0.24rem;
  color: #999;
}
.newshow .content {
  padding: 0.6rem 0;
  font-size: var(--fs16);
  line-height: 0.36rem;
  color: #333;
}
.newshow .content img {
  max-width: 100%;
}
.pageDown::after {
  content: '';
  display: block;
  clear: both;
}
.pageDown li {
  float: left;
  margin-right: 0.2rem;
}
.pageDown li .prev,
.pageDown li .next {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 1rem;
  height: 0.62rem;
  border: #e9e9e9 solid 1px;
}
.pageDown li .prev:hover,
.pageDown li .next:hover {
  width: 2.5rem;
  border: #004ea2 solid 1px;
}
.pageDown li .prev {
  background: url(../images/nimg22_left.png) center no-repeat;
  background-size: 0.22rem;
}
.pageDown li .prev:hover {
  background: #004ea2 url(../images/nimg22_lefton.png) center no-repeat;
  background-size: 0.22rem;
}
.pageDown li .next {
  background: url(../images/nimg22_right.png) center no-repeat;
  background-size: 0.22rem;
}
.pageDown li .next:hover {
  background: #004ea2 url(../images/nimg22_righton.png) center no-repeat;
  background-size: 0.22rem;
}
.pageDown li .back {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2.2rem;
  height: 0.64rem;
  border: #e9e9e9 solid 1px;
  font-size: var(--fs18);
  color: #999;
}
.pageDown li .back:hover {
  background: #004ea2;
  color: #fff;
}
@media (max-width: 1004px) {
  .newshow {
    padding: 0.9rem 0;
  }
  .newshow .w1152 {
    width: 100%;
  }
  .newshow .name {
    font-size: var(--fs20);
    line-height: 0.64rem;
  }
  .newshow .time {
    font-size: var(--fs15);
    line-height: 0.48rem;
  }
  .newshow .content {
    font-size: var(--fs14);
    line-height: 0.52rem;
  }
  .pageDown li {
    float: left;
    margin-right: 0.2rem;
  }
  .pageDown li .prev,
  .pageDown li .next {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 1rem;
    height: 0.8rem;
  }
  .pageDown li .prev:hover,
  .pageDown li .next:hover {
    width: 1rem;
  }
  .pageDown li .back {
    width: 2.5rem;
    height: 0.8rem;
    font-size: var(--fs14);
  }
  .pageDown li .back em {
    margin-left: 0.2rem;
    width: 0.22rem;
    height: 0.21rem;
    background-size: 0.22rem;
  }
  .pageDown li .back:hover em {
    background-size: 0.22rem;
  }
}
.productP1 {
  padding-bottom: 1.2rem;
  background: url(../images/recipeP1.jpg) center no-repeat;
  background-size: cover;
}
.productP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  margin-top: 0.7rem;
}
.productP1 .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 39%;
  height: 6rem;
  background: #fff;
  overflow: hidden;
}
.productP1 .imgDiv img {
  max-width: 4.8rem;
  max-height: 4.8rem;
}
.productP1 .conDiv {
  width: 54%;
}
.productP1 .name {
  font-size: var(--fs48);
  line-height: 0.64rem;
  color: #004ea2;
  margin: 0;
}
.productP1 .zi {
  margin: 0.15rem 0 0.5rem;
  font-size: var(--fs24);
  line-height: 0.36rem;
  color: #333;
}
.productP1 .msg {
  font-size: var(--fs18);
  line-height: 0.36rem;
  color: #333;
  margin: 0.15rem 0 0.65rem;
}
.productP1 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: relative;
  overflow: hidden;
  width: 2.6rem;
  height: 0.6rem;
  border-radius: 0.48rem;
  background: #004ea2;
  color: #fff;
  font-size: var(--fs18);
}
.productP2 {
  padding: 1.2rem 0;
}
.productP2 .w1400 {
  width: 14rem;
  margin: 0 auto;
}
.productP2 .proImg {
  text-align: center;
}
.productP2 .proImg img {
  max-width: 100%;
}
.productP2 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
  padding: 1.2rem 0 0.6rem;
}
.productP2 .title2 {
  font-size: var(--fs30);
  line-height: 0.3rem;
  padding: 0.8rem 0 0.3rem;
  color: #333;
}
.productP2 .videobox {
  width: 100%;
  height: 7rem;
  position: relative;
  overflow: hidden;
}
.productP2 .videobox .imgDiv {
  position: relative;
  height: 7rem;
}
.productP2 .videobox .imgDiv::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.productP2 .videobox .imgDiv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.productP2 .videobox video {
  max-width: 100%;
  max-height: 7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  object-fit: cover;
}
.productP2 .videobox .playbox {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  cursor: pointer;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.06rem;
  height: 1.06rem;
  margin-left: -0.53rem;
  margin-top: -0.53rem;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  z-index: 1;
}
.productP2 .videobox .playbox img {
  width: 0.42rem;
}
.productP2 .videobox.cur {
  background: #000;
}
.productP2 .videobox.cur .imgDiv,
.productP2 .videobox.cur .playbox {
  z-index: -1;
  visibility: hidden;
  opacity: 0;
}
.productP2 .videobox.cur video {
  z-index: 2;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1004px) {
  .productP1 {
    padding: 0.9rem 0;
  }
  .productP1 .mxfDiv {
    display: block;
    margin-top: 0;
  }
  .productP1 .imgDiv {
    width: 100%;
    height: 5rem;
  }
  .productP1 .conDiv {
    width: auto;
    margin-top: 0.6rem;
  }
  .productP1 .name {
    font-size: var(--fs22);
  }
  .productP1 .zi {
    font-size: var(--fs16);
    line-height: 0.48rem;
  }
  .productP1 .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .productP1 .btnDiv a {
    display: inline-block;
    width: auto;
    height: 0.86rem;
    line-height: 0.86rem;
    padding: 0 0.5rem;
    font-size: var(--fs15);
  }
  .productP2 {
    padding: 0.9rem var(--offset);
  }
  .productP2 .w1400 {
    width: 100%;
  }
  .productP2 .title {
    font-size: var(--fs22);
    line-height: 0.64rem;
    padding: 0.9rem 0 0.45rem;
  }
  .productP2 .title2 {
    font-size: var(--fs17);
    line-height: 0.52rem;
  }
  .productP2 .videobox {
    height: 3.8rem;
  }
  .productP2 .videobox .imgDiv {
    height: 3.8rem;
  }
  .productP2 .videobox video {
    max-height: 3.8rem;
  }
  .productP2 .videobox .playbox {
    width: 1.2rem;
    height: 1.2rem;
    margin-left: -0.6rem;
    margin-top: -0.6rem;
  }
  .productP2 .videobox .playbox img {
    width: 0.48rem;
  }
}
.goods-wrapper {
  padding: 0.8rem 0 1.3rem;
  background: url(../images/productBg.jpg) center no-repeat;
  background-size: cover;
}
.goods-wrapper .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin-bottom: 0.6rem;
  font-weight: bold;
}
.goods-wrapper .zjMxf {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.goods-wrapper .leftDiv {
  width: 3.2rem;
}
.goods-wrapper .halaDiv {
  border-top: #eaeaea solid 1px;
}
.goods-wrapper .halaDiv li .cntxt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  line-height: 0.66rem;
  padding-right: 0.8rem;
  padding-left: 0.3rem;
  font-size: var(--fs20);
  background: #fff;
  border: #eaeaea solid 1px;
  border-top: none;
  color: #333;
  cursor: pointer;
  transition: All 0.5s ease;
}
.goods-wrapper .halaDiv li .cntxt::after {
  content: '';
  position: absolute;
  right: 0.4rem;
  top: 50%;
  margin-top: -8px;
  width: 9px;
  height: 15px;
  background: url(../images/ico6.png) no-repeat;
  transition: All 0.5s ease;
}
.goods-wrapper .halaDiv li .cntxt.liNow {
  border: #004ea2 solid 1px;
  border-left: none;
  background: #004ea2;
  color: #fff;
}
.goods-wrapper .halaDiv li .cntxt.liNow::before {
  background: #fff;
}
.goods-wrapper .halaDiv li .cntxt.liNow::after {
  background: url(../images/ico6on.png) no-repeat;
  transform: rotate(90deg);
}
.goods-wrapper .halaDiv li .hideBox {
  display: none;
  background: #f8f8f8;
  padding: 0.3rem 0.15rem 0.4rem 0.35rem;
  border: #eaeaea solid 1px;
  border-top: none;
}
.goods-wrapper .halaDiv li .hideBox dd {
  margin-bottom: 0.1rem;
  font-size: var(--fs18);
}
.goods-wrapper .halaDiv li .hideBox dd:last-child {
  margin-bottom: 0;
}
.goods-wrapper .halaDiv li .hideBox dd a {
  display: block;
  color: #666;
  line-height: 0.32rem;
}
.goods-wrapper .halaDiv li .hideBox dd a:hover {
  color: #004ea2;
}
.goods-wrapper .halaDiv li .hideBox dd .on {
  color: #004ea2;
  text-decoration: underline!important;
}
.goods-wrapper .halaDiv li:last-child .hideBox {
  border-bottom: #eaeaea solid 1px;
}
.goods-wrapper .rightDiv {
  width: calc(100% - 3.8rem);
}
.goods-wrapper .list {
  padding-bottom: 1.2rem;
}
.goods-wrapper .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.goods-wrapper .list li {
  width: calc((100% - 0.36rem) / 3);
  position: relative;
  margin-right: 0.18rem;
  margin-top: 0.5rem;
}
.goods-wrapper .list li:nth-child(3n) {
  margin-right: 0;
}
.goods-wrapper .list li:nth-child(-n+3) {
  margin-top: 0;
}
.goods-wrapper .list li a {
  display: block;
  position: relative;
  padding: 0.5rem 0.2rem 0;
  height: 5.6rem;
  background: #fff;
  border-radius: 6px;
  border: #eaeaea solid 1px;
  overflow: hidden;
}
.goods-wrapper .list li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: #004ea2;
  transition: All 0.5s ease;
}
.goods-wrapper .list li a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  height: 3rem;
}
.goods-wrapper .list li a .imgDiv img {
  max-width: 2.8rem;
  max-height: 2.8rem;
  transition: All 1s ease;
}
.goods-wrapper .list li a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.45rem;
  line-height: 0.36rem;
  text-align: center;
  font-size: var(--fs24);
  color: #333;
}
.goods-wrapper .list li a .zi {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 0.24rem;
  text-align: center;
  font-size: var(--fs16);
  color: #666;
}
.goods-wrapper .list li a .ico {
  margin: 0.15rem auto 0;
  width: 0.6rem;
  height: 0.6rem;
  border: #004ea2 solid 1px;
  border-radius: 50%;
  background: url(../images/ico1on.png) center no-repeat;
  transition: All 0.5s ease;
}
.goods-wrapper .list li a:hover::before {
  width: 100%;
}
.goods-wrapper .list li a:hover .imgDiv img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.goods-wrapper .list li a:hover .ico {
  background: #004ea2 url(../images/ico1.png) center no-repeat;
}
.screenOpen {
  position: fixed;
  z-index: 4;
  left: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #004ea2;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.screenOpen em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.32rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.screenOpen.off {
  left: -0.8rem;
}
.screenClose {
  position: fixed;
  z-index: 12;
  right: -0.8rem;
  top: 50%;
  margin-top: -1rem;
  width: 0.8rem;
  height: 2rem;
  background: #004ea2;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.screenClose em {
  position: absolute;
  left: 50%;
  margin-left: -0.15rem;
  width: 0.3rem;
  text-align: center;
  color: #fff;
  font-size: var(--fs14);
  line-height: 0.32rem;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: sideways;
}
.screenClose.on {
  right: 0;
}
@media (max-width: 1004px) {
  .goods-wrapper {
    padding: 0.8rem 0 1rem;
  }
  .goods-wrapper .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .goods-wrapper .zjMxf {
    display: block;
  }
  .goods-wrapper .leftDiv {
    width: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    height: 100%;
    z-index: 10;
    overflow: auto;
    border-radius: 0;
    background: #fff;
  }
  .goods-wrapper .halaDiv {
    border-top: none;
  }
  .goods-wrapper .halaDiv li .cntxt {
    line-height: 0.96rem;
    font-size: var(--fs18);
  }
  .goods-wrapper .halaDiv li .cntxt::after {
    right: 0.3rem;
  }
  .goods-wrapper .halaDiv li .hideBox {
    padding: 0.3rem 0.3rem 0.4rem;
  }
  .goods-wrapper .halaDiv li .hideBox dd {
    margin-bottom: 0.2rem;
    font-size: var(--fs15);
  }
  .goods-wrapper .halaDiv li .hideBox dd a {
    line-height: 0.46rem;
  }
  .goods-wrapper .rightDiv {
    width: auto;
  }
  .goods-wrapper .list {
    padding-bottom: 0.7rem;
  }
  .goods-wrapper .list li {
    width: calc((100% - 0.2rem) / 2);
    margin-right: 0.2rem;
    margin-top: 0.3rem;
  }
  .goods-wrapper .list li:nth-child(3n) {
    margin-right: 0.2rem;
  }
  .goods-wrapper .list li:nth-child(2n) {
    margin-right: 0;
  }
  .goods-wrapper .list li:nth-child(-n+2) {
    margin-top: 0;
  }
  .goods-wrapper .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .goods-wrapper .list li a {
    padding: 0.35rem 0.2rem 0;
    height: 4.4rem;
  }
  .goods-wrapper .list li a::before {
    height: 2px;
  }
  .goods-wrapper .list li a .imgDiv {
    height: 2rem;
  }
  .goods-wrapper .list li a .imgDiv img {
    max-width: 1.8rem;
    max-height: 1.8rem;
  }
  .goods-wrapper .list li a .name {
    /* 多行省略溢出显示省略号*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    white-space: normal;
    margin-top: 0.2rem;
    line-height: 0.48rem;
    height: 0.96rem;
    font-size: var(--fs15);
  }
  .goods-wrapper .list li a .zi {
    line-height: 0.42rem;
    font-size: var(--fs13);
  }
  .goods-wrapper .list li a .ico {
    display: none;
  }
  .screenOpen {
    left: 0;
  }
}
.question {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/contactBg.jpg) no-repeat center center;
  background-size: cover;
}
.question .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.question .list {
  padding-top: 0.4rem;
}
.question .list li {
  position: relative;
  padding-top: 0.2rem;
}
.question .list li:first-child {
  padding-top: 0;
}
.question .list li .msgDiv {
  padding: 0 0.5rem 0 0.3rem;
  height: 0.8rem;
  position: relative;
  background: #fff;
  cursor: pointer;
}
.question .list li .ico {
  position: absolute;
  right: 0.3rem;
  top: 50%;
  width: 35px;
  height: 35px;
  margin-top: -17px;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: #eee solid 1px;
}
.question .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -6px;
  margin-top: -1px;
  width: 12px;
  height: 2px;
  background: #004ea2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -1px;
  margin-top: -6px;
  width: 2px;
  height: 12px;
  background: #004ea2;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .name {
  position: relative;
  color: #000;
  height: 0.8rem;
  line-height: 0.8rem;
  padding-left: 0.65rem;
  padding-right: 1rem;
  overflow: hidden;
  font-size: var(--fs18);
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.question .list li .wen {
  position: absolute;
  color: #fff;
  font-size: var(--fs16);
  display: block;
  text-transform: uppercase;
  left: 0;
  top: 50%;
  margin-top: -0.18rem;
  width: 0.36rem;
  height: 0.36rem;
  line-height: 0.36rem;
  text-align: center;
  background: #004ea2;
  border-radius: 50%;
  font-family: 'Mont-R';
}
.question .list li .box {
  display: none;
}
.question .list li .msgDiv.aNow .name {
  color: #004ea2;
}
.question .list li .msgDiv.aNow .ico {
  border: #004ea2 solid 1px;
}
.question .list li .msgDiv.aNow .ico:after {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.question .list li .mxfDiv {
  position: relative;
  padding: 0.3rem 2.2rem 0.35rem 0.95rem;
}
.question .list li .zi {
  position: absolute;
  background: #009e4d;
  text-transform: uppercase;
  left: 0.3rem;
  top: 0.3rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  text-align: center;
  line-height: 0.35rem;
  font-size: var(--fs18);
  color: #fff;
  font-family: 'Mont-R';
}
.question .list li .content {
  color: #666;
  line-height: 0.32rem;
  font-size: var(--fs18);
  text-align: justify;
}
.typePic {
  position: relative;
  padding-bottom: 0.6rem;
  border-bottom: #d8e0e5 solid 1px;
}
.typePic .wrap {
  position: relative;
}
.typePic .imgList {
  padding: 0.15rem;
  margin: -0.15rem;
  overflow: hidden;
}
.typePic .imgList li .box a {
  display: block;
  padding: 0.4rem 0.3rem 0;
  height: 3.5rem;
  border-radius: 0.24rem;
  background: #fff;
}
.typePic .imgList li .box a .imgDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
}
.typePic .imgList li .box a .imgDiv img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
}
.typePic .imgList li .box a .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: var(--fs24);
  color: #333;
  margin-top: 0.35rem;
  line-height: 0.4rem;
  text-align: center;
}
.typePic .imgList li .box .on {
  background: url(../images/nimg290Bg.jpg) center no-repeat;
  background-size: cover;
  box-shadow: 0 0 0.2rem rgba(0, 45, 93, 0.15);
}
.typePic .imgList li .box .on .name {
  color: #004ea2;
  font-weight: bold;
}
.typePic .se {
  position: absolute;
  width: 0.64rem;
  height: 0.64rem;
  border: #eee solid 2px;
  border-radius: 50%;
  top: 50%;
  margin-top: -0.32rem;
  z-index: 2;
  outline: none;
}
.typePic .prev {
  left: 50%;
  margin-left: -8.6rem;
  background: #fff url(../images/nimg9_left.png) center no-repeat;
}
.typePic .prev:hover {
  border: #004ea2 solid 2px;
  background: #004ea2 url(../images/nimg9_lefton.png) center no-repeat;
}
.typePic .next {
  right: 50%;
  margin-right: -8.6rem;
  background: #fff url(../images/nimg9_right.png) center no-repeat;
}
.typePic .next:hover {
  border: #004ea2 solid 2px;
  background: #004ea2 url(../images/nimg9_righton.png) center no-repeat;
}
@media (max-width: 1600px) {
  .typePic .prev {
    margin-left: -8.9rem;
  }
  .typePic .next {
    margin-right: -8.9rem;
  }
}
@media (max-width: 1004px) {
  .question {
    padding: 0.9rem 0;
  }
  .question .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .question .list li {
    padding-top: 0.25rem;
  }
  .question .list li .msgDiv {
    padding: 0.25rem 0.5rem 0.25rem 0.3rem;
    height: auto;
  }
  .question .list li .ico {
    right: 0.4rem;
    width: 0.6rem;
    height: 0.6rem;
    margin-top: -0.3rem;
  }
  .question .list li .ico:before {
    margin-left: -5px;
    width: 10px;
    height: 1px;
  }
  .question .list li .ico:after {
    margin-top: -5px;
    width: 1px;
    height: 10px;
  }
  .question .list li .name {
    height: auto;
    line-height: 0.6rem;
    padding-left: 0.8rem;
    padding-right: 1rem;
    font-size: var(--fs14);
  }
  .question .list li .wen {
    margin-top: -0.3rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .mxfDiv {
    padding: 0.5rem 0.3rem 0.5rem 1.1rem;
  }
  .question .list li .zi {
    left: 0.3rem;
    top: 0.45rem;
    width: 0.6rem;
    height: 0.6rem;
    line-height: 0.6rem;
    font-size: var(--fs13);
  }
  .question .list li .content {
    line-height: 0.48rem;
    font-size: var(--fs13);
  }
  .typePic .imgList li .box a {
    display: block;
    padding: 0.4rem 0.3rem 0;
    height: 3.5rem;
    border-radius: 0.24rem;
    background: #fff;
  }
  .typePic .imgList li .box a .imgDiv {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
    justify-content: center;
    -webkit-justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto;
  }
  .typePic .imgList li .box a .imgDiv img {
    max-width: 100%;
    max-height: 100%;
    mix-blend-mode: multiply;
  }
  .typePic .imgList li .box a .name {
    font-size: var(--fs16);
    margin-top: 0.3rem;
    line-height: 0.48rem;
  }
  .typePic .se {
    width: 0.86rem;
    height: 0.86rem;
    border: #eee solid 1px;
    margin-top: -0.43rem;
  }
  .typePic .prev {
    left: 0.2rem;
    margin-left: 0;
  }
  .typePic .prev:hover {
    border: #004ea2 solid 1px;
  }
  .typePic .next {
    right: 0.2rem;
    margin-right: 0;
  }
  .typePic .next:hover {
    border: #004ea2 solid 1px;
  }
}
.download {
  position: relative;
  padding: 2rem 0 1.2rem;
  background: url(../images/contactBg.jpg) no-repeat center center;
  background-size: cover;
}
.download .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.download .list {
  padding-top: 0.4rem;
}
.download .list li {
  padding-top: 0.2rem;
}
.download .list li:first-child {
  padding-top: 0;
}
.download .list li a {
  display: block;
  height: 0.9rem;
  background: #fff;
  padding: 0 0.6rem 0 0.3rem;
}
.download .list li a .sublie dl {
  display: flex;
}
.download .list li a .sublie dd {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 0.9rem;
  padding-right: 0.2rem;
  color: #333;
  font-size: var(--fs16);
}
.download .list li a .sublie dd:first-child {
  width: 5rem;
}
.download .list li a .sublie dd:nth-child(2) {
  width: 3.1rem;
}
.download .list li a .sublie dd:nth-child(3) {
  width: 2.1rem;
}
.download .list li a .btnDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  position: absolute;
  font-size: var(--fs16);
  color: #999;
  right: 0.6rem;
  top: 50%;
  margin-top: -0.25rem;
  width: 1.74rem;
  height: 0.5rem;
  border: #9f9f9f solid 1px;
  border-radius: 0.48rem;
  transition: All 0.5s ease;
}
.download .list li a .btnDiv em {
  width: 0.15rem;
  height: 0.18rem;
  margin-right: 0.14rem;
  background: url(../images/nimg15_1.png) no-repeat;
  background-size: 0.15rem;
  transition: All 0.5s ease;
}
.download .list li a:hover .btnDiv {
  border: #004ea2 solid 1px;
  background: #004ea2;
  color: #fff;
}
.download .list li a:hover .btnDiv em {
  background: url(../images/nimg15_1on.png) no-repeat;
  background-size: 0.15rem;
}
@media (max-width: 1004px) {
  .download {
    padding: 0.9rem 0;
  }
  .download .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.45rem;
  }
  .download .list li a {
    height: auto;
    padding: 0.2rem 2.3rem 0.2rem 0.3rem;
  }
  .download .list li a .sublie dl {
    display: block;
  }
  .download .list li a .sublie dd {
    display: block;
    height: auto;
    padding-right: 0;
    line-height: 0.48rem;
    font-size: var(--fs14);
  }
  .download .list li a .sublie dd:first-child {
    width: auto;
  }
  .download .list li a .sublie dd:nth-child(2) {
    width: auto;
  }
  .download .list li a .sublie dd:nth-child(3) {
    width: auto;
  }
  .download .list li a .btnDiv {
    font-size: var(--fs14);
    right: 0.3rem;
    margin-top: -0.38rem;
    width: 1.8rem;
    height: 0.76rem;
  }
  .download .list li a .btnDiv em {
    width: 0.25rem;
    height: 0.28rem;
    background-size: 0.25rem;
  }
  .download .list li a:hover .btnDiv em {
    background-size: 0.25rem;
  }
}
.aboutP1 {
  position: relative;
  padding: 1.6rem 0 1rem;
  background: url(../images/aboutP1.jpg) center no-repeat;
  background-size: cover;
}
.aboutP1 .mxfDiv {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}
.aboutP1 .conDiv {
  width: 51.4%;
}
.aboutP1 .conDiv .title {
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.aboutP1 .conDiv .name {
  font-size: var(--fs36);
  color: #004ea2;
  line-height: 0.42rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.aboutP1 .conDiv .msg {
  color: #333;
  font-size: var(--fs30);
  line-height: 0.42rem;
  margin-bottom: 0.5rem;
}
.aboutP1 .conDiv .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.aboutP1 .imgDiv {
  width: 5.76rem;
  border-radius: 0.2rem;
  overflow: hidden;
}
.aboutP1 .imgDiv img {
  width: 100%;
}
.aboutP2 {
  height: 9.6rem;
  position: relative;
  overflow: hidden;
}
.aboutP2 .parallax-bg {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 108%;
  /* 比容器高，便于移动 */
  background-size: cover;
  background-position: center;
  z-index: -1;
}
.aboutP2 .wrap {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
  height: 100%;
}
.aboutP2 .title {
  font-size: var(--fs48);
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 0.5rem;
  font-weight: bold;
}
.aboutP2 .list {
  width: 6.15rem;
}
.aboutP2 .list li {
  padding: 0.2rem 0;
  border-bottom: #fff solid 1px;
}
.aboutP2 .list li .msgDiv {
  padding-right: 0.6rem;
  position: relative;
  cursor: pointer;
}
.aboutP2 .list li .ico {
  position: absolute;
  right: 0;
  top: 0.14rem;
  width: 0.18rem;
  height: 0.18rem;
}
.aboutP2 .list li .ico:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.09rem;
  margin-top: -0.01rem;
  width: 0.18rem;
  height: 0.02rem;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .ico:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.01rem;
  margin-top: -0.09rem;
  width: 0.02rem;
  height: 0.18rem;
  background: #fff;
  transition: All 0.5s ease;
  -webkit-transition: All 0.5s ease;
  -moz-transition: All 0.5s ease;
  -o-transition: All 0.5s ease;
}
.aboutP2 .list li .zi {
  color: #fff;
  line-height: 0.5rem;
  font-size: var(--fs30);
}
.aboutP2 .list li .box {
  display: none;
  padding-top: 0.1rem;
}
.aboutP2 .list li .msgDiv.aNow .ico:after {
  transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.aboutP2 .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #fff;
}
.aboutP3 {
  background: #fdfefe url(../images/aboutP3-2.jpg) center bottom no-repeat;
  background-size: 100%;
  min-height: 5rem;
  padding: 1.3rem 0 0.75rem;
}
.aboutP3 .title {
  text-align: center;
  color: #333;
  font-size: var(--fs48);
  line-height: 0.5rem;
  margin-bottom: 0.65rem;
  font-weight: bold;
}
.aboutP3 .mxfDiv::after {
  content: '';
  display: block;
  clear: both;
}
.aboutP3 .cont-top {
  width: 2.7rem;
  position: sticky;
  top: 1rem;
  z-index: 1;
}
.aboutP3 .cont-top li {
  margin-bottom: 0.1rem;
}
.aboutP3 .cont-top li:last-child {
  margin-bottom: 0;
}
.aboutP3 .cont-top li .box {
  cursor: pointer;
  position: relative;
  width: 2.7rem;
  padding-right: 8px;
}
.aboutP3 .cont-top li .box::after {
  content: '';
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -7px;
  width: 8px;
  height: 14px;
  background: url(../images/nimg8Bg.png) no-repeat;
}
.aboutP3 .cont-top li .year {
  text-align: center;
  height: 0.8rem;
  line-height: 0.8rem;
  background: #f0f0f0;
  font-size: var(--fs20);
  color: #333;
}
.aboutP3 .cont-top .liNow .box::after {
  display: block;
}
.aboutP3 .cont-top .liNow .year {
  color: #fff;
  background: #004ea2;
}
.aboutP3 .historyBox {
  width: 67%;
  float: right;
}
.aboutP3 .historyBox .cont-cent {
  display: none;
}
.aboutP3 .historyBox .list li {
  position: relative;
  padding-left: 2.8rem;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}
.aboutP3 .historyBox .list li::before {
  content: '';
  position: absolute;
  left: 1.92rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e0e0e0;
}
.aboutP3 .historyBox .list li .time {
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 2.02rem;
  font-family: 'Poppins-SB';
  font-size: var(--fs36);
  line-height: 0.42rem;
  color: #004ea2;
}
.aboutP3 .historyBox .list li .time i {
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.18rem;
  height: 0.18rem;
  border-radius: 50%;
  margin-top: -0.09rem;
  background: #e6e6e6;
}
.aboutP3 .historyBox .list li .time i::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -0.04rem;
  margin-top: -0.04rem;
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #004ea2;
}
.aboutP3 .historyBox .list li .content {
  font-size: var(--fs16);
  line-height: 0.3rem;
  color: #333;
  text-align: justify;
}
.aboutP3 .btnDiv {
  margin: 0.35rem auto 0;
  width: 2.4rem;
}
.aboutP3 .btnDiv a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  font-size: var(--fs18);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0.7rem;
  background: #004ea2;
  color: #fff;
  border-radius: 0.48rem;
}
.aboutP4 {
  padding: 1.2rem 0;
  background: url(../images/aboutP4.jpg) center no-repeat;
  background-size: cover;
}
.aboutP4 .title {
  text-align: center;
  font-size: var(--fs48);
  line-height: 0.5rem;
  color: #333;
  font-weight: bold;
  margin-bottom: 0.6rem;
}
.aboutP4 .zi {
  color: #333;
  font-size: var(--fs30);
  line-height: 0.32rem;
  margin-bottom: 0.3rem;
}
.aboutP4 .list ul {
  display: flex;
  display: -webkit-flex;
  flex-flow: wrap;
}
.aboutP4 .list li {
  width: calc((100% - 0.5rem) / 3);
  background: #fff;
  border-radius: 0.1rem;
  min-height: 2.6rem;
  padding: 0.35rem 0.4rem 0.3rem;
  margin-top: 0.25rem;
  margin-right: 0.25rem;
  transition: All 0.5s ease;
}
.aboutP4 .list li:nth-child(-n+3) {
  margin-top: 0;
}
.aboutP4 .list li:nth-child(3n) {
  margin-right: 0;
}
.aboutP4 .list li .name {
  position: relative;
  line-height: 0.32rem;
  font-size: var(--fs28);
  color: #333;
  font-weight: bold;
  padding-bottom: 0.2rem;
  transition: All 0.5s ease;
}
.aboutP4 .list li .name::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0.4rem;
  height: 2px;
  background: #666;
  transition: All 0.5s ease;
}
.aboutP4 .list li .msg {
  margin-top: 0.2rem;
  font-size: var(--fs18);
  line-height: 0.3rem;
  transition: All 0.5s ease;
}
.aboutP4 .list li:hover {
  background: #004ea2;
}
.aboutP4 .list li:hover .name {
  color: #fff;
}
.aboutP4 .list li:hover .name::after {
  background: #fff;
}
.aboutP4 .list li:hover .msg {
  color: #fff;
}
@media (max-width: 1004px) {
  .aboutP1 {
    padding: 0.9rem 0 1rem;
  }
  .aboutP1 .mxfDiv {
    display: block;
  }
  .aboutP1 .conDiv {
    width: auto;
  }
  .aboutP1 .conDiv .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
    margin-bottom: 0.5rem;
  }
  .aboutP1 .conDiv .name {
    font-size: var(--fs20);
    line-height: 0.52rem;
  }
  .aboutP1 .conDiv .msg {
    font-size: var(--fs17);
    line-height: 0.48rem;
  }
  .aboutP1 .conDiv .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP1 .imgDiv {
    margin-top: 0.7rem;
    width: auto;
    border-radius: 0.24rem;
  }
  .aboutP2 {
    padding: 0.9rem 0;
    height: auto;
  }
  .aboutP2 .parallax-bg {
    position: absolute;
    top: -50%;
    left: 0;
    width: 100%;
    height: 118%;
    /* 比容器高，便于移动 */
  }
  .aboutP2 .parallax-bg::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
  .aboutP2 .wrap {
    display: block;
  }
  .aboutP2 .title {
    font-size: var(--fs24);
    margin-bottom: 0.45rem;
    line-height: 0.64rem;
  }
  .aboutP2 .list {
    width: auto;
  }
  .aboutP2 .list li {
    padding: 0.2rem 0;
  }
  .aboutP2 .list li .ico {
    top: 0.12rem;
    width: 12px;
    height: 12px;
  }
  .aboutP2 .list li .ico:before {
    margin-left: -6px;
    margin-top: -1px;
    width: 12px;
    height: 2px;
  }
  .aboutP2 .list li .ico:after {
    margin-left: -1px;
    margin-top: -6px;
    width: 2px;
    height: 12px;
  }
  .aboutP2 .list li .zi {
    line-height: 0.48rem;
    font-size: var(--fs16);
  }
  .aboutP2 .list li .box {
    padding-top: 0.2rem;
  }
  .aboutP2 .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 {
    padding: 1rem 0 0.75rem;
  }
  .aboutP3 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP3 .cont-top {
    width: 100%;
    float: none;
    top: 1.2rem;
    padding-bottom: 0.2rem;
    background: #fdfefe;
  }
  .aboutP3 .cont-top ul {
    margin-right: -0.2rem;
  }
  .aboutP3 .cont-top ul::after {
    content: '';
    display: block;
    clear: both;
  }
  .aboutP3 .cont-top li {
    margin-bottom: 5px;
    float: left;
    width: 33.33%;
  }
  .aboutP3 .cont-top li:last-child {
    margin-bottom: 5px;
  }
  .aboutP3 .cont-top li .box {
    margin-right: 0.2rem;
    width: auto;
    padding-right: 0;
  }
  .aboutP3 .cont-top li .box::after {
    display: none;
  }
  .aboutP3 .cont-top li .year {
    height: 1rem;
    line-height: 1rem;
    font-size: var(--fs17);
  }
  .aboutP3 .historyBox {
    width: auto;
    float: none;
  }
  .aboutP3 .historyBox .list li {
    padding-left: 2.3rem;
  }
  .aboutP3 .historyBox .list li::before {
    left: 1.62rem;
  }
  .aboutP3 .historyBox .list li .time {
    top: 0.2rem;
    width: 1.82rem;
    font-size: var(--fs24);
    line-height: 0.52rem;
  }
  .aboutP3 .historyBox .list li .time i {
    width: 18px;
    height: 18px;
    margin-top: -9px;
  }
  .aboutP3 .historyBox .list li .time i::after {
    margin-left: -4px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
  }
  .aboutP3 .historyBox .list li .content {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
  .aboutP3 .btnDiv {
    margin: 0.5rem auto 0;
    width: 3rem;
  }
  .aboutP3 .btnDiv a {
    font-size: var(--fs15);
    height: 0.86rem;
  }
  .aboutP4 {
    padding: 0.9rem 0;
  }
  .aboutP4 .title {
    font-size: var(--fs24);
    line-height: 0.64rem;
  }
  .aboutP4 .zi {
    font-size: var(--fs18);
    line-height: 0.48rem;
    margin-bottom: 0.4rem;
  }
  .aboutP4 .list li {
    width: auto;
    border-radius: 0.2rem;
    min-height: 2.6rem;
    padding: 0.35rem 0.4rem 0.3rem;
    margin-top: 0.3rem;
    margin-right: 0;
  }
  .aboutP4 .list li:nth-child(1) {
    margin-top: 0;
  }
  .aboutP4 .list li:nth-child(2),
  .aboutP4 .list li:nth-child(3) {
    margin-top: 0.3rem;
  }
  .aboutP4 .list li .name {
    line-height: 0.48rem;
    font-size: var(--fs17);
    padding-bottom: 0.25rem;
  }
  .aboutP4 .list li .name::after {
    width: 0.6rem;
  }
  .aboutP4 .list li .msg {
    font-size: var(--fs14);
    line-height: 0.48rem;
  }
}
.pageCon {
  padding: 1.2rem 0;
}
.pageCon .title {
  text-align: center;
  font-size: var(--fs48);
  color: #333;
  font-weight: bold;
  line-height: 0.48rem;
  margin-bottom: 0.45rem;
}
.pageCon .content {
  font-size: var(--fs18);
  line-height: 0.36rem;
}
@media (max-width: 1004px) {
  .pageCon {
    padding: 1rem 0;
  }
  .pageCon .title {
    font-size: var(--fs22);
    line-height: 0.56rem;
  }
  .pageCon .content {
    font-size: var(--fs15);
    line-height: 0.52rem;
  }
}
