@charset "utf-8";
:root {
  --color: #cc0000;
  --vh: 100vh;
}
/*字体*/
/* @font-face {
	font-family: "Fontke";
	src: url("Fontke.woff2") format("woff2"),
		 url("Fontke.woff") format("woff"),
		 url("Fontke.ttf") format("truetype"),
		 url("Fontke.eot") format("embedded-opentype"),
		 url("Fontke.svg") format("svg"),
		 url("Fontke.otf") format("opentype");
} */
@font-face {
  font-family: "SourceHanSansCN-Normal";
  src: url("../otf/sourcehansanscn-normal.otf") format("opentype");
}
@font-face {
  font-family: "SourceHanSansCN-Light";
  src: url("../otf/sourcehansanscn-light.otf") format("opentype");
}
@font-face {
  font-family: "Honda-Head";
  src: url("../otf/hondaadvancedtypeface-head.otf") format("opentype");
}
* {
  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;
  scrollbar-width: auto;
}
* ::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
* ::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: var(--color);
}
* ::-webkit-scrollbar-track {
  /*滚动条-背景*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 3px;
  background: #ededed;
}
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;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 50px;
  }
}
body {
  min-height: 100%;
  font-family: 'SourceHanSansCN-Light', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: calc(26/16);
  color: #222;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
video,
video:focus {
  display: block;
  font-size: 0;
  border: 0;
  outline: none;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a {
  color: inherit;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
textarea {
  resize: none;
  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;
}
svg path,
svg circle {
  fill: currentColor !important;
  opacity: 1 !important;
}
picture,
section,
main {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 90%;
  max-width: 1440px;
}
@media (max-width: 1580px) {
  .container {
    width: 84%;
  }
}
@media (max-width: 1260px) {
  .container {
    width: 90%;
  }
}
.bg-color1 {
  background-color: #fff;
}
.ptb100 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .ptb100 {
    padding-top: 1.2rem;
    padding-bottom: 1.2em;
  }
}
.pt100 {
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .pt100 {
    padding-top: 1.2rem;
  }
}
.pb100 {
  padding-bottom: 1rem;
}
@media (max-width: 767px) {
  .pb100 {
    padding-bottom: 1.2rem;
  }
}
.font12 {
  font-size: 12px;
  line-height: calc(22/12);
}
.font14 {
  font-size: 14px;
  line-height: calc(24/14);
}
.font16 {
  font-size: 16px;
  line-height: calc(26/16);
}
.font18 {
  font-size: 18px;
  line-height: calc(28/18);
}
.font20 {
  font-size: 20px;
  line-height: calc(30/20);
}
.font24 {
  font-size: 24px;
  line-height: calc(34/24);
}
.font26 {
  font-size: 26px;
  line-height: calc(36/26);
}
.font30 {
  font-size: 30px;
  line-height: calc(40/30);
}
.font32 {
  font-size: 32px;
  line-height: calc(42/32);
}
.font36 {
  font-size: 36px;
  line-height: calc(46/36);
}
.font40 {
  font-size: 40px;
  line-height: calc(50/48);
}
.font48 {
  font-size: 48px;
  line-height: calc(58/48);
}
.font52 {
  font-size: 52px;
  line-height: calc(62/52);
}
.font60 {
  font-size: 60px;
  line-height: calc(70/60);
}
.font68 {
  font-size: 68px;
  line-height: calc(78/68);
}
.font72 {
  font-size: 72px;
  line-height: calc(82/72);
}
@media (max-width: 1580px) {
  .font14,
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font20 {
    font-size: 16px;
  }
  .font24,
  .font26 {
    font-size: 18px;
  }
  .font30,
  .font32 {
    font-size: 20px;
  }
  .font36,
  .font40 {
    font-size: 24px;
  }
  .font48,
  .font52 {
    font-size: 30px;
  }
  .font60,
  .font68 {
    font-size: 40px;
  }
  .font72 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .font14,
  .font16 {
    font-size: 14px;
  }
  .font18,
  .font20 {
    font-size: 16px;
  }
  .font24,
  .font26,
  .font30,
  .font32 {
    font-size: 18px;
  }
  .font36,
  .font40 {
    font-size: 20px;
  }
  .font48,
  .font52 {
    font-size: 24px;
  }
  .font60,
  .font68 {
    font-size: 28px;
  }
  .font72 {
    font-size: 30px;
  }
}
.public-btn {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.2rem;
  height: 54px;
  min-width: 1.6rem;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.6s;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .public-btn {
    padding: 0 15px;
    height: 40px;
  }
}
.public-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.2rem;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.6s;
  transform: translateY(-50%) scale(0.8);
}
@media (max-width: 1580px) {
  .public-btn::before {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
.public-btn span {
  position: relative;
  z-index: 2;
}
.public-btn .c-ico {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.6s;
}
@media (max-width: 1580px) {
  .public-btn .c-ico {
    width: 20px;
    height: 20px;
  }
}
.public-btn .c-ico .c-svg {
  width: 8px;
  height: 8px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .public-btn:hover {
    border-color: var(--color);
  }
  .public-btn:hover::before {
    transform: translateY(-50%) scale(16);
  }
  .public-btn:hover .c-ico {
    color: var(--color);
    background: #fff;
    transform: rotate(45deg);
  }
}
.public-btn2 {
  position: relative;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.2rem;
  height: 54px;
  min-width: 1.6rem;
  border-radius: 27px;
  border: 1px solid #a9a9a9;
  color: #424242;
  transition: all 0.6s;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .public-btn2 {
    padding: 0 15px 0 15px;
    height: 40px;
  }
}
.public-btn2::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0.2rem;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.6s;
  transform: translateY(-50%) scale(0.8);
}
@media (max-width: 1580px) {
  .public-btn2::before {
    width: 20px;
    height: 20px;
    right: 15px;
  }
}
.public-btn2 span {
  position: relative;
  z-index: 2;
}
.public-btn2 .c-ico {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.1rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--color);
  transition: all 0.6s;
}
@media (max-width: 1580px) {
  .public-btn2 .c-ico {
    width: 20px;
    height: 20px;
  }
}
.public-btn2 .c-ico .c-svg {
  width: 8px;
  height: 8px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .public-btn2:hover {
    color: #fff;
    border-color: var(--color);
  }
  .public-btn2:hover::before {
    transform: translateY(-50%) scale(16);
  }
  .public-btn2:hover .c-ico {
    color: var(--color);
    background: #fff;
    transform: rotate(45deg);
  }
}
.public-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.public-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.public-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.public-content {
  color: #666;
  line-height: 1.8;
}
.public-content a {
  color: var(--color);
  text-decoration: underline;
  text-underline-offset: 0.4em;
}
.public-content .c-tips {
  margin-top: 1em;
  color: var(--color);
  font-size: 12px;
  display: none;
}
@media (max-width: 767px) {
  .public-content .c-tips {
    display: block;
  }
}
.public-content .c-table-wrap {
  overflow-y: auto;
}
.public-content table {
  width: 100%;
  max-width: 100%;
  margin: 0.8em 0;
  white-space: wrap;
  word-break: break-all;
  text-align: left;
}
@media (max-width: 767px) {
  .public-content table {
    max-width: none;
  }
}
.public-content table th {
  font-weight: normal;
  color: #333333;
  background: #f5f5f5;
}
.public-content table td,
.public-content table th {
  padding: 10px 15px;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .public-content table td,
  .public-content table th {
    width: 230px;
  }
}
.public-content li {
  margin-left: 15px;
  list-style: disc;
}
.public-content ol {
  margin-left: 15px;
  list-style: decimal;
}
.public-content img,
.public-content video {
  max-width: 100%;
  height: auto !important;
}
.public-content iframe {
  width: 100%;
}
.public-content h2 {
  border-left: 2px solid var(--color);
  padding-left: 10px;
}
.public-content h1,
.public-content h2,
.public-content h3,
.public-content h4,
.public-content h5,
.public-content h6 {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  line-height: 1.2;
  color: #2d2d2d;
  margin-bottom: 0.5em;
}
.public-content h1 {
  font-size: 34px;
}
@media (max-width: 1580px) {
  .public-content h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .public-content h1 {
    font-size: 19px;
  }
}
.public-content h2 {
  font-size: 30px;
}
@media (max-width: 1580px) {
  .public-content h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .public-content h2 {
    font-size: 18px;
  }
}
.public-content h3 {
  font-size: 22px;
}
@media (max-width: 1580px) {
  .public-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .public-content h3 {
    font-size: 17px;
  }
}
.public-content h4 {
  font-size: 20px;
}
@media (max-width: 1580px) {
  .public-content h4 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .public-content h4 {
    font-size: 16px;
  }
}
.public-content h5 {
  font-size: 18px;
}
@media (max-width: 1580px) {
  .public-content h5 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .public-content h5 {
    font-size: 15px;
  }
}
.public-content h6 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .public-content h6 {
    font-size: 14px;
  }
}
@keyframes width100 {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes width0 {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
@keyframes move {
  0% {
    transform: translate(-10%, -10%) scale(1);
  }
  25% {
    transform: translate(10%, 0%) scale(1.05);
  }
  50% {
    transform: translate(10%, 10%) scale(1);
  }
  75% {
    transform: translate(0%, 10%) scale(0.95);
  }
  100% {
    transform: translate(-10%, -10%) scale(1);
  }
}
@keyframes mouse {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.public-title {
  margin-bottom: 0.4rem;
}
.public-title .c-title {
  font-family: 'SourceHanSansCN-Light', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #797979;
}
@media (max-width: 767px) {
  .public-title .c-title {
    font-size: 16px;
  }
}
.public-title .c-text {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  margin-top: 0.1rem;
  line-height: calc(72/52);
  color: #2d2d2d;
}
.public-title2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.45rem;
}
.public-title2 .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-title2 .c-title-img {
  height: 56px;
}
@media (max-width: 1580px) {
  .public-title2 .c-title-img {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .public-title2 .c-title-img {
    height: 24px;
  }
}
/* 占位标签，设置导航样式 */
#c-placeholder {
  height: 84px;
}
@media (max-width: 1580px) {
  #c-placeholder {
    height: 60px;
  }
}
/*头部*/
#c-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  line-height: 84px;
  text-align: center;
  color: #fff;
  transition: 0.4s;
}
#c-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  height: 120%;
  width: 100%;
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  filter: blur(10px);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  #c-header {
    line-height: 60px;
  }
}
#c-header a {
  color: #fff;
  transition: 0.4s;
}
#c-header .container::before,
#c-header .container::after {
  display: none;
}
#c-header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1920px;
  padding: 0 0.6rem;
}
@media (max-width: 991px) {
  #c-header > .container {
    padding: 0;
    width: 90%;
    height: 60px;
  }
}
#c-header .c-right-box {
  display: flex;
  align-items: center;
}
#c-header.c-head-move {
  top: -86px;
}
@media (max-width: 1580px) {
  #c-header.c-head-move {
    top: -62px;
  }
}
#c-header.c-head-move .c-list-wrap {
  display: none;
}
#c-header.c-style2 {
  color: #222;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2::before {
  opacity: 0;
}
#c-header.c-style2 a {
  color: #222;
}
#c-header .c-logo {
  display: flex;
  align-items: center;
  transform: translateY(-20px);
  opacity: 0;
}
#c-header .c-logo .c-img-box {
  display: flex;
  align-items: center;
}
#c-header .c-logo .c-img-box img {
  height: 32px;
}
@media (max-width: 1580px) {
  #c-header .c-logo .c-img-box img {
    height: 26px;
  }
}
#c-header .c-logo .c-img-box img:nth-child(2) {
  display: none;
}
#c-header .c-logo span {
  display: inline-block;
  margin-left: 0.2rem;
  padding-left: 0.2rem;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 767px) {
  #c-header .c-logo span {
    display: none;
  }
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
#c-header .c-switch {
  position: relative;
  display: none;
  width: 24px;
  height: 20px;
  cursor: pointer;
}
@media (max-width: 991px) {
  #c-header .c-switch {
    display: block;
  }
}
#c-header .c-switch i {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}
#c-header .c-switch i:nth-child(1) {
  top: 0;
}
#c-header .c-switch i:nth-child(3) {
  bottom: 0;
}
#c-header .c-switch i:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
#c-header.c-style2 .c-switch i {
  background: #333;
}
#c-header .c-gn {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  #c-header .c-gn {
    display: none;
  }
}
#c-header .c-gn form {
  padding-left: 0.6rem;
  position: relative;
  cursor: pointer;
}
#c-header .c-gn form img,
#c-header .c-gn form svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
@media (max-width: 991px) {
  #c-header .c-gn form img,
  #c-header .c-gn form svg {
    width: 0.2rem;
    height: 0.2rem;
  }
}
#c-header .c-gn form:hover > svg {
  color: var(--color);
}
#c-header .c-gn form .c-box {
  position: absolute;
  top: 106%;
  right: 0;
  display: none;
  width: 280px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: #666;
}
#c-header .c-gn form .c-box input {
  float: left;
  padding: 0 0.15rem;
  width: -webkit-calc(30%);
  width: calc(100% - 70px);
  height: 50px;
}
#c-header .c-gn form .c-box button {
  float: left;
  width: 70px;
  height: 50px;
  color: #fff;
  background: var(--color);
  cursor: pointer;
}
#c-header .c-gn .c-language {
  margin: 0 0.3rem;
  position: relative;
  cursor: pointer;
  transform: translateY(-20px);
  opacity: 0;
}
@media (max-width: 767px) {
  #c-header .c-gn .c-language {
    display: none;
  }
}
#c-header .c-gn .c-language .c-ico-text {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-language .c-ico-text span {
  margin: 0 0.1rem;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-ico-text img,
#c-header .c-gn .c-language .c-ico-text svg {
  width: 20px;
  height: 20px;
  transition: 0.4s;
  vertical-align: middle;
}
#c-header .c-gn .c-language .c-ico-text img:nth-child(3),
#c-header .c-gn .c-language .c-ico-text svg:nth-child(3) {
  width: 8px;
  height: 8px;
}
#c-header .c-gn .c-language .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  line-height: 50px;
  border-radius: 0 0 10px 10px;
}
#c-header .c-gn .c-language .c-box a {
  position: relative;
  display: block;
  padding: 0 20px;
  transition: all 0.4s;
}
#c-header .c-gn .c-language .c-box a:last-child::before {
  display: none;
}
#c-header .c-gn .c-language .c-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: calc(100% - 40px) !important;
  left: 20px !important;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}
