@charset "utf-8";
@font-face {
  font-family: "SOURCEHANSANSCN-LIGHT";
  src: url('../font/SOURCEHANSANSCN-LIGHT.OTF');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SOURCEHANSANSCN-REGULAR";
  src: url('../font/SOURCEHANSANSCN-REGULAR.OTF');
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SOURCEHANSANSCN-BOLD";
  src: url('../font/SOURCEHANSANSCN-BOLD.OTF');
  font-display: swap;
}
@font-face {
  font-family: "SOURCEHANSANSCN-MEDIUM";
  src: url('../font/SOURCEHANSANSCN-MEDIUM.OTF');
  font-style: normal;
  font-display: swap;
}
.ones-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.twos-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.clearfix:after,
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
.picture {
  /*position: relative;*/
  overflow: hidden;
  /*z-index: 10;*/
}
.picture img {
  transition: all 1.8s ease-in-out;
}
.each-item:hover .picture img {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  zoom: 1.1 \9;
}
/*flex 布局*/
.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.inline-flex {
  display: -webkit-inline-flex;
  display: inline-flex;
}
.flex-hc {
  -webkit-box-pack: center;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-zBetween {
  -webkit-box-pack: justify;
  -moz-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-zEnd {
  -webkit-box-pack: end;
  -moz-justify-content: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-zStart {
  -webkit-box-pack: start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-ac {
  -webkit-box-align: center;
  -moz-align-items: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-cStart {
  -webkit-box-align: start;
  -moz-align-items: flex-start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-cEnd {
  -webkit-box-align: end;
  -moz-align-items: flex-end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-cBaseline {
  -webkit-box-align: baseline;
  -moz-align-items: baseline;
  -webkit-align-items: baseline;
  align-items: baseline;
}
.flex-cStretch {
  -webkit-box-align: stretch;
  -moz-align-items: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.flex-zTopBottom {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-zBottomTop {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: vertical;
  -moz-flex-direction: column-reverse;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.flex-zLeftRight {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-zRightLeft {
  -webkit-box-pack: end;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -moz-flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-shrink {
  -webkit-box-flex: 0;
  -moz-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.flex-center {
  -webkit-align-content: center;
  align-content: center;
}
.flex-start {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
.flex-between {
  -webkit-align-content: space-between;
  align-content: space-between;
}
.flex-container {
  -webkit-align-content: space-around;
  align-content: space-around;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-nowrap {
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex_bd {
  -prefix-box-flex: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw / 19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "SOURCEHANSANSCN-LIGHT", "Microsoft YaHei", "PingFang SC";
}
@media screen and (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media screen and (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media screen and (max-width: 480px) {
  html {
    font-size: calc(100vw / 7.5);
  }
}
body {
  min-height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
  font-family: "SOURCEHANSANSCN-LIGHT", "Microsoft YaHei", "PingFang SC";
}
@media screen and (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 1580px) {
  body {
    font-size: 12px;
  }
}
@media screen and (max-width: 1580px) and screen and (max-width: 991px) {
  body {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  body {
    font-size: .28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  overflow: auto;
}
input,
button,
textarea,
select {
  border: 0;
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
  color: inherit;
  background: transparent;
}
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}
table {
  border-collapse: collapse;
}
.overflow {
  overflow: hidden;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.contain {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .contain {
    width: 80%;
  }
}
@media screen and (max-width: 1260px) {
  .contain {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .contain {
    width: 90%;
  }
}
.bg-color {
  background-color: #fff;
}
.pt80 {
  padding-top: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pt80 {
    padding-top: 1rem;
  }
}
.pb80 {
  padding-bottom: 4.1667vw;
}
@media screen and (max-width: 991px) {
  .pb80 {
    padding-bottom: 1rem;
  }
}
.pt90 {
  padding-top: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pt90 {
    padding-top: 1rem;
  }
}
.pb90 {
  padding-bottom: 4.6875vw;
}
@media screen and (max-width: 991px) {
  .pb90 {
    padding-bottom: 1rem;
  }
}
.pt100 {
  padding-top: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pt100 {
    padding-top: 1rem;
  }
}
.pb100 {
  padding-bottom: 5.208333333333333vw;
}
@media screen and (max-width: 991px) {
  .pb100 {
    padding-bottom: 1rem;
  }
}
.pt110 {
  padding-top: 5.729166666666667vw;
}
@media screen and (max-width: 991px) {
  .pt110 {
    padding-top: 1.1rem;
  }
}
.pb110 {
  padding-bottom: 5.729166666666667vw;
}
@media screen and (max-width: 991px) {
  .pb110 {
    padding-bottom: 1.1rem;
  }
}
.pt120 {
  padding-top: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pt120 {
    padding-top: 1rem;
  }
}
.pb120 {
  padding-bottom: 6.25vw;
}
@media screen and (max-width: 991px) {
  .pb120 {
    padding-bottom: 1rem;
  }
}
.font12 {
  font-size: 12px;
}
.font14 {
  font-size: 14px;
}
@media screen and (max-width: 1580px) {
  .font14 {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .font14 {
    font-size: 13px;
  }
}
.font16 {
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .font16 {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .font16 {
    font-size: 14px;
  }
}
.font18 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .font18 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .font18 {
    font-size: 15px;
  }
}
.font20 {
  font-size: 20px;
}
@media screen and (max-width: 1580px) {
  .font20 {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .font20 {
    font-size: 16px;
  }
}
.font22 {
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .font22 {
    font-size: .22rem;
  }
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 19px;
  }
}
@media screen and (max-width: 991px) {
  .font22 {
    font-size: 18px;
  }
}
.font24 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .font24 {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .font24 {
    font-size: 18px;
  }
}
.font32 {
  font-size: 22px;
}
@media screen and (max-width: 1580px) {
  .font32 {
    font-size: .22rem;
  }
}
@media screen and (max-width: 991px) {
  .font32 {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .font32 {
    font-size: 18px;
  }
}
.font36 {
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .font36 {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .font36 {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .font36 {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .font36 {
    font-size: 18px;
  }
}
.font48 {
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .font48 {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .font48 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .font48 {
    font-size: 24px;
  }
}
.font106 {
  font-size: 106px;
}
@media screen and (max-width: 1580px) {
  .font106 {
    font-size: 1.06rem;
  }
}
@media screen and (max-width: 991px) {
  .font106 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .font106 {
    font-size: 40px;
  }
}
#hi-upgrade {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
}
#hi-upgrade .hi-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -177px 0 0 -450px;
  width: 900px;
}
#hi-upgrade .hi-wrap .hi-title {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-close {
  margin: 10px 0;
  display: inline-block;
  cursor: pointer;
  font-size: 18px;
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-close:hover {
  text-decoration: underline;
}
#hi-upgrade .hi-wrap .hi-text1 {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-text1 span {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-text1 * {
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2 {
  position: relative;
  margin: 60px 0;
  color: #333;
  text-align: center;
}
#hi-upgrade .hi-wrap .hi-text2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  border-top: 1px solid #ddd;
}
#hi-upgrade .hi-wrap .hi-text2 span {
  position: relative;
  z-index: 5;
  padding: 0 30px;
  background: #fff;
}
#hi-upgrade .hi-wrap .hi-list {
  overflow: hidden;
}
#hi-upgrade .hi-wrap .hi-list li {
  display: inline-block;
  width: 16%;
}
#hi-upgrade .hi-wrap .hi-list li div {
  margin: 0 auto 5px;
  width: 50px;
  height: 50px;
}
#hi-upgrade .hi-wrap .hi-list li a {
  color: #666;
}
#hi-upgrade .hi-wrap .hi-list li a:hover {
  color: #df0000;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico1 {
  background: url(../images/hi-llq-1.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico2 {
  background: url(../images/hi-llq-2.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico3 {
  background: url(../images/hi-llq-5.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico4 {
  background: url(../images/hi-llq-3.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico5 {
  background: url(../images/hi-llq-6.png) no-repeat center / 100%;
}
#hi-upgrade .hi-wrap .hi-list li .hi-ico6 {
  background: url(../images/hi-llq-4.png) no-repeat center / 100%;
}
/* 占位标签，设置导航样式 */
#interval {
  height: 1.8rem;
}
@media screen and (max-width: 991px) {
  #interval {
    height: 60px;
  }
}
.public-btn span,
.public-btn a {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 1.75rem;
  height: 0.48rem;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #c12017;
  font-size: 16px;
  transition: all 0.4s ease-in-out;
  background: #FFFFFF;
  padding: 0 0.2rem;
  border: #c12017 solid 1px;
  border-radius: 0.1rem;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 1580px) {
  .public-btn span,
  .public-btn a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .public-btn span,
  .public-btn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .public-btn span,
  .public-btn a {
    padding: 0 0.25rem;
    height: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .public-btn span,
  .public-btn a {
    padding: 0 0.3rem;
    height: 0.7rem;
  }
}
.public-btn span img,
.public-btn a img {
  display: inline-block;
  margin-left: 0.15rem;
  width: 0.14rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .public-btn span img,
  .public-btn a img {
    width: 12px;
  }
}
.public-btn span:before,
.public-btn a:before {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  opacity: .3;
  left: -35px;
  border-radius: 35%;
  animation-duration: 10s;
}
.public-btn span:after,
.public-btn a:after {
  content: '';
  position: absolute;
  top: 50%;
  min-width: calc(480px);
  min-height: calc(480px);
  background-color: transparent;
  animation-name: wave-animation;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all 1s linear;
  left: -10px;
  opacity: .5;
  border-radius: 37%;
  animation-duration: 10s;
}
.public-btn span:after:after,
.public-btn a:after:after {
  background: #FFFFFF;
  left: 128%;
}
.public-btn span:hover,
.public-btn a:hover {
  color: #ffffff;
  background: #c12017;
}
.public-btn span:hover:before,
.public-btn a:hover:before {
  background: #FFFFFF;
  left: 125%;
  opacity: 1;
}
.public-btn span:hover:after,
.public-btn a:hover:after {
  background: #FFFFFF;
  left: 128%;
  opacity: 1;
}
.public-btn span:hover img,
.public-btn a:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.public-btn.red span,
.public-btn.red a {
  color: #FFFFFF;
  background: #c12017;
}
@keyframes wave-animation {
  0% {
    transform: translate(0, -50%) rotateZ(0deg);
  }
  50% {
    transform: translate(-2%, -50%) rotateZ(180deg);
  }
  100% {
    transform: translate(0, -50%) rotateZ(360deg);
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  width: 100%;
  background: #FFFFFF;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1);
}
.header.displace {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 992px) {
  .header.displace {
    transform: translateY(-1.07rem);
  }
}
.header .box {
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1580px) {
  .header .box {
    width: 80%;
  }
}
@media screen and (max-width: 1260px) {
  .header .box {
    width: 85%;
  }
}
@media screen and (max-width: 991px) {
  .header .box {
    width: 90%;
  }
}
@media screen and (max-width: 991px) {
  .header .box .logo {
    flex: 1;
    overflow: hidden;
  }
}
.header .box .logo a {
  display: flex;
  align-items: center;
  height: 1.06rem;
}
.header .box .logo a img {
  max-height: 1rem;
}
@media screen and (max-width: 991px) {
  .header .box .logo a img {
    max-width: 100%;
    max-height: 50px;
  }
}
.header .box .nav {
  width: 100%;
  border-top: rgba(204, 204, 204, 0.5) solid 1px;
}
@media screen and (max-width: 1023px) {
  .header .box .nav {
    display: none;
  }
}
.header .box .nav ul {
  padding: 0;
}
.header .box .nav ul li {
  position: relative;
  padding: 0 0.3rem;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li {
    padding: 0 0.25rem;
  }
}
@media screen and (max-width: 1260px) {
  .header .box .nav ul li {
    padding: 0 0.15rem;
  }
}
.header .box .nav ul li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0.74rem;
  color: #333333;
  font-size: 18px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li > a {
    font-size: 15px;
  }
}
.header .box .nav ul li:hover > a {
  color: #c12017;
}
.header .box .nav ul li.on2 > a,
.header .box .nav ul li.on > a {
  color: #c12017;
}
.header .box .nav ul li > a::before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 0;
	height: 2px;
	background: #c12017;
	-webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header .box .nav ul li.on2 > a::before,
.header .box .nav ul li.on > a::before,
.header .box .nav ul li:hover > a::before{
	width: 100%;
}
.header .box .nav ul li .navcell {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0.12rem 0;
  min-width: 1.8rem;
  background: #ffffff;
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
.header .box .nav ul li .navcell a {
  display: block;
  text-align: center;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  white-space: nowrap;
  padding: 0.05rem 0.25rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .navcell a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .navcell a {
    font-size: 14px;
  }
}
.header .box .nav ul li .navcell a:hover {
  color: #c12017;
}
.header .box .nav ul li .columncell {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  min-width: 100%;
  display: none;
}
.header .box .nav ul li .columncell .elementor {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.3rem 0.6rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.05);
}
.header .box .nav ul li .columncell .elementor .e-item .e-title {
  font-family: "SOURCEHANSANSCN-BOLD";
  font-size: 20px;
  color: #333333;
  padding-bottom: 0.15rem;
  border-bottom: #adadad solid 1px;
  white-space: nowrap;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .columncell .elementor .e-item .e-title {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .columncell .elementor .e-item .e-title {
    font-size: 16px;
  }
}
.header .box .nav ul li .columncell .elementor .e-item .e-container {
  margin-top: 0.1rem;
}
.header .box .nav ul li .columncell .elementor .e-item .e-container a {
  display: block;
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  padding: 0.05rem 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .header .box .nav ul li .columncell .elementor .e-item .e-container a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .nav ul li .columncell .elementor .e-item .e-container a {
    font-size: 14px;
  }
}
.header .box .nav ul li .columncell .elementor .e-item .e-container a:hover {
  color: #00b0ec;
}
.header .box .headright {
  gap: 0.15rem;
}
@media screen and (max-width: 991px) {
  .header .box .headright {
    gap: 0.35rem;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .search-wrapper {
    display: none;
  }
}
.header .box .headright .search-wrapper.active .input-holder {
  width: 3.2rem;
  background: #ffffff;
  border: rgba(204, 204, 204, 0.5) solid 1px;
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0, 0.105, 0.035, 1);
}
.header .box .headright .search-wrapper.active .input-holder .search-input {
  opacity: 1;
}
.header .box .headright .search-wrapper .input-holder {
  overflow: hidden;
  width: 0.5rem;
  background: #ffffff;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .box .headright .search-wrapper .input-holder .search-input {
  width: 100%;
  height: 0.4rem;
  padding: 0px 0.6rem 0 0.2rem;
  opacity: 0;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border: transparent solid 1px;
  outline: none;
  font-size: 16px;
  color: #666666;
  box-sizing: border-box;
  -webkit-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -moz-transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  transition: all 0.3s cubic-bezier(0, 0.105, 0.035, 1.57);
  -webkit-transition-delay: 0.3s;
  -moz-transition-delay: 0.3s;
  transition-delay: 0.3s;
  background: #FFFFFF;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .search-wrapper .input-holder .search-input {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .search-wrapper .input-holder .search-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) {
  .header .box .headright .search-wrapper .input-holder .search-input {
    height: 0.5rem;
  }
}
.header .box .headright .search-wrapper .input-holder .search-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.4rem;
  border: none;
  background: #FFF;
  padding: 0px;
  outline: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  float: right;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .search-wrapper .input-holder .search-icon {
    width: 0.6rem;
    height: 0.5rem;
  }
}
.header .box .headright .search-wrapper .input-holder .search-icon img {
  width: 32%;
}
.header .box .headright .head-nation {
  position: relative;
}
.header .box .headright .head-nation .current {
  cursor: pointer;
  height: 1rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding-left: 0.22rem;
  background: url(../images/lang.png) left center no-repeat;
  background-size: 0.16rem auto;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation .current {
    padding-left: 0.32rem;
    background: url(../images/lang.png) left center no-repeat;
    background-size: 0.18rem auto;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .current {
    height: 60px;
    padding-left: 24px;
    background: url(../images/lang.png) left center no-repeat;
    background-size: 16px auto;
  }
}
.header .box .headright .head-nation .current .name {
  padding-right: 0.16rem;
  background: url(../images/arrow.png) right center no-repeat;
  background-size: 0.08rem auto;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 14px;
  color: #666666;
  margin-top: 2px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  text-align: center;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation .current .name {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .current .name {
    font-size: 13px;
  }
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation .current .name {
    margin-top: 0;
    padding-right: 0.26rem;
    background: url(../images/arrow.png) right center no-repeat;
    background-size: 0.1rem auto;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation .current .name {
    background: url(../images/arrow.png) right center no-repeat;
    background-size: 8px auto;
  }
}
.header .box .headright .head-nation ul {
  position: absolute;
  left: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0.1rem);
  transform: translate(-50%, 0.1rem);
  top: 90%;
  z-index: 100;
  background-color: #ffffff;
  padding: 0.1rem 0px;
  text-align: left;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation ul {
    top: 100%;
    padding: 10px 0px;
    min-width: 90px;
  }
}
.header .box .headright .head-nation ul li {
  list-style: none;
}
.header .box .headright .head-nation ul li a {
  display: block;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 14px;
  color: #666666;
  line-height: 2.2;
  min-width: 0.9rem;
  text-align: center;
  padding: 0 0.2rem;
  white-space: nowrap;
  box-sizing: border-box;
  list-style: none;
}
@media screen and (max-width: 1580px) {
  .header .box .headright .head-nation ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .header .box .headright .head-nation ul li a {
    font-size: 13px;
  }
}
.header .box .headright .head-nation ul li a:hover {
  color: #c12017;
}
.header .box .headright .head-nation:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.header .box .headright .phone-toggle {
  user-select: none;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 991px) {
  .header .box .headright .phone-toggle {
    display: block;
  }
}
.header .box .headright .phone-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #666666;
  margin-bottom: 5px;
  transition: all 0.45s ease;
}
.header .box .headright .phone-toggle span:last-of-type {
  margin-bottom: 0;
}
.header .search-form {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid #f8f8f8;
  text-align: center;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 10px -13px rgba(0, 0, 0, 0.2);
  z-index: 10;
}
@media screen and (min-width: 992px) {
  .header .search-form {
    padding-top: 1.04167vw;
    padding-bottom: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form {
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
}
.header .search-form.active {
  opacity: 1;
  visibility: visible;
}
.header .search-form .form-body {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  border: 1px solid #eee;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
  border-radius: 0.6rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body {
    padding-left: 1.5625vw;
    padding-right: 1.5625vw;
    border-radius: 3.125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body {
    width: 90%;
  }
}
.header .search-form .form-body input {
  width: 6rem;
  height: 0.54rem;
  font-size: 16px;
  color: #000000;
  text-align: left;
}
@media screen and (max-width: 1580px) {
  .header .search-form .form-body input {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body input {
    width: 31.25vw;
    height: 2.8125vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body input {
    height: 0.64rem;
  }
}
@media screen and (max-width: 767px) {
  .header .search-form .form-body input {
    width: auto;
    flex: 1;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body input {
    height: 0.7rem;
  }
}
.header .search-form .form-body .icon {
  line-height: 1;
  margin-right: 0.2rem;
  flex-shrink: 0;
  width: 0.2rem;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .icon {
    width: 1.04167vw;
    margin-right: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .icon {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .icon {
    width: 0.28rem;
  }
}
.header .search-form .form-body .icon img {
  max-width: 100%;
}
.header .search-form .form-body .close {
  width: 0.2rem;
  cursor: pointer;
  margin-left: 0.2rem;
  flex-shrink: 0;
  margin-right: 0;
}
@media screen and (min-width: 992px) {
  .header .search-form .form-body .close {
    width: 1.04167vw;
    margin-left: 1.04167vw;
  }
}
@media screen and (max-width: 991px) {
  .header .search-form .form-body .close {
    width: 0.24rem;
  }
}
@media screen and (max-width: 480px) {
  .header .search-form .form-body .close {
    width: 0.28rem;
  }
}
.header .search-form .form-body .close img {
  max-width: 100%;
}
.m-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0px;
  z-index: 99;
  background-color: #FFFFFF;
  overflow-y: scroll;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.m-nav > ul {
  padding-top: 10px;
  padding-left: 5%;
  padding-right: 5%;
}
.m-nav > ul > li {
  position: relative;
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  list-style: none;
  border-bottom: #e5e5e5 solid 1px;
}
.m-nav > ul > li a {
  display: block;
  line-height: 1.7;
  color: #333333;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle {
  position: relative;
  display: block;
  line-height: 1.7;
  color: #333333;
  font-size: 17px;
  padding: 14px 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.m-nav > ul > li .headtitle a {
  display: inline-block;
  padding: 0;
}
.m-nav > ul > li .headtitle>a{
	display: block;
	width: calc(100% - 50px);
}
.m-nav > ul > li .headtitle i {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 100%;
  background: url(../images/icon32.png) center no-repeat;
  background-size: 8px auto;
  transition: all 0.4s ease;
  padding-left: 20px;
}
.m-nav > ul > li .headtitle.on {
  color: #c12017;
}
.m-nav > ul > li .headtitle.on a {
  color: #c12017;
}
.m-nav > ul > li .headtitle.on i {
  background: url(../images/icon32.png) center no-repeat;
  background-size: 8px auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.m-nav > ul > li ul {
  display: none;
  padding-left: 20px;
  border-top: #e5e5e5 solid 1px;
  padding-top: 15px;
  padding-bottom: 15px;
}
.m-nav > ul > li ul.promenu {
  max-height: 36vh;
  overflow-y: auto;
  padding-left: 0;
  padding-right: 15px;
}
.m-nav > ul > li ul.promenu li {
  float: left;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 5%;
  text-align: center;
}
.m-nav > ul > li ul.promenu li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .m-nav > ul > li ul.promenu li {
    width: 32%;
    margin-right: 2%;
  }
  .m-nav > ul > li ul.promenu li:nth-child(4n) {
    margin-right: 2%;
  }
  .m-nav > ul > li ul.promenu li:nth-child(3n) {
    margin-right: 0;
  }
}
.m-nav > ul > li ul.promenu li .img {
  width: 100%;
  overflow: hidden;
}
.m-nav > ul > li ul.promenu li .img img {
  max-width: 100%;
}
.m-nav > ul > li ul.promenu li .text {
  margin-top: 6px;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
}
@media screen and (max-width: 1580px) {
  .m-nav > ul > li ul.promenu li .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .m-nav > ul > li ul.promenu li .text {
    font-size: 13px;
  }
}
.m-nav > ul > li ul li {
  list-style: none;
}
.m-nav > ul > li ul li a {
  display: block;
  font-size: 16px;
  padding: 7px 0px;
}
.m-nav > ul > li ul li:hover > a {
  color: #c12017;
}
.m-nav > ul > li ul li ul li ul li a {
  font-size: 14px;
}
.m-nav > ul > li:hover > a {
  color: #c12017;
}
.msearch {
  display: flex;
  margin: 30px auto 20px;
  width: 90%;
  overflow: hidden;
  box-sizing: border-box;
}
.msearch form {
  display: flex;
  width: 100%;
  border-radius: 25px;
  padding: 0px 25px;
  background: #EEEEEE;
  box-sizing: border-box;
  overflow: hidden;
}
.msearch form .text {
  border: none;
  outline: none;
  background: none;
  font-size: 15px;
  color: #00a6ca;
  width: calc(100% - 40px);
  height: 42px;
  box-sizing: border-box;
}
.msearch form .btns {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: inherit;
  background: none;
  border: none;
}
.msearch form .btns img {
  max-width: 18px;
}
.mbox .header .box .headright .phone-toggle {
  margin-top: -5px;
}
.mbox .header .box .headright .phone-toggle span {
  background-color: #666666;
}
.mbox .header .box .headright .phone-toggle span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.mbox .header .box .headright .phone-toggle span:nth-child(2) {
  display: none;
}
.mbox .header .box .headright .phone-toggle span:nth-child(3) {
  transform: rotate(45deg);
}
.mbox .m-nav {
  height: calc(100vh - 60px);
}
@media screen and (min-width: 992px) {
  .phone-toggle {
    display: none !important;
  }
}
.footer {
  padding-top: 1.2rem;
  background: #e2dac3 url(../images/footerbg.png) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 480px) {
  .footer {
    padding-top: 1rem;
  }
}
.footer .box {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 991px) {
  .footer .box {
    flex-wrap: wrap;
    margin-bottom: 0.4rem;
  }
}
.footer .box .footer-infor {
  width: 32%;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor {
    width: 100%;
  }
}
.footer .box .footer-infor .footer-logo a img {
  max-height: 0.5rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-logo a img {
    max-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .footer .box .footer-infor .footer-logo a img {
    max-height: 45px;
  }
}
@media screen and (max-width: 480px) {
  .footer .box .footer-infor .footer-logo a img {
    max-height: 40px;
  }
}
.footer .box .footer-infor .text {
  margin-top: 0.25rem;
  color: #9e8f70;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-infor .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .text {
    margin-top: 0.4rem;
  }
}
.footer .box .footer-infor .footer-share {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-share {
    width: 100%;
  }
}
.footer .box .footer-infor .footer-share .title {
  font-family: "HONORSansCN-Bold";
  font-size: 20px;
  color: #000000;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-infor .footer-share .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-share .title {
    font-size: 16px;
  }
}
.footer .box .footer-infor .footer-share ul {
  margin-top: 0.16rem;
  margin-bottom: 0.4rem;
  column-gap: 0.3rem;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-share ul {
    margin-top: 0.25rem;
    margin-bottom: 0;
    column-gap: 15px;
  }
}
.footer .box .footer-infor .footer-share ul li {
  position: relative;
  list-style: none;
}
.footer .box .footer-infor .footer-share ul li a {
  display: inline-flex;
  align-items: center;
}
.footer .box .footer-infor .footer-share ul li a img {
  max-height: 0.25rem;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-share ul li a img {
    max-height: 25px;
  }
}
.footer .box .footer-infor .footer-share ul li a img.ic2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.footer .box .footer-infor .footer-share ul li .qrcode {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 100%;
  width: 1.03rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-infor .footer-share ul li .qrcode {
    width: 96px;
  }
}
.footer .box .footer-infor .footer-share ul li .qrcode .img {
  overflow: hidden;
  background-color: #FFFFFF;
}
.footer .box .footer-infor .footer-share ul li .qrcode .img img {
  width: 100%;
}
.footer .box .footer-infor .footer-share ul li .qrcode .sjx {
  display: block;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 8px;
  border-color: transparent transparent #FFFFFF transparent;
}
.footer .box .footer-infor .footer-share ul li:hover a img {
  opacity: 0;
}
.footer .box .footer-infor .footer-share ul li:hover a img.ic2 {
  opacity: 1;
}
.footer .box .footer-infor .footer-share ul li:hover .qrcode {
  opacity: 1;
  visibility: visible;
}
.footer .box .footer-nav {
  min-width: 52.78%;
  column-gap: 0.6rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav {
    column-gap: 0.3rem;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 0.4rem;
  }
}
.footer .box .footer-nav .item.on .title i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item {
    width: 100%;
    margin-bottom: 0;
  }
}
.footer .box .footer-nav .item .title {
  position: relative;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 18px;
  color: #9f9072;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    border-bottom: rgba(0, 0, 0, 0.1) solid 1px;
  }
}
.footer .box .footer-nav .item .title a {
  color: #9f9072;
}
.footer .box .footer-nav .item .title i {
  right: 0;
  width: 50px;
  height: 50px;
  position: absolute;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer;
  transition: all 0.5s;
  display: none;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item .title i {
    display: block;
  }
}
.footer .box .footer-nav .item .title i::before {
  content: '';
  width: 12px;
  position: absolute;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #9f9072;
}
.footer .box .footer-nav .item .title i::after {
  content: '';
  height: 12px;
  position: absolute;
  width: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: #9f9072;
}
.footer .box .footer-nav .item ul {
  margin-top: 0.16rem;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul {
    display: none;
    padding-top: 0.3rem;
    margin-top: 0;
    margin-bottom: 0.2rem;
  }
}
.footer .box .footer-nav .item ul li {
  list-style: none;
  margin-bottom: 0.1rem;
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul li {
    margin-bottom: 7px;
  }
}
.footer .box .footer-nav .item ul li a {
  color: #a09173;
  font-size: 14px;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .footer .box .footer-nav .item ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .footer .box .footer-nav .item ul li a {
    font-size: 13px;
  }
}
.footer .box .footer-nav .item ul li a:hover {
  color: #c12017;
}
.footer .footerbottom {
  padding: 0.54rem 0 1.15rem;
  border-top: rgba(0, 0, 3, 0.1) solid 1px;
}
@media screen and (max-width: 991px) {
  .footer .footerbottom {
    padding: 10px 0 1rem;
    border-top: none;
  }
}
.footer .footerbottom .copylink {
  font-size: 14px;
  color: rgba(0, 0, 3, 0.6);
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .footer .footerbottom .copylink {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .footer .footerbottom .copylink {
    display: inline;
  }
}
.footer .footerbottom .copylink a {
  color: rgba(0, 0, 3, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.footer .footerbottom .copylink a:hover {
  color: #c12017;
}
.footer .footerbottom .copylink .poweredBy {
  margin-left: 0.4rem;
  color: rgba(0, 0, 3, 0.6);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
}
.footer .footerbottom .copylink .poweredBy a {
  color: rgba(0, 0, 3, 0.6);
}
.footer .footerbottom .copylink .poweredBy:hover {
  color: #c12017;
}
.footer .footerbottom .copylink .poweredBy:hover a {
  color: #c12017;
}
.lunbotu {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lunbotu .swiper-wrapper .swiper-slide {
  position: relative;
}
.lunbotu .swiper-wrapper .swiper-slide > img {
  width: 100%;
}

.lunbotu .swiper-wrapper .swiper-slide .video-box {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.lunbotu .swiper-wrapper .swiper-slide .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner {
  position: absolute;
  bottom: 8.49vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner {
    bottom: 1.5rem;
  }
}
.lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
  color: #FFFFFF;
  font-size: 36px;
  line-height: 1.2;
}
@media screen and (max-width: 1580px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .lunbotu .swiper-wrapper .swiper-slide .i-banner .box .title {
    font-size: 24px;
  }
}
.lunbotu .swiper-pagination {
  right: 12.5%;
  bottom: 6.25vw;
  display: inline-block;
  width: auto;
  text-align: right;
}
@media screen and (max-width: 1580px) {
  .lunbotu .swiper-pagination {
    right: 10%;
  }
}
@media screen and (max-width: 1260px) {
  .lunbotu .swiper-pagination {
    right: 7.5%;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination {
    right: 5%;
    bottom: 0.6rem;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0 0.06rem;
  opacity: 1;
  background: transparent;
  border-radius: 50%;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #ffffff;
  font-size: 14px;
  border: rgba(255, 255, 255, 0.2) solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .lunbotu .swiper-pagination .swiper-pagination-bullet {
    width: 0.42rem;
    height: 0.42rem;
    margin: 0 4px;
  }
}
.lunbotu .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c12017;
  border: #c12017 solid 1px;
}
.common-pagination.swiper-pagination {
  right: 0.3rem;
  bottom: 0.4rem;
  display: inline-block;
  width: auto;
  text-align: right;
}
@media screen and (max-width: 991px) {
  .common-pagination.swiper-pagination {
    bottom: 0.8rem;
  }
}
.common-pagination.swiper-pagination .swiper-pagination-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.32rem;
  height: 0.32rem;
  margin: 0 0.06rem;
  opacity: 1;
  background: transparent;
  border-radius: 50%;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #ffffff;
  font-size: 14px;
  border: rgba(255, 255, 255, 0.2) solid 1px;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .common-pagination.swiper-pagination .swiper-pagination-bullet {
    width: 0.42rem;
    height: 0.42rem;
    margin: 0 4px;
  }
}
.common-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c12017;
  border: #c12017 solid 1px;
}
.common-pagination.static {
  position: static;
  width: 100%;
  text-align: center;
  margin-top: 0.4rem;
}
.common-pagination.static .swiper-pagination-bullet {
  background: rgba(0, 0, 0, 0.1);
}
.common-pagination.static .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #c12017;
}
.mImg {
  display: none;
}
@media screen and (max-width: 991px) {
  .mImg {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .pImg {
    display: none;
  }
}
.obanner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.obanner > img {
  width: 100%;
}
.obanner .bannerImg {
  display: none;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.obanner .bannerTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 100%;
}
.obanner .bannerTitle .box .headline {
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (max-width: 1580px) {
  .obanner .bannerTitle .box .headline {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .obanner .bannerTitle .box .headline {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .obanner .bannerTitle .box .headline {
    font-size: 24px;
  }
}
.c-title {
  display: flex;
  flex-direction: column;
  row-gap: 0.2rem;
}
.c-title.white .column-txt::before {
  background: url(../images/icon24a.png) left center no-repeat;
  background-size: 100% auto;
}
.c-title.white .column-txt::after {
  background: #ffffff;
}
.c-title.white .column-txt span {
  color: #ffffff;
}
.c-title.white .headline {
  color: #FFFFFF;
}
.c-title.white .title {
  color: #FFFFFF;
}
.c-title.white .text {
  color: #FFFFFF;
}
.c-title .column-txt {
  display: flex;
  align-items: center;
}
.c-title .column-txt::before {
  content: '';
  display: inline-block;
  width: 0.36rem;
  height: 0.4rem;
  background: url(../images/icon24.png) left center no-repeat;
  background-size: 100% auto;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .c-title .column-txt::before {
    width: 0.45rem;
    height: 0.5rem;
  }
}
.c-title .column-txt::after {
  content: '';
  display: inline-block;
  width: 0.9rem;
  height: 2px;
  background: #c12017;
}
@media screen and (max-width: 767px) {
  .c-title .column-txt::after {
    height: 1px;
  }
}
.c-title .column-txt span {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #c12017;
  font-size: 18px;
  margin-left: -0.2rem;
  padding-right: 0.2rem;
}
@media screen and (max-width: 1580px) {
  .c-title .column-txt span {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .c-title .column-txt span {
    font-size: 15px;
  }
}
.c-title .headline {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #c12017;
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .c-title .headline {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .c-title .headline {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .c-title .headline {
    font-size: 24px;
  }
}
.c-title .title {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #c12017;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .c-title .title {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .c-title .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .c-title .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .c-title .title {
    font-size: 18px;
  }
}
.c-title .text {
  margin-top: 0.2rem;
  color: #000003;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .c-title .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .c-title .text {
    font-size: 15px;
  }
}
.c-title .text p {
  margin-bottom: 0.2rem;
}
.index_about .c-title .title {
  color: #000003;
}
.index_about .index_data {
  margin-top: 5.5%;
}
@media screen and (max-width: 991px) {
  .index_about .index_data {
    margin-top: 8%;
  }
}
.index_about .index_data ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .index_about .index_data ul {
    row-gap: 0.4rem;
  }
}
.index_about .index_data ul li {
  list-style: none;
  width: 24%;
  text-align: center;
}
@media screen and (max-width: 1580px) {
  .index_about .index_data ul li {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .index_about .index_data ul li {
    width: 100%;
    text-align: left;
  }
}
.index_about .index_data ul li .t1 {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #000003;
  font-size: 18px;
  line-height: 1;
}
@media screen and (max-width: 1580px) {
  .index_about .index_data ul li .t1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_about .index_data ul li .t1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .index_about .index_data ul li .t1 {
    justify-content: flex-start;
  }
}
.index_about .index_data ul li .t1 span {
  display: inline-block;
}
.index_about .index_data ul li .t1 span.timer {
  font-family: "SOURCEHANSANSCN-BOLD";
  color: #c12017;
  font-size: 106px;
}
@media screen and (max-width: 1580px) {
  .index_about .index_data ul li .t1 span.timer {
    font-size: 1.06rem;
  }
}
@media screen and (max-width: 991px) {
  .index_about .index_data ul li .t1 span.timer {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .index_about .index_data ul li .t1 span.timer {
    font-size: 40px;
  }
}
.index_about .index_data ul li .t2 {
  margin-top: 0.15rem;
  font-size: 16px;
  color: rgba(0, 0, 3, 0.6);
}
@media screen and (max-width: 1580px) {
  .index_about .index_data ul li .t2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .index_about .index_data ul li .t2 {
    font-size: 14px;
  }
}
.index_about .imgbox {
  margin-top: 9.375%;
  position: relative;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.index_about .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.index_about .imgbox.hide::before{
  display: none;
}
.index_about .imgbox .videoimg {
  display: block;
  width: 100%;
}
.index_about .imgbox .movie video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_about .imgbox .wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  text-align: center;
  display: block;
  width: 100%;
  padding: 0 0.2rem;
  box-sizing: border-box;
}
.index_about .imgbox .wrap .btns {
  display: inline-flex;
  border: #ffffff solid 1px;
  border-radius: 50%;
  padding: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .index_about .imgbox .wrap .btns.playButton {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .index_about .imgbox .wrap .btns.c-play {
    display: none;
  }
}
.index_about .imgbox .wrap .btns img {
  width: 0.4rem;
}
.index_about .imgbox .wrap .subtit {
  margin-top: 0.25rem;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  color: #FFFFFF;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .index_about .imgbox .wrap .subtit {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .index_about .imgbox .wrap .subtit {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .index_about .imgbox .wrap .subtit {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .index_about .imgbox .wrap .subtit {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .jitter:hover {
    animation: jitter 0.55s infinite ease-out;
    animation-iteration-count: 1;
    transform: translateY(0px);
  }
}
@keyframes jitter {
  0% {
    transform: translateY(0px);
  }
  25% {
    transform: translateY(-4px);
  }
  50% {
    transform: translateY(0px);
  }
  75% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0px);
  }
}
.index_product .box {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .index_product .box {
    row-gap: 0.4rem;
  }
}
.index_product .box .item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32.2%;
  margin-right: 1.7%;
  margin-bottom: 1.7%;
  min-height: 3rem;
  padding: 0.3rem 0.4rem;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #f8f1e9;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.index_product .box .item:nth-child(3n) {
  margin-right: 0;
}
.index_product .box .item.other {
  flex: 1;
}
.index_product .box .item.other:hover .learn-more {
  color: #c12017;
}
.index_product .box .item.other:hover .learn-more i {
  background: url(../images/icon16c.png) center no-repeat;
  background-size: 100% auto;
}
.index_product .box .item.other .subtit {
  color: #FFFFFF;
  border-bottom: none !important;
}
.index_product .box .item.other .learn-more {
  display: flex;
  justify-content: flex-end;
  color: #ffffff;
}
.index_product .box .item.other .learn-more i {
  background: url(../images/icon16b.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1260px) {
  .index_product .box .item {
    padding: 0.3rem;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item {
    padding: 0.35rem;
    width: 48.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .index_product .box .item:nth-child(3n) {
    margin-right: 3%;
  }
  .index_product .box .item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .index_product .box .item {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 0;
  }
}
.index_product .box .item:hover {
  background-color: #c12017;
}
.index_product .box .item:hover .subtit {
  color: #ffffff;
  border-bottom: rgba(251, 244, 234, 0.2) solid 1px;
}
.index_product .box .item:hover .subtit .icon img.ic1 {
  opacity: 0;
}
.index_product .box .item:hover .subtit .icon img.ic2 {
  opacity: 1;
}
.index_product .box .item:hover .desc {
  color: #fcf5ec;
}
.index_product .box .item:hover .learn-more {
  color: #FFFFFF;
}
.index_product .box .item:hover .learn-more i {
  background: url(../images/icon16b.png) center no-repeat;
  background-size: 100% auto;
}
.index_product .box .item .subtit {
  display: flex;
  align-items: center;
  margin-bottom: 0.35rem;
  padding-bottom: 0.15rem;
  border-bottom: rgba(0, 0, 3, 0.2) solid 1px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 18px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .index_product .box .item .subtit {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .subtit {
    margin-bottom: 0.25rem;
  }
}
.index_product .box .item .subtit .icon {
  position: relative;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  margin-right: 0.08rem;
}
.index_product .box .item .subtit .icon img {
  width: 0.35rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .index_product .box .item .subtit .icon img {
    width: 0.4rem;
  }
}
.index_product .box .item .subtit .icon img.ic2 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.index_product .box .item .subtit span {
  flex: 1;
  overflow: hidden;
}
.index_product .box .item .desc {
  flex: 1;
  overflow: hidden;
  color: rgba(0, 0, 3, 0.6);
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .index_product .box .item .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .desc {
    font-size: 14px;
  }
}
.index_product .box .item .learn-more {
  color: rgba(0, 0, 3, 0.6);
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .index_product .box .item .learn-more {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .index_product .box .item .learn-more {
    font-size: 14px;
  }
}
.index_product .box .item .learn-more i {
  display: inline-block;
  margin-left: 0.2rem;
  width: 0.14rem;
  height: 0.1rem;
  background: url(../images/icon16a.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 991px) {
  .index_product .box .item .learn-more i {
    width: 0.18rem;
    height: 0.15rem;
  }
}
/*.advertising {
  position: relative;
}
@media screen and (max-width: 991px) {
  .advertising {
    text-align: center;
  }
}
.advertising img {
  display: block;
  width: 100%;
}
.advertising .buybtn {
  position: absolute;
  bottom: 0.56rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  padding: 0.08rem;
  border-radius: 10px;
  border: #c12017 solid 1px;
}
@media screen and (max-width: 991px) {
  .advertising .buybtn {
    position: static;
    transform: none;
    margin-top: 0.4rem;
  }
}
.advertising .buybtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.6rem;
  background: #c12017;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .advertising .buybtn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .buybtn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .advertising .buybtn a {
    height: 0.7rem;
  }
}
.advertising .buybtn a img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.16rem;
}
@media screen and (max-width: 991px) {
  .advertising .buybtn a img {
    width: 0.22rem;
  }
}
@media screen and (max-width: 480px) {
  .advertising .buybtn a img {
    width: 0.24rem;
  }
}*/
.advertising .content {
  position: relative;
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .advertising .content {
    text-align: center;
  }
}
.advertising .content > img {
  display: block;
  width: 100%;
}
.advertising .content .contain {
  position: absolute;
  bottom: 0.56rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
/*20260106*/
@media screen and (max-width: 991px){
	.advertising .content .contain{
		position: static;
		transform: none;
		margin-top: 0.4rem;
	}
}
/**/
.advertising .content .contain .title {
  text-align: center;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 22px;
  margin-bottom: 0.56rem;
}
@media screen and (max-width: 1580px) {
  .advertising .content .contain .title {
    font-size: .22rem;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .title {
    font-size: 19px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .title {
    font-size: 18px;
  }
}
.advertising .content .contain .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
}
@media screen and (max-width: 1260px) {
  .advertising .content .contain .box {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box {
    gap: 2vw;
  }
}
@media screen and (max-width: 767px) {
  .advertising .content .contain .box {
    justify-content: flex-start;
  }
}
.advertising .content .contain .box a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 0.58rem;
  padding: 0.05rem 0.2rem;
  box-sizing: border-box;
  border-radius: 10px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #ffffff;
  font-size: 16px;
  background: #c12017 url(../images/img89.png) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1580px) {
  .advertising .content .contain .box a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .advertising .content .contain .box a {
    min-width: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a {
    /*min-width: 12.65vw;*/
   	min-width: calc((100% - 4vw) / 3);
    min-height: 3vw
    padding: 0.15vw 1vw;
    border-radius: 0.8vw;
    font-size: 1.04vw;
  }
}
@media screen and (max-width: 640px) { 
		.advertising .content .contain .box{
			display: inline-grid;
    	grid-template-columns: repeat(2, 1fr); 
    	grid-template-rows: auto;
		}
}
/*@media screen and (max-width: 767px) {
	.advertising .content .contain .box a{
		min-width: 2.2rem;
	}
}
@media screen and (max-width: 480px) {
	.advertising .content .contain .box a{
		min-width: calc((100% - 4vw) / 3);
	}
}*/
.advertising .content .contain .box a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: #c12017 solid 1px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s ease;
}
.advertising .content .contain .box a:hover::before {
  opacity: 1;
  width: calc(100% + 0.16rem);
  height: calc(100% + 0.16rem);
}
.advertising .content .contain .box a img {
  display: inline-block;
  max-height: 0.34rem;
  margin-right: 0.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a img {
    max-height: 3vw;
    margin-right: 1.2vw;
  }
}
@media screen and (max-width: 767px) {
  .advertising .content .contain .box a img {
    max-height: 4vw;
  }
}
.advertising .content .contain .box a .text {
  /*flex: 1;
  overflow: hidden;*/
  line-height: 1.35;
  text-align: left;
}
.advertising .content .contain .box a .text .t1 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .advertising .content .contain .box a .text .t1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a .text .t1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a .text .t1 {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .advertising .content .contain .box a .text .t1 {
    font-size: 2vw;
  }
}
.advertising .content .contain .box a .text .t2 {
  font-size: 14px;
}
@media screen and (max-width: 1580px) {
  .advertising .content .contain .box a .text .t2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a .text .t2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .content .contain .box a .text .t2 {
    font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .advertising .content .contain .box a .text .t2 {
    font-size: 1.75vw;
  }
}
.advertising .buybtn {
  position: absolute;
  bottom: 0.56rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  padding: 0.08rem;
  border-radius: 10px;
  border: #c12017 solid 1px;
}
@media screen and (max-width: 991px) {
  .advertising .buybtn {
    position: static;
    transform: none;
    margin-top: 0.4rem;
  }
}
.advertising .buybtn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 0.6rem;
  background: #c12017;
  border-radius: 10px;
  color: #ffffff;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .advertising .buybtn a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .buybtn a {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .advertising .buybtn a {
    height: 0.7rem;
  }
}
.advertising .buybtn a img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.16rem;
}
@media screen and (max-width: 991px) {
  .advertising .buybtn a img {
    width: 0.22rem;
  }
}
@media screen and (max-width: 480px) {
  .advertising .buybtn a img {
    width: 0.24rem;
  }
}

.advertising .desc {
  max-width: 960px;
  width: 90%;
  margin-top: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .advertising .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .advertising .desc {
    font-size: 14px;
  }
}
.advertising .desc p {
  margin-bottom: 0.2rem;
}
.advertising .desc p:last-child {
  margin-bottom: 0;
}


.index_news .box {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .index_news .box {
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.index_news .box .left_w {
  width: 49.1666%;
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w {
    width: 100%;
  }
}
.index_news .box .left_w .swiper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.index_news .box .left_w .swiper .swiper-wrapper {
  align-items: stretch;
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item:hover .textbox .subtit {
  color: #c12017;
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .imgbox {
  position: relative;
  width: 100%;
  height: 100%;
}
/*20260106*/
@media screen and (max-width: 991px){
	.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .imgbox{
		height: auto;
	}
}
/**/
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(0, 0, 3, 0), #000003);
}
/*20260106*/
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .imgbox::before {
    display: none;
  }
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  box-sizing: border-box;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
/*20260106*/
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox {
    position: static;
    padding: 0.4rem 0 0.3rem;
  }
}
/**/
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .subtit {
  font-size: 22px;
  color: #FFFFFF;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .subtit {
    font-size: .22rem;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .subtit {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .subtit {
    font-size: 18px;
  }
}
/*20260106*/
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .subtit {
    color: #333333;
  }
}
.index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
  margin-top: 0.05rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    font-size: 15px;
  }
}
/*20260106*/
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-wrapper .swiper-slide .item .textbox .desc {
    color: #666666;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
   	justify-content: flex-start;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .index_news .box .left_w .swiper .swiper-pagination .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
  }
  .index_news .box .left_w .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #c12017;
  }
}
.index_news .box .right_w {
  width: 49.1666%;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w {
    width: 100%;
    margin-top: 0.6rem;
  }
}
.index_news .box .right_w .newlist {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 0.3rem;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .index_news .box .right_w .newlist {
    row-gap: 0.4rem;
  }
}
.index_news .box .right_w .newlist .newitem {
  flex: 1;
  overflow: hidden;
}
.index_news .public-btn {
  text-align: center;
  margin-top: 0.6rem;
}
.newitem {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
.newitem:hover .textbox .subtit {
  color: #c12017;
}
.newitem .imgbox {
  flex-shrink: 0;
  width: 17.8125vw;
  border-radius: 10px;
  margin-right: 3.4%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .newitem .imgbox {
    width: 40%;
    margin-right: 0.35rem;
  }
}
.newitem .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.newitem .textbox {
  flex: 1;
  overflow: hidden;
  padding-top: 0.25rem;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .newitem .textbox {
    padding-top: 0.15rem;
  }
}
.newitem .textbox .subtit {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 18px;
  transition: all 0.5s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .subtit {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .newitem .textbox .subtit {
    font-size: 16px;
  }
}
.newitem .textbox .date {
  margin-top: 0.12rem;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .date {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .date {
    font-size: 14px;
  }
}
.newitem .textbox .desc {
  margin-top: 0.3rem;
  color: rgba(51, 51, 51, 0.6);
  font-size: 16px;
  line-height: 1.7;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .newitem .textbox .desc {
    font-size: 14px;
  }
}
@media screen and (max-width: 1580px) {
  .newitem .textbox .desc {
    margin-top: 0.2rem;
  }
}
@media screen and (max-width: 480px) {
  .newitem .textbox .desc {
    margin-top: 0.1rem;
  }
}
.index_contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46.09375vw;
}
.index_contact .imgbox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_contact .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 3, 0.2);
}
.index_contact .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index_contact .textbox {
  position: relative;
  width: 100%;
  z-index: 2;
}
.index_contact .textbox .contain {
  display: flex;
  justify-content: flex-end;
}
.index_contact .textbox .contain .box {
  display: inline-block;
  width: 50%;
  padding: 5.5% 5.2%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
}
@media screen and (max-width: 1260px) {
  .index_contact .textbox .contain .box {
    width: 54%;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box {
    width: 100%;
    padding: 0.5rem 0.4rem;
  }
}
.index_contact .textbox .contain .box .wrap {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #9f9072;
  font-size: 18px;
  padding-top: 7.5%;
  margin-top: 7.5%;
  border-top: rgba(159, 144, 114, 0.5) solid 1px;
}
@media screen and (max-width: 1580px) {
  .index_contact .textbox .contain .box .wrap {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box .wrap {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box .wrap {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }
}
.index_contact .textbox .contain .box .wrap ul li {
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: flex-start;
  border-bottom: rgba(159, 144, 114, 0.2) solid 1px;
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box .wrap ul li {
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.index_contact .textbox .contain .box .wrap ul li .sp1 {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 36.8%;
  padding-right: 0.1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box .wrap ul li .sp1 {
    width: auto;
    min-width: 150px;
    white-space: nowrap;
  }
}
.index_contact .textbox .contain .box .wrap ul li .sp1 img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.22rem;
}
@media screen and (max-width: 991px) {
  .index_contact .textbox .contain .box .wrap ul li .sp1 img {
    width: 0.28rem;
  }
}
@media screen and (max-width: 480px) {
  .index_contact .textbox .contain .box .wrap ul li .sp1 img {
    width: 0.32rem;
  }
}
.index_contact .textbox .contain .box .wrap ul li .sp2 {
  width: 63.2%;
  overflow: hidden;
}
.about {
  border-top: #cccccc solid 1px;
  background: url(../images/img8.png) top right no-repeat;
  background: 49.79% auto;
}
.about .c-title .title {
  color: #000003;
}
.about .box {
  margin-top: 0.3rem;
}
@media screen and (max-width: 991px) {
  .about .box {
    flex-wrap: wrap;
  }
}
.about .box .textbox {
  width: 50.7%;
  color: #666666;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .about .box .textbox {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .about .box .textbox {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .about .box .textbox {
    width: 100%;
  }
}
.about .box .textbox p {
  margin-bottom: 0.2rem;
}
.about .box .imgbox {
  position: relative;
  width: 40.7%;
}
@media screen and (max-width: 991px) {
  .about .box .imgbox {
    width: 100%;
    margin-top: 0.5rem;
    padding-left: 20px;
    box-sizing: border-box;
  }
}
.about .box .imgbox::before {
  content: '';
  position: absolute;
  left: -0.2rem;
  bottom: -0.2rem;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: #c12017;
}
@media screen and (max-width: 991px) {
  .about .box .imgbox::before {
    left: 0;
    bottom: -20px;
    width: calc(100% - 20px);
  }
}
.about .box .imgbox .img {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.about .box .imgbox .img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 3, 0.5);
}
.about .box .imgbox .img.hide::before{
	display: none;
}
.about .box .imgbox .img img {
  display: block;
  width: 100%;
}
.about .box .imgbox .img .wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: center;
  width: 100%;
}
.about .box .imgbox .img .wrap .btns {
  display: inline-flex;
  border: #ffffff solid 1px;
  border-radius: 50%;
  padding: 0.08rem;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .about .box .imgbox .img .wrap .btns {
    padding: 0.12rem;
  }
}
.about .box .imgbox .img .wrap .btns.c-play {
  display: none;
}
@media screen and (max-width: 991px) {
  .about .box .imgbox .img .wrap .btns.c-play {
    display: inline-flex;
  }
}
@media screen and (max-width: 991px) {
  .about .box .imgbox .img .wrap .btns.playButton {
    display: none;
  }
}
.about .box .imgbox .img .wrap .btns img {
  width: 0.4rem;
}
@media screen and (max-width: 991px) {
  .about .box .imgbox .img .wrap .btns img {
    width: 0.56rem;
  }
}
@media screen and (max-width: 767px) {
  .about .box .imgbox .img .wrap .btns img {
    width: 0.6rem;
  }
}
@media screen and (max-width: 480px) {
  .about .box .imgbox .img .wrap .btns img {
    width: 0.64rem;
  }
}
.about .box .imgbox .img .wrap .subtit {
  margin-top: 0.25rem;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  color: #FFFFFF;
  font-size: 24px;
}
@media screen and (max-width: 1580px) {
  .about .box .imgbox .img .wrap .subtit {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .about .box .imgbox .img .wrap .subtit {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .about .box .imgbox .img .wrap .subtit {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .about .box .imgbox .img .wrap .subtit {
    font-size: 18px;
  }
}
.development {
  min-height: 39.89583333333333vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-sizing: border-box;
  width: 100%;
  overflow: hidden;
}
.development .box {
  margin-top: 5.2%;
}
@media screen and (max-width: 991px) {
  .development .box {
    margin-top: 8%;
  }
}
@media screen and (max-width: 480px) {
  .development .box {
    margin-top: 10%;
  }
}
.development .box .contain {
  position: relative;
}
.development .box .contain .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.development .box .contain .swiper .swiper-wrapper .swiper-slide .item {
  text-align: center;
}
.development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date {
  display: block;
  width: 1.84rem;
  height: 1.57rem;
  margin: auto;
  padding-top: 0.4rem;
  background: url(../images/img11.png) center top no-repeat;
  background-size: 100% 100%;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date {
    width: 2.11rem;
    height: 1.8rem;
  }
}
.development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .year {
  font-family: "SOURCEHANSANSCN-BOLD";
  font-size: 24px;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 1580px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .year {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .year {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .year {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .year {
    font-size: 18px;
  }
}
.development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .txt {
  color: #ffffff;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .date .txt {
    font-size: 15px;
  }
}
.development .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
  margin-top: 0.24rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 2.4rem;
  width: 100%;
  color: #ffffff;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
    margin-top: 0.35rem;
    max-width: 100%;
  }
}
.development .box .contain .swiper-button-next,
.development .box .contain .swiper-button-prev {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .development .box .contain .swiper-button-next,
  .development .box .contain .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.development .box .contain .swiper-button-prev {
  background: url(../images/icon25.png) center no-repeat;
  background-size: 28% auto;
  right: auto;
  left: -1.3rem;
}
.development .box .contain .swiper-button-next {
  background: url(../images/icon26.png) center no-repeat;
  background-size: 28% auto;
  right: -1.3rem;
  left: auto;
}
.merge-section {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (max-width: 991px) {
  .merge-section {
    background-position: top right;
    background-size: auto 100%;
  }
}
.culture {
  width: 100%;
  overflow: hidden;
}
.culture .box {
  margin-top: 0.5rem;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
}
.culture .box .item-swiper .item-wrapper {
  display: flex;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition-property: transform;
    box-sizing: content-box;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide {
  position: relative;
  width: 20.68425925925926%;
  margin-right: 1.7%;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide {
    width: 100%;
    height: auto;
    margin-right: 0%;
    display: block;
    flex-shrink: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .culture .box .item-swiper .item-wrapper .item-slide.swiper-slide-active {
    display: block;
    flex-shrink: 0;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .culture .box .item-swiper .item-wrapper .item-slide.swiper-slide-active .img img {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@media screen and (min-width: 992px) {
  .culture .box .item-swiper .item-wrapper .item-slide.active {
    width: 32.84722222222222%;
  }
  .culture .box .item-swiper .item-wrapper .item-slide.active::before {
    background: rgba(0, 0, 0, 0.5);
  }
  .culture .box .item-swiper .item-wrapper .item-slide.active .textbox {
    bottom: 0.5rem;
  }
  .culture .box .item-swiper .item-wrapper .item-slide.active .textbox .subtit {
    font-size: 1.666666666666667vw;
  }
  .culture .box .item-swiper .item-wrapper .item-slide.active .textbox .txt {
    opacity: 1;
    max-height: inherit;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide:nth-child(4n) {
  margin-right: 0;
}
.culture .box .item-swiper .item-wrapper .item-slide::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: -webkit-linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000000 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, #000000 100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.culture .box .item-swiper .item-wrapper .item-slide .img {
  position: relative;
  width: 100%;
  height: 29.79166666666667vw;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .img {
    width: 100%;
    height: 100%;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  min-width: 100%;
  width: auto;
  max-width: initial;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .img img {
    position: static;
    -webkit-transform: translate(0%, 0%) scale(1.2);
    transform: translate(0%, 0%) scale(1.2);
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .textbox {
  position: absolute;
  left: 0;
  bottom: 0.35rem;
  z-index: 2;
  width: 100%;
  box-sizing: border-box;
  padding: 0 10%;
  text-align: center;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox {
    bottom: 0.5rem;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .textbox .icon {
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .icon {
    margin-bottom: 0.3rem;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .textbox .icon img {
  width: 0.58rem;
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .icon img {
    width: 0.7rem;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .textbox .subtit {
  width: 100%;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 18px;
  color: #FFFFFF;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .subtit {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .subtit {
    font-size: 24px;
    margin-bottom: 0.15rem;
  }
}
.culture .box .item-swiper .item-wrapper .item-slide .textbox .txt {
  color: #ffffff;
  font-size: 18px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .txt {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .culture .box .item-swiper .item-wrapper .item-slide .textbox .txt {
    opacity: 1;
    max-height: 100%;
  }
}
.honor {
  width: 100%;
  overflow: hidden;
}
.honor .box {
  margin-top: 0.5rem;
}
.honor .box .contain {
  position: relative;
}
@media screen and (max-width: 991px) {
  .honor .box .contain {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
    box-sizing: border-box;
  }
}
.honor .box .contain .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.honor .box .contain .swiper .swiper-wrapper {
  align-items: stretch;
}
.honor .box .contain .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.honor .box .contain .swiper .swiper-wrapper .swiper-slide .item {
  display: block;
  width: 100%;
  padding: 0.3rem;
  background: #f8f4e7;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
}
.honor .box .contain .swiper .swiper-wrapper .swiper-slide .item .img {
  position: relative;
  width: 100%;
  padding-bottom: 122.1014492753623%;
}
.honor .box .contain .swiper .swiper-wrapper .swiper-slide .item .img img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
}
.honor .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
  margin-top: 0.2rem;
  color: #333333;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .honor .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .honor .box .contain .swiper .swiper-wrapper .swiper-slide .item .text {
    font-size: 14px;
  }
}
.honor .box .contain .swiper-button-next,
.honor .box .contain .swiper-button-prev {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .honor .box .contain .swiper-button-next,
  .honor .box .contain .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.honor .box .contain .swiper-button-prev {
  background: url(../images/icon31.png) center no-repeat;
  background-size: 20% auto;
  right: auto;
  left: -0.6rem;
}
@media screen and (max-width: 991px) {
  .honor .box .contain .swiper-button-prev {
    left: -0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .honor .box .contain .swiper-button-prev {
    left: -0.3rem;
  }
}
.honor .box .contain .swiper-button-next {
  background: url(../images/icon32.png) center no-repeat;
  background-size: 20% auto;
  right: -0.6rem;
  left: auto;
}
@media screen and (max-width: 991px) {
  .honor .box .contain .swiper-button-next {
    right: -0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .honor .box .contain .swiper-button-next {
    right: -0.3rem;
  }
}
.contact {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46.66666666666667vw;
}
.contact .imgbox {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.contact .imgbox::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 3, 0.2);
}
.contact .imgbox img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact .textbox {
  position: relative;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain {
    flex-wrap: wrap;
  }
}
.contact .textbox .contain .headline {
  padding-top: 5.2%;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #FFFFFF;
  font-size: 36px;
}
@media screen and (max-width: 1580px) {
  .contact .textbox .contain .headline {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .headline {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .contact .textbox .contain .headline {
    font-size: 24px;
  }
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .headline {
    width: 100%;
    padding-top: 0;
  }
}
.contact .textbox .contain .box {
  display: inline-block;
  width: 50%;
  padding: 5.5% 5.2%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 1.2rem 0 1.2rem 0;
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .box {
    width: 100%;
    padding: 0.5rem 0.4rem;
    margin-top: 0.5rem;
    border-radius: 50px 0 50px 0;
  }
}
.contact .textbox .contain .box .c-title .title {
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.contact .textbox .contain .box .wrap {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #9f9072;
  font-size: 18px;
  padding-top: 7.5%;
  margin-top: 7.5%;
  border-top: rgba(159, 144, 114, 0.5) solid 1px;
}
@media screen and (max-width: 1580px) {
  .contact .textbox .contain .box .wrap {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .box .wrap {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .box .wrap {
    padding-top: 0.4rem;
    margin-top: 0.4rem;
  }
}
.contact .textbox .contain .box .wrap ul li {
  padding-bottom: 0.15rem;
  margin-bottom: 0.15rem;
  display: flex;
  align-items: flex-start;
  border-bottom: rgba(159, 144, 114, 0.2) solid 1px;
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .box .wrap ul li {
    padding-bottom: 0.25rem;
    margin-bottom: 0.25rem;
  }
}
.contact .textbox .contain .box .wrap ul li .sp1 {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 36.8%;
  padding-right: 0.1rem;
  box-sizing: border-box;
}
@media screen and (max-width: 991px) {
  .contact .textbox .contain .box .wrap ul li .sp1 {
    width: auto;
    min-width: 150px;
    white-space: nowrap;
  }
}
.contact .textbox .contain .box .wrap ul li .sp1 img {
  display: inline-block;
  margin-right: 0.1rem;
  width: 0.22rem;
}
.contact .textbox .contain .box .wrap ul li .sp2 {
  width: 63.2%;
  overflow: hidden;
}
.online-message .box {
  margin-top: 0.5rem;
}
.online-message .box .c-form {
  gap: 0.2rem 0.32rem;
}
@media screen and (max-width: 767px) {
  .online-message .box .c-form {
    gap: 0.32rem;
  }
}
.online-message .box .c-form .layui-form-item {
  position: relative;
  margin-bottom: 0;
  width: calc((100% - 0.32rem) / 2);
}
@media screen and (max-width: 767px) {
  .online-message .box .c-form .layui-form-item {
    width: 100%;
  }
}
.online-message .box .c-form .layui-form-item.w100 {
  width: 100%;
}
.online-message .box .c-form .layui-form-item .layui-input-block {
  margin-left: 0;
  min-height: 1px;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-input {
  height: 0.58rem;
  border: #cccccc solid 1px;
  background-color: #fff;
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #333333;
  font-size: 16px;
  border-radius: 0.1rem;
  padding: 0 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-input {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-input {
    height: 0.66rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-input {
    height: 0.8rem;
    padding: 0 0.25rem;
  }
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-input::-webkit-input-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-input::-moz-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-input:-moz-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-input:-ms-input-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea {
  height: 1.65rem;
  border: #cccccc solid 1px;
  background-color: #fff;
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #333333;
  font-size: 16px;
  border-radius: 0.1rem;
  resize: none;
  padding: 0.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea {
    height: 2.5rem;
    padding: 0.25rem;
  }
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea::-webkit-input-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea::-moz-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea:-moz-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-textarea:-ms-input-placeholder {
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
}
.online-message .box .c-form .layui-form-item .layui-input-block .layui-btn {
  width: 1.75rem;
  height: 0.5rem;
  background: #c12017;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #FFFFFF;
  font-size: 16px;
  line-height: inherit;
  border-radius: 0.1rem;
}
@media screen and (max-width: 1580px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-btn {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-btn {
    height: 0.66rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .c-form .layui-form-item .layui-input-block .layui-btn {
    height: 0.7rem;
  }
}
.online-message .box .c-form .layui-form-item .layui-form-label {
  position: absolute;
  left: 0;
  top: 0;
  float: none;
  display: block;
  padding: 0;
  width: 100%;
  height: 0.58rem;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 0 0.2rem;
  box-sizing: border-box;
  font-family: "SOURCEHANSANSCN-LIGHT";
  color: #999999;
  font-size: 16px;
  pointer-events: none;
}
@media screen and (max-width: 1580px) {
  .online-message .box .c-form .layui-form-item .layui-form-label {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-form-label {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-form-label {
    height: 0.66rem;
  }
}
@media screen and (max-width: 480px) {
  .online-message .box .c-form .layui-form-item .layui-form-label {
    height: 0.8rem;
    padding: 0 0.25rem;
  }
}
.online-message .box .c-form .layui-form-item .layui-form-label span {
  display: inline-block;
  margin-left: 6px;
  color: #ca1e1e;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .online-message .box .c-form .layui-form-item .layui-form-label span {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-message .box .c-form .layui-form-item .layui-form-label span {
    font-size: 14px;
  }
}
.online-message .box .c-form .layui-form-item .layui-form-label.hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  .news .box {
    flex-wrap: wrap;
  }
}
.news .box .release_text {
  color: #050505;
  font-size: 16px;
  margin-bottom: 17.6%;
  padding-bottom: 11.7%;
  border-bottom: rgba(5, 5, 5, 0.1) solid 1px;
}
@media screen and (max-width: 1580px) {
  .news .box .release_text {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .news .box .release_text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .news .box .release_text {
    margin-bottom: 0;
    margin-top: 0.3rem;
    padding-bottom: 0.3rem;
    gap: 0.1rem 0.3rem;
  }
}
.news .box .release_text span {
  display: block;
  margin-bottom: 0.15rem;
}
@media screen and (max-width: 767px) {
  .news .box .release_text span {
    display: inline-block;
    margin-bottom: 0;
  }
}
.news .box .sidebox {
  width: 23.6%;
}
@media screen and (max-width: 767px) {
  .news .box .sidebox {
    width: 100%;
  }
}
.news .box .sidebox .release_text {
  display: none;
}
.news .box .sidebox .side-navbar ul {
  padding-left: 0;
}
.news .box .sidebox .side-navbar ul li {
  list-style: none;
  margin-bottom: 0.15rem;
}
.news .box .sidebox .side-navbar ul li.on a {
  color: #c12017;
}
.news .box .sidebox .side-navbar ul li.on a::before {
  left: -0.2rem;
  opacity: 1;
}
.news .box .sidebox .side-navbar ul li a {
  position: relative;
  padding: 0.05rem 0;
  color: #050505;
  font-size: 18px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .news .box .sidebox .side-navbar ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .news .box .sidebox .side-navbar ul li a {
    font-size: 15px;
  }
}
.news .box .sidebox .side-navbar ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.07rem;
  height: 0.12rem;
  background: url(../images/icon33.png) center no-repeat;
  background-size: 100% auto;
  transition: all 0.5s ease;
  opacity: 0;
}
.news .box .sidebox .side-navbar ul li a:hover {
  color: #c12017;
}
.news .box .wrap {
  width: 66.25%;
}
@media screen and (max-width: 1260px) {
  .news .box .wrap {
    width: 70%;
  }
}
@media screen and (max-width: 991px) {
  .news .box .wrap {
    width: 72%;
  }
}
@media screen and (max-width: 767px) {
  .news .box .wrap {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.news .box .wrap .newlist {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  margin-bottom: 12.6%;
}
@media screen and (max-width: 767px) {
  .news .box .wrap .newlist {
    row-gap: 0.4rem;
  }
}
.news .box .wrap .newlist .newitem:hover .textbox::after {
  width: 100%;
}
.news .box .wrap .newlist .newitem .imgbox {
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}
@media screen and (min-width: 992px) {
  .news .box .wrap .newlist .newitem .imgbox {
    margin-right: 7%;
  }
}
@media screen and (max-width: 767px) {
  .news .box .wrap .newlist .newitem .imgbox {
    padding-bottom: 0.4rem;
  }
}
.news .box .wrap .newlist .newitem .textbox {
  position: relative;
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .news .box .wrap .newlist .newitem .textbox {
    padding-top: 0.15rem;
    padding-bottom: 0.4rem;
  }
}
.news .box .wrap .newlist .newitem .textbox::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.news .box .wrap .newlist .newitem .textbox::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c12017;
  transition: all 0.5s ease;
}
.news .box .wrap .details > .c-title .title {
  color: #050505;
}
.news .box .wrap .details .release_text {
  display: none;
}
@media screen and (max-width: 767px) {
  .news .box .wrap .details .release_text {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
.news .box .wrap .details .content {
  margin-top: 0.7rem;
  color: #666666;
  font-size: 16px;
  line-height: 2;
}
@media screen and (max-width: 1580px) {
  .news .box .wrap .details .content {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .news .box .wrap .details .content {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .news .box .wrap .details .content {
    margin-top: 0.4rem;
  }
}
.news .box .wrap .details .article-operate {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: rgba(5, 5, 5, 0.1) solid 1px;
}
.news .box .wrap .details .article-operate .item {
  margin-bottom: 0.2rem;
}
.news .box .wrap .details .article-operate .item:last-child {
  margin-bottom: 0;
}
.news .box .wrap .details .article-operate .item a {
  display: inline-flex;
  align-items: flex-start;
  color: #050505;
  font-size: 18px;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .news .box .wrap .details .article-operate .item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .news .box .wrap .details .article-operate .item a {
    font-size: 15px;
  }
}
.news .box .wrap .details .article-operate .item a .sp1 {
  flex-shrink: 0;
  margin-right: 0.1rem;
}
.news .box .wrap .details .article-operate .item a .sp2 {
  flex: 1;
  overflow: hidden;
}
.news .box .wrap .details .article-operate .item a:hover {
  color: #c12017;
}
.news .box .wrap .details .article-operate .item a.disabled {
  pointer-events: none;
}
.news .box .wrap .interested {
  margin-top: 11.5%;
}
.news .box .wrap .interested .newlist {
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.news .box .wrap .interested .newlist .newitem:last-child .imgbox {
  padding-bottom: 0;
}
.news .box .wrap .interested .newlist .newitem:last-child .textbox::before,
.news .box .wrap .interested .newlist .newitem:last-child .textbox::after {
  display: none;
}
.page {
  width: 100%;
  text-align: center;
}
.page .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.page .page-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.1rem;
  min-width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.06rem;
  margin-bottom: 0.05rem;
  text-align: center;
  font-size: 14px;
  color: #666666;
  background-color: #f4f4f4;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .page .page-list a {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list a {
    min-width: 0.5rem;
    height: 0.5rem;
    margin-bottom: 0.1rem;
    margin-right: 0.1rem;
  }
}
.page .page-list a.fyprev {
  min-width: 0.98rem;
}
@media screen and (max-width: 991px) {
  .page .page-list a.fyprev {
    min-width: 1.2rem;
  }
}
.page .page-list a.fyprev i {
  display: inline-block;
  margin-right: 0.08rem;
  width: 0.05rem;
  height: 0.09rem;
  background: url(../images/icon34.png) center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .page .page-list a.fyprev i {
    width: 4px;
    height: 7px;
  }
}
.page .page-list a.fyprev:hover i {
  background: url(../images/icon34a.png) center no-repeat;
  background-size: 100% auto;
}
.page .page-list a.fynext {
  min-width: 0.98rem;
}
.page .page-list a.fynext i {
  display: inline-block;
  margin-left: 0.08rem;
  width: 0.05rem;
  height: 0.09rem;
  background: url(../images/icon35.png) center no-repeat;
  background-size: 100% auto;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 991px) {
  .page .page-list a.fynext i {
    width: 4px;
    height: 7px;
  }
}
.page .page-list a.fynext:hover i {
  background: url(../images/icon35a.png) center no-repeat;
  background-size: 100% auto;
}
.page .page-list a:hover {
  color: #ffffff;
  background-color: #c12017;
}
.page .page-list a.on {
  color: #ffffff;
  background-color: #c12017;
}
.page .page-list .omit {
  display: flex;
  align-items: center;
  margin-left: 0.04rem;
  margin-right: 0.1rem;
  color: #999999;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .page .page-list .omit {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .omit {
    font-size: 15px;
  }
}
.page .page-list .allpage {
  color: #666666;
  font-size: 14px;
  margin-left: 0.15rem;
  margin-right: 0.25rem;
}
@media screen and (max-width: 1580px) {
  .page .page-list .allpage {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .allpage {
    font-size: 13px;
  }
}
.page .page-list .jump {
  display: flex;
}
.page .page-list .jump .nums {
  width: 0.6rem;
  height: 0.4rem;
  border: #f9f9f9 solid 1px;
  box-sizing: border-box;
  background: none;
  outline: none;
  text-align: center;
  margin-right: 0.06rem;
}
.page .page-list .jump .gobtn {
  width: 0.4rem;
  height: 0.4rem;
  color: #666666;
  font-size: 14px;
  background: #f5f5f5;
  border: none;
  outline: none;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 1580px) {
  .page .page-list .jump .gobtn {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .gobtn {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .gobtn {
    width: 0.5rem;
    height: 0.5rem;
  }
}
.page .page-list .jump .gobtn:hover {
  color: #FFFFFF;
  background: #c12017;
}
.page .page-list .jump .exhibit {
  display: inline-block;
  vertical-align: top;
  width: 0.6rem;
  font-size: 14px;
  color: #666666;
  margin-bottom: 0.05rem;
  margin-right: 0.06rem;
}
@media screen and (max-width: 1580px) {
  .page .page-list .jump .exhibit {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .exhibit {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .exhibit {
    width: 0.8rem;
    margin-bottom: 0.1rem;
    margin-right: 0.1rem;
  }
}
.page .page-list .jump .exhibit select {
  width: 100%;
  padding: 0px 5px;
  height: 0.4rem;
  font-size: 14px;
  color: #666666;
  text-align: center;
  text-align-last: center;
  border: none;
  outline: none;
  padding-right: 0.15rem;
  border: rgba(235, 235, 235, 0.5) solid 1px;
  background: rgba(255, 255, 255, 0.5) url(../images/icon36.png) center right 0.08rem no-repeat;
  background-size: 0.09rem auto;
  box-sizing: border-box;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
@media screen and (max-width: 1580px) {
  .page .page-list .jump .exhibit select {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .exhibit select {
    font-size: 13px;
  }
}
.page .page-list .jump .exhibit .layui-form-select .layui-select-title {
  position: relative;
}
.page .page-list .jump .exhibit .layui-form-select .layui-select-title .layui-input {
  padding-right: 0.24rem;
  text-align: center;
  color: #666666;
  height: 0.4rem;
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .exhibit .layui-form-select .layui-select-title .layui-input {
    height: 0.5rem;
  }
}
.page .page-list .jump .exhibit .layui-form-select .layui-select-title .layui-edge {
  right: 0.08rem;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  width: 0.09rem;
  height: 0.09rem;
  border-width: 0;
  background: url(../images/icon36.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 991px) {
  .page .page-list .jump .exhibit .layui-form-select .layui-select-title .layui-edge {
    width: 8px;
    height: 8px;
  }
}
.page .page-list .jump .exhibit .layui-form-select dl dd {
  height: 0.32rem;
  line-height: 0.32rem;
  color: #666666;
}
.page .page-list .jump .exhibit .layui-form-select dl dd.layui-this {
  color: #ffffff;
  background: #c12017;
}
@media screen and (max-width: 991px) {
  .product .box {
    flex-wrap: wrap;
  }
}
.product .box .product-navbar {
  width: 23.75%;
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar {
    width: 100%;
  }
}
.product .box .product-navbar ul li {
  margin-bottom: 0.2rem;
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li {
    margin-bottom: 0.25rem;
  }
}
.product .box .product-navbar ul li.on a {
  color: #c12017;
}
.product .box .product-navbar ul li.on a::after {
  width: 100%;
}
.product .box .product-navbar ul li.on a .icon img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.product .box .product-navbar ul li.on a i {
  background: url(../images/icon37a.png) center no-repeat;
  background-size: 100% auto;
}
.product .box .product-navbar ul li:hover a {
  color: #c12017;
}
.product .box .product-navbar ul li:hover a::after {
  width: 100%;
}
.product .box .product-navbar ul li:hover a .icon img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
.product .box .product-navbar ul li:hover a i {
  background: url(../images/icon37a.png) center no-repeat;
  background-size: 100% auto;
}
.product .box .product-navbar ul li a {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 0.2rem;
  color: #333333;
  font-size: 18px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 1580px) {
  .product .box .product-navbar ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li a {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li a {
    padding-bottom: 0.25rem;
  }
}
.product .box .product-navbar ul li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(204, 204, 204, 0.5);
}
.product .box .product-navbar ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c12017;
  transition: all 0.5s ease;
}
.product .box .product-navbar ul li a .icon {
  display: inline-flex;
  align-items: center;
  height: 0.24rem;
  flex-shrink: 0;
  margin-right: 0.1rem;
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li a .icon {
    height: 18px;
    margin-right: 10px;
  }
}
.product .box .product-navbar ul li a .icon img {
  width: 0.26rem;
  opacity: 0.6;
  -webkit-filter: brightness(0) invert(0);
  filter: brightness(0) invert(0);
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li a .icon img {
    width: 24px;
  }
}
.product .box .product-navbar ul li a span {
  flex: 1;
  overflow: hidden;
}
.product .box .product-navbar ul li a i {
  flex-shrink: 0;
  display: inline-block;
  margin-left: 0.15rem;
  margin-right: 0.1rem;
  width: 0.07rem;
  height: 0.27rem;
  background: url(../images/icon37.png) center no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 991px) {
  .product .box .product-navbar ul li a i {
    margin-left: 10px;
    margin-right: 10px;
    width: 7px;
    height: 24px;
  }
}
.product .box .content {
  width: 66.25%;
}
@media screen and (max-width: 1260px) {
  .product .box .content {
    width: 70%;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.product .box .content .product-list .textbox {
  font-size: 18px;
  color: #333333;
  line-height: 1.7;
  padding-bottom: 0.5rem;
  border-bottom: #c12017 solid 2px;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-list .textbox {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-list .textbox {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-list .textbox {
    font-size: 18px;
  }
}
.product .box .content .product-list .wrap {
  gap: 0.25rem;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-list .wrap {
    gap: 0.35rem;
  }
}
@media screen and (max-width: 767px) {
  .product .box .content .product-list .wrap {
    gap: 0.4rem;
  }
}
.product .box .content .product-info .img-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product .box .content .product-info .img-swiper .swiper-wrapper {
  align-items: stretch;
}
.product .box .content .product-info .img-swiper .swiper-wrapper .swiper-slide {
  height: auto;
  padding: 0.4rem 0.4rem 0.5rem;
  box-sizing: border-box;
  background: #fbf7f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .img-swiper .swiper-wrapper .swiper-slide {
    padding-bottom: 40px;
  }
}
.product .box .content .product-info .img-swiper .swiper-button-next,
.product .box .content .product-info .img-swiper .swiper-button-prev {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  margin-top: -0.25rem;
  border-radius: 50%;
  transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .img-swiper .swiper-button-next,
  .product .box .content .product-info .img-swiper .swiper-button-prev {
    width: 0.64rem;
    height: 0.64rem;
  }
}
.product .box .content .product-info .img-swiper .swiper-button-prev {
  background: url(../images/icon31.png) center no-repeat;
  background-size: 18% auto;
  right: auto;
  left: 6.8%;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .img-swiper .swiper-button-prev {
    left: 3%;
  }
}
@media screen and (max-width: 480px) {
  .product .box .content .product-info .img-swiper .swiper-button-prev {
    left: 0;
    background: url(../images/icon31.png) center no-repeat;
    background-size: 24% auto;
  }
}
.product .box .content .product-info .img-swiper .swiper-button-next {
  background: url(../images/icon32.png) center no-repeat;
  background-size: 18% auto;
  right: 6.8%;
  left: auto;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .img-swiper .swiper-button-next {
    right: 3%;
  }
}
@media screen and (max-width: 480px) {
  .product .box .content .product-info .img-swiper .swiper-button-next {
    right: 0;
    background: url(../images/icon32.png) center no-repeat;
    background-size: 24% auto;
  }
}
.product .box .content .product-info .details {
  margin-top: 0.54rem;
}
.product .box .content .product-info .details .rubric {
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: #c12017 solid 2px;
}
.product .box .content .product-info .details .rubric .title {
  color: #c12017;
  font-size: 24px;
  font-family: "SOURCEHANSANSCN-REGULAR";
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-info .details .rubric .title {
    font-size: .24rem;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .rubric .title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .product .box .content .product-info .details .rubric .title {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .product .box .content .product-info .details .rubric .title {
    font-size: 18px;
  }
}
.product .box .content .product-info .details .rubric .tag {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.08rem;
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .rubric .tag {
    margin-top: 8px;
  }
}
.product .box .content .product-info .details .rubric .tag span {
  display: inline-flex;
  align-items: center;
  height: 27px;
  color: #ffffff;
  font-size: 16px;
  padding: 0 10px;
  box-sizing: border-box;
  border-radius: 5px;
  background: #c12017;
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-info .details .rubric .tag span {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .rubric .tag span {
    font-size: 14px;
  }
}
.product .box .content .product-info .details .specifications {
  color: #666666;
  font-size: 16px;
  border-bottom: #c12017 solid 2px;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-info .details .specifications {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .specifications {
    font-size: 14px;
  }
}
.product .box .content .product-info .details .specifications ul {
  padding-left: 0;
}
.product .box .content .product-info .details .specifications ul li {
  list-style: none;
  display: flex;
  align-items: stretch;
  margin-bottom: 0.24rem;
}
.product .box .content .product-info .details .specifications ul li:last-child .sp2 {
  border-bottom: none;
}
.product .box .content .product-info .details .specifications ul li .sp1 {
  width: 1.2rem;
  padding-bottom: 0.24rem;
  flex-shrink: 0;
  display: inline-block;
  padding-right: 0.1rem;
  box-sizing: border-box;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-info .details .specifications ul li .sp1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .specifications ul li .sp1 {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .specifications ul li .sp1 {
    width: auto;
    min-width: 85px;
  }
}
.product .box .content .product-info .details .specifications ul li .sp2 {
  flex: 1;
  padding-bottom: 0.24rem;
  border-bottom: rgba(204, 204, 204, 0.5) solid 1px;
  overflow: hidden;
}
.product .box .content .product-info .details .describe {
  color: #666666;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 1580px) {
  .product .box .content .product-info .details .describe {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .product .box .content .product-info .details .describe {
    font-size: 14px;
  }
}
.product .box .content .product-info .details .related-products .swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
}
.product .box .content .product-info .details .related-products .swiper .swiper-wrapper {
  align-items: stretch;
}
.product .box .content .product-info .details .related-products .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.product .box .content .product-info .details .related-products .swiper .swiper-wrapper .swiper-slide .proitem {
  width: 100%;
  height: 100%;
}
.proitem {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 10px;
  background: #fbf7f2;
  width: calc((100% - 0.25rem) / 2);
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .proitem {
    width: calc((100% - 0.35rem) / 2);
  }
}
@media screen and (max-width: 767px) {
  .proitem {
    width: 100%;
  }
}
.proitem:last-child {
  flex: 1;
}
.proitem .imgbox {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.4rem;
}
@media screen and (max-width: 991px) {
  .proitem .imgbox {
    padding-bottom: 40px;
  }
}
.proitem .text {
  padding: 0 0.4rem 0.5rem;
  box-sizing: border-box;
}
.proitem .text .subtit {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .proitem .text .subtit {
    font-size: .18rem;
  }
}
@media screen and (max-width: 991px) {
  .proitem .text .subtit {
    font-size: 18px;
  }
}
@media screen and (max-width: 991px) {
  .proitem .text .subtit {
    font-size: 18px;
  }
}
.proitem .text .desc {
  margin-top: 0.15rem;
  color: #666666;
  font-size: 16px;
}
@media screen and (max-width: 1580px) {
  .proitem .text .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .proitem .text .desc {
    font-size: 14px;
  }
}
.proimg {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.proimg::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 0.5rem;
  background-image: var(--img-src);
  background-size: cover;
  background-position: bottom center;
  transform: scaleY(-1);
  opacity: 0.2;
}
@media screen and (max-width: 991px) {
  .proimg::before {
    bottom: -40px;
    height: 40px;
  }
}
.proimg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.55rem;
  width: 100%;
  height: 0.55rem;
  background: linear-gradient(to bottom, rgba(251, 247, 242, 0) 0%, rgba(251, 247, 242, 0.7) 40%, #fbf7f2 100%);
  pointer-events: none;
}
@media screen and (max-width: 991px) {
  .proimg::after {
    bottom: -42px;
    height: 42px;
  }
}
.proimg > img {
  max-width: 100%;
}
.online-purchase {
  background: url(../images/img88.png) bottom center no-repeat;
  background-size: cover;
}
.online-purchase .title {
  text-align: center;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #333333;
  font-size: 22px;
  margin-bottom: 0.56rem;
}
@media screen and (max-width: 1580px) {
  .online-purchase .title {
    font-size: .22rem;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .title {
    font-size: 19px;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .title {
    font-size: 18px;
  }
}
.online-purchase .purchase-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.45rem;
}
@media screen and (max-width: 1260px) {
  .online-purchase .purchase-link {
    gap: 0.25rem;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .purchase-link {
    justify-content: flex-start;
    gap: 2vw;
  }
}
/*@media screen and (max-width: 767px) {
  .online-purchase .purchase-link {
    justify-content: flex-start;
    gap: 0.25rem;
  }
}*/
.online-purchase .purchase-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 0.58rem;
  padding: 0.05rem 0.2rem;
  box-sizing: border-box;
  border-radius: 10px;
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: #ffffff;
  font-size: 16px;
  background: #c12017 url(../images/img89.png) center no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1580px) {
  .online-purchase .purchase-link a {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .purchase-link a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1260px) {
  .online-purchase .purchase-link a {
    min-width: 1.6rem;
  }
}
@media screen and (max-width: 991px){
	.online-purchase .purchase-link a{
		min-width: calc((100% - 4vw) / 3);
		border-radius: 0.8vw;
        font-size: 1.04vw;
	}
}
@media screen and (max-width: 640px) { 
	.online-purchase .contain{
		text-align: center;
	}
		.online-purchase .purchase-link{
			display: inline-grid;
    	grid-template-columns: repeat(2, 1fr); 
    	grid-template-rows: auto;
		}
}
/*@media screen and (max-width: 767px) {
  .online-purchase .purchase-link a {
    min-width: 1.5rem;
  }
}*/
.online-purchase .purchase-link a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: #c12017 solid 1px;
  box-sizing: border-box;
  opacity: 0;
  transition: all 0.5s ease;
}
.online-purchase .purchase-link a:hover::before {
  opacity: 1;
  width: calc(100% + 0.16rem);
  height: calc(100% + 0.16rem);
}
.online-purchase .purchase-link a img {
  display: inline-block;
  max-height: 0.34rem;
  margin-right: 0.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .online-purchase .purchase-link a img {
    /*max-height: 28px;*/
    max-height: 3vw;
    margin-right: 1.2vw
  }
}
@media screen and (max-width: 767px) {
  .online-purchase .purchase-link a img {
    /*max-height: 26px;*/
    max-height: 4vw;
  }
}
.online-purchase .purchase-link a .text {
  /*flex: 1;
  overflow: hidden;*/
  line-height: 1.35;
  text-align: left;
}
.online-purchase .purchase-link a .text .t1 {
  font-size: 18px;
}
@media screen and (max-width: 1580px) {
  .online-purchase .purchase-link a .text .t1 {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .purchase-link a .text .t1 {
    /*font-size: 15px;*/
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 767px) {
  .online-purchase .purchase-link a .text .t1 {
    font-size: 2vw;
  }
}
.online-purchase .purchase-link a .text .t2 {
  font-size: 14px;
}
@media screen and (max-width: 1580px) {
  .online-purchase .purchase-link a .text .t2 {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .purchase-link a .text .t2 {
    /*font-size: 13px;*/
   	font-size: 1.25vw;
  }
}
@media screen and (max-width: 767px) {
  .online-purchase .purchase-link a .text .t2 {
   	font-size: 1.75vw;
  }
}
.online-purchase .desc {
  max-width: 960px;
  width: 100%;
  margin-top: 0.56rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 1580px) {
  .online-purchase .desc {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) {
  .online-purchase .desc {
    font-size: 14px;
  }
}
.online-purchase .desc p {
  margin-bottom: 0.2rem;
}
.online-purchase .desc p:last-child {
  margin-bottom: 0;
}

.search-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 5;
}
.search-banner > img {
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .search-banner > img {
    height: 28vh;
    object-fit: cover;
  }
}
@media screen and (max-width: 991px) {
  .search-banner > img {
    height: 320px;
  }
}
@media screen and (max-width: 480px) {
  .search-banner > img {
    height: 280px;
  }
}
.search-banner .box {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  width: 100%;
}
.search-banner .box .headline {
  font-family: "SOURCEHANSANSCN-MEDIUM";
  font-size: 36px;
  color: #FFFFFF;
}
@media screen and (max-width: 1580px) {
  .search-banner .box .headline {
    font-size: .36rem;
  }
}
@media screen and (max-width: 991px) {
  .search-banner .box .headline {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .search-banner .box .headline {
    font-size: 24px;
  }
}
.search-banner .box .searchbox {
  margin-top: 0.25rem;
  max-width: 4.3rem;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .search-banner .box .searchbox {
    max-width: 100%;
  }
}
.search-banner .box .searchbox .layui-form .layui-row {
  width: 100%;
  border: rgba(255, 255, 255, 0.4) solid 1px;
  box-sizing: border-box;
  border-radius: 0.4rem;
}
.search-banner .box .searchbox .layui-form .layui-row .layui-input {
  flex: 1;
  color: #FFFFFF;
  font-family: "SOURCEHANSANSCN-REGULAR";
  font-size: 18px;
  height: 0.58rem;
  border: none;
  outline: none;
  background: none;
  padding: 0 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 1580px) {
  .search-banner .box .searchbox .layui-form .layui-row .layui-input {
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .search-banner .box .searchbox .layui-form .layui-row .layui-input {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .search-banner .box .searchbox .layui-form .layui-row .layui-input {
    height: 0.7rem;
    padding: 0 0.4rem;
    border-radius: 0.5rem;
  }
}
.search-banner .box .searchbox .layui-form .layui-row .layui-input::-webkit-input-placeholder {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: rgba(255, 255, 255, 0.6);
}
.search-banner .box .searchbox .layui-form .layui-row .layui-input::-moz-placeholder {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: rgba(255, 255, 255, 0.6);
}
.search-banner .box .searchbox .layui-form .layui-row .layui-input:-moz-placeholder {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: rgba(255, 255, 255, 0.6);
}
.search-banner .box .searchbox .layui-form .layui-row .layui-input:-ms-input-placeholder {
  font-family: "SOURCEHANSANSCN-REGULAR";
  color: rgba(255, 255, 255, 0.6);
}
.search-banner .box .searchbox .layui-form .layui-row .layui-btn {
  width: 1rem;
  background: #c12017;
  border-radius: 0.3rem;
  height: 0.58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 991px) {
  .search-banner .box .searchbox .layui-form .layui-row .layui-btn {
    width: 1.25rem;
    height: 0.7rem;
    border-radius: 0.5rem;
  }
}
.search-banner .box .searchbox .layui-form .layui-row .layui-btn img {
  max-width: 18%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
@media screen and (max-width: 991px) {
  .search-banner .box .searchbox .layui-form .layui-row .layui-btn img {
    max-width: 22%;
  }
}
.search-result .prompt-text {
  font-size: 20px;
  color: #666666;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 1580px) {
  .search-result .prompt-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  .search-result .prompt-text {
    font-size: 16px;
  }
}
.search-result .prompt-text span {
  color: #c12017;
}
.search-result .box {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
  margin-bottom: 6%;
}
@media screen and (max-width: 991px) {
  .search-result .box {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box {
    row-gap: 0.4rem;
    margin-bottom: 10%;
  }
}
.search-result .box .newitem:hover .textbox::after {
  width: 100%;
}
.search-result .box .newitem .imgbox {
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}
@media screen and (min-width: 1261px) {
  .search-result .box .newitem .imgbox {
    margin-right: 7%;
  }
}
@media screen and (max-width: 1260px) {
  .search-result .box .newitem .imgbox {
    margin-right: 5%;
  }
}
@media screen and (max-width: 767px) {
  .search-result .box .newitem .imgbox {
    padding-bottom: 0.4rem;
  }
}
.search-result .box .newitem .textbox {
  position: relative;
  padding-bottom: 0.3rem;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .search-result .box .newitem .textbox {
    padding-top: 0.15rem;
    padding-bottom: 0.4rem;
  }
}
.search-result .box .newitem .textbox::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #eeeeee;
}
.search-result .box .newitem .textbox::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c12017;
  transition: all 0.5s ease;
}

@media screen and (min-width: 1261px){
	.lunbotu .swiper-wrapper .swiper-slide,
	.obanner{
		position: relative;
		height: calc(100vh - 1.8rem);
	}
	.lunbotu .swiper-wrapper .swiper-slide a{
		height: 100%;
	}
	.lunbotu .swiper-wrapper .swiper-slide a > img,
	.lunbotu .swiper-wrapper .swiper-slide > img,
	.obanner > img{
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
		height: 100%;
		object-fit: cover;
	}
}


.index_about .imgbox{
    padding-bottom: 56.25%;
}
.about .box .imgbox .img{
    padding-bottom: 75%;
}
.index_about .imgbox::before,
.about .box .imgbox .img::before{
    z-index: 1;
}
.index_about .imgbox .videoimg,
.about .box .imgbox .img>img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about .box .imgbox .img>img.hide,
.index_about .imgbox .videoimg.hide{
    opacity: 0;
}

.movie{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.movie video{
    display: block;
    margin: auto;
    width: auto;
    height: auto;
    max-height: 100%;
    max-width: 100%;
}



.spacing{
    scroll-snap-align: start;
    scroll-margin-top: 0.8rem; 
}