#c-header .c-gn .c-language .c-box a:hover {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text {
  color: var(--color);
}
#c-header .c-gn .c-language:hover .c-ico-text svg {
  color: var(--color);
}
#c-header .c-gn .c-phone {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-phone img,
#c-header .c-gn .c-phone svg {
  margin: 0 0.1rem 0 0;
  width: 20px;
  height: 20px;
}
#c-header .c-gn .c-link {
  display: flex;
  align-items: center;
}
#c-header .c-gn .c-link li {
  margin-right: 0.25rem;
  position: relative;
  opacity: 0;
  transform: translateY(-20px);
}
#c-header .c-gn .c-link li:last-child {
  margin-right: 0;
}
#c-header .c-gn .c-link li a {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #fff;
  transition: all 0.4s;
}
#c-header .c-gn .c-link li a > img,
#c-header .c-gn .c-link li a > svg {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
#c-header .c-gn .c-link li .c-box {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1.6rem;
  transform: translateX(-50%);
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  background: #fff;
  text-align: center;
  padding: 0.15rem;
  border: 1px solid #ddd;
  border-radius: 10px;
}
@media (max-width: 1580px) {
  #c-header .c-gn .c-link li .c-box {
    width: 100px;
    font-size: 12px;
  }
}
#c-header .c-gn .c-link li .c-box::before {
  position: absolute;
  top: -6px;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  background: #fff;
  transform: rotate(45deg);
}
#c-header .c-gn .c-link li .c-box img {
  margin-bottom: 0.1rem;
  width: 90px;
  height: 90px;
  max-width: none;
  object-fit: contain;
}
@media (max-width: 1580px) {
  #c-header .c-gn .c-link li .c-box img {
    width: 80px;
    height: 80px;
  }
}
#c-header .c-gn .c-link li:hover a {
  color: var(--color);
}
#c-header.c-style2 .c-gn .c-phone svg {
  color: var(--color);
}
#c-header.c-style2 .c-link li a {
  color: #666;
}
#c-header .c-nav {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
@media (max-width: 1260px) {
  #c-header .c-nav {
    transform: translateX(-28%);
  }
}
@media (max-width: 991px) {
  #c-header .c-nav {
    display: none;
  }
}
#c-header .c-nav > li {
  margin-right: 0.65rem;
  transform: translateY(-20px);
  opacity: 0;
}
@media (max-width: 1580px) {
  #c-header .c-nav > li {
    margin-right: 30px;
  }
}
@media (max-width: 1260px) {
  #c-header .c-nav > li {
    margin-right: 15px;
  }
}
#c-header .c-nav > li:last-child {
  margin-right: 0;
}
#c-header .c-nav > li > .c-title-box {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
#c-header .c-nav > li > .c-title-box img,
#c-header .c-nav > li > .c-title-box svg {
  margin-left: 0.05rem;
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s;
}
#c-header .c-nav > li a {
  position: relative;
  display: block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#c-header .c-nav > li a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color);
  transition: 0.4s;
}
#c-header .c-list-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#c-header .c-list-wrap .c-list-box {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  padding: 0.4rem 0;
  width: 100%;
  border-top: 1px solid #ddd;
  color: #000;
  background: #fff;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box {
    padding: 0.4rem 0;
  }
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box {
    top: 60px;
  }
}
#c-header .c-list-wrap .c-list-box a {
  color: #999;
}
#c-header .c-list-wrap .c-list-box .container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#c-header .c-list-wrap .c-list-box .container .c-list {
  width: 310px;
  border-right: 1px solid #ddd;
  min-height: 440px;
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list {
    width: 240px;
    min-height: 310px;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li {
  padding-right: 0.6rem;
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li {
    padding-right: 0.4rem;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.07rem 0.3rem;
  height: 50px;
  border-radius: 25px;
  line-height: 1.5;
  color: #999;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 .c-ico {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  margin-left: 0.2rem;
  overflow: hidden;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 svg {
  width: 12px;
  height: 12px;
  color: transparent;
  color: #999;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 img:nth-child(2),
#c-header .c-list-wrap .c-list-box .container .c-list li .c-title-box2 svg:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  color: var(--color);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box {
  position: absolute;
  top: 0;
  left: 310px;
  width: calc(100% - 310px);
  padding-left: 0.45rem;
  display: flex;
  align-items: flex-start;
  display: none;
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li .c-box {
    left: 240px;
    width: calc(100% - 240px);
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left {
  padding: 0 0.9rem 0 0;
  width: calc(100% - 350px);
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left {
    width: calc(100% - 260px);
  }
}
@media (max-width: 1260px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left {
    padding: 0 0.4rem 0 0;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left > .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left > .c-title {
    max-width: 440px;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-btn-box {
  display: flex;
  align-items: flex-start;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .public-btn2 {
  margin: 0.2rem 0 0.6rem;
  height: auto;
  min-width: auto;
  padding: 0;
  border-radius: 0;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .public-btn2:nth-child(2) {
  margin-left: 0.2rem;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .public-btn2::before {
  display: none;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .public-btn2:hover {
  color: var(--color);
}
@keyframes arrowRun {
  0% {
    transform: translate3d(0%, 0%, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }
  7% {
    transform: translate3d(150%, -150%, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }
  7.1% {
    transform: translate3d(-150%, 150%, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }
  14% {
    transform: translate3d(0%, 0%, 0) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 {
  margin: 0.2rem 0 0.6rem;
  display: inline-flex;
  align-items: center;
  color: var(--color);
  transition: all 0.4s;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2:nth-child(2) {
  margin-left: 20px;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 span {
  position: relative;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-top: 1px solid var(--color);
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 .c-ico {
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2 svg {
  width: 8px;
  height: 8px;
  object-fit: contain;
  color: #fff;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2:hover span::before {
  width: 100%;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2:hover .c-ico img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more2:hover .c-ico svg {
  animation: arrowRun 5s infinite;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more {
  margin: 0.1rem 0 0.4rem;
  display: inline-flex;
  align-items: center;
  color: #333;
  transition: all 0.4s;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more svg {
  margin-left: 0.1rem;
  width: 8px;
  height: 8px;
  object-fit: contain;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more:hover {
  color: var(--color);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more:hover img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .c-more:hover svg {
  transform: rotate(45deg);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .on {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .on li {
  margin-right: 0;
  width: 50%;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left .on li:nth-child(2n) {
  margin: 0;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li {
  padding-bottom: 0.1rem;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li:last-child {
  padding: 0;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a {
  display: inline-flex;
  align-items: center;
  color: #666;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a svg {
  opacity: 0;
  width: 12px;
  height: 12px;
  object-fit: contain;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a:hover {
  color: var(--color);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a:hover img,
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-left li a:hover svg {
  transform: translateX(100%);
  opacity: 1;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right {
  flex-shrink: 0;
  width: 350px;
}
@media (max-width: 1580px) {
  #c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right {
    width: 260px;
  }
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li {
  padding: 0 0 0.2rem;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li:last-child {
  padding: 0;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a {
  display: block;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a .public-img {
  border-radius: 10px;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a .public-img::before {
  display: none;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a .public-img img {
  position: static;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a .c-title {
  margin-top: 0.15rem;
  color: #333;
  transition: all 0.4s;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a .c-text {
  color: #666;
  margin-top: 0.1rem;
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a:hover .public-img img {
  transform: scale(1.04);
}
#c-header .c-list-wrap .c-list-box .container .c-list li .c-box .c-right ul li a:hover .c-title {
  color: #000;
}
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-title-box2 {
  color: var(--color);
  background: #f3f7fb;
}
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-title-box2 svg:nth-child(1),
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-title-box2 img:nth-child(1) {
  transform: translateX(100%);
}
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-title-box2 svg:nth-child(2),
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-title-box2 img:nth-child(2) {
  transform: translateX(0%);
}
#c-header .c-list-wrap .c-list-box .container .c-list li.on .c-box {
  display: flex;
}
#c-header.c-style2 {
  color: #333;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
#c-header.c-style2 a {
  color: #333;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(1) {
  display: none;
}
#c-header.c-style2 .c-logo .c-img-box img:nth-child(2) {
  display: inline-block;
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a,
#c-header .c-nav li:hover > .c-title-box > a,
#c-header .c-nav li.on > a,
#c-header .c-nav li:hover > a {
  color: var(--color);
}
#c-header.c-style2 .c-nav li.on > .c-title-box > a:before,
#c-header .c-nav li:hover > .c-title-box > a:before,
#c-header .c-nav li.on > a:before,
#c-header .c-nav li:hover > a:before {
  left: 0;
  width: 100%;
}
#c-header.c-style2 .c-nav li.on > .c-title-box svg,
#c-header .c-nav li:hover > .c-title-box svg {
  color: var(--color);
}
#c-header .c-nav2 {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 0;
  line-height: 60px;
  color: #333;
  background: #fff;
  overflow-y: auto;
  transition: 0.4s;
  text-align: left;
}
#c-header .c-nav2 > li:last-child {
  border-bottom: 1px solid #f1f1f1;
}
#c-header .c-nav2 li {
  padding: 0 5vw;
  border-top: 1px solid #f1f1f1;
}
#c-header .c-nav2 li .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#c-header .c-nav2 li .c-title-box img,
#c-header .c-nav2 li .c-title-box svg {
  width: 14px;
  height: 14px;
  transition: all 0.4s;
}
#c-header .c-nav2 li .c-title-box.on img,
#c-header .c-nav2 li .c-title-box.on svg {
  transform: rotate(90deg);
}
#c-header .c-nav2 li a {
  color: #333;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#c-header .c-nav2 li a:hover,
#c-header .c-nav2 li.on > a {
  color: var(--color);
}
#c-header .c-nav2 li ul {
  display: none;
}
#c-header.on .c-logo {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s;
}
#c-header.on .c-nav > li {
  opacity: 1;
  transform: translateY(0);
}
#c-header.on .c-nav > li:nth-child(1) {
  transition: all 0.6s 0.1s;
}
#c-header.on .c-nav > li:nth-child(2) {
  transition: all 0.6s 0.2s;
}
#c-header.on .c-nav > li:nth-child(3) {
  transition: all 0.6s 0.3s;
}
#c-header.on .c-nav > li:nth-child(4) {
  transition: all 0.6s 0.4s;
}
#c-header.on .c-nav > li:nth-child(5) {
  transition: all 0.6s 0.5s;
}
#c-header.on .c-nav > li:nth-child(6) {
  transition: all 0.6s 0.6s;
}
#c-header.on .c-language {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s 0.7s;
}
#c-header.on .c-link li {
  opacity: 1;
  transform: translateY(0);
}
#c-header.on .c-link li:nth-child(1) {
  transition: all 0.4s 0.8s;
}
#c-header.on .c-link li:nth-child(2) {
  transition: all 0.4s 0.9s;
}
#c-header.on .c-link li:nth-child(3) {
  transition: all 0.4s 1s;
}
#c-header.on .c-link li:nth-child(4) {
  transition: all 0.4s 1.1s;
}
.c-open #c-header .c-nav2 {
  height: 600px;
  height: calc(100vh - 1.2rem);
  height: calc(100svh - 1.2rem);
  height: calc(100dvh - 1.2rem);
}
.c-open #c-header .c-switch i:nth-child(2) {
  opacity: 0;
}
.c-open #c-header .c-switch i:nth-child(1) {
  top: 50%;
  margin-top: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-open #c-header .c-switch i:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* 底部 */
#c-footer {
  position: relative;
  z-index: 2;
  color: #fff;
}
#c-footer a {
  color: #a9a9a9;
  transition: 0.4s;
}
#c-footer a:hover {
  color: var(--color);
}
#c-footer .container::before,
#c-footer .container::after {
  display: none;
}
#c-footer .c-top-box {
  padding-bottom: 0.6rem;
  background: #36363b;
}
#c-footer .c-top-box .container .c-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.85rem 0 0.5rem;
}
#c-footer .c-top-box .container .c-top .c-logo {
  display: block;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-top .c-logo {
    margin: 0 auto;
  }
}
#c-footer .c-top-box .container .c-top .c-logo img {
  height: 42px;
}
@media (max-width: 1580px) {
  #c-footer .c-top-box .container .c-top .c-logo img {
    height: 30px;
  }
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-top .c-link {
    width: 100%;
  }
}
#c-footer .c-top-box .container .c-top .c-ico {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-top .c-ico {
    padding-top: 0.6rem;
    width: 100%;
    justify-content: center;
  }
}
#c-footer .c-top-box .container .c-top .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.38rem;
  width: 26px;
  height: 26px;
  color: rgba(255, 255, 255, 0.3);
  transition: 0.4s;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-top .c-ico a {
    width: 20px;
    height: 20px;
  }
}
#c-footer .c-top-box .container .c-top .c-ico a:last-child {
  margin: 0;
}
#c-footer .c-top-box .container .c-top .c-ico a img,
#c-footer .c-top-box .container .c-top .c-ico a svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#c-footer .c-top-box .container .c-top .c-ico a:hover {
  color: #fff;
}
#c-footer .c-top-box .container .c-center {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.35rem 0 0.55rem;
  border-top: 1px solid #59595d;
  border-bottom: 1px solid #59595d;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center {
    flex-wrap: wrap;
    border-bottom: 0;
    padding-bottom: 0.35rem;
  }
}
#c-footer .c-top-box .container .c-center .c-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.2rem;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-title-box {
    padding: 0.3rem 0;
    border-bottom: 1px solid #59595d;
  }
}
#c-footer .c-top-box .container .c-center .c-title-box .c-title {
  color: #fff;
}
#c-footer .c-top-box .container .c-center .c-title-box a {
  color: #fff;
}
#c-footer .c-top-box .container .c-center .c-title-box a:hover {
  color: var(--color);
}
#c-footer .c-top-box .container .c-center .c-title-box img,
#c-footer .c-top-box .container .c-center .c-title-box svg {
  display: none;
  transition: 0.4s;
  width: 8px;
  height: 8px;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-title-box img,
  #c-footer .c-top-box .container .c-center .c-title-box svg {
    display: inline-block;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-list-box {
    width: 100%;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-list-box .c-list {
    padding-top: 0.2rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-center .c-list-box .c-list li {
  padding-bottom: 0.05rem;
}
#c-footer .c-top-box .container .c-center .c-list-box .c-list li:last-child {
  padding-bottom: 0;
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-list-box .c-list li:last-child {
    padding-bottom: 0.2rem;
  }
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-list-box .c-list li {
    padding-bottom: 0.2rem;
  }
}
#c-footer .c-top-box .container .c-center .c-list-box.on .c-title-box img,
#c-footer .c-top-box .container .c-center .c-list-box.on .c-title-box svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  #c-footer .c-top-box .container .c-center .c-list-box.on .c-title-box img,
  #c-footer .c-top-box .container .c-center .c-list-box.on .c-title-box svg {
    display: inline-block;
  }
}
#c-footer .c-top-box .container .c-bottom {
  padding: 0.35rem 0;
  line-height: 26px;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  #c-footer .c-top-box .container .c-bottom {
    padding-bottom: 0.7rem;
    display: none;
  }
}
#c-footer .c-top-box .container .c-bottom .c-title {
  margin-right: 0.25rem;
  flex-shrink: 0;
}
#c-footer .c-top-box .container .c-bottom .c-box {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: -0.05rem;
}
#c-footer .c-top-box .container .c-bottom .c-box a {
  margin: 0 0.35rem 0.05rem 0;
  color: #797979;
}
#c-footer .c-top-box .container .c-bottom .c-box a:hover {
  color: var(--color);
}
#c-footer .c-bottom-box {
  padding: 0.25rem 0;
  color: rgba(255, 255, 255, 0.3);
  background: #000000;
}
@media (max-width: 767px) {
  #c-footer .c-bottom-box {
    padding: 0.6rem 0;
  }
}
#c-footer .c-bottom-box .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#c-footer .c-bottom-box .container a {
  color: rgba(255, 255, 255, 0.3);
}
#c-footer .c-bottom-box .container a:hover {
  color: var(--color);
}
#c-footer .c-bottom-box .container .c-copyright {
  word-wrap: break-word;
  word-break: break-all;
}
#c-go-top {
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 999;
  padding: 15px 0;
  width: 40px;
  border-radius: 20px;
  border: 1px solid #a9a9a9;
  color: #666;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: all 0.4s;
  overflow: hidden;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  #c-go-top {
    display: none !important;
  }
}
#c-go-top::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: 50%;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color);
  transform: scale(0);
  transition: all 0.4s;
}
#c-go-top p {
  position: relative;
  z-index: 2;
}
#c-go-top img,
#c-go-top svg {
  position: relative;
  z-index: 2;
  margin-bottom: -0.05rem;
  width: 0.3rem;
  height: 0.3rem;
  color: var(--color);
  transition: all 0.4s;
}
#c-go-top img .c-wb,
#c-go-top svg .c-wb {
  opacity: 0 !important;
  transition: all 0.4s;
}
#c-go-top:hover {
  border-color: var(--color);
  color: #fff;
}
#c-go-top:hover::before {
  transform: scale(10);
}
#c-go-top:hover svg {
  color: #fff;
  margin-bottom: 0.1rem;
}
#c-go-top:hover svg .c-wb {
  opacity: 1 !important;
}
#c-code-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
#c-code-pop .c-img-box {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 20px;
  width: 200px;
  border-radius: 5px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#c-code-pop .c-img-box .c-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  bottom: -60px;
  left: 50%;
  margin-left: -20px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s;
  color: #333;
}
#c-code-pop .c-img-box .c-close img,
#c-code-pop .c-img-box .c-close svg {
  margin: 4px;
  width: 18px;
  height: 18px;
}
#c-code-pop .c-img-box .c-close:hover {
  color: #fff;
  background-color: var(--color);
}
#c-code-pop .c-img-box > img {
  width: 100%;
}
#c-code-pop .c-img-box .c-text {
  padding-top: 10px;
  line-height: 1;
  text-align: center;
  color: #333;
}
.c-loding {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1010;
  width: 100%;
  height: 100%;
  background: #000;
}
.c-loding .c-move {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 150vw;
  height: 150vw;
  margin: -75vw 0 0 -75vw;
  border-radius: 50%;
  background-image: radial-gradient(#0a2644, rgba(10, 38, 68, 0), rgba(10, 38, 68, 0));
  animation: move 10s linear infinite;
}
.c-loding .c-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  height: 68px;
  transform: translate(-50%, -50%);
}
@media (max-width: 1580px) {
  .c-loding .c-logo {
    height: 50px;
  }
}
@media (max-width: 767px) {
  .c-loding .c-logo {
    height: 28px;
  }
}
.c-loding .c-box {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  z-index: 5;
  width: 4rem;
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
}
.c-loding .c-box .c-line-box {
  margin-top: 0.15rem;
  background: rgba(255, 255, 255, 0.3);
}
.c-loding .c-box .c-line-box .c-line {
  width: 0;
  height: 3px;
  background: #fff;
}
/*首页内容1*/
.c-home1 .swiper-slide {
  overflow: hidden;
}
.c-home1 .swiper-slide .c-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: var(--vh);
}
.c-home1 .swiper-slide .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home1 .swiper-slide .c-box {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 5;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
}
@media (max-width: 991px) {
  .c-home1 .swiper-slide .c-box {
    text-align: center;
    top: 76%;
  }
}
.c-home1 .swiper-slide .c-box .c-text-img {
  margin: auto;
  display: block;
  width: 700px;
}
@media (max-width: 1580px) {
  .c-home1 .swiper-slide .c-box .c-text-img {
    width: 500px;
  }
}
@media (max-width: 991px) {
  .c-home1 .swiper-slide .c-box .c-text-img {
    display: none;
  }
}
.c-home1 .swiper-slide .c-box .c-title {
  margin-top: 0.2rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home1 .swiper-slide .c-box .c-title:nth-child(1) {
  margin: 0;
}
.c-home1 .swiper-slide .c-box .c-text {
  margin-top: 0.05rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-slide .c-box .c-text {
    font-size: 16px;
  }
}
.c-home1 .swiper-slide .c-box .public-btn {
  margin-top: 0.45rem;
}
.c-home1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.5rem;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination {
    bottom: 0.6rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  width: 0.4rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.05rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home1 .swiper-pagination .swiper-pagination-bullet {
    width: 0.3rem;
  }
}
.c-home1 .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 4px;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: #fff;
  width: 0;
  animation-timing-function: linear;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.8rem;
}
.c-home1 .swiper-pagination .swiper-pagination-bullet-active div {
  width: 0.8rem;
  animation-name: width100;
}
.c-home2 {
  padding: 1.3rem 0 0.4rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-home2 {
    padding: 1.2rem 0 0.4rem;
  }
}
.c-home2 .c-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.45rem;
}
.c-home2 .c-top .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home2 .c-bottom {
  overflow: visible;
}
@media (max-width: 991px) {
  .c-home2 .c-bottom {
    padding-bottom: 0.6rem;
  }
}
.c-home2 .c-bottom .c-list {
  display: flex;
  align-items: flex-start;
  width: auto;
  margin: 0 -0.2rem;
}
@media (max-width: 991px) {
  .c-home2 .c-bottom .c-list {
    margin: 0;
    width: 100%;
  }
}
.c-home2 .c-bottom .c-list li {
  width: 33.33%;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .c-home2 .c-bottom .c-list li {
    padding: 0;
    width: 100%;
  }
}
.c-home2 .c-bottom .c-list li .c-wrap {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.3rem rgba(170, 188, 203, 0.3);
  transition: all 0.4s;
}
.c-home2 .c-bottom .c-list li .c-wrap .public-img::before {
  padding-top: calc(265/455*100%);
}
.c-home2 .c-bottom .c-list li .c-wrap .public-img .c-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 30px;
  color: #161616;
  background: rgba(255, 255, 255, 0.5);
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box {
  padding: 0.25rem 0.5rem 0.3rem 0.2rem;
}
@media (max-width: 767px) {
  .c-home2 .c-bottom .c-list li .c-wrap .c-box {
    padding: 0.3rem;
  }
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box .c-time {
  color: #797979;
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box .c-time span {
  margin-right: 0.1rem;
  color: var(--color);
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box .c-title {
  margin: 0.1rem 0 0.3rem;
  height: 3em;
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box .c-more {
  display: inline-flex;
  align-items: center;
  color: #333;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-home2 .c-bottom .c-list li .c-wrap .c-box .c-more {
    display: none;
  }
}
.c-home2 .c-bottom .c-list li .c-wrap .c-box .c-more .c-svg {
  margin-left: 0.1rem;
  width: 8px;
  height: 8px;
  object-fit: contain;
  transition: all 0.4s;
}
.c-home2 .c-bottom .c-list li .c-wrap:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(170, 188, 203, 0.5);
}
.c-home2 .c-bottom .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-home2 .c-bottom .c-list li .c-wrap:hover .c-box .c-more .c-svg {
  color: var(--color);
  transform: rotate(45deg);
}
.c-home2 .c-bottom .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home3 {
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .c-home3 {
    padding: 1.2rem 0;
  }
}
@media (max-width: 991px) {
  .c-home3 .swiper1 {
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
  }
}
.c-home3 .swiper1 .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home3 .swiper1 .c-list {
  display: flex;
  margin: 0 -0.1rem;
  width: auto;
}
@media (max-width: 991px) {
  .c-home3 .swiper1 .c-list {
    margin: 0;
    width: 100%;
  }
}
.c-home3 .swiper1 .c-list li {
  padding: 0 0.1rem 0.2rem;
  transition: all 0.4s;
}
@media (min-width: 992px) {
  .c-home3 .swiper1 .c-list li {
    flex: 1 1 25%;
  }
}
@media (max-width: 991px) {
  .c-home3 .swiper1 .c-list li {
    padding: 0;
  }
}
.c-home3 .swiper1 .c-list li .c-wrap {
  position: relative;
  display: block;
  border-radius: 0.2rem;
  overflow: hidden;
  height: 6rem;
  color: #fff;
}
@media (max-width: 991px) {
  .c-home3 .swiper1 .c-list li .c-wrap {
    height: 34vw;
  }
}
@media (max-width: 767px) {
  .c-home3 .swiper1 .c-list li .c-wrap {
    height: 68vw;
  }
}
.c-home3 .swiper1 .c-list li .c-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 25%);
}
.c-home3 .swiper1 .c-list li .c-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home3 .swiper1 .c-list li .c-wrap > .c-title {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  padding: 0.25rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .c-home3 .swiper1 .c-list li .c-wrap > .c-title {
    opacity: 0;
  }
}
.c-home3 .swiper1 .c-list li .c-wrap .c-box {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0s 0s;
}
@media (max-width: 991px) {
  .c-home3 .swiper1 .c-list li .c-wrap .c-box {
    opacity: 1;
    transition: all 0.4s 0.4s;
  }
}
.c-home3 .swiper1 .c-list li .c-wrap .c-box .c-text {
  padding-top: 0.05rem;
}
.c-home3 .swiper1 .c-list li .c-wrap .c-box .c-more {
  flex-shrink: 0;
  margin-left: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color);
  transform: scale(0.8);
  transition: all 0s 0s;
}
@media (max-width: 1580px) {
  .c-home3 .swiper1 .c-list li .c-wrap .c-box .c-more {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 767px) {
  .c-home3 .swiper1 .c-list li .c-wrap .c-box .c-more {
    width: 30px;
    height: 30px;
  }
}
.c-home3 .swiper1 .c-list li .c-wrap .c-box .c-more .c-svg {
  width: 8px;
  height: 8px;
  object-fit: contain;
  transform: rotate(45deg);
}
@media (max-width: 767px) {
  .c-home3 .swiper1 .c-list li .c-wrap .c-box .c-more .c-svg {
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 992px) {
  .c-home3 .swiper1 .c-list li:hover {
    flex: 0 0 50%;
  }
}
.c-home3 .swiper1 .c-list li:hover .c-wrap > .c-title {
  opacity: 0;
}
.c-home3 .swiper1 .c-list li:hover .c-wrap .c-box {
  opacity: 1;
  transition: all 0.4s 0.4s;
}
.c-home3 .swiper1 .c-list li:hover .c-wrap .c-more {
  transform: scale(1);
  transition: all 0.4s 0.4s;
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-slide {
    padding-bottom: 80px;
  }
}
.c-home3 .swiper2 .swiper-slide .public-img::before {
  padding-top: calc(730/1440*100%);
}
.c-home3 .swiper2 .swiper-slide .public-img img {
  object-fit: contain;
}
.c-home3 .swiper2 .swiper-slide .c-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  padding: 0.9rem;
  text-align: center;
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-slide .c-box {
    top: auto;
    bottom: 10px;
    padding: 0.4rem;
  }
}
.c-home3 .swiper2 .swiper-slide .c-box > img {
  height: 1.22rem;
  object-fit: contain;
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-slide .c-box > img {
    position: absolute;
    top: -30vw;
    left: 50%;
    height: 50px;
    transform: translateX(-50%);
  }
}
.c-home3 .swiper2 .swiper-slide .c-box .public-btn {
  margin-top: 0.4rem;
  border-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-slide .c-box .public-btn {
    border-color: #a9a9a9;
    color: #424242;
  }
  .c-home3 .swiper2 .swiper-slide .c-box .public-btn svg {
    color: #fff;
  }
}
.c-home3 .swiper2 .swiper-slide .c-box .public-btn:hover {
  color: #fff;
  border-color: var(--color);
}
.c-home3 .swiper2 .swiper-slide .c-box .public-btn:hover svg {
  color: var(--color);
}
.c-home3 .swiper2 .swiper-button-next,
.c-home3 .swiper2 .swiper-button-prev {
  top: 44%;
  margin-top: -19px;
  width: 38px;
  height: 38px;
  opacity: 0.2;
  transition: 0.4s;
  right: 20px;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}
@media (max-width: 991px) {
  .c-home3 .swiper2 .swiper-button-next,
  .c-home3 .swiper2 .swiper-button-prev {
    display: none;
  }
}
.c-home3 .swiper2 .swiper-button-next::after,
.c-home3 .swiper2 .swiper-button-prev::after {
  display: none;
}
.c-home3 .swiper2 .swiper-button-next .c-svg,
.c-home3 .swiper2 .swiper-button-prev .c-svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-home3 .swiper2 .swiper-button-prev {
  left: 20px;
}
.c-home3 .swiper2 .swiper-button-next:hover,
.c-home3 .swiper2 .swiper-button-prev:hover {
  opacity: 1;
}
.c-home3 .swiper2 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.5rem;
}
@media (max-width: 991px) {
  .c-home3 .swiper2 .swiper-pagination {
    bottom: 0.4rem;
  }
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-pagination {
    bottom: 0;
  }
}
.c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 0.4rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.05rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet {
    width: 0.3rem;
  }
}
.c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5px;
}
.c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: var(--color);
  width: 0;
  animation-timing-function: linear;
  animation-duration: 0s;
}
.c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.8rem;
}
.c-home3 .swiper2 .swiper-pagination .swiper-pagination-bullet-active div {
  width: 0.8rem;
  animation-name: width100;
  animation-duration: 4.8s;
}
.c-home4 {
  background: #f7f7f7;
}
.c-home4 .container {
  position: relative;
  display: flex;
  overflow: visible;
}
@media (max-width: 991px) {
  .c-home4 .container {
    flex-wrap: wrap;
  }
}
.c-home4 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  overflow: hidden;
}
.c-home4 .c-main {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .c-home4 .c-main {
    flex-wrap: wrap;
    width: 100%;
  }
}
.c-home4 .c-main .c-title-box {
  margin-right: 2.5rem;
  width: 7.2rem;
}
@media (max-width: 991px) {
  .c-home4 .c-main .c-title-box {
    flex-shrink: 0;
    width: 40vw;
    margin-right: 5vw;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .c-title-box {
    padding: 1.2rem 0 0;
    width: 100%;
    margin: 0;
  }
}
.c-home4 .c-main .c-title-box > .c-text {
  margin: 1.5rem 0 0.35rem;
  padding-top: 0.25rem;
  min-height: 2.3rem;
  border-top: 1px solid #c0c0c0;
}
@media (max-width: 991px) {
  .c-home4 .c-main .c-title-box > .c-text {
    margin-top: 0.35rem;
    min-height: auto;
  }
}
@media (max-width: 767px) {
  .c-home4 .c-main .c-title-box > .c-text {
    display: none;
    font-size: 14px;
  }
}
.c-home4 .c-main .c-title-box .c-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2d2d2d;
}
@media (max-width: 991px) {
  .c-home4 .c-main .c-title-box .c-more {
    display: none;
  }
}
.c-home4 .c-main .c-title-box .c-more img {
  margin-right: 0.1rem;
  width: 18px;
  height: 28px;
  object-fit: contain;
  animation: mouse 1.5s linear infinite;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper {
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
  }
}
.c-home4 .c-main .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home4 .c-main .swiper .c-list {
  display: flex;
  align-items: center;
  background: #36363b;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list {
    width: 100%;
    background: transparent;
    align-items: normal;
    align-content: flex-start;
  }
}
.c-home4 .c-main .swiper .c-list li {
  width: auto;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-right: 1.5rem;
  color: #fff;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li {
    padding-right: 10vw;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li {
    background: #fff;
    height: auto;
    padding: 0.4rem;
    width: 100%;
    border-radius: 0.2rem;
  }
}
.c-home4 .c-main .swiper .c-list li:first-child {
  padding-left: 2.4rem;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li:first-child {
    padding: 0.4rem;
  }
}
.c-home4 .c-main .swiper .c-list li:last-child {
  padding-right: calc((100vw - 1440px) / 2);
}
@media (max-width: 1580px) {
  .c-home4 .c-main .swiper .c-list li:last-child {
    padding-right: 5vw;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li:last-child {
    margin: 0;
  }
}
.c-home4 .c-main .swiper .c-list li .c-wrap {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-wrap {
    align-items: normal;
    align-content: flex-start;
    flex-wrap: wrap;
  }
}
.c-home4 .c-main .swiper .c-list li .c-wrap:hover .c-text-box .c-btn {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.c-home4 .c-main .swiper .c-list li .c-wrap:hover .c-text-box .c-btn .c-svg {
  transform: rotate(45deg);
}
.c-home4 .c-main .swiper .c-list li .c-text-box {
  position: relative;
  z-index: 5 ;
  margin-right: -50px;
  width: 500px;
}
@media (max-width: 1580px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box {
    margin-bottom: 0.4rem;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-title {
    color: #333;
  }
}
@media (max-width: 767px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-title {
    font-size: 14px;
  }
}
.c-home4 .c-main .swiper .c-list li .c-text-box .c-text {
  position: relative;
  margin: 0.6rem 0;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-text {
    margin: 0.2rem 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
}
.c-home4 .c-main .swiper .c-list li .c-text-box .c-text::before {
  content: attr(data-num);
  position: absolute;
  left: 100%;
  top: 0;
  font-size: 24px;
  line-height: calc(34/24);
  display: none;
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-text::before {
    left: auto;
    right: 0;
    font-size: 18px;
    line-height: 1.5;
  }
}
@media (max-width: 767px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-text::before {
    display: none;
    opacity: 0.4;
    font-size: 14px;
  }
}
.c-home4 .c-main .swiper .c-list li .c-text-box .c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-btn {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 991px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-btn {
    border: 1px solid #a9a9a9;
  }
}
@media (max-width: 767px) {
  .c-home4 .c-main .swiper .c-list li .c-text-box .c-btn {
    display: none;
    width: 40px;
    height: 40px;
  }
}
.c-home4 .c-main .swiper .c-list li .c-text-box .c-btn .c-svg {
  width: 8px;
  height: 8px;
  transition: transform 0.4s;
}
.c-home4 .c-main .swiper .c-list li .public-img {
  width: 9.6rem;
  border-radius: 0.2rem;
}
@media (min-width: 992px) {
  .c-home4 .c-main .swiper .c-list li .public-img {
    transform: translateX(10%);
  }
}
.c-home4 .c-main .swiper .c-list li .public-img::before {
  padding-top: calc(540/960*100%);
}
.c-home4 .c-btn-box {
  position: absolute;
  bottom: 0.45rem;
  left: 50%;
  transform: translateX(50vw);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .c-home4 .c-btn-box {
    width: 100%;
    position: static;
    transform: translateX(0);
    padding-bottom: 1.2rem;
  }
}
.c-home4 .c-btn-box .public-btn {
  margin-right: 0.3rem;
}
.c-home4 .c-btn-box .public-btn:last-child {
  margin-right: 0;
}
@media (max-width: 991px) {
  .c-home4 .c-btn-box .public-btn {
    border: 1px solid #a9a9a9;
    color: #424242;
  }
  .c-home4 .c-btn-box .public-btn svg {
    color: #fff;
  }
  .c-home4 .c-btn-box .public-btn:hover {
    border-color: var(--color);
    color: #fff;
  }
  .c-home4 .c-btn-box .public-btn:hover svg {
    color: var(--color);
  }
}
.c-home5 {
  height: 200vh;
}
.c-home5.on .c-sticky .public-title .c-title,
.c-home5.on .c-sticky .public-title .c-text {
  color: #fff;
}
.c-home5.on .c-sticky .public-btn {
  opacity: 1;
}
.c-home5.on .c-sticky .c-box {
  transform: scale(1.1);
}
.c-home5.on .c-sticky .c-box .c-img,
.c-home5.on .c-sticky .c-box .c-tips {
  opacity: 0;
}
.c-home5 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  padding: 1rem 0 0;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-home5 .c-sticky {
    padding: 1.6rem 0 0;
  }
}
.c-home5 .c-sticky .public-title {
  position: relative;
  z-index: 5;
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .public-title .c-text {
    font-size: 22px;
  }
}
.c-home5 .c-sticky .public-title .c-title,
.c-home5 .c-sticky .public-title .c-text {
  transition: all 0.4s;
}
.c-home5 .c-sticky .public-btn {
  position: relative;
  z-index: 10;
  opacity: 0;
}
.c-home5 .c-sticky .c-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.8s;
}
.c-home5 .c-sticky .c-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.c-home5 .c-sticky .c-box .c-img {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.c-home5 .c-sticky .c-box .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home5 .c-sticky .c-box .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home5 .c-sticky .c-box .c-tips {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.7rem;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  width: 6.25vw;
  height: 6.25vw;
  border: 10px solid #fff;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  text-align: center;
}
@media (max-width: 1900px) {
  .c-home5 .c-sticky .c-box .c-tips {
    width: 120px;
    height: 120px;
  }
}
@media (max-width: 1580px) {
  .c-home5 .c-sticky .c-box .c-tips {
    width: 105px;
    height: 105px;
  }
}
@media (max-width: 767px) {
  .c-home5 .c-sticky .c-box .c-tips {
    transform: translateX(-50%) scale(0.8);
  }
}
.c-home5 .c-sticky .c-box .c-tips .c-svg {
  margin-bottom: 0.05rem;
  width: 18px;
  height: 28px;
  object-fit: contain;
  vertical-align: top;
  animation: mouse 1.5s linear infinite;
}
.c-home6 {
  padding: 1.4rem 0;
}
@media (max-width: 767px) {
  .c-home6 {
    padding: 1.2rem 0;
  }
}
@media (max-width: 991px) {
  .c-home6 .swiper {
    padding-bottom: 0.6rem;
  }
}
.c-home6 .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home6 .swiper .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.1rem -0.2rem;
  width: auto;
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list {
    margin: 0;
    width: 100%;
    flex-wrap: nowrap;
  }
}
.c-home6 .swiper .c-list li {
  padding: 0 0.1rem 0.2rem;
  width: 100%;
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list li {
    padding: 0;
  }
}
.c-home6 .swiper .c-list li:nth-child(3n-1),
.c-home6 .swiper .c-list li:nth-child(3n) {
  width: 50%;
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list li:nth-child(3n-1),
  .c-home6 .swiper .c-list li:nth-child(3n) {
    width: 100%;
  }
}
.c-home6 .swiper .c-list li:nth-child(3n-1) .c-wrap .public-img::before,
.c-home6 .swiper .c-list li:nth-child(3n) .c-wrap .public-img::before {
  padding-top: calc(360/710*100%);
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list li:nth-child(3n-1) .c-wrap .public-img::before,
  .c-home6 .swiper .c-list li:nth-child(3n) .c-wrap .public-img::before {
    padding-top: calc(360/580*100%);
  }
}
.c-home6 .swiper .c-list li .c-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.c-home6 .swiper .c-list li .c-wrap .public-img::before {
  padding-top: calc(360/1440*100%);
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list li .c-wrap .public-img::before {
    padding-top: calc(360/580*100%);
  }
}
.c-home6 .swiper .c-list li .c-wrap .c-box {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0.25rem 0.25rem 0.25rem 0.4rem;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 50%);
}
@media (max-width: 767px) {
  .c-home6 .swiper .c-list li .c-wrap .c-box {
    position: static;
    background: #f7f7f7;
    color: #333;
    padding: 0.4rem;
  }
}
.c-home6 .swiper .c-list li .c-wrap .c-box > div {
  width: 100%;
}
@media (max-width: 767px) {
  .c-home6 .swiper .c-list li .c-wrap .c-box .c-title {
    color: #666;
  }
}
.c-home6 .swiper .c-list li .c-wrap .c-box .c-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.1rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 991px) {
  .c-home6 .swiper .c-list li .c-wrap .c-box .c-text {
    font-size: 16px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .c-home6 .swiper .c-list li .c-wrap .c-box .c-text {
    align-items: flex-start;
    min-height: 4.2em;
  }
}
.c-home6 .swiper .c-list li .c-wrap .c-box .c-text .c-btn {
  margin-left: 0.4rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-home6 .swiper .c-list li .c-wrap .c-box .c-text .c-btn {
    display: none;
  }
}
.c-home6 .swiper .c-list li .c-wrap .c-box .c-text .c-btn .c-svg {
  width: 8px;
  height: 8px;
  object-fit: contain;
  transition: all 0.4s;
}
.c-home6 .swiper .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-home6 .swiper .c-list li .c-wrap:hover .c-box .c-text .c-btn {
  background: var(--color);
}
.c-home6 .swiper .c-list li .c-wrap:hover .c-box .c-text .c-btn .c-svg {
  transform: rotate(45deg);
}
.c-home7 {
  position: relative;
}
.c-home7 .c-bg {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
}
@media (max-width: 991px) {
  .c-home7 .c-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.c-home7 .c-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home7 .c-bg video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-home7 .c-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.c-home7 .c-main {
  position: relative;
  z-index: 5;
  margin-top: -100vh;
}
@media (max-width: 991px) {
  .c-home7 .c-main {
    margin: 0;
  }
}
.c-home7 .c-main .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  color: #fff;
}
@media (max-width: 991px) {
  .c-home7 .c-main .container {
    flex-wrap: wrap;
  }
}
.c-home7 .c-main .c-left {
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 300px;
  height: 100vh;
  padding: 1.8rem 0 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
@media (max-width: 1580px) {
  .c-home7 .c-main .c-left {
    width: 320px;
  }
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-left {
    position: static;
    width: 100%;
    height: auto;
    padding: 1.2rem 0 0;
  }
}
.c-home7 .c-main .c-left .c-title {
  width: 100%;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home7 .c-main .c-left .c-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-left .c-more {
    display: none;
  }
}
.c-home7 .c-main .c-left .c-more img {
  margin-right: 0.1rem;
  width: 18px;
  height: 28px;
  object-fit: contain;
  animation: mouse 1.5s linear infinite;
}
.c-home7 .c-main .c-right {
  padding: calc(50vh - 0.9rem) 0;
  width: 50%;
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-right {
    width: 100%;
    padding: 0 0 1.2rem;
  }
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-right .swiper {
    padding-bottom: 0.6rem;
  }
}
.c-home7 .c-main .c-right .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home7 .c-main .c-right .swiper .swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2);
}
.c-home7 .c-main .c-right .swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color);
}
.c-home7 .c-main .c-right .swiper .c-list {
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-right .swiper .c-list {
    flex-wrap: nowrap;
    align-content: flex-start;
  }
}
.c-home7 .c-main .c-right .swiper .c-list li {
  padding: 0.9rem 0 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-right .swiper .c-list li {
    display: flex;
    padding-right: 0;
    height: auto;
  }
}
.c-home7 .c-main .c-right .swiper .c-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.c-home7 .c-main .c-right .swiper .c-list li .c-year {
  font-family: 'Honda-Head', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-home7 .c-main .c-right .swiper .c-list li .c-text {
  margin: 0 0 0.4rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-home7 .c-main .c-right .swiper .c-list li .c-text {
    margin-top: 0.1rem;
    font-size: 14px;
    line-height: 1.6;
  }
}
.c-home7 .c-main .c-right .swiper .c-list li .c-wrap {
  opacity: 0.2;
  transition: all 0.4s;
}
@media (max-width: 991px) {
  .c-home7 .c-main .c-right .swiper .c-list li .c-wrap {
    opacity: 1;
  }
}
.c-home7 .c-main .c-right .swiper .c-list li.on .c-wrap {
  opacity: 1;
}
.c-home8 {
  padding: 1.4rem 0;
}
@media (max-width: 767px) {
  .c-home8 {
    padding: 1.2rem 0;
  }
}
.c-home8 .c-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-home8 .c-top {
    flex-wrap: wrap;
  }
}
.c-home8 .c-top .c-title-box {
  padding-right: 0.4rem;
}
@media (max-width: 767px) {
  .c-home8 .c-top .c-title-box {
    padding: 0 0 0.4rem;
  }
}
.c-home8 .c-top .c-title-box .c-title-img {
  height: 56px;
}
@media (max-width: 1580px) {
  .c-home8 .c-top .c-title-box .c-title-img {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .c-home8 .c-top .c-title-box .c-title-img {
    height: 36px;
  }
}
.c-home8 .c-top .c-title-box .c-text {
  margin-top: 0.1rem;
  color: #666;
}
@media (max-width: 767px) {
  .c-home8 .c-top .c-title-box .c-text {
    margin-top: 0.2rem;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .c-home8 .swiper {
    padding-bottom: 0.6rem;
  }
}
.c-home8 .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-home8 .swiper .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.45rem -0.2rem 0;
  width: auto;
}
@media (max-width: 991px) {
  .c-home8 .swiper .c-list {
    flex-wrap: nowrap;
    margin: 0.45rem 0 0;
    width: 100%;
  }
}
.c-home8 .swiper .c-list li {
  padding: 0 0.2rem;
  width: 33.33%;
}
@media (max-width: 991px) {
  .c-home8 .swiper .c-list li {
    width: 100%;
    padding: 0;
  }
}
.c-home8 .swiper .c-list li .c-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #f7f7f7;
}
.c-home8 .swiper .c-list li .c-wrap .public-img::before {
  padding-top: calc(264/454*100%);
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box {
  padding: 0.25rem 0.2rem 0.3rem;
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-tag {
  color: #666;
  height: 24px;
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-tag span {
  margin-right: 0.2rem;
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-tag span.news {
  color: var(--color);
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-title {
  margin: 0.1rem 0 0.3rem;
  height: 3em;
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all 0.4s;
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-btn {
  color: #333;
}
@media (max-width: 767px) {
  .c-home8 .swiper .c-list li .c-wrap .c-text-box .c-btn {
    display: none;
  }
}
.c-home8 .swiper .c-list li .c-wrap .c-text-box .c-btn .c-svg {
  margin-left: 0.1rem;
  width: 8px;
  height: 8px;
  object-fit: contain;
  transition: all 0.4s;
  color: #333;
}
.c-home8 .swiper .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-home8 .swiper .c-list li .c-wrap:hover .c-text-box .c-title {
  color: #000;
}
.c-home8 .swiper .c-list li .c-wrap:hover .c-text-box .c-btn .c-svg {
  color: var(--color);
  transform: rotate(45deg);
}
.c-slogan-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.c-slogan-bg .c-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-slogan1 {
  position: relative;
  z-index: 0;
  height: 1100vh;
  background: #000;
}
.c-slogan1 .c-sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.c-slogan1 .c-sticky .c-slogan1-video {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
  margin: 0.4rem 0 0;
  text-align: center;
  transform: translate(-50%, 20px);
  cursor: pointer;
}
@media (max-width: 991px) {
  .c-slogan1 .c-sticky .c-slogan1-video {
    transform: translate(-50%, 60px);
  }
}
.c-slogan1 .c-sticky .c-slogan1-video .c-btn {
  color: #fff;
  transition: all 0.4s;
}
.c-slogan1 .c-sticky .c-slogan1-video .c-ico {
  width: 60px;
  height: 60px;
  margin: 0 auto 5px;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-slogan1-video .c-ico {
    width: 40px;
    height: 40px;
  }
}
.c-slogan1 .c-sticky .c-slogan1-video .c-ico img,
.c-slogan1 .c-sticky .c-slogan1-video .c-ico svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-slogan1 .c-sticky .c-slogan1-video:hover .c-btn {
  color: var(--color);
}
.c-slogan1 .c-sticky .c-main1 {
  position: relative;
  z-index: 0;
  height: 100%;
}
.c-slogan1 .c-sticky .c-main1 .c-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-slogan1 .c-sticky .c-main1 .c-mask {
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 20vw;
  background: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.c-slogan1 .c-sticky .c-main2 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
}
.c-slogan1 .c-sticky .c-main2 svg {
  height: 50px;
  color: #fff;
}
@media (max-width: 991px) {
  .c-slogan1 .c-sticky .c-main2 svg {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 svg {
    width: 320px;
    height: 320px;
  }
}
.c-slogan1 .c-sticky .c-main2 svg:nth-child(2) {
  display: none;
}
.c-slogan1 .c-sticky .c-main2 svg #cta-logo-out g g path:nth-child(1),
.c-slogan1 .c-sticky .c-main2 svg #cta-logo-out g g path:nth-child(2),
.c-slogan1 .c-sticky .c-main2 svg #cta-logo-out g g path:nth-child(3),
.c-slogan1 .c-sticky .c-main2 svg #cta-logo-out g g path:nth-child(4),
.c-slogan1 .c-sticky .c-main2 svg #cta-logo-out g g path:nth-child(5) {
  color: #c00;
}
.c-slogan1 .c-sticky .c-main2 svg #cta-t1 {
  transition: color 0.4s;
}
.c-slogan1 .c-sticky .c-main2 svg #cta-g1,
.c-slogan1 .c-sticky .c-main2 svg #cta-g2,
.c-slogan1 .c-sticky .c-main2 svg #cta-g3,
.c-slogan1 .c-sticky .c-main2 svg #cta-g4,
.c-slogan1 .c-sticky .c-main2 svg #cta-base-t1,
.c-slogan1 .c-sticky .c-main2 svg #cta-base-t2,
.c-slogan1 .c-sticky .c-main2 svg #cta-base-t3,
.c-slogan1 .c-sticky .c-main2 svg #cta-base-t4,
.c-slogan1 .c-sticky .c-main2 svg #cta-base-arrow {
  opacity: 0;
  fill: #fff;
}
.c-slogan1 .c-sticky .c-main2 svg #cta-t1.on,
.c-slogan1 .c-sticky .c-main2 svg #cta-t2.on,
.c-slogan1 .c-sticky .c-main2 svg #cta-t3.on,
.c-slogan1 .c-sticky .c-main2 svg #cta-t4.on,
.c-slogan1 .c-sticky .c-main2 svg #cta-arrow.on {
  color: #fff !important;
}
.c-slogan1 .c-sticky .c-main2 .c-line1 {
  position: absolute;
  bottom: -80%;
  left: 0;
  width: 0;
  border-top: 1px solid #fff;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-line1 {
    bottom: 0;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-line2 {
  position: absolute;
  top: 180%;
  left: 50%;
  height: 0;
  border-left: 1px solid #fff;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-line2 {
    top: 100%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list {
  position: absolute;
  top: 70%;
  left: 0;
  width: 100%;
  opacity: 0;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list {
    top: 10%;
    left: 50%;
    width: 60%;
    height: 80%;
    text-align: center;
    transform: translateX(-50%);
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li {
  position: absolute;
  top: 0;
  max-width: 25%;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li {
    left: 0 !important;
    width: 100% !important;
    max-width: 100%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(1) {
  left: 4%;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(1) {
    top: 0%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(2) {
  left: 23.5%;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(2) {
    top: 22%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(3) {
  left: 53.5%;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(3) {
    top: 52%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(4) {
  left: 83%;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li:nth-child(4) {
    top: 82%;
  }
}
.c-slogan1 .c-sticky .c-main2 .c-list li .c-text {
  opacity: 0.6;
  font-size: 14px;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main2 .c-list li .c-text {
    font-size: 12px;
  }
}
.c-slogan1 .c-sticky .c-main3 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #fff;
  line-height: 1.9;
  font-weight: lighter;
  transform: translateY(4vw);
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main3 {
    font-size: 16px;
  }
}
.c-slogan1 .c-sticky .c-main3 span {
  opacity: 0;
}
.c-slogan1 .c-sticky .c-main4 {
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 4;
  width: 100%;
  font-weight: lighter;
  text-align: center;
  line-height: calc(48/30);
  color: #fff;
}
.c-slogan1 .c-sticky .c-main4 .c-text {
  line-height: 1.7;
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main4 .c-text {
    font-size: 16px;
  }
}
.c-slogan1 .c-sticky .c-main5 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
}
.c-slogan1 .c-sticky .c-main5 .c-list1 {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  z-index: 10;
  transform: translateY(-50%);
}
@media (max-width: 1900px) {
  .c-slogan1 .c-sticky .c-main5 .c-list1 {
    display: none;
  }
}
.c-slogan1 .c-sticky .c-main5 .c-list1 li {
  position: relative;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.4s;
  cursor: pointer;
}
.c-slogan1 .c-sticky .c-main5 .c-list1 li:last-child {
  margin-bottom: 0;
}
.c-slogan1 .c-sticky .c-main5 .c-list1 li::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  transform: translateY(-50%);
}
.c-slogan1 .c-sticky .c-main5 .c-list1 li.on {
  color: #fff;
  padding-left: 15px;
}
.c-slogan1 .c-sticky .c-main5 .c-list1 li.on::before {
  opacity: 1;
  transition: all 0.4s;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li.on {
  opacity: 1;
  z-index: 5;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box {
  padding: 1.5rem 0;
  color: #fff;
}
@media (max-width: 991px) {
  .c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box {
    padding: 1.2rem 0;
  }
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap {
  width: calc(620/1440*100%);
}
@media (max-width: 991px) {
  .c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap {
    width: 100%;
  }
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap .c-subtitle {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  max-width: 420px;
  margin-top: 0.15rem;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap .public-center {
  margin-top: 0.8rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: lighter;
}
@media (max-width: 1580px) {
  .c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap .public-center {
    margin-top: 0.4rem;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main5 .c-list2 li .c-text-box .c-wrap .public-center {
    margin-top: 0.25rem;
  }
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0.3rem;
  width: calc(810/1920*100%);
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box {
    position: static;
    width: 100%;
    padding: 0 20px;
  }
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-img-wrap {
  position: relative;
  width: calc(50% - 8px);
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-box .c-item {
  padding: 8px 0;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-box .c-item .public-img {
  border-radius: 0.2rem;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-box .c-item .public-img:last-child {
  margin: 0;
}
.c-slogan1 .c-sticky .c-main5 .c-list2 li .c-img-box .c-box .c-item .public-img::before {
  padding-top: calc(426/396*100%);
}
.c-slogan1 .c-sticky .c-main6 {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  pointer-events: none;
}
.c-slogan1 .c-sticky .c-main6.on {
  pointer-events: auto;
}
.c-slogan1 .c-sticky .c-main6 .c-wrap {
  max-width: 700px;
  margin: 0 auto;
}
.c-slogan1 .c-sticky .c-main6 .c-photo {
  display: inline-block;
  vertical-align: top;
  width: 2.5rem;
  background: rgba(204, 0, 0, 0.2);
  border-radius: 50%;
  padding: 14px;
}
@media (max-width: 1580px) {
  .c-slogan1 .c-sticky .c-main6 .c-photo {
    width: 2rem;
  }
}
.c-slogan1 .c-sticky .c-main6 .c-photo .public-img {
  border: 10px solid #900e18;
  border-radius: 50%;
  background: #900e18;
}
.c-slogan1 .c-sticky .c-main6 .c-title {
  margin: 0.6rem 0 0.2rem;
}
@media (max-width: 1580px) {
  .c-slogan1 .c-sticky .c-main6 .c-title {
    margin: 0.2rem 0;
  }
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main6 .c-title {
    font-size: 16px;
  }
}
.c-slogan1 .c-sticky .c-main6 .c-subtitle {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 767px) {
  .c-slogan1 .c-sticky .c-main6 .c-subtitle {
    font-size: 23px;
  }
}
.c-slogan1 .c-sticky .c-main6 .c-text {
  margin: 0.45rem 0 0.4rem;
  line-height: 2;
  opacity: 0.8;
  font-size: 14px;
}
@media (max-width: 1580px) {
  .c-slogan1 .c-sticky .c-main6 .c-text {
    margin: 0.2rem 0;
  }
}
.c-slogan2 {
  position: relative;
  z-index: 2;
  padding: 1.4rem 0;
  overflow: hidden;
}
.c-slogan2 .c-top .container {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.c-slogan2 .c-top .container .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-slogan2 .c-top .container .c-btn {
  display: flex;
  align-items: center;
}
.c-slogan2 .c-top .container .c-btn div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-slogan2 .c-top .container .c-btn div {
    width: 40px;
    height: 40px;
  }
}
.c-slogan2 .c-top .container .c-btn div img,
.c-slogan2 .c-top .container .c-btn div svg {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
@media (max-width: 1580px) {
  .c-slogan2 .c-top .container .c-btn div img,
  .c-slogan2 .c-top .container .c-btn div svg {
    width: 14px;
    height: 14px;
  }
}
.c-slogan2 .c-top .container .c-btn div.c-next {
  margin-left: 0.1rem;
}
.c-slogan2 .c-top .container .c-btn div.c-next img,
.c-slogan2 .c-top .container .c-btn div.c-next svg {
  transform: rotate(180deg);
}
.c-slogan2 .c-top .container .c-btn div:hover {
  background: var(--color);
  border-color: var(--color);
}
.c-slogan2 .swiper {
  padding: 0 40px;
  margin-bottom: 0.4rem;
  overflow: visible;
}
@media (max-width: 1580px) {
  .c-slogan2 .swiper {
    padding: 0 20px;
  }
}
.c-slogan2 .swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  opacity: 0.5;
  transition: all 0.8s;
}
.c-slogan2 .swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.c-slogan2 .swiper .swiper-slide.swiper-slide-prev,
.c-slogan2 .swiper .swiper-slide.swiper-slide-next {
  opacity: 1;
}
.c-slogan2 .swiper .swiper-slide.on .public-img .c-img {
  pointer-events: none;
}
.c-slogan2 .swiper .swiper-slide.on .public-img .c-play {
  opacity: 0 !important;
}
.c-slogan2 .swiper .swiper-slide .public-img {
  cursor: pointer;
}
.c-slogan2 .swiper .swiper-slide .public-img::before {
  padding-top: calc(264/454*100%);
}
.c-slogan2 .swiper .swiper-slide .public-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-slogan2 .swiper .swiper-slide .public-img .c-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.8rem;
  height: 0.8rem;
  object-fit: contain;
  opacity: 0;
  transition: all 0.4s;
  pointer-events: none;
}
.c-slogan2 .swiper .swiper-slide .public-img:hover .c-play {
  opacity: 1;
}
.c-slogan2 .swiper .swiper-slide .public-img:hover .c-img {
  transform: scale(1.1);
}
.c-slogan2 .swiper .swiper-slide .c-text-box {
  padding: 0.25rem 0.2rem;
  min-height: 2rem;
}
.c-slogan2 .swiper .swiper-slide .c-text-box .c-text {
  color: #666;
}
.c-slogan2 .swiper .swiper-slide .c-text-box .c-title {
  margin-top: 0.1rem;
  color: #1d1d1d;
  line-height: 1.5;
  height: 3em;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.developbox-sec2 .public-btn2::before {
  background: #039b81;
}
.c-slogan-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  --color-bg1: #080a0f;
  --color-bg2: #001120;
  --color1: 18, 113, 255;
  --color2: 107, 74, 255;
  --color3: 100, 100, 255;
  --color4: 50, 160, 220;
  --color5: 80, 47, 122;
  --color-interactive: 140, 100, 255;
  --circle-size: 80%;
  --blending: hard-light;
  overflow: hidden;
  pointer-events: none;
}
@media (max-width: 991px) {
  .c-slogan-bg {
    --circle-size: 170%;
  }
}
@media (max-width: 767px) {
  .c-slogan-bg {
    --circle-size: 300%;
  }
}
@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.c-slogan-bg .gradient-bg {
  width: 100vw;
  height: 100vw;
  position: relative;
  top: 100vw;
  left: 0;
  transform: translateY(-50%);
  opacity: 0.5;
}
@media (max-width: 991px) {
  .c-slogan-bg .gradient-bg {
    height: 100vh;
    top: 150vh;
  }
}
.c-slogan-bg .gradient-bg .svgBlur {
  display: none;
}
.c-slogan-bg .gradient-bg .noiseBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  mix-blend-mode: soft-light;
  opacity: 0;
}
.c-slogan-bg .gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.c-slogan-bg .gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.c-slogan-bg .gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.c-slogan-bg .gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.c-slogan-bg .gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.c-slogan-bg .gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.c-slogan-bg .gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}
.c-environment {
  --color: #039c82;
}
.c-environment .x-public-hon2 .container .x-ri .swiper .swiper-slide .c-text::before {
  border-color: var(--color);
}
.c-environment1 {
  padding: 1rem 0 1.2rem;
}
.c-environment1 .c-wrap {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 0.2rem;
  min-height: 7.2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-environment1 .c-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
  }
}
.c-environment1 .c-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-environment1 .c-wrap .c-box {
  position: relative;
  z-index: 3;
  padding: 2rem;
  text-align: center;
  color: #fff;
}
@media (max-width: 991px) {
  .c-environment1 .c-wrap .c-box {
    padding: 0.4rem;
  }
}
.c-environment1 .c-wrap .c-box .c-text1 {
  margin-bottom: 0.3rem;
  line-height: calc(48/30);
}
@media (max-width: 767px) {
  .c-environment1 .c-wrap .c-box .c-text1 {
    font-size: 16px;
  }
}
.c-environment1 .c-wrap .c-box .c-text2 {
  opacity: 0.4;
}
.c-environment2 {
  padding: 0 0 1.4rem;
}
@media (max-width: 767px) {
  .c-environment2 {
    padding: 0 0 1.2rem;
  }
}
.c-environment2 .c-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-environment2 .c-wrap {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.c-environment2 .c-wrap .public-img {
  width: calc(620/1440*100%);
}
@media (max-width: 767px) {
  .c-environment2 .c-wrap .public-img {
    width: 100%;
  }
}
.c-environment2 .c-wrap .public-img::before {
  padding-top: calc(734/602*100%);
}
.c-environment2 .c-wrap .public-img img {
  object-fit: contain;
}
.c-environment2 .c-wrap .c-box {
  padding: 1.2rem 0 0;
  width: 50%;
}
@media (max-width: 767px) {
  .c-environment2 .c-wrap .c-box {
    padding: 0;
    margin-bottom: 0.6rem;
    width: 100%;
  }
}
.c-environment2 .c-wrap .c-box .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-environment2 .c-wrap .c-box .c-text {
  margin: 1.2rem 0 0.4rem;
  color: #666;
}
@media (max-width: 991px) {
  .c-environment2 .c-wrap .c-box .c-text {
    margin-top: 0.4rem;
  }
}
.c-environment2 .c-wrap .c-box .public-btn2:hover .c-ico {
  transform: rotate(0deg);
}
.c-environment3 {
  padding: 1.4rem 0;
  background: #f3f7fb;
}
@media (max-width: 991px) {
  .c-environment3 .c-top {
    text-align: center;
  }
}
.c-environment3 .c-top .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-environment3 .c-top .c-text {
  margin-top: 0.2rem;
  color: #666;
}
.c-environment3 .c-bottom {
  margin-top: 0.6rem;
  display: flex;
  align-content: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-environment3 .c-bottom {
    flex-wrap: wrap;
  }
}
.c-environment3 .c-bottom .c-lt {
  width: calc(680/1440*100%);
}
@media (max-width: 767px) {
  .c-environment3 .c-bottom .c-lt {
    width: 100%;
  }
}
.c-environment3 .c-bottom .c-lt .public-img {
  width: 100%;
  border-radius: 0.2rem;
}
.c-environment3 .c-bottom .c-lt .public-img::before {
  padding-top: calc(760/680*100%);
}
.c-environment3 .c-bottom .c-gt {
  width: calc(690/1440*100%);
  display: flex;
  align-content: space-between;
  justify-content: flex-end;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-environment3 .c-bottom .c-gt {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.c-environment3 .c-bottom .c-gt .c-text {
  width: 100%;
  color: #666;
}
.c-environment3 .c-bottom .c-gt .public-img {
  margin-top: 0.7rem;
  width: calc(336/690*100%);
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .c-environment3 .c-bottom .c-gt .public-img {
    width: 100%;
  }
}
.c-environment3 .c-bottom .c-gt .public-img::before {
  padding-top: calc(250/336*100%);
}
.c-environment4 {
  padding: 2.4rem 0;
}
@media (max-width: 767px) {
  .c-environment4 {
    padding: 1.2rem 0;
  }
}
.c-environment4 .container {
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .c-environment4 .container {
    flex-wrap: wrap;
    text-align: center;
  }
}
.c-environment4 .container .c-left,
.c-environment4 .container .c-right {
  width: calc(460/1440*100%);
  color: #000;
}
@media (max-width: 991px) {
  .c-environment4 .container .c-left,
  .c-environment4 .container .c-right {
    width: 100%;
  }
}
.c-environment4 .container .c-left .c-title,
.c-environment4 .container .c-right .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-environment4 .container .c-left .c-text,
.c-environment4 .container .c-right .c-text {
  margin-top: 0.2rem;
}
.c-environment4 .container .c-left .c-text2,
.c-environment4 .container .c-right .c-text2 {
  margin-bottom: 0.45rem;
  color: #666;
}
.c-environment4 .container .c-left .public-btn2:hover .c-ico,
.c-environment4 .container .c-right .public-btn2:hover .c-ico {
  transform: rotate(0deg);
}
.c-environment4 .container .c-center {
  width: calc(520/1440*100%);
}
@media (max-width: 991px) {
  .c-environment4 .container .c-center {
    width: 100%;
    margin: 0.4rem 0;
  }
}
.c-environment4 .container .c-center .public-img {
  border-radius: 50%;
  margin: 0 auto;
  width: calc(400/520*100%);
  background: #f3f7fb;
}
@media (max-width: 991px) {
  .c-environment4 .container .c-center .public-img {
    width: 50%;
  }
}
.c-environment5 {
  padding: 0 0 1.2rem;
}
.c-environment5 .c-top .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 991px) {
  .c-environment5 .c-top .c-title {
    text-align: center;
  }
}
.c-environment5 .c-swiper-box {
  position: relative;
}
.c-environment5 .swiper {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .c-environment5 .swiper {
    padding: 20px 0;
  }
}
.c-environment5 .swiper .swiper-pagination {
  top: auto;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: #ddd;
  width: calc(430/1440*100%);
  transform: translateX(-50%);
}
.c-environment5 .swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #2b2b2b;
}
.c-environment5 .swiper-button-prev,
.c-environment5 .swiper-button-next {
  top: 50%;
  margin-top: 0;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #ddd;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .c-environment5 .swiper-button-prev,
  .c-environment5 .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1260px) {
  .c-environment5 .swiper-button-prev,
  .c-environment5 .swiper-button-next {
    display: none;
  }
}
.c-environment5 .swiper-button-prev .c-svg,
.c-environment5 .swiper-button-next .c-svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .c-environment5 .swiper-button-prev .c-svg,
  .c-environment5 .swiper-button-next .c-svg {
    width: 12px;
    height: 12px;
  }
}
.c-environment5 .swiper-button-prev::after,
.c-environment5 .swiper-button-next::after {
  display: none;
}
.c-environment5 .swiper-button-prev:hover,
.c-environment5 .swiper-button-next:hover {
  background: var(--color);
}
.c-environment5 .swiper-button-prev {
  left: -0.85rem;
}
.c-environment5 .swiper-button-next {
  right: -0.85rem;
}
.c-environment5 .swiper-button-next .c-svg {
  transform: rotate(180deg);
}
.c-environment5 .c-list {
  display: flex;
  align-items: flex-start;
  width: auto;
}
.c-environment5 .c-list li {
  width: 50%;
}
.c-environment5 .c-list li .c-wrap {
  display: block;
  border-radius: 0.2rem;
  overflow: hidden;
  background: #f3f7fb;
}
.c-environment5 .c-list li .c-wrap .public-img::before {
  padding-top: calc(300/680*100%);
}
.c-environment5 .c-list li .c-wrap .c-box {
  padding: 0.25rem 0.3rem 0.45rem;
}
.c-environment5 .c-list li .c-wrap .c-box .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  height: 3em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-environment5 .c-list li .c-wrap .c-box .c-more {
  margin-top: 0.3rem;
  display: inline-flex;
  align-items: center;
  color: #333;
}
.c-environment5 .c-list li .c-wrap .c-box .c-more .c-svg {
  margin-left: 0.1rem;
  width: 8px;
  height: 8px;
  object-fit: contain;
  transition: all 0.4s;
}
.c-environment5 .c-list li .c-wrap:hover .c-box .c-more .c-svg {
  transform: rotate(45deg);
  color: var(--color);
}
.c-global3 {
  padding: 1.2rem 0;
}
.c-global3 .c-list {
  display: flex;
  align-content: flex-start;
  flex-wrap: wrap;
  margin: 0.55rem -0.2rem -0.4rem;
}
@media (max-width: 1260px) {
  .c-global3 .c-list {
    margin: 0.55rem -0.1rem -0.2rem;
  }
}
@media (max-width: 1260px) {
  .c-global3 .c-list {
    margin: 0.55rem -0.2rem -0.4rem;
  }
}
.c-global3 .c-list > li {
  display: flex;
  padding: 0 0.2rem 0.4rem;
  width: 33.33%;
}
@media (max-width: 1260px) {
  .c-global3 .c-list > li {
    padding: 0 0.1rem 0.2rem;
  }
}
@media (max-width: 991px) {
  .c-global3 .c-list > li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-global3 .c-list > li {
    width: 100%;
    padding: 0 0.2rem 0.4rem;
  }
}
.c-global3 .c-list > li .c-wrap {
  width: 100%;
  padding: 0.5rem 0.3rem;
  border-radius: 0.2rem;
  background: #f3f7fb;
}
.c-global3 .c-list > li .c-wrap .c-ico-box {
  display: flex;
  align-items: center;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 1260px) {
  .c-global3 .c-list > li .c-wrap .c-ico-box {
    min-height: 80px;
  }
}
@media (max-width: 1260px) {
  .c-global3 .c-list > li .c-wrap .c-ico-box {
    min-height: 50px;
  }
}
.c-global3 .c-list > li .c-wrap .c-ico-box .c-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 0.3rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #efdee1;
  color: var(--color);
}
@media (max-width: 767px) {
  .c-global3 .c-list > li .c-wrap .c-ico-box .c-ico {
    width: 0.9rem;
    height: 0.9rem;
  }
}
.c-global3 .c-list > li .c-wrap .c-ico-box .c-ico img,
.c-global3 .c-list > li .c-wrap .c-ico-box .c-ico svg {
  width: 50%;
  height: 50%;
}
.c-global3 .c-list > li .c-wrap .c-list2 li {
  margin-top: 0.1rem;
}
.c-global3 .c-list > li .c-wrap .c-list2 li:first-child {
  margin-top: 0.7rem;
}
@media (max-width: 1260px) {
  .c-global3 .c-list > li .c-wrap .c-list2 li:first-child {
    margin-top: 0.4rem;
  }
}
.c-global3 .c-list > li .c-wrap .c-list2 li .number-jump {
  margin: 0 0.1rem 0 0.15rem;
  font-family: 'Honda-Head', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
}
.c-global3 .c-list > li .c-wrap .c-list2 li .number-jump:first-child {
  margin-left: 0;
}
.c-global4 .c-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 0.55rem;
  padding: 1rem 0.4rem;
  border-radius: 0.2rem;
  background: #f3f7fb;
}
@media (max-width: 767px) {
  .c-global4 .c-wrap {
    flex-wrap: wrap;
    padding: 0.4rem;
  }
}
.c-global4 .c-wrap .c-left {
  width: calc(525/1360*100%);
}
@media (max-width: 1580px) {
  .c-global4 .c-wrap .c-left {
    width: 45%;
  }
}
@media (max-width: 767px) {
  .c-global4 .c-wrap .c-left {
    width: 100%;
  }
}
.c-global4 .c-wrap .c-left .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-global4 .c-wrap .c-left .c-text {
  margin-top: 0.2rem;
  color: #666;
}
.c-global4 .c-wrap .c-left .c-list li {
  display: flex;
  align-items: center;
  margin-top: 0.3rem;
}
.c-global4 .c-wrap .c-left .c-list li:first-child {
  margin-top: 0.6rem;
}
.c-global4 .c-wrap .c-left .c-list li img,
.c-global4 .c-wrap .c-left .c-list li svg {
  flex-shrink: 0;
  margin-right: 0.2rem;
  width: 40px;
  height: 40px;
  object-fit: contain;
}
@media (max-width: 767px) {
  .c-global4 .c-wrap .c-left .c-list li img,
  .c-global4 .c-wrap .c-left .c-list li svg {
    width: 30px;
    height: 30px;
  }
}
.c-global4 .c-wrap .c-left .c-list li .c-text1 {
  color: #999;
}
.c-global4 .c-wrap .c-left .c-list li .c-text2 {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-global4 .c-wrap .c-right {
  width: calc(680/1360*100%);
}
@media (max-width: 767px) {
  .c-global4 .c-wrap .c-right {
    margin-top: 0.6rem;
    width: 100%;
  }
}
.c-global4 .c-wrap .c-right .public-img {
  border-radius: 0.2rem;
}
.c-global4 .c-wrap .c-right .public-img::before {
  padding-top: calc(520/680*100%);
}
.public-list {
  padding: 0.9rem 0 0;
}
.public-list .c-filter-pop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.public-list .c-filter-pop .c-main {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.4rem;
  width: 100%;
  height: 100%;
  max-width: 700px;
  background: #fff;
}
@media (max-width: 1580px) {
  .public-list .c-filter-pop .c-main {
    max-width: 500px;
  }
}
.public-list .c-filter-pop .c-main .c-close-box {
  display: flex;
  justify-content: flex-end;
}
.public-list .c-filter-pop .c-main .c-close-box .c-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #999;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public-list .c-filter-pop .c-main .c-close-box .c-close {
    width: 40px;
    height: 40px;
  }
}
.public-list .c-filter-pop .c-main .c-close-box .c-close img {
  width: calc(16/50*100%);
  height: calc(16/50*100%);
  object-fit: contain;
}
.public-list .c-filter-pop .c-main .c-close-box .c-close:hover {
  background: var(--color);
}
.public-list .c-filter-pop .c-main .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-list .c-filter-pop .c-main .c-list {
  margin: 0.25rem 0 1rem;
  max-height: calc(100vh - 2.05rem - 150px);
  overflow-y: auto;
}
@media (max-width: 767px) {
  .public-list .c-filter-pop .c-main .c-list {
    max-height: calc(100vh - 2.05rem - 120px);
  }
}
.public-list .c-filter-pop .c-main .c-list li {
  padding-bottom: 0.25rem;
}
.public-list .c-filter-pop .c-main .c-list li:last-child {
  padding-bottom: 0;
}
.public-list .c-filter-pop .c-main .c-list li .c-title2 {
  margin: 0 0 0.15rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-list .c-filter-pop .c-main .c-list li .c-box {
  display: flex;
  flex-wrap: wrap;
}
.public-list .c-filter-pop .c-main .c-list li .c-box p {
  position: relative;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 10px 0;
  padding: 0 30px;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 17px;
  color: #666;
  cursor: pointer;
}
.public-list .c-filter-pop .c-main .c-list li .c-box p img {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  display: none;
}
.public-list .c-filter-pop .c-main .c-list li .c-box p.on {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.public-list .c-filter-pop .c-main .c-list li .c-box p.on img {
  pointer-events: auto;
}
.public-list .c-filter-pop .c-main .c-btn-box {
  display: flex;
  align-items: center;
}
.public-list .c-filter-pop .c-main .c-btn-box p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 0.3rem;
  border-radius: 27px;
  background: var(--color);
  color: #fff;
  cursor: pointer;
}
@media (max-width: 1580px) {
  .public-list .c-filter-pop .c-main .c-btn-box p {
    height: 40px;
    border-radius: 20px;
  }
}
.public-list .c-filter-pop .c-main .c-btn-box p:nth-child(2) {
  margin: 0 0 0 0.1rem;
  background: #999;
}
.public-list .c-filter-pop .c-main .c-btn-box p span {
  margin-left: 0.1rem;
}
.public-list .c-top {
  border-bottom: 1px solid #ddd;
}
.public-list .c-top .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-list .c-top .c-menu-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0.3rem 0;
}
@media (max-width: 767px) {
  .public-list .c-top .c-menu-box {
    flex-wrap: wrap;
  }
}
.public-list .c-top .c-menu-box .c-swiper1 {
  padding: 10px 0;
  margin: 0 0.4rem 0 0;
}
.public-list .c-top .c-menu-box .c-swiper1 .swiper-scrollbar {
  bottom: 0;
  left: 0;
  width: 100%;
  background: #eee;
}
@media (max-width: 991px) {
  .public-list .c-top .c-menu-box .c-swiper1 .swiper-scrollbar {
    display: none;
  }
}
.public-list .c-top .c-menu-box .c-swiper1 .swiper-scrollbar-drag {
  background: var(--color);
}
.public-list .c-top .c-menu-box .c-swiper1 .swiper-slide {
  width: auto;
  cursor: pointer;
}
.public-list .c-top .c-menu-box .c-swiper1 .c-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 0.3rem;
  height: 54px;
  color: #999;
  border: 1px solid #ddd;
  border-radius: 27px;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public-list .c-top .c-menu-box .c-swiper1 .c-text {
    padding: 0 20px;
    height: 40px;
    border-radius: 20px;
  }
}
.public-list .c-top .c-menu-box .c-swiper1 .on .c-text {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.public-list .c-top .c-menu-box .c-form {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .public-list .c-top .c-menu-box .c-form {
    margin-top: 60px;
    width: 100%;
  }
}
.public-list .c-top .c-menu-box .c-form .c-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 27px;
}
@media (max-width: 767px) {
  .public-list .c-top .c-menu-box .c-form .c-box {
    width: 100%;
  }
}
.public-list .c-top .c-menu-box .c-form .c-box input {
  width: 3.25rem;
  height: 52px;
  line-height: 52px;
  padding: 0 0.3rem;
}
@media (max-width: 1580px) {
  .public-list .c-top .c-menu-box .c-form .c-box input {
    width: 2.5rem;
    height: 40px;
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .public-list .c-top .c-menu-box .c-form .c-box input {
    width: 100%;
  }
}
.public-list .c-top .c-menu-box .c-form .c-box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 52px;
  border-radius: 26px;
  color: #fff;
  background: #999;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public-list .c-top .c-menu-box .c-form .c-box button {
    height: 40px;
    border-radius: 20px;
  }
}
.public-list .c-top .c-menu-box .c-form .c-box button:hover {
  background: var(--color);
}
.public-list .c-top .c-menu-box .c-form .c-box2 {
  flex-shrink: 0;
  margin-left: 0.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.3rem;
  border: 1px solid #ddd;
  height: 54px;
  border-radius: 27px;
  cursor: pointer;
  transition: all 0.4s;
  color: #333;
}
@media (max-width: 1580px) {
  .public-list .c-top .c-menu-box .c-form .c-box2 {
    height: 40px;
    border-radius: 20px;
  }
}
.public-list .c-top .c-menu-box .c-form .c-box2:hover {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.public-list .c-top .c-menu-box .c-form .c-box2 img,
.public-list .c-top .c-menu-box .c-form .c-box2 svg {
  margin-left: 0.1rem;
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .public-list .c-top .c-menu-box .c-form .c-box2 img,
  .public-list .c-top .c-menu-box .c-form .c-box2 svg {
    width: 14px;
    height: 14px;
  }
}
.public-list .c-top .c-swiper2 {
  margin-bottom: -1px;
}
@media (max-width: 767px) {
  .public-list .c-top .c-swiper2 {
    margin: -110px 0 100px;
    border-bottom: 1px solid #ddd;
  }
}
.public-list .c-top .c-swiper2 .swiper-scrollbar {
  width: 100%;
  bottom: 0;
  left: 0;
  background: #eee;
}
@media (max-width: 991px) {
  .public-list .c-top .c-swiper2 .swiper-scrollbar {
    display: none;
  }
}
.public-list .c-top .c-swiper2 .swiper-scrollbar-drag {
  background: var(--color);
}
.public-list .c-top .c-swiper2 .swiper-slide {
  width: auto;
  cursor: pointer;
}
.public-list .c-top .c-swiper2 .c-text {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 0 0 5px;
  color: #999;
  border-bottom: 2px solid transparent;
  transition: all 0.4s;
}
.public-list .c-top .c-swiper2 .on .c-text {
  color: #000;
  border-color: var(--color);
}
.public-list .c-bottom {
  padding: 0.9rem 0 0;
}
.public-list .c-bottom .c-item .c-main-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-list .c-bottom .c-item .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.45rem -0.2rem 0.8rem;
}
@media (max-width: 767px) {
  .public-list .c-bottom .c-item .c-list {
    margin: 0.45rem -0.15rem 0.6rem;
  }
}
.public-list .c-bottom .c-item .c-list li {
  width: 33.33%;
  padding: 0 0.2rem 0.7rem;
}
@media (max-width: 991px) {
  .public-list .c-bottom .c-item .c-list li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .public-list .c-bottom .c-item .c-list li {
    width: 100%;
    padding: 0 0.15rem 0.3rem;
  }
}
.public-list .c-bottom .c-item .c-list li .c-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box {
  padding: 0.25rem 0.3rem;
  border-radius: 10px;
  background: #f3f7fb;
  min-height: 2.8rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-box {
    min-height: 210px;
  }
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box .c-title {
  padding-right: 40px;
  position: relative;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
@media (max-width: 1580px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box .c-title {
    padding-right: 30px;
  }
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box .c-title sup {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 0.1rem;
  color: var(--color);
}
@media (max-width: 1580px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box .c-title sup {
    font-size: 12px;
  }
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-title-box .c-subtitle {
  margin-left: 0.4rem;
  flex-shrink: 0;
  color: #999;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-text {
  margin: 0.1rem 0 0.25rem;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-arrow img,
.public-list .c-bottom .c-item .c-list li .c-wrap .c-box .c-arrow svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.public-list .c-bottom .c-item .c-list li .c-wrap .c-img {
  height: 2.6rem;
  margin-top: -1.95rem;
  transition: all 0.4s;
  max-width: none;
}
@media (max-width: 1580px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-img {
    height: 15vw;
    margin-top: -11.3vw;
  }
}
@media (max-width: 991px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-img {
    height: 25vw;
    margin-top: -19vw;
  }
}
@media (max-width: 767px) {
  .public-list .c-bottom .c-item .c-list li .c-wrap .c-img {
    height: 50vw;
    margin-top: -38vw;
  }
}
.public-list .c-bottom .c-item .c-list li .c-wrap:hover .c-box {
  background: #e2e8ef;
}
.public-list .c-bottom .c-item .c-list li .c-wrap:hover .c-box .c-arrow {
  opacity: 1;
}
.public-list .c-bottom .c-item .c-list li .c-wrap:hover .c-img {
  transform: translateX(10%);
}
.x-vision4.c-car {
  padding-top: 0;
}
.x-vision4.c-car .x-public-text {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.x-vision4.c-car .x-public-text .x-tit {
  color: #161616;
  font-size: 1.6rem;
  line-height: 1.2;
  transform-origin: left bottom;
}
@media (max-width: 767px) {
  .x-vision4.c-car .x-public-text .x-tit {
    font-size: 26px;
  }
}
.x-vision4.c-car .x-public-text .x-tit span {
  background: linear-gradient(90deg, var(--startColor) 60%, var(--endColor) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media (max-width: 767px) {
  .introbox-sec1.c-car .cont .f_offset {
    display: block;
  }
  .introbox-sec1.c-car .cont .f_offset .f_font {
    margin-bottom: 0.4rem;
  }
}
.introbox-sec1 .c-swiper1-box {
  position: relative;
  margin-top: 0.1rem;
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper1-box {
    margin: 0 0 0.4rem;
  }
}
.introbox-sec1 .c-swiper1-box .c-swiper1 {
  padding: 0.5rem 0;
}
.introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap {
  display: block;
  border-radius: 0.2rem;
  overflow: hidden;
}
.introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap .c-box {
  padding: 0.35rem 0.4rem;
  background: #f3f7fb;
}
.introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap .c-box .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #333;
}
.introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap .c-box .c-text {
  color: #666;
  margin-top: 0.2rem;
  line-height: 1.45;
  min-height: 4.35em;
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap .c-box .c-text {
    margin-top: 0.3rem;
  }
}
.introbox-sec1 .c-swiper1-box .c-swiper1 .c-wrap .public-img::before {
  padding-top: calc(318/700*100%);
}
.introbox-sec1 .c-swiper1-box .swiper-pagination {
  top: auto;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: #ddd;
  width: calc(430/1440*100%);
  transform: translateX(-50%);
}
.introbox-sec1 .c-swiper1-box .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #2b2b2b;
}
.introbox-sec1 .c-swiper1-box .swiper-button-prev,
.introbox-sec1 .c-swiper1-box .swiper-button-next {
  top: 50%;
  margin-top: 0;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #ddd;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper1-box .swiper-button-prev,
  .introbox-sec1 .c-swiper1-box .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1260px) {
  .introbox-sec1 .c-swiper1-box .swiper-button-prev,
  .introbox-sec1 .c-swiper1-box .swiper-button-next {
    display: none;
  }
}
.introbox-sec1 .c-swiper1-box .swiper-button-prev .c-svg,
.introbox-sec1 .c-swiper1-box .swiper-button-next .c-svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper1-box .swiper-button-prev .c-svg,
  .introbox-sec1 .c-swiper1-box .swiper-button-next .c-svg {
    width: 12px;
    height: 12px;
  }
}
.introbox-sec1 .c-swiper1-box .swiper-button-prev::after,
.introbox-sec1 .c-swiper1-box .swiper-button-next::after {
  display: none;
}
.introbox-sec1 .c-swiper1-box .swiper-button-prev:hover,
.introbox-sec1 .c-swiper1-box .swiper-button-next:hover {
  background: var(--color);
}
.introbox-sec1 .c-swiper1-box .swiper-button-prev {
  left: -0.85rem;
}
.introbox-sec1 .c-swiper1-box .swiper-button-next {
  right: -0.85rem;
}
.introbox-sec1 .c-swiper1-box .swiper-button-next .c-svg {
  transform: rotate(180deg);
}
.introbox-sec1 .c-swiper2-box {
  overflow: hidden;
}
.introbox-sec1 .c-swiper2-box .container {
  position: relative;
}
.introbox-sec1 .c-swiper2-box .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 30px;
  width: 50vw;
  height: 100%;
  background: #fff;
  z-index: 10;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .container::after {
    margin-right: 15px;
  }
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .container::after {
    margin-right: 10px;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 {
  overflow: visible;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-pagination-box {
  position: absolute;
  bottom: 0.94rem;
  right: 0;
  z-index: 10;
  width: calc(450/1440*100%);
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-pagination-box {
    margin-top: 0.6rem;
    position: static;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-pagination-box .c-num-box {
  margin-bottom: 0.1rem;
  font-family: 'Honda-Head', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #333;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-pagination-box .c-num-box .c-num2 {
  color: #999;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-pagination {
  position: static;
  height: 2px;
  background: #ddd;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-pagination .swiper-pagination-progressbar-fill {
  background: #2b2b2b;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide {
  width: 9.4rem;
  transition: all 0.8s;
}
@media (min-width: 768px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide-active .c-wrap .c-box {
    color: #fff;
    background: transparent;
    transition: background 0.4s 0s, color 0.4s;
  }
  .introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide-active .c-wrap .c-box .c-title-box .c-title {
    transform: scale(1.5);
  }
  .introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide-active .c-wrap .c-box .c-arrow {
    opacity: 1;
  }
  .introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide-active .c-wrap .c-img2 {
    height: 100%;
  }
  .introbox-sec1 .c-swiper2-box .c-swiper2 .swiper-slide-active .c-wrap .c-img {
    opacity: 0;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 5.4rem;
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap {
    height: 55vw;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box {
  position: relative;
  z-index: 3;
  padding: 0.25rem 0.3rem;
  border-radius: 10px;
  background: #f3f7fb;
  min-height: 3.5rem;
  transition: background 0.4s 0.8s, color 0.4s;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box {
    min-height: 200px;
  }
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box {
    min-height: 180px;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-title-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-title-box .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
  transform-origin: left center;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-title-box .c-title sup {
  margin-left: 0.1rem;
  color: var(--color);
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-title-box .c-title sup {
    font-size: 12px;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-title-box .c-subtitle {
  margin-left: 0.4rem;
  flex-shrink: 0;
  color: #999;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-text {
  margin: 0.1rem 0 0.25rem;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color);
  color: #fff;
  opacity: 0;
  transition: all 0.4s;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-arrow img,
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-box .c-arrow svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-img {
  position: relative;
  z-index: 5;
  height: 3.2rem;
  max-width: none;
  margin: -2.4rem 0 0 0;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-img {
    height: 4rem;
    margin: -3rem 0 0;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-wrap .c-img2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 0;
  object-fit: cover;
  transition: all 0.8s;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
  width: calc(450/1440*100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box {
    width: 50%;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev,
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next {
  position: static;
  margin-top: 0;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev,
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 767px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev,
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next {
    display: none;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev .c-svg,
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next .c-svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 1580px) {
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev .c-svg,
  .introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next .c-svg {
    width: 12px;
    height: 12px;
  }
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev::after,
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next::after {
  display: none;
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-prev:hover,
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next:hover {
  background: var(--color);
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next .c-svg {
  transform: rotate(180deg);
}
.introbox-sec1 .c-swiper2-box .c-swiper2 .c-btn-box .c-box .swiper-button-next {
  margin-left: 0.2rem;
}
.c-clutch1 {
  padding: 1rem 0 0;
}
.c-clutch1 .swiper {
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .c-clutch1 .swiper {
    padding-bottom: 0.4rem;
  }
}
.c-clutch1 .swiper-slide {
  overflow: hidden;
  border-radius: 10px;
}
.c-clutch1 .swiper-slide::before {
  content: "";
  display: block;
  padding-top: calc(760/1440*100%);
}
.c-clutch1 .swiper-slide .c-img,
.c-clutch1 .swiper-slide .c-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-clutch1 .swiper-slide .c-video {
  z-index: 2;
}
.c-clutch1 .swiper-slide .c-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.c-clutch1 .swiper-slide .c-box .c-ico {
  width: 1rem;
  height: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.c-clutch1 .swiper-slide .c-box .c-ico img,
.c-clutch1 .swiper-slide .c-box .c-ico svg {
  width: 100%;
  height: 100%;
  transform: scale(0.7);
  transition: all 0.4s;
  color: #fff;
}
.c-clutch1 .swiper-slide .c-box .c-ico:hover img,
.c-clutch1 .swiper-slide .c-box .c-ico:hover svg {
  transform: scale(1.05);
  color: var(--color);
}
.c-clutch1 .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: 0.5rem;
}
@media (max-width: 767px) {
  .c-clutch1 .swiper-pagination {
    bottom: 0;
  }
}
.c-clutch1 .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 0;
  width: 0.4rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.05rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-clutch1 .swiper-pagination .swiper-pagination-bullet {
    width: 0.3rem;
    background: rgba(0, 0, 0, 0.3);
  }
}
.c-clutch1 .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.8rem;
  background: var(--color);
}
.enginebox-sec2.c-clutch .cont .item {
  align-items: center;
}
.enginebox-sec2.c-clutch .cont .item .gt {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0.9rem;
}
@media (max-width: 1260px) {
  .enginebox-sec2.c-clutch .cont .item .gt {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .enginebox-sec2.c-clutch .cont .item .gt {
    padding: 0.4rem 0 0;
  }
}
.enginebox-sec2.c-clutch .cont .item .gt .f_wen .li .f_num {
  border: 0;
}
.enginebox-sec2.c-clutch .cont .item .gt .f_wen .li .f_num img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.enginebox-sec2.c-clutch .cont .item .gt .c-text {
  margin: 0.35rem 0 0;
  padding: 0.35rem 0 0;
  border-top: 1px solid #e7edf2;
  color: #666;
  line-height: 1.75;
}
.enginebox-sec2.c-IMU .cont {
  margin-bottom: 0;
}
.enginebox-sec2.c-IMU .cont .item {
  align-items: center;
}
.enginebox-sec2.c-IMU .cont .item .gt {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0.45rem;
}
@media (max-width: 1580px) {
  .enginebox-sec2.c-IMU .cont .item .gt {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .enginebox-sec2.c-IMU .cont .item .gt {
    padding: 0.4rem 0 0;
  }
}
.enginebox-sec2.c-IMU .cont .item .gt .c-text {
  color: #666;
  line-height: 1.75;
}
.enginebox-sec2.c-SRS .cont .item {
  align-items: center;
}
.enginebox-sec2.c-SRS .cont .item .gt {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 1.1rem;
}
@media (max-width: 1260px) {
  .enginebox-sec2.c-SRS .cont .item .gt {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .enginebox-sec2.c-SRS .cont .item .gt {
    padding: 0.4rem 0 0;
  }
}
.enginebox-sec2.c-SRS .cont .item .gt .c-img {
  width: 100%;
}
.enginebox-sec2.c-SRS .cont .item .gt .c-text {
  color: #666;
  line-height: 1.75;
}
.c-f1-1 {
  position: relative;
  padding: 1.8rem 0 1.3rem;
}
@media (max-width: 767px) {
  .c-f1-1 {
    padding: 1.2rem 0;
  }
}
.c-f1-1::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 3rem;
  background: var(--color);
}
.c-f1-1 .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .c-f1-1 .container {
    flex-wrap: wrap;
  }
}
.c-f1-1 .container .c-left {
  width: 50%;
}
@media (max-width: 767px) {
  .c-f1-1 .container .c-left {
    width: 100%;
  }
}
.c-f1-1 .container .c-left .c-box {
  position: relative;
  z-index: 2;
  padding: 0.25rem 0.55rem 0.2rem 0.9rem;
}
.c-f1-1 .container .c-left .c-box::before,
.c-f1-1 .container .c-left .c-box::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  top: 0;
  left: -0.15rem;
  z-index: -1;
  background: url(../png/f1-1-ico.png) no-repeat center / contain;
}
.c-f1-1 .container .c-left .c-box::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.c-f1-1 .container .c-left .c-box .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-f1-1 .container .c-left .c-box .c-text {
  color: #999;
  margin-top: 0.3rem;
}
.c-f1-1 .container .c-left .public-img {
  width: calc(480/720*100%);
  margin-top: 1.3rem;
}
@media (max-width: 767px) {
  .c-f1-1 .container .c-left .public-img {
    margin-bottom: 1rem;
    width: 100%;
  }
}
.c-f1-1 .container .c-left .public-img::before {
  padding-top: calc(220/480*100%);
}
.c-f1-1 .container .c-left .public-img img {
  object-fit: cover;
}
.c-f1-1 .container .c-right {
  width: 50%;
}
@media (max-width: 767px) {
  .c-f1-1 .container .c-right {
    width: 100%;
  }
}
.c-f1-1 .container .c-right .public-img {
  margin-left: 1rem;
  width: calc(810/720*100%);
}
@media (max-width: 1900px) {
  .c-f1-1 .container .c-right .public-img {
    margin: 0;
    width: 100%;
  }
}
.c-f1-1 .container .c-right .public-img::before {
  padding-top: calc(600/810*100%);
}
.c-f1-1 .container .c-right .public-img img {
  object-fit: contain;
}
.c-f1-2 {
  position: relative;
}
.c-f1-2 .c-list li.on .container .c-text-box .c-year::before {
  background: var(--color);
  border-color: #ffa3a3;
}
.c-f1-2 .c-list li:nth-child(2n) .container {
  flex-direction: row-reverse;
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-text-box {
  padding: 0 0 0 1rem;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list li:nth-child(2n) .container .c-text-box {
    padding: 0 0 0 0.8rem;
  }
}
@media (max-width: 991px) {
  .c-f1-2 .c-list li:nth-child(2n) .container .c-text-box {
    padding: 0;
  }
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-img-box {
  justify-content: flex-start;
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-img-box > img {
  left: auto;
  right: 0;
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-line1 {
  top: 0;
  left: -0.8rem;
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-line2 {
  bottom: 0;
  left: -0.8rem;
}
.c-f1-2 .c-list li:nth-child(2n) .container .c-line2 div {
  right: auto;
  left: 0;
}
.c-f1-2 .c-list li:nth-child(1) .container {
  padding: 2.7rem 0 1.9rem;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list li:nth-child(1) .container {
    padding: 1.2rem 0 0;
  }
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line1 {
  top: 0;
  left: 50%;
  height: 1.2rem;
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line2 {
  top: 1.2rem;
  bottom: auto;
  left: 50%;
  width: calc(50% + 0.8rem);
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line2 div {
  right: auto;
  left: 0;
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line3 {
  top: 1.2rem;
  bottom: auto;
  right: -0.8rem;
  width: 8px;
  height: calc(100% - 1.2rem);
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line3 div {
  width: 100%;
  height: 0;
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line4 {
  top: auto;
  bottom: 0;
  right: -0.8rem;
  width: calc(100% + 1.6rem);
  height: 8px;
}
.c-f1-2 .c-list li:nth-child(1) .container .c-line4 div {
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
}
.c-f1-2 .c-list li:last-child .container {
  padding: 1.5rem 0 3.2rem;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list li:last-child .container {
    padding: 1.2rem 0;
  }
}
.c-f1-2 .c-list li:last-child .container .c-line1 {
  top: 0;
  right: -0.8rem;
  height: calc(100% - 1.2rem);
}
.c-f1-2 .c-list li:last-child .container .c-line2 {
  top: calc(100% - 1.2rem);
  bottom: auto;
  right: -0.8rem;
  width: calc(50% + 0.8rem);
}
.c-f1-2 .c-list li:last-child .container .c-line3 {
  top: calc(100% - 1.2rem);
  bottom: auto;
  right: 50%;
  width: 8px;
  height: 1.2rem;
}
.c-f1-2 .c-list li:last-child .container .c-line3 div {
  width: 100%;
  height: 0;
}
.c-f1-2 .c-list .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 0 1.9rem;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list .container {
    padding: 1.2rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-f1-2 .c-list .container {
    padding-left: 5vw !important;
  }
}
.c-f1-2 .c-list .container .c-line {
  position: absolute;
  z-index: -1;
  background: #f1f1f1;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list .container .c-line {
    display: none;
  }
}
.c-f1-2 .c-list .container .c-line div {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color);
}
.c-f1-2 .c-list .container .c-line1 {
  top: 0;
  right: -0.8rem;
  width: 8px;
  height: 100%;
}
.c-f1-2 .c-list .container .c-line1 div {
  width: 100%;
  height: 0;
}
.c-f1-2 .c-list .container .c-line2 {
  bottom: 0;
  right: -0.8rem;
  width: calc(1.6rem + 100%);
  height: 8px;
}
.c-f1-2 .c-list .container .c-line2 div {
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
}
.c-f1-2 .c-list .container .c-text-box {
  padding: 0 1.7rem 0 0;
  width: 50%;
}
@media (max-width: 1260px) {
  .c-f1-2 .c-list .container .c-text-box {
    padding: 0 0.8rem 0 0;
  }
}
@media (max-width: 991px) {
  .c-f1-2 .c-list .container .c-text-box {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .c-f1-2 .c-list .container .c-text-box {
    width: 100%;
  }
}
.c-f1-2 .c-list .container .c-text-box .c-year {
  position: relative;
  font-family: 'Honda-Head', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
}
.c-f1-2 .c-list .container .c-text-box .c-year::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -5vw;
  margin-left: -7px;
  width: 10px;
  height: 10px;
  background: #f1f1f1;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid #fff;
}
.c-f1-2 .c-list .container .c-text-box .c-title {
  margin: 0 0 0.35rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-f1-2 .c-list .container .c-text-box .c-text {
  color: #666;
}
.c-f1-2 .c-list .container .c-text-box .c-text2 {
  display: flex;
  align-items: flex-start;
  margin-top: 0.3rem;
  font-style: italic;
}
.c-f1-2 .c-list .container .c-text-box .c-text2::before {
  flex-shrink: 0;
  margin: 0.75em 5px 0.75em 0;
  content: "";
  display: block;
  width: 0.55rem;
  border-top: 1px solid #b2b2b2;
}
.c-f1-2 .c-list .container .c-img-box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 50%;
}
@media (max-width: 767px) {
  .c-f1-2 .c-list .container .c-img-box {
    padding: 0.4rem 0 0;
    width: 100%;
  }
}
.c-f1-2 .c-list .container .c-img-box .public-img {
  width: calc(660/720*100%);
  border-radius: 0.2rem;
}
@media (max-width: 767px) {
  .c-f1-2 .c-list .container .c-img-box .public-img {
    width: 100%;
  }
}
.c-f1-2 .c-list .container .c-img-box .public-img::before {
  padding-top: calc(460/720*100%);
}
.c-f1-2 .c-list .container .c-img-box > img {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  z-index: 10;
  width: calc(400/720*100%);
}
@media (max-width: 767px) {
  .c-f1-2 .c-line-box {
    position: absolute;
    top: 0;
    width: 2px;
    left: 5vw;
    height: 100%;
    background: #f1f1f1;
  }
  .c-f1-2 .c-line-box div {
    width: 100%;
    height: 0;
    background: var(--color);
  }
}
.c-f1-2 .c-describe {
  position: relative;
  z-index: 5;
  padding: 1.1rem 0;
  background: #f1f1f1;
}
.c-f1-2 .c-describe .container {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-f1-2 .c-describe .container > div:nth-child(2) {
  width: 100%;
}
@media (max-width: 767px) {
  .c-f1-2 .c-describe .container {
    flex-wrap: wrap;
  }
}
.c-f1-2 .c-describe .container .c-left {
  padding-right: 0.75rem;
  width: 750px;
}
@media (max-width: 767px) {
  .c-f1-2 .c-describe .container .c-left {
    width: 100%;
  }
}
.c-f1-2 .c-describe .container .c-left .c-box .c-name {
  margin-top: 0.15rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  text-align: right;
}
.c-f1-2 .c-describe .container .c-right {
  position: relative;
  z-index: 2;
  padding: 0.25rem 0.6rem 0.35rem 1rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  width: 750px;
}
@media (max-width: 767px) {
  .c-f1-2 .c-describe .container .c-right {
    width: 100%;
  }
}
.c-f1-2 .c-describe .container .c-right::before,
.c-f1-2 .c-describe .container .c-right::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  top: 0;
  left: -0.3rem;
  z-index: -1;
  background: url(../png/f1-1-ico.png) no-repeat center / contain;
}
.c-f1-2 .c-describe .container .c-right::after {
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.c-f1-3 {
  position: relative;
}
.c-f1-3 .c-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-f1-3 .c-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-f1-3 .c-box {
  position: relative;
  z-index: 5;
  padding: 0.8rem 0;
  min-height: 8.6rem;
  color: #fff;
  text-align: center;
}
.c-f1-3 .c-box .c-title {
  margin: 0.3rem 0 0.15rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: var(--color);
}
.introbox-sec1 .cont {
  padding-top: 1.5rem !important;
}
@media (max-width: 767px) {
  .introbox-sec1 .cont .f_offset {
    display: block !important;
  }
  .introbox-sec1 .cont .f_offset .f_img {
    margin: 0.4rem 0 0 !important;
  }
}
.introbox-sec1.c-tournament {
  --clip: 0.1rem;
}
@media (min-width: 768px) {
  .introbox-sec1.c-tournament .cont .f_font .lt .f_tit {
    font-size: 1.2rem;
  }
}
.introbox-sec1.c-tournament .c-img {
  margin-top: 0.6rem;
  position: relative;
  padding: 0 0.4rem 0.4rem 0;
}
.introbox-sec1.c-tournament .c-img .spiritbox_bag {
  left: -0.1rem;
  bottom: 0.1rem;
}
.introbox-sec1.c-tournament .c-img .spiritbox_bag::after {
  opacity: 0;
}
.introbox-sec1.c-tournament .c-img .public-img {
  border-radius: 0.2rem;
}
.introbox-sec1.c-tournament .c-img .public-img::before {
  padding-top: calc(655/1440*100%);
}
.c-tournament2 {
  --clip: 0.1rem;
}
.c-tournament2 .swiper-pagination {
  bottom: 0;
}
.c-tournament2 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.2rem -0.1rem -0.4rem;
  width: auto;
}
@media (max-width: 767px) {
  .c-tournament2 .c-list {
    width: 100%;
    margin: 0.2rem 0 0;
  }
}
.c-tournament2 .c-list li {
  padding: 0 0.1rem 0.4rem;
  width: 50%;
}
@media (max-width: 767px) {
  .c-tournament2 .c-list li {
    padding: 0 0 0.6rem;
    width: 100%;
  }
  .c-tournament2 .c-list li:last-child {
    padding: 0;
  }
}
.c-tournament2 .c-list li:nth-child(7n),
.c-tournament2 .c-list li:nth-child(7n-1),
.c-tournament2 .c-list li:nth-child(7n-2) {
  width: 33.33%;
}
@media (max-width: 991px) {
  .c-tournament2 .c-list li:nth-child(7n),
  .c-tournament2 .c-list li:nth-child(7n-1),
  .c-tournament2 .c-list li:nth-child(7n-2) {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-tournament2 .c-list li:nth-child(7n),
  .c-tournament2 .c-list li:nth-child(7n-1),
  .c-tournament2 .c-list li:nth-child(7n-2) {
    width: 100%;
  }
}
.c-tournament2 .c-list li:nth-child(7n) .c-wrap .spiritbox_bag,
.c-tournament2 .c-list li:nth-child(7n-1) .c-wrap .spiritbox_bag,
.c-tournament2 .c-list li:nth-child(7n-2) .c-wrap .spiritbox_bag {
  height: calc(100% - 0.5rem);
}
.c-tournament2 .c-list li:nth-child(7n) .c-wrap .public-img::before,
.c-tournament2 .c-list li:nth-child(7n-1) .c-wrap .public-img::before,
.c-tournament2 .c-list li:nth-child(7n-2) .c-wrap .public-img::before {
  padding-top: calc(390/430*100%);
}
.c-tournament2 .c-list li .c-wrap {
  display: block;
  position: relative;
  padding: 0 0.3rem 0.3rem 0;
}
.c-tournament2 .c-list li .c-wrap:hover .spiritbox_bag:after {
  animation: clipAn 0.4s linear forwards;
}
.c-tournament2 .c-list li .c-wrap .spiritbox_bag {
  left: -0.1rem;
  bottom: 0.1rem;
  height: calc(100% - 0.6rem);
}
.c-tournament2 .c-list li .c-wrap .public-img::before {
  padding-top: calc(360/670*100%);
}
.c-tournament2 .c-list li .c-wrap .public-img img {
  object-fit: contain;
}
.c-tournament2 .c-list li .c-wrap .public-img .c-title {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 10;
  padding: 0.12rem 0.25rem 0.12rem 0;
  max-width: calc(100% - 50px);
  background: #fff;
  font-family: 'Honda-Head', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  border-radius: 0 0.2rem 0 0;
}
@media (max-width: 991px) {
  .c-tournament2 .c-list li .c-wrap .public-img .c-title {
    max-width: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  .c-tournament2 .c-list li .c-wrap .public-img .c-title {
    max-width: 100%;
  }
}
.c-tournament2 .c-list li .c-wrap .public-img .c-title span {
  color: var(--color);
}
.c-tournament2 .c-list li .c-wrap .public-img .c-title::before,
.c-tournament2 .c-list li .c-wrap .public-img .c-title::after {
  content: "";
  position: absolute;
  top: -0.2rem;
  left: 0;
  width: 0.2rem;
  height: 0.2rem;
  background: url("../svg/ico-dj.svg") no-repeat center / cover;
}
@media (max-width: 767px) {
  .c-tournament2 .c-list li .c-wrap .public-img .c-title::before,
  .c-tournament2 .c-list li .c-wrap .public-img .c-title::after {
    display: none;
  }
}
.c-tournament2 .c-list li .c-wrap .public-img .c-title::after {
  top: auto;
  bottom: 0;
  left: auto;
  right: -0.2rem;
}
.c-tournament4 {
  padding: 0 0 1.2rem;
}
.c-tournament4 .swiper-pagination {
  bottom: 0;
}
.c-tournament4 .swiper-wrapper {
  display: block;
}
@media (max-width: 767px) {
  .c-tournament4 .swiper-wrapper {
    display: flex;
  }
}
.c-tournament4 .c-list {
  width: auto;
  margin: 0.35rem -0.1rem -0.2rem;
}
@media (max-width: 767px) {
  .c-tournament4 .c-list {
    margin: 0.35rem 0 0;
    width: 100%;
    flex-wrap: nowrap;
  }
}
.c-tournament4 .c-list li {
  float: left;
  width: calc(420/1460*100%);
  padding: 0 0.1rem 0.2rem;
}
@media (max-width: 767px) {
  .c-tournament4 .c-list li {
    padding: 0;
  }
}
.c-tournament4 .c-list li:nth-child(6n-4) {
  float: right;
  width: calc(430/1460*100%);
}
.c-tournament4 .c-list li:nth-child(6n-4) .c-wrap .public-img::before {
  padding-top: calc(410/410*100%);
}
.c-tournament4 .c-list li:nth-child(6n-3) {
  float: right;
  width: calc(610/1460*100%);
}
.c-tournament4 .c-list li:nth-child(6n-3) .c-wrap .public-img::before {
  padding-top: calc(415/595*100%);
}
.c-tournament4 .c-list li:nth-child(6n-2) .c-wrap .public-img::before {
  padding-top: calc(390/405*100%);
}
.c-tournament4 .c-list li:nth-child(6n-1) {
  width: calc(455/1460*100%);
}
.c-tournament4 .c-list li:nth-child(6n-1) .c-wrap .public-img::before {
  padding-top: calc(265/435*100%);
}
.c-tournament4 .c-list li:nth-child(6n) {
  width: calc(585/1460*100%);
}
.c-tournament4 .c-list li:nth-child(6n) .c-wrap .public-img::before {
  padding-top: calc(265/565*100%);
}
.c-tournament4 .c-list li .c-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.c-tournament4 .c-list li .c-wrap .f_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.76rem;
  height: 0.76rem;
  border-radius: 50%;
  background: #ffffff;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
}
.c-tournament4 .c-list li .c-wrap .f_icon img,
.c-tournament4 .c-list li .c-wrap .f_icon svg {
  width: 26.31578947%;
  height: 28.94736842%;
  object-fit: contain;
  position: relative;
}
.c-tournament4 .c-list li .c-wrap .f_icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-animation: scale10 1.2s linear infinite;
  animation: scale10 1.2s linear infinite;
}
.c-tournament4 .c-list li .c-wrap .public-img::before {
  padding-top: calc(292/404*100%);
}
@media (max-width: 767px) {
  .c-tournament4 .c-list li .c-wrap .public-img::before {
    padding-top: calc(292/404*100%) !important;
  }
}
.c-tournament4 .c-list li .c-wrap .c-title {
  display: none;
}
.c-tournament4 .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-tournament5 {
  padding: 0 0 1.2rem;
  --clip: 4px;
}
.c-tournament5 .swiper-pagination {
  bottom: 0;
}
.c-tournament5 .c-list {
  display: flex;
  align-items: flex-start;
  margin: 0.36rem -0.1rem -0.2rem;
  flex-wrap: wrap;
  width: auto;
}
@media (max-width: 991px) {
  .c-tournament5 .c-list {
    margin: 0.36rem 0 0;
    flex-wrap: nowrap;
    width: 100%;
  }
}
.c-tournament5 .c-list li {
  padding: 0 0.1rem 0.2rem;
  width: 50%;
}
@media (max-width: 991px) {
  .c-tournament5 .c-list li {
    padding: 0;
  }
}
.c-tournament5 .c-list li .c-wrap {
  display: block;
  position: relative;
}
.c-tournament5 .c-list li .c-wrap:hover .spiritbox_bag:after {
  animation: clipAn 0.4s linear forwards;
}
.c-tournament5 .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.04);
}
.c-tournament5 .c-list li .c-wrap:hover .c-box::before {
  top: -30px;
  height: 40px;
}
.c-tournament5 .c-list li .c-wrap:hover .c-title {
  transform: translateY(-30px);
}
.c-tournament5 .c-list li .c-wrap:hover .c-text {
  transform: translateY(-20px);
}
.c-tournament5 .c-list li .c-wrap .c-box {
  padding: 0.25rem 0.3rem 0.25rem 0;
  position: relative;
  z-index: 10;
}
.c-tournament5 .c-list li .c-wrap .c-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  transition: all 0.4s;
}
.c-tournament5 .c-list li .c-wrap .spiritbox_bag {
  left: -4px;
  bottom: 0;
  height: calc(100% - 0.1rem);
}
.c-tournament5 .c-list li .c-wrap .public-img {
  border-radius: 0.2rem 0.2rem 0 0;
}
.c-tournament5 .c-list li .c-wrap .public-img::before {
  padding-top: calc(400/710*100%);
}
.c-tournament5 .c-list li .c-wrap .c-title {
  position: relative;
  z-index: 5;
  height: 1.5em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  transition: all 0.4s;
}
.c-tournament5 .c-list li .c-wrap .c-text {
  margin-top: 5px;
  position: relative;
  z-index: 5;
  color: #666;
  height: 1.5em;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  transition: all 0.4s;
}
.c-tournament6 {
  padding: 0 0 1.2rem;
}
.c-tournament6 .c-main {
  display: flex;
  align-items: flex-start;
  margin-top: 0.35rem;
}
@media (max-width: 767px) {
  .c-tournament6 .c-main {
    flex-wrap: wrap;
  }
}
.c-tournament6 .c-main .c-text-box {
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 2;
  width: calc(290/1440*100%);
  border-radius: 10px;
  padding: 0.4rem;
  height: 240px;
  overflow: hidden;
  color: #fff;
}
@media (max-width: 1580px) {
  .c-tournament6 .c-main .c-text-box {
    height: 200px;
  }
}
@media (max-width: 991px) {
  .c-tournament6 .c-main .c-text-box {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .c-tournament6 .c-main .c-text-box {
    width: 100%;
  }
}
.c-tournament6 .c-main .c-text-box > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.8s;
}
.c-tournament6 .c-main .c-text-box .c-title {
  margin-bottom: 0.1rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-tournament6 .c-main .c-text-box .c-more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0.4rem;
  left: 0.4rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--color);
  background: #fff;
  transition: all 0.4s;
}
.c-tournament6 .c-main .c-text-box .c-more img,
.c-tournament6 .c-main .c-text-box .c-more svg {
  width: 8px;
  height: 8px;
}
.c-tournament6 .c-main .c-text-box:hover > img {
  transform: scale(1.1);
}
.c-tournament6 .c-main .c-text-box:hover .c-more {
  transform: rotate(45deg);
}
.c-tournament6 .c-main .swiper {
  margin: 0 0 0 0.2rem;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .c-tournament6 .c-main .swiper {
    margin: 0.4rem 0 0;
  }
}
.c-tournament6 .c-main .swiper .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.c-tournament6 .c-main .swiper .swiper-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
@media (max-width: 1580px) {
  .c-tournament6 .c-main .swiper .swiper-slide img {
    height: 200px;
  }
}
.c-tournament6 .c-main .swiper .swiper-pagination {
  display: none;
}
@media (max-width: 767px) {
  .c-tournament6 .c-main .swiper .swiper-pagination {
    display: block;
    bottom: 0;
  }
}
.background #c-header {
  box-shadow: none;
  color: #333;
}
.background #c-header::before {
  display: none;
}
.background #c-header .c-logo .c-img-box img {
  display: none;
}
.background #c-header .c-logo .c-img-box img:nth-child(2) {
  display: block;
}
.background #c-header .c-nav > li a {
  color: #333;
}
.background #c-header .c-switch i {
  background: #333;
}
.background #c-header .c-link li a {
  color: #666;
}
.public-page {
  padding: 2rem 0 1.4rem;
  background: #f3f7fb;
  background: -webkit-linear-gradient(top, #f3f7fb 0px, #fff 1000px);
  background: linear-gradient(to bottom, #f3f7fb 0px, #fff 1000px);
}
.public-page .container {
  max-width: 1300px;
}
.public-page .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  text-align: center;
  color: #161616;
}
.public-page .c-time {
  margin: 0.2rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #999999;
}
.public-page .c-time p {
  margin: 0 0.25rem;
}
@media (max-width: 767px) {
  .public-page .c-time p {
    width: 100%;
    text-align: center;
  }
}
.public-page .public-content {
  margin: 0.35rem 0 0;
  padding: 1rem 1.5rem 0;
  background: #fff;
  border-radius: 0.2rem;
}
@media (max-width: 1580px) {
  .public-page .public-content {
    padding: 1rem 1rem 0;
  }
}
@media (max-width: 991px) {
  .public-page .public-content {
    padding: 0.6rem 0.6rem 0;
  }
}
@media (max-width: 767px) {
  .public-page .public-content {
    padding: 0.4rem 0.4rem 0;
  }
}
.public-page .c-list {
  margin: 0.35rem 0 0;
  padding: 1rem 1.5rem 0;
  background: #fff;
}
@media (max-width: 1580px) {
  .public-page .c-list {
    padding: 1rem 1rem 0;
  }
}
@media (max-width: 991px) {
  .public-page .c-list {
    padding: 0.6rem 0.6rem 0;
  }
}
@media (max-width: 767px) {
  .public-page .c-list {
    padding: 0.4rem 0.4rem 0;
  }
}
.public-page .c-list > li {
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
  border-bottom: 1px solid #ddd;
  color: #2d2d2d;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-page .c-list > li:last-child {
  padding: 0;
  margin: 0;
  border: 0;
}
.public-page .c-list > li .c-title {
  padding-left: 10px;
  border-left: 2px solid var(--color);
  transition: all 0.4s;
}
.public-page .c-list > li .c-title:hover {
  color: var(--color);
}
.public-page .c-list > li .c-list2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0.3rem -0.15rem -0.3rem;
}
.public-page .c-list > li .c-list2 > li {
  width: 25%;
  padding: 0 0.15rem 0.3rem;
}
@media (max-width: 767px) {
  .public-page .c-list > li .c-list2 > li {
    width: 50%;
  }
}
.public-page .c-list > li .c-list2 > li.on .c-title2 img,
.public-page .c-list > li .c-list2 > li.on .c-title2 svg {
  color: var(--color);
  transform: rotate(270deg);
}
.public-page .c-list > li .c-list2 > li .c-title2 {
  display: inline-flex;
  align-items: center;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .public-page .c-list > li .c-list2 > li .c-title2 {
    font-size: 14px;
  }
}
.public-page .c-list > li .c-list2 > li .c-title2 img,
.public-page .c-list > li .c-list2 > li .c-title2 svg {
  margin-left: 0.1rem;
  width: 14px;
  height: 14px;
  color: #999;
  transform: rotate(90deg);
  transition: all 0.4s;
}
.public-page .c-list > li .c-list2 > li .c-title2:hover {
  color: var(--color);
}
.public-page .c-list > li .c-list2 > li .c-list3 {
  display: none;
}
.public-page .c-list > li .c-list2 > li .c-list3 li {
  padding-top: 0.2rem;
}
.public-page .c-list > li .c-list2 > li .c-list3 li a {
  color: #999;
  transition: all 0.4s;
}
.public-page .c-list > li .c-list2 > li .c-list3 li a:hover {
  color: var(--color);
}
.public-page.c-dt {
  padding-bottom: 1rem;
}
.public-page.c-dt .container {
  max-width: 1440px;
}
.public-page.c-dt2 {
  padding: 0.4rem;
}
@media (max-width: 767px) {
  .public-page.c-dt2 {
    padding: 0.4rem 0.2rem;
  }
}
.public-page.c-dt2 .c-main .c-left {
  top: 60px;
}
.public-page .c-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.public-page .c-main .c-left {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  margin: 0.35rem 0 0;
  width: calc(370/1440*100%);
  background: #fff;
  border-radius: 0.2rem;
  padding: 0.4rem 0.3rem;
}
@media (max-width: 1260px) {
  .public-page .c-main .c-left {
    width: 30%;
  }
}
@media (max-width: 991px) {
  .public-page .c-main .c-left {
    display: none;
  }
}
.public-page .c-main .c-left .c-nav-list li {
  margin-bottom: 0.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  padding: 0.1rem 0.3rem;
  border-radius: 0.25rem;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .public-page .c-main .c-left .c-nav-list li {
    font-size: 14px;
  }
}
.public-page .c-main .c-left .c-nav-list li::after {
  content: "";
  display: block;
  margin-left: 0.4rem;
  width: 12px;
  height: 12px;
  background: url(../svg/ico-arrow4.svg) no-repeat center / contain;
  transform: translateX(-0.2rem);
  transition: all 0.4s;
  opacity: 0;
}
.public-page .c-main .c-left .c-nav-list li:last-child {
  margin: 0;
}
.public-page .c-main .c-left .c-nav-list li:hover {
  color: var(--color);
}
.public-page .c-main .c-left .c-nav-list li.on {
  color: var(--color);
  background: #f3f7fb;
}
.public-page .c-main .c-left .c-nav-list li.on::after {
  opacity: 1;
  transform: translateX(0);
}
.public-page .c-main .c-right {
  width: calc(1000/1440*100%);
}
@media (max-width: 1260px) {
  .public-page .c-main .c-right {
    width: 68%;
  }
}
@media (max-width: 991px) {
  .public-page .c-main .c-right {
    width: 100%;
  }
}
.public-page .c-main .c-right .public-content {
  padding: 0.4rem 0.5rem;
}
.public-page .c-main .c-right .public-content h2 {
  margin-top: 0.4rem;
  margin-left: -12px;
}
.public-page .c-main .c-right .public-content h2:first-child {
  margin: 0;
}
.public-page .c-main .c-right .public-content th:nth-child(2) {
  max-width: 30%;
}
.enginebox-sec3.technology {
  position: relative;
}
.enginebox-sec3.technology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 1440px;
  border-top: 1px solid #ddd;
  transform: translateX(-50%);
}
@media (max-width: 1580px) {
  .enginebox-sec3.technology::before {
    width: 84%;
  }
}
@media (max-width: 1260px) {
  .enginebox-sec3.technology::before {
    width: 90%;
  }
}
.enginebox-sec3.technology .c-swiper-box {
  position: relative;
  margin: 0.45rem 0 1.4rem;
}
.enginebox-sec3.technology .c-swiper-box .enginebox3_prev,
.enginebox-sec3.technology .c-swiper-box .enginebox3_next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.enginebox-sec3.technology .c-swiper-box .enginebox3_prev {
  left: -0.8rem;
}
.enginebox-sec3.technology .c-swiper-box .enginebox3_next {
  right: -0.8rem;
}
.enginebox-sec3.technology .c-bottom {
  padding: 0;
}
.enginebox-sec3.technology .c-bottom .c-item .enginebox3_cont {
  margin-top: 0;
  margin-bottom: 0;
}
.enginebox-sec3.technology .c-bottom .c-item .c-list li {
  padding-bottom: 0;
}
.hi-nav5 .swiper {
  padding: 15px 0;
}
.hi-nav5 .swiper .swiper-slide {
  width: auto;
  margin-right: 0.1rem;
}
.hi-nav5 .swiper .swiper-slide:last-child {
  margin-right: 0;
}
.hi-nav5 .swiper .swiper-slide .c-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 30px;
  border: 1px solid #ddd;
  border-radius: 27px;
  color: #999;
  transition: all 0.4s;
}
@media (max-width: 1580px) {
  .hi-nav5 .swiper .swiper-slide .c-text {
    padding: 0 15px;
    height: 40px;
    border-radius: 20px;
  }
}
.hi-nav5 .swiper .swiper-slide.on .c-text,
.hi-nav5 .swiper .swiper-slide:hover .c-text {
  color: #fff;
  background: var(--color);
  border-color: var(--color);
}
.hi-nav5 .swiper .swiper-scrollbar {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eee;
  border-radius: 0;
}
@media (max-width: 767px) {
  .hi-nav5 .swiper .swiper-scrollbar {
    display: none;
  }
}
.hi-nav5 .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: var(--color);
}
.hi-nav1 .swiper {
  padding: 15px 0;
}
.hi-nav1 .swiper .swiper-slide {
  width: auto;
  margin-right: 0.4rem;
  line-height: 1;
}
.hi-nav1 .swiper .swiper-slide:last-child {
  margin-right: 0;
}
.hi-nav1 .swiper .swiper-slide:last-child::before {
  display: noen;
}
.hi-nav1 .swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  right: -0.2rem;
  height: 100%;
  border-right: 1px solid #ddd;
}
.hi-nav1 .swiper .swiper-slide .c-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.4s;
}
.hi-nav1 .swiper .swiper-slide.on .c-text,
.hi-nav1 .swiper .swiper-slide:hover .c-text {
  color: var(--color);
}
.hi-nav1 .swiper .swiper-scrollbar {
  left: 0;
  bottom: 0;
  width: 100%;
  background: #eee;
  border-radius: 0;
}
@media (max-width: 767px) {
  .hi-nav1 .swiper .swiper-scrollbar {
    display: none;
  }
}
.hi-nav1 .swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 0;
  background: #005CE6;
}
.public-page2 {
  padding: 0.9rem 0 1.4rem;
}
.public-page2 .c-top {
  border-bottom: 1px solid #ddd;
}
.public-page2 .c-top .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.public-page2 .c-top .hi-nav5 {
  margin: 0.3rem 0 0.35rem;
}
.public-page2 .c-bottom .swiper-pagination {
  display: none;
  bottom: 0;
}
@media (max-width: 991px) {
  .public-page2 .c-bottom .swiper-pagination {
    display: block;
  }
}
.public-page2 .c-bottom .c-list > li {
  padding-top: 1rem;
}
.public-page2 .c-bottom .c-list > li .c-title {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #333;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid #ddd;
}
.public-page2 .c-bottom .c-list > li .c-list2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  width: auto;
  margin: 0 -0.1rem;
}
.public-page2 .c-bottom .c-list > li .c-list2 li {
  width: 33.33%;
  padding: 0.4rem 0.1rem 0;
}
@media (max-width: 767px) {
  .public-page2 .c-bottom .c-list > li .c-list2 li {
    width: 50%;
  }
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap {
  display: block;
  cursor: pointer;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img {
  border-radius: 10px;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img::before {
  padding-top: calc(270/470*100%);
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: all 0.4s;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img .c-play {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  width: 0.6rem;
  height: 0.6rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img .c-play img,
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .public-img .c-play svg {
  width: 33.33%;
  height: 33.33%;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .c-text {
  padding: 0.15rem 0 0;
  color: #333;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap .c-text {
    font-size: 14px;
  }
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap:hover .public-img .c-play,
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap:hover .public-img::after {
  opacity: 1;
}
.public-page2 .c-bottom .c-list > li .c-list2 li .c-wrap:hover .c-text {
  color: var(--color);
}
.public-page2.img .c-bottom .c-list > li .c-list2 {
  padding-top: 0.2rem;
}
.public-page2.img .c-bottom .c-list > li .c-list2 li {
  padding-top: 0.2rem;
}
.public-page2.img .c-bottom .c-list > li .c-list2 li .c-wrap .public-img::after {
  display: none;
}
@media (min-width: 992px) {
  .public-page2.img .c-bottom .c-list > li .c-list2 li .c-wrap:hover {
    transform: translateY(-0.1rem);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.c-stories {
  padding: 1.6rem 0 1.2rem;
  --color: #0064fb;
}
.c-stories .c-top .c-title {
  height: 56px;
}
@media (max-width: 1580px) {
  .c-stories .c-top .c-title {
    height: 48px;
  }
}
@media (max-width: 767px) {
  .c-stories .c-top .c-title {
    height: 36px;
  }
}
.c-stories .c-top .c-text {
  padding: 0.35rem 0 0.5rem;
  color: #666;
  max-width: 900px;
}
.c-stories .c-bottom .hi-nav1 {
  margin: 0.25rem 0 0.5rem;
}
.c-stories .c-bottom .hi-nav1 .swiper-wrapper {
  flex-wrap: wrap;
}
.c-stories .c-bottom .hi-nav1 .swiper-wrapper .swiper-slide {
  margin-bottom: 0.2rem;
}
.c-stories .c-bottom .c-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.2rem 0.4rem;
}
.c-stories .c-bottom .c-list li {
  width: 50%;
  padding: 0 0.2rem 0.4rem;
}
@media (max-width: 767px) {
  .c-stories .c-bottom .c-list li {
    width: 100%;
  }
}
.c-stories .c-bottom .c-list li .c-wrap {
  height: 100%;
  display: flex;
  align-content: flex-start;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 10px;
  box-shadow: 0 0.1rem 0.3rem rgba(170, 188, 203, 0.3);
}
@media (max-width: 1260px) {
  .c-stories .c-bottom .c-list li .c-wrap {
    flex-wrap: wrap;
  }
}
.c-stories .c-bottom .c-list li .c-wrap .public-img {
  width: calc(385/700*100%);
  border-radius: 10px;
}
@media (max-width: 1260px) {
  .c-stories .c-bottom .c-list li .c-wrap .public-img {
    width: 100%;
  }
}
.c-stories .c-bottom .c-list li .c-wrap .public-img::before {
  padding-top: calc(180/385*100%);
}
.c-stories .c-bottom .c-list li .c-wrap .c-box {
  display: flex;
  align-items: center;
  width: calc(315/700*100%);
  padding-left: 0.25rem;
}
@media (max-width: 1260px) {
  .c-stories .c-bottom .c-list li .c-wrap .c-box {
    margin-top: 0.15rem;
    width: 100%;
    padding: 0;
  }
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-box2 {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 40px;
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-title {
  line-height: 1.5;
  transition: all 0.4s;
  margin: 0 0 0.1rem;
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-tag {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 0 0.15rem;
  color: #999;
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-tag p {
  margin-right: 0.1rem;
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-tag p span {
  color: var(--color);
}
.c-stories .c-bottom .c-list li .c-wrap .c-box .c-time {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 40px;
  color: #666;
}
@media (max-width: 1260px) {
  .c-stories .c-bottom .c-list li .c-wrap .c-box .c-time {
    padding-top: 0.2rem;
    line-height: 1.5;
  }
}
.c-stories .c-bottom .c-list li .c-wrap .c-text {
  padding: 0.15rem 0 0;
  color: #333;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-stories .c-bottom .c-list li .c-wrap .c-text {
    font-size: 14px;
  }
}
.c-stories .c-bottom .c-list li .c-wrap:hover .c-box .c-box2 .c-title {
  color: var(--color);
}
.baseAlt.environment {
  display: none;
}
.baseAlt.environment .cont {
  padding: 0.8rem 0.3rem 0.8rem 0.6rem;
}
.baseAlt.environment .c-main {
  max-height: calc(90vh - 1.6rem);
  overflow-y: auto;
  padding-right: 0.3rem;
  scrollbar-width: auto;
}
.baseAlt.environment .c-main::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.baseAlt.environment .c-main::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  background: var(--color);
}
.baseAlt.environment .c-main::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}
.baseAlt.environment .c-main .c-title {
  margin-bottom: 0.35rem;
  text-align: center;
}
.baseAlt.environment2 {
  display: none;
}
.baseAlt.environment2 .cont {
  padding: 0.8rem 0.3rem 0.8rem 0.6rem;
  background: #f8f8f8;
}
.baseAlt.environment2 .c-main {
  max-height: calc(90vh - 1.6rem);
  overflow-y: auto;
  padding-right: 0.3rem;
  scrollbar-width: auto;
}
.baseAlt.environment2 .c-main::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.baseAlt.environment2 .c-main::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  background: var(--color);
}
.baseAlt.environment2 .c-main::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}
.baseAlt.environment2 .c-main .c-title {
  text-align: center;
}
.baseAlt.environment2 .c-main .c-note {
  margin: 0.35rem 0 0.8rem;
  color: #666;
  line-height: 2;
}
.baseAlt.environment2 .c-main .c-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
}
@media (max-width: 991px) {
  .baseAlt.environment2 .c-main .c-list li {
    flex-wrap: wrap;
    flex-direction: row-reverse;
  }
}
.baseAlt.environment2 .c-main .c-list li:last-child {
  margin: 0;
}
.baseAlt.environment2 .c-main .c-list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.baseAlt.environment2 .c-main .c-list li:nth-child(2n) .c-box {
  padding: 0 1.4rem 0 0;
}
@media (max-width: 1580px) {
  .baseAlt.environment2 .c-main .c-list li:nth-child(2n) .c-box {
    padding: 0 0.4rem 0 0;
  }
}
.baseAlt.environment2 .c-main .c-list li .public-img {
  width: 50%;
  border-radius: 0.2rem;
  background: #fff;
}
@media (max-width: 991px) {
  .baseAlt.environment2 .c-main .c-list li .public-img {
    width: 100%;
  }
}
.baseAlt.environment2 .c-main .c-list li .public-img::before {
  padding-top: calc(420/660*100%);
}
.baseAlt.environment2 .c-main .c-list li .c-box {
  width: 50%;
  padding: 0 1.4rem 0 0.4rem;
}
@media (max-width: 1580px) {
  .baseAlt.environment2 .c-main .c-list li .c-box {
    padding: 0 0 0 0.4rem;
  }
}
@media (max-width: 991px) {
  .baseAlt.environment2 .c-main .c-list li .c-box {
    padding: 0.4rem 0 0 !important;
    width: 100%;
  }
}
.baseAlt.environment2 .c-main .c-list li .c-box .c-text {
  margin-top: 0.3rem;
  color: #666666;
  line-height: 2;
}
@media (max-width: 991px) {
  .baseAlt.environment2 .c-main .c-list li .c-box .c-text {
    margin-top: 0.2rem;
  }
}
.c-news1 {
  padding: 1.7rem 0 0.8rem;
  overflow: hidden;
}
.c-news1 .c-swiper-box {
  padding-bottom: 0.3rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-news1 .c-swiper-box {
    padding-bottom: 0.4rem;
  }
}
.c-news1 .swiper {
  margin-top: 0.55rem;
  overflow: visible;
}
.c-news1 .swiper .swiper-slide {
  display: block;
  border-radius: 0.2rem;
  overflow: hidden;
}
.c-news1 .swiper .swiper-slide .public-img {
  border-radius: 0.2rem;
}
.c-news1 .swiper .swiper-slide .public-img::before {
  padding-top: calc(580/1440*100%);
}
.c-news1 .swiper .swiper-slide .c-box {
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  padding: 0.4rem 0.5rem;
  color: #fff;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.c-news1 .swiper .swiper-slide .c-box .c-title {
  max-width: 830px;
}
@media (max-width: 767px) {
  .c-news1 .swiper .swiper-slide .c-box .c-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .c-news1 .swiper .swiper-slide .c-box {
    padding: 0.15rem 0 0;
    position: static;
    background: #fff;
    color: #333;
  }
}
.c-news1 .swiper .swiper-button-next,
.c-news1 .swiper .swiper-button-prev {
  top: 50%;
  margin-top: 0;
  width: 38px;
  height: 38px;
  opacity: 0.3;
  transition: 0.4s;
  right: 20px;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .c-news1 .swiper .swiper-button-next,
  .c-news1 .swiper .swiper-button-prev {
    display: none;
  }
}
.c-news1 .swiper .swiper-button-next::after,
.c-news1 .swiper .swiper-button-prev::after {
  display: none;
}
.c-news1 .swiper .swiper-button-next .c-svg,
.c-news1 .swiper .swiper-button-prev .c-svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.c-news1 .swiper .swiper-button-prev {
  left: 20px;
}
.c-news1 .swiper .swiper-button-next:hover,
.c-news1 .swiper .swiper-button-prev:hover {
  opacity: 1;
}
.c-news1 .swiper .swiper-pagination {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  bottom: -0.3rem;
}
@media (max-width: 991px) {
  .c-news1 .swiper .swiper-pagination {
    bottom: -0.4rem;
  }
}
.c-news1 .swiper .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 0.4rem;
  height: 3px;
  vertical-align: top;
  margin: 0 0.05rem;
  transition: all 0.4s;
}
@media (max-width: 767px) {
  .c-news1 .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 0.3rem;
  }
}
.c-news1 .swiper .swiper-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 5px;
}
.c-news1 .swiper .swiper-pagination .swiper-pagination-bullet div {
  height: 100%;
  background: var(--color);
  width: 0;
  animation-timing-function: linear;
  animation-duration: 0s;
}
.c-news1 .swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 0.8rem;
}
.c-news1 .swiper .swiper-pagination .swiper-pagination-bullet-active div {
  width: 0.8rem;
  animation-name: width100;
  animation-duration: 4.8s;
}
.c-news2 {
  padding: 0.8rem 0 1.4rem;
  overflow: hidden;
}
.c-news2 .c-bottom {
  overflow: visible;
}
@media (max-width: 991px) {
  .c-news2 .c-bottom {
    padding-bottom: 0.6rem;
  }
}
.c-news2 .c-bottom .c-list {
  display: flex;
  align-items: flex-start;
  width: auto;
  margin: 0 -0.2rem;
}
@media (max-width: 991px) {
  .c-news2 .c-bottom .c-list {
    margin: 0;
    width: 100%;
  }
}
.c-news2 .c-bottom .c-list li {
  width: 33.33%;
  padding: 0 0.2rem;
}
@media (max-width: 991px) {
  .c-news2 .c-bottom .c-list li {
    padding: 0;
    width: 100%;
  }
}
.c-news2 .c-bottom .c-list li .c-wrap {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0.1rem 0.3rem rgba(170, 188, 203, 0.3);
  transition: all 0.4s;
}
.c-news2 .c-bottom .c-list li .c-wrap .public-img::before {
  padding-top: calc(265/455*100%);
}
.c-news2 .c-bottom .c-list li .c-wrap .public-img .c-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 30px;
  color: #161616;
  background: rgba(255, 255, 255, 0.5);
}
.c-news2 .c-bottom .c-list li .c-wrap .c-box {
  padding: 0.25rem;
}
.c-news2 .c-bottom .c-list li .c-wrap .c-box .c-time {
  color: #797979;
}
.c-news2 .c-bottom .c-list li .c-wrap .c-box .c-time span {
  margin-right: 0.1rem;
  color: var(--color);
}
.c-news2 .c-bottom .c-list li .c-wrap .c-box .c-title {
  margin: 0.1rem 0 0;
  height: 3em;
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.c-news2 .c-bottom .c-list li .c-wrap:hover {
  box-shadow: 0 0.1rem 0.3rem rgba(170, 188, 203, 0.5);
}
.c-news2 .c-bottom .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.1);
}
.c-news2 .c-bottom .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.c-news3 {
  padding: 0 0 1.5rem;
}
.c-news3 .c-wrap {
  display: flex;
  align-content: flex-start;
  background: #f3f7fb;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .c-news3 .c-wrap {
    flex-wrap: wrap;
  }
}
.c-news3 .c-wrap .public-img {
  width: calc(900/1440*100%);
}
@media (max-width: 991px) {
  .c-news3 .c-wrap .public-img {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .c-news3 .c-wrap .public-img {
    width: 100%;
  }
}
.c-news3 .c-wrap .public-img::before {
  padding-top: calc(420/900*100%);
}
@media (max-width: 1260px) {
  .c-news3 .c-wrap .public-img::before {
    padding-top: 70%;
  }
}
@media (max-width: 991px) {
  .c-news3 .c-wrap .public-img::before {
    padding-top: 80%;
  }
}
@media (max-width: 767px) {
  .c-news3 .c-wrap .public-img::before {
    padding-top: 60%;
  }
}
.c-news3 .c-wrap .public-img:hover img {
  transform: scale(1.05);
}
.c-news3 .c-wrap .c-text-box {
  width: calc(540/1440*100%);
  padding: 0.8rem 0.7rem;
}
@media (max-width: 991px) {
  .c-news3 .c-wrap .c-text-box {
    padding: 0.4rem;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .c-news3 .c-wrap .c-text-box {
    width: 100%;
  }
}
.c-news3 .c-wrap .c-text-box .c-time {
  color: #797979;
}
.c-news3 .c-wrap .c-text-box .c-title {
  margin: 0.1rem 0 0.3rem;
  display: block;
  height: 3em;
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #333;
  transition: all 0.4s;
}
.c-news3 .c-wrap .c-text-box .c-title:hover {
  color: var(--color);
}
.c-news3 .c-wrap .c-text-box .c-btn {
  display: inline-flex;
  align-items: center;
  color: #424242;
  transition: all 0.4s;
}
.c-news3 .c-wrap .c-text-box .c-btn img,
.c-news3 .c-wrap .c-text-box .c-btn svg {
  margin-left: 0.1rem;
  width: 8px;
  height: 8px;
  color: #000;
  transition: all 0.4s;
}
.c-news3 .c-wrap .c-text-box .c-btn:hover {
  color: var(--color);
}
.c-news3 .c-wrap .c-text-box .c-btn:hover svg {
  color: var(--color);
  transform: rotate(45deg);
}
.c-news3 .c-wrap .c-text-box .c-tag {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 0.3rem;
  padding-top: 0.25rem;
  border-top: 1px solid #e1e4e7;
}
.c-news3 .c-wrap .c-text-box .c-tag a {
  margin-right: 0.2rem;
  color: #999;
  transition: all 0.4s;
}
.c-news3 .c-wrap .c-text-box .c-tag a:hover {
  color: var(--color);
}
.c-news3 .swiper-pagination {
  position: absolute;
  bottom: 0.7rem;
  width: calc(540/1440*100%);
  left: auto;
  right: 0;
  padding: 0 0.7rem;
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .c-news3 .swiper-pagination {
    padding: 0 0.4rem;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .c-news3 .swiper-pagination {
    padding: 0;
    position: static;
    justify-content: center;
    width: 100%;
  }
}
.c-news4 {
  padding: 0 0 1.4rem;
}
.c-news4 .c-swiper-box {
  position: relative;
}
.c-news4 .swiper .c-list li .c-wrap {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.c-news4 .swiper .c-list li .c-wrap .public-img {
  border-radius: 10px;
}
.c-news4 .swiper .c-list li .c-wrap .public-img::before {
  padding-top: calc(265/455*100%);
}
.c-news4 .swiper .c-list li .c-wrap .public-img .c-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 30px;
  color: #161616;
  background: rgba(255, 255, 255, 0.5);
}
.c-news4 .swiper .c-list li .c-wrap .public-img .c-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s;
}
.c-news4 .swiper .c-list li .c-wrap .public-img .c-play img {
  width: 60px;
  height: 60px;
}
@media (max-width: 1580px) {
  .c-news4 .swiper .c-list li .c-wrap .public-img .c-play img {
    width: 40px;
    height: 40px;
  }
}
.c-news4 .swiper .c-list li .c-wrap .c-box {
  padding: 0.15rem 0 0;
}
.c-news4 .swiper .c-list li .c-wrap .c-box .c-time {
  color: #ddd;
}
.c-news4 .swiper .c-list li .c-wrap .c-box .c-title {
  margin: 0.1rem 0 0;
  height: 3em;
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  color: #333;
}
.c-news4 .swiper .c-list li .c-wrap:hover .public-img .c-play {
  opacity: 1;
}
.c-news4 .swiper-pagination {
  display: none;
  bottom: 0;
}
@media (max-width: 991px) {
  .c-news4 .swiper-pagination {
    display: flex;
  }
}
.c-news4 .swiper-button-next,
.c-news4 .swiper-button-prev {
  top: 40%;
  margin-top: -19px;
  width: 38px;
  height: 38px;
  opacity: 0.2;
  transition: 0.4s;
  right: -0.8rem;
  background: transparent;
  pointer-events: auto;
  cursor: pointer;
}
@media (max-width: 1260px) {
  .c-news4 .swiper-button-next,
  .c-news4 .swiper-button-prev {
    right: -0.7rem;
  }
}
@media (max-width: 991px) {
  .c-news4 .swiper-button-next,
  .c-news4 .swiper-button-prev {
    display: none;
  }
}
.c-news4 .swiper-button-next::after,
.c-news4 .swiper-button-prev::after {
  display: none;
}
.c-news4 .swiper-button-next .c-svg,
.c-news4 .swiper-button-prev .c-svg {
  width: 100%;
  height: 100%;
  color: #010d12;
}
.c-news4 .swiper-button-prev {
  left: -0.8rem;
}
@media (max-width: 1260px) {
  .c-news4 .swiper-button-prev {
    left: -0.7rem;
  }
}
.c-news4 .swiper-button-next:hover,
.c-news4 .swiper-button-prev:hover {
  opacity: 1;
}
.c-news5 {
  padding: 0 0 1.4rem;
}
.c-news5 .c-swiper-box {
  position: relative;
}
.c-news5 .swiper .c-list {
  display: block;
  width: auto;
  margin: 0 -0.15rem -0.3rem;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-news5 .swiper .c-list {
    display: flex;
    margin: 0;
    width: 100%;
    overflow: visible;
  }
}
.c-news5 .swiper .c-list li {
  width: calc(485/1470*100%);
  padding: 0 0.15rem 0.3rem;
  float: right;
}
@media (max-width: 991px) {
  .c-news5 .swiper .c-list li {
    float: none;
    padding: 0;
  }
}
.c-news5 .swiper .c-list li:nth-child(3n-2) {
  float: left;
  width: calc(985/1470*100%);
}
.c-news5 .swiper .c-list li:nth-child(3n-2) .c-wrap .public-img::before {
  padding-top: calc(267/455*100%);
}
.c-news5 .swiper .c-list li .c-wrap {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.c-news5 .swiper .c-list li .c-wrap .public-img {
  border-radius: 10px;
}
.c-news5 .swiper .c-list li .c-wrap .public-img::before {
  padding-top: calc(265/455*100%);
}
.c-news5 .swiper .c-list li .c-wrap .public-img .c-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 0 10px;
  border-radius: 5px;
  line-height: 30px;
  color: #161616;
  background: rgba(255, 255, 255, 0.5);
}
.c-news5 .swiper .c-list li .c-wrap .public-img .c-play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all 0.4s;
}
.c-news5 .swiper .c-list li .c-wrap .public-img .c-play img {
  width: 60px;
  height: 60px;
}
.c-news5 .swiper .c-list li .c-wrap .c-box {
  display: flex;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: calc(100% - 60px);
  padding: 0.3rem;
  opacity: 0;
  transition: all 0.4s;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}
.c-news5 .swiper .c-list li .c-wrap .c-box > div {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-news5 .swiper .c-list li .c-wrap .c-box .c-title {
  line-height: 1.5;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #fff;
}
.c-news5 .swiper .c-list li .c-wrap .c-box .c-more {
  margin-left: 0.3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color);
  transition: all 0.4s;
}
.c-news5 .swiper .c-list li .c-wrap .c-box .c-more img {
  width: 8px;
  height: 8px;
}
.c-news5 .swiper .c-list li .c-wrap:hover .c-box {
  opacity: 1;
}
.c-news5 .swiper .c-list li .c-wrap:hover .c-box .c-more {
  transform: rotate(45deg);
}
.c-news5 .swiper-pagination {
  display: none;
  bottom: 0;
}
@media (max-width: 991px) {
  .c-news5 .swiper-pagination {
    display: flex;
  }
}
.c-stories-info {
  padding: 0 0 1.4rem;
  --color: #0064fc;
}
.c-stories-info .c-top {
  padding: 1.35rem 0 0.6rem;
}
.c-stories-info .c-top .container {
  display: flex;
  align-content: space-between;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-stories-info .c-top .container {
    flex-wrap: wrap;
  }
}
.c-stories-info .c-top .container .c-title-box {
  width: 45%;
  max-width: 500px;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-stories-info .c-top .container .c-title-box {
    width: 100%;
  }
}
.c-stories-info .c-top .container .c-title-box > div {
  width: 100%;
}
.c-stories-info .c-top .container .c-title-box .c-time {
  display: flex;
  align-items: center;
  color: #999;
}
.c-stories-info .c-top .container .c-title-box .c-time img {
  margin-right: 0.1rem;
  width: 14px;
  height: 14px;
}
.c-stories-info .c-top .container .c-title-box .c-title {
  margin: 0.3rem 0 0.4rem;
  line-height: 1.8;
}
.c-stories-info .c-top .container .c-title-box .c-tag {
  display: flex;
  flex-wrap: wrap;
}
.c-stories-info .c-top .container .c-title-box .c-tag a {
  vertical-align: top;
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 5px 10px;
  border-radius: 5px;
  color: #333;
  background: #f3f7fb;
  transition: all 0.4s;
}
.c-stories-info .c-top .container .c-title-box .c-tag a span {
  color: var(--color);
  transition: all 0.4s;
}
.c-stories-info .c-top .container .c-title-box .c-tag a:hover {
  color: #fff;
  background: var(--color);
}
.c-stories-info .c-top .container .c-title-box .c-tag a:hover span {
  color: #fff;
}
.c-stories-info .c-top .container .public-img {
  width: 45%;
  border-radius: 6px;
}
@media (max-width: 767px) {
  .c-stories-info .c-top .container .public-img {
    margin-top: 0.4rem;
    width: 100%;
  }
}
.c-stories-info .c-top .container .public-img::before {
  padding-top: calc(260/575*100%);
}
.c-stories-info .c-bottom .c-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #e5e5e5;
  padding: 0.6rem 0 0;
}
.c-stories-info .c-bottom .c-main.on {
  justify-content: center;
}
.c-stories-info .c-bottom .c-main.on .c-left {
  padding: 0;
  width: calc(960/1440*100%);
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main.on .c-left {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main {
    flex-wrap: wrap;
  }
}
.c-stories-info .c-bottom .c-main .c-left {
  padding: 0 0.4rem 0 0;
  width: calc(1000/1440*100%);
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main .c-left {
    padding: 0;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .public-content h2 {
  border: 0;
  padding: 0;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .text-line {
  display: inline;
  background: linear-gradient(transparent 50%, #acd2f7 50%);
}
.c-stories-info .c-bottom .c-main .c-left .public-content .top-img-box,
.c-stories-info .c-bottom .c-main .c-left .public-content .img {
  margin: 40px 0;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .top-img-box img,
.c-stories-info .c-bottom .c-main .c-left .public-content .img img {
  display: block;
  width: 100%;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .img p {
  text-align: center;
  font-weight: bold;
  margin-top: 15px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .img ul,
.c-stories-info .c-bottom .c-main .c-left .public-content .list-paddingleft-2 ul {
  font-size: 0;
  margin: 0 -10px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .img li,
.c-stories-info .c-bottom .c-main .c-left .public-content .list-paddingleft-2 li {
  display: inline-block;
  margin: 0;
  list-style: none;
  vertical-align: top;
  width: 50%;
  padding: 0 10px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .public-content .img li,
  .c-stories-info .c-bottom .c-main .c-left .public-content .list-paddingleft-2 li {
    padding: 0;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .public-content .reportHed .detail-title-box {
  margin-bottom: 25px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content p {
  margin-top: 15px;
  line-height: 2;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .notes {
  font-size: 14px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .m_ancBox {
  margin-top: 40px;
  background-color: #f5f5f5;
  padding: 40px 155px 15px 155px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .m_ancBox .title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .m_ancBox .list {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .m_ancBox .list li {
  /*line-height: 60px;*/
  padding: 15px 0;
  border-bottom: 1px solid #c7cacf;
  padding-left: 30px;
  background: url(../icon-right-arrow.html) left center no-repeat;
  background-size: 16px auto;
  cursor: pointer;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .m_ancBox .list li .time {
  margin-right: 20px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .txt-float {
  overflow: hidden;
  position: relative;
  padding-left: 60px;
  line-height: 2;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .txt-float strong {
  position: absolute;
  left: 0;
  top: 0;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .detail-title-h1 {
  margin: 40px 0 30px 0;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .detail-title-h1 .img-line img {
  display: block;
  width: 100%;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .detail-title-h1 .title {
  font-size: 24px;
  font-weight: bold;
  background-color: #f0f0f0;
  margin-top: 5px;
  padding: 10px 15px;
}
.c-stories-info .c-bottom .c-main .c-left .public-content .txt-important {
  background: linear-gradient(transparent 50%, #cfdbff 50%);
}
.c-stories-info .c-bottom .c-main .c-left .public-content .detail-title-h2 {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode {
  padding: 0.6rem 0 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode > .c-mode:first-child {
  padding: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode > .c-title {
  margin: 0 0 0.4rem;
  background: #f3f7fb;
  border-left: 7px solid var(--color);
  padding: 12px 18px;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode > .c-title + .c-mode {
  padding: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode > .c-title2 {
  margin: 0 0 0.4rem;
  background: #f3f7fb;
  padding: 12px 18px;
  font-weight: bold;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode:first-child {
  padding: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.6rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li:last-child {
  margin: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li:nth-child(2n) .c-text {
  padding: 0 0 0 0.6rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li .c-text {
  padding: 0 0.6rem 0 0;
  width: 50%;
  color: #666;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li .c-text {
    padding: 0 0 0.4rem;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li .public-img {
  width: 50%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li .public-img {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode3 .c-list li .public-img::before {
  padding-top: calc(295/490*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.08rem -0.3rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list li {
  width: 50%;
  padding: 0 0.08rem 0.3rem;
  margin: 0;
  list-style: none;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list li {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list li .c-title {
  text-align: center;
  color: #000;
  margin-bottom: 0.15rem;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list li .public-img {
  border-radius: 10px;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode4 .c-list li .public-img::before {
  padding-top: calc(295/490*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li {
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li:last-child {
  margin: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li:nth-child(2n) {
  flex-direction: row-reverse;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 {
  width: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 .c-text1 {
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  color: #000;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 .public-img {
  margin: 0.15rem 0 0.05rem;
  border-radius: 10px;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 .public-img::before {
  padding-top: calc(295/490*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box1 .c-text2 {
  color: #666;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 {
  width: 50%;
  padding: 0 0.6rem;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 {
    padding: 0.4rem 0 0;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 .c-title {
  color: #000;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 .c-text {
  margin-top: 0.25rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 .c-text p {
  display: flex;
  align-items: flex-start;
  color: #666;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 .c-text p::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color);
  margin: 10px 0.1rem 10px 0;
  vertical-align: top;
}
@media (max-width: 1580px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode5 .c-list li .c-box2 .c-text p::before {
    margin: 8px 0.1rem 8px 0;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-title2 {
  margin-bottom: 0.5rem;
  text-align: center;
  color: #000;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 -0.1rem -0.8rem;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list {
    margin-bottom: -0.4rem;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li {
  padding: 0 0.1rem 0.8rem;
  width: 33.33%;
}
@media (max-width: 1580px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li {
    width: 100%;
    padding-bottom: 0.4rem;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li .c-wrap {
  display: block;
  color: #000;
  text-align: center;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li .c-wrap .public-img {
  margin: 0.15rem 0;
  border-radius: 10px;
  overflow: hidden;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li .c-wrap .public-img::before {
  padding-top: calc(205/320*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode6 .c-list li .c-wrap:hover .public-img img {
  transform: scale(1.05);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 {
  color: #666;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-note {
  line-height: 1.8;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li {
  padding: 0.6rem 0 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 {
  padding: 0 0.8rem 0 0;
  width: 50%;
}
@media (max-width: 1260px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 {
    padding: 0 0.4rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 {
    padding: 0 0 0.4rem;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 .c-title {
  margin-bottom: 0.15rem;
  color: #333;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 .c-title::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color);
  margin: 11px 0.1rem 11px 0;
  vertical-align: top;
}
@media (max-width: 1580px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 .c-title::before {
    margin: 8px 0.1rem 8px 0;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box1 .c-text {
  line-height: calc(25/14);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box2 {
  width: 50%;
  text-align: center;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box2 {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box2 .public-img {
  margin-bottom: 5px;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode7 .c-list li .c-box2 .public-img::before {
  padding-top: calc(300/500*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 {
  text-align: center;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  transition: all 0.4s;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-more img,
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-more svg {
  margin-right: 0.1rem;
  width: 10px;
  height: 10px;
  object-fit: contain;
  transform: rotate(45deg);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-more:hover {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-img {
  display: block;
  margin-top: 0.15rem;
  border-radius: 4px;
  overflow: hidden;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-img img {
  width: 100%;
  transition: all 0.8s;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode8 .c-img:hover img {
  transform: scale(1.05);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap {
  display: flex;
  align-items: flex-start;
  padding: 0.4rem;
  background: #f3f7fb;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap {
    flex-wrap: wrap;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .c-box {
  width: 100%;
  padding: 0 0.7rem 0 0;
  color: #666;
}
@media (max-width: 1260px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .c-box {
    padding: 0 0.4rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .c-box {
    padding: 0 0 0.4rem;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .c-box .c-name {
  margin-bottom: 0.2rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .c-box .c-name span {
  margin-right: 0.1rem;
  color: #333;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .public-img {
  flex-shrink: 0;
  width: 225px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .public-img {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode9 .c-wrap .public-img::before {
  padding-top: calc(140/220*100%);
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 {
  padding: 0.2rem 0 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 p {
  margin-top: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap {
  display: flex;
  align-items: flex-start;
  padding: 0.2rem;
  background: #f3f7fb;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap .c-box {
  width: 100%;
  padding: 0 0 0 0.3rem;
  color: #666;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap .c-box {
    padding: 0;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap .c-box .c-name {
  margin: 0.1rem 0;
  color: #333;
  font-family: 'SourceHanSansCN-Normal', 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
}
.c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap .public-img {
  flex-shrink: 0;
  width: 150px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .c-stories-info .c-bottom .c-main .c-left .c-mode10 .c-wrap .public-img {
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 p {
  margin-top: 0;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .c-list li {
  display: flex;
  align-items: flex-start;
  margin-top: 0.4rem;
  color: #666;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .c-list li .c-box {
  flex-shrink: 0;
  width: 150px;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .c-list li .c-box img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .c-list li .c-box .c-name {
  margin-top: 0.1rem;
  text-align: center;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .c-list li .c-text {
  padding: 0.2rem 0 0.2rem 0.4rem;
  width: 100%;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .public-contet {
  margin-top: 0.4rem;
}
.c-stories-info .c-bottom .c-main .c-left .c-mode11 .public-contet br {
  margin-top: 10px;
  display: block;
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next {
  border-top: 1px solid #ddd;
  margin-top: 0.7rem;
  padding: 0.3rem 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a {
  display: flex;
  align-items: center;
  color: #000;
  transition: all 0.4s;
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a img,
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a svg {
  margin: 0 0.1rem 0 0;
  width: 12px;
  height: 12px;
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a:hover {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a.c-prev img,
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a.c-prev svg {
  transform: rotate(180deg);
}
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a.c-next img,
.c-stories-info .c-bottom .c-main .c-left .c-prev-next a.c-next svg {
  margin: 0 0 0 0.1rem;
}
.c-stories-info .c-bottom .c-main .c-right {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  width: calc(380/1440*100%);
  padding-right: 0.1rem;
  border: 0.2rem solid #f3f7fb;
  background: #f3f7fb;
  border-radius: 10px;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  scrollbar-width: auto;
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main .c-right {
    display: none;
    margin-top: 0.8rem;
    width: 100%;
  }
}
.c-stories-info .c-bottom .c-main .c-right::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}
.c-stories-info .c-bottom .c-main .c-right::-webkit-scrollbar-thumb {
  /*滚动条-滑块*/
  border-radius: 3px;
  background: var(--color);
}
.c-stories-info .c-bottom .c-main .c-right::-webkit-scrollbar-track {
  /*滚动条-背景*/
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}
.c-stories-info .c-bottom .c-main .c-right .c-title {
  margin-bottom: 0.35rem;
}
.c-stories-info .c-bottom .c-main .c-right .c-index {
  padding: 0 0 0.45rem;
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main .c-right .c-index {
    display: none;
  }
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li {
  margin: 0.3rem 0 0;
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li:nth-child(1) {
  margin-top: 0.4rem;
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li:last-child {
  padding: 0;
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li .c-wrap {
  display: flex;
  align-items: flex-start;
  color: #333;
  transition: all 0.4s;
  cursor: pointer;
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li .c-wrap img,
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li .c-wrap svg {
  flex-shrink: 0;
  margin: 6px 6px 6px 0;
  width: 10px;
  height: 10px;
  color: #999;
  transform: rotate(45deg);
  transition: all 0.4s;
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li .c-wrap:hover {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li .c-wrap:hover svg {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li.on .c-wrap {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-right .c-index .c-list li.on .c-wrap svg {
  color: var(--color);
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-title {
  padding: 0.35rem 0 0;
  border-top: 1px solid #dadee1;
}
@media (max-width: 991px) {
  .c-stories-info .c-bottom .c-main .c-right .c-recommend .c-title {
    padding-top: 0;
    border: 0;
  }
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li {
  margin: 0.3rem 0 0;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li:nth-child(1) {
  margin: 0.2rem 0 0;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a {
  display: flex;
  align-items: center;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a .public-img {
  width: calc(170/420*100%);
  border-radius: 4px;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a .public-img::before {
  padding-top: calc(95/170*100%);
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a .c-box {
  padding-left: 0.2rem;
  width: calc(250/420*100%);
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a .c-box .c-time {
  color: #999;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a .c-box .c-title2 {
  margin-top: 0.1rem;
  height: 3em;
  line-height: 1.5;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  transition: all 0.4s;
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a:hover .public-img img {
  transform: scale(1.1);
}
.c-stories-info .c-bottom .c-main .c-right .c-recommend .c-list li a:hover .c-box .c-title2 {
  color: var(--color);
}
.x-public-hon2.contact {
  margin-bottom: 0.6rem;
  background: #f3f7fb;
}
@media (max-width: 767px) {
  .contactbox .cont .f_nei .f_item .f_but .f_icon img,
  .contactbox .cont .f_nei .f_item .f_but .f_icon svg {
    width: 10px !important;
    height: 10px !important;
  }
}
.hi-pagination6 a img,
.hi-pagination6 input img,
.hi-pagination6 a svg,
.hi-pagination6 input svg {
  width: 14px !important;
  height: 14px !important;
}
.newsinfobox-sec1 .cont .make-text,
.newsinfobox-sec1 .cont .make-text p {
  color: #333;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .newsinfobox-sec1 .cont .make-text,
  .newsinfobox-sec1 .cont .make-text p {
    font-size: 14px;
  }
}
.newsinfobox-sec1 .cont .make-text img,
.newsinfobox-sec1 .cont .make-text p img {
  border-radius: 10px;
}
.jetbox-sec3 .public-btn2:hover .c-ico {
  transform: rotate(0deg);
}
.c-360pop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 910;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s;
}
.c-360pop.on {
  opacity: 1;
  visibility: visible;
}
.c-360pop .c-main {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 1400px;
  transform: translate(-50%, -50%);
}
.c-360pop .c-main .c-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 100%;
  top: 0;
  width: 40px;
  height: 40px;
  margin-left: 5px;
  border-radius: 50%;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: all 0.4s;
}
.c-360pop .c-main .c-close img,
.c-360pop .c-main .c-close svg {
  width: 40%;
  height: 40%;
}
.c-360pop .c-main .c-close:hover {
  background: var(--color);
  color: #fff;
}
@media (max-width: 991px) {
  .c-360pop .c-main .c-close {
    top: -35px;
    margin: 0;
    left: auto;
    right: 0;
    width: 30px;
    height: 30px;
  }
}
.c-360pop .c-main iframe {
  display: block;
  width: 100%;
  height: 80vh;
}
.c-404 {
  position: relative;
  height: calc(var(--vh) - 84px);
}
@media (max-width: 1580px) {
  .c-404 {
    height: calc(var(--vh) - 60px);
  }
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.container-404 {
  width: 447px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .container-404 {
    width: 4.47rem;
  }
}
.container-404 .pic {
  width: 447px;
  height: 407px;
  background: url(../png/404-pic.png) no-repeat center / contain;
  position: relative;
}
@media (max-width: 767px) {
  .container-404 .pic {
    width: 4.47rem;
    height: 4.07rem;
  }
}
.container-404 .pic .fj {
  width: 130px;
  position: absolute;
  top: 11px;
  right: 92px;
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@media (max-width: 767px) {
  .container-404 .pic .fj {
    width: 1.3rem;
    top: 0.11rem;
    right: 0.92rem;
  }
}
.container-404 .pic .qc {
  width: 120px;
  position: absolute;
  bottom: 69px;
  left: 52px;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@media (max-width: 767px) {
  .container-404 .pic .qc {
    width: 1.2rem;
    bottom: 0.69rem;
    left: 0.52rem;
  }
}
.container-404 .pic .mtc {
  width: 76px;
  position: absolute;
  bottom: 106px;
  right: 53px;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@media (max-width: 767px) {
  .container-404 .pic .mtc {
    width: 0.76rem;
    bottom: 1.06rem;
    right: 0.53rem;
  }
}
.public-tips {
  background: #f0f0f0;
  padding: 20px 0;
  color: #666;
  text-align: right;
}
@media (max-width: 767px) {
  .public-tips {
    text-align: left;
  }
}
.sensingbox-sec3 .f_nei .f_hit a {
  cursor: pointer;
}
.cookiebox .cont {
  background: rgba(0, 0, 0, 0.7) !important;
  backdrop-filter: blur(5px) !important;
}
.technolobox-sec1 .swiper-pagination {
  bottom: 0;
}
@media (max-width: 991px) {
  .endurancebox-sec3.c-dt .f_data .f_nei table {
    width: auto;
  }
}
@media (max-width: 767px) {
  .endurancebox-sec3.c-dt .f_data .f_nei table {
    width: 500px;
  }
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:nth-child(2) a {
  transition: all 0.4s;
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:nth-child(2) a:hover {
  color: var(--color);
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child {
  text-align: right;
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a {
  display: inline-flex;
  align-items: center;
  color: #999;
  transition: all 0.4s;
  white-space: nowrap;
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a:hover {
  color: var(--color);
}
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a img,
.endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a svg {
  margin-left: 0.1rem;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
@media (max-width: 1580px) {
  .endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a img,
  .endurancebox-sec3.c-dt .f_data .f_nei table tr td:last-child a svg {
    width: 16px;
    height: 16px;
  }
}
.jetbox-sec5 .public-btn2 .c-ico .c-svg {
  width: 12px;
  height: 12px;
}
.jetbox-sec5 .public-btn2:hover .c-ico {
  transform: rotate(0deg);
}
.c-signature {
  margin: 0 0 0.3rem;
}
.c-signature .c-text0 {
  text-align: right;
  margin: 0.6rem 0;
  font-size: 12px;
}
@media (max-width: 767px) {
  .c-signature .c-text0 {
    text-align: left;
  }
}
.c-signature .c-text {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.c-signature .c-list {
  display: flex;
  align-items: flex-start;
  text-align: center;
  margin-top: 0.2rem;
}
.c-signature .c-list li {
  margin-right: 0.3rem;
}
.c-signature .c-list li:last-child {
  margin-right: 0;
}
.c-signature .c-list img {
  height: 90px;
}
.c-signature .c-list p {
  margin-top: 5px;
  font-size: 12px;
}
