@charset "utf-8";
.mt80 {
  margin-top: 0.8rem;
}
/*字体*/
/* @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");
} */
* {
  padding: 0;
  margin: 0;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: calc(100vw/19.2);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1901px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 1580px) {
  html {
    font-size: 66px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw/7.5);
  }
}
body {
  min-height: 100%;
  font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'SimSun', 'SimHei', 'Arial';
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #fff;
}
@media (max-width: 1580px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 0.28rem;
  }
}
img {
  max-width: 100%;
  border: 0;
  vertical-align: top;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: inherit;
  font-style: inherit;
  font-size: inherit;
  font-weight: normal;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
input,
button {
  -webkit-appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
textarea {
  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;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.clear {
  zoom: 1;
}
.clear:after {
  content: '';
  display: block;
  clear: both;
}
.container {
  margin: 0 auto;
  width: 83.333333%;
  max-width: 1600px;
}
@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;
  }
}
.font16 {
  font-size: 16px;
}
@media (max-width: 1580px) {
  .font16 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .font16 {
    font-size: 0.28rem;
  }
}
.public-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.2rem;
  min-width: 1rem;
}
.pub-img {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.pub-img::before {
  content: "";
  display: block;
  position: relative;
  z-index: 0;
  padding-top: 100%;
}
.pub-img > img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}
.pub-btn {
  padding: 0 0.48rem;
  height: 0.48rem;
  border-radius: 0.24rem;
  display: flex;
  align-items: center;
  color: #fff;
  background: #cd1e2d;
  transition: all ease-out 0.3s;
  display: inline-flex;
}
@media (max-width: 767px) {
  .pub-btn {
    height: 0.8rem;
    border-radius: 0.4rem;
  }
}
.pub-btn:hover {
  background: #a30311;
}
.opacity {
  opacity: 0;
}
@media (max-width: 991px) {
  .opacity {
    opacity: 1;
  }
}
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0);
  transition: all ease-out 0.5s;
  padding: 0.25rem 0.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .header {
    padding: 0.15rem 0.5rem;
  }
}
.header .logo a {
  display: flex;
  width: 2.2rem;
  height: 0.5rem;
}
@media (max-width: 991px) {
  .header .logo a {
    width: 2.64rem;
    height: 0.6rem;
  }
}
.header .logo a img,
.header .logo a svg {
  width: 100%;
  height: 100%;
}
.header .logo a img path,
.header .logo a svg path {
  fill: #f03947;
}
.header .logo a img:nth-child(2),
.header .logo a svg:nth-child(2) {
  display: none;
}
.header .close {
  width: 46px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  cursor: pointer;
}
@media (max-width: 991px) {
  .header .close {
    width: 30px;
  }
}
.header .close span {
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: all ease-out 0.3s;
}
.header .close.on span {
  margin: 6px 0;
}
@media (max-width: 991px) {
  .header .close.on span {
    margin: 4.4px 0;
  }
}
.header .close.on span:nth-child(1) {
  transform: rotateZ(45deg);
  transform-origin: left center;
}
.header .close.on span:nth-child(2) {
  opacity: 0;
}
.header .close.on span:nth-child(3) {
  transform-origin: left center;
  transform: rotateZ(-45deg);
}
.header .right {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 991px) {
  .header .right {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    overflow-y: auto;
    display: none;
    padding: 0 0.5rem 1rem;
    height: calc(100vh - 0.9rem);
  }
}
.header .right .menu {
  margin-right: 2.65rem;
}
@media (max-width: 1580px) {
  .header .right .menu {
    margin-right: 1.5rem;
  }
}
@media (max-width: 991px) {
  .header .right .menu {
    margin-right: 0;
  }
}
.header .right .menu ul {
  display: flex;
}
@media (max-width: 991px) {
  .header .right .menu ul {
    width: 100%;
    display: inline;
    padding: 0 0.31rem;
  }
}
.header .right .menu ul li {
  margin-right: 0.8rem;
}
@media (max-width: 1260px) {
  .header .right .menu ul li {
    margin-right: 0.3rem;
  }
}
@media (max-width: 991px) {
  .header .right .menu ul li {
    margin-right: 0;
    border-bottom: 1px solid #eee;
  }
}
.header .right .menu ul li:last-child {
  margin-right: 0;
}
.header .right .menu ul li .menu-link {
  color: #fff;
  transition: all ease-out 0.3s;
}
@media (max-width: 991px) {
  .header .right .menu ul li .menu-link {
    line-height: 0.8rem;
  }
}
.header .right .menu ul li:hover .menu-link {
  color: #cc1f2d;
}
.header .right .other {
  display: flex;
  align-items: center;
  margin-right: 1.2rem;
}
@media (max-width: 991px) {
  .header .right .other {
    height: initial;
    position: relative;
    right: initial;
    top: initial;
    margin-top: 0.5rem;
  }
}
@media (max-width: 767px) {
  .header .right .other {
    flex-wrap: wrap;
  }
}
.header .right .other .search {
  width: 17px;
  height: 17px;
  display: flex;
  margin-right: 0.2rem;
  cursor: pointer;
}
.header .right .other .search svg {
  width: 100%;
  height: 100%;
}
.header .right .other .search svg path {
  fill: #fff;
}
.header .right .other .language {
  height: 15px;
  padding-left: 0.2rem;
  border-left: 1px solid #cacaca;
  display: flex;
}
.header .right .other .language a {
  color: #fff;
  transition: all ease-out 0.3s;
  line-height: 1;
}
.header .right .other .language a:hover {
  color: #f03947;
}
.header.on,
.header.fh {
  background: #ffffff;
  box-shadow: 0 0 0.1rem 0 rgba(0, 0, 0, 0.1);
  transition: all ease-out 0.5s;
}
.header.on .logo a img:nth-child(1),
.header.fh .logo a img:nth-child(1) {
  display: none;
}
.header.on .logo a img:nth-child(2),
.header.fh .logo a img:nth-child(2) {
  display: block;
}
.header.on .close span,
.header.fh .close span {
  background: #111;
}
.header.on .right .menu ul li .menu-link,
.header.fh .right .menu ul li .menu-link {
  color: #111;
}
.header.on .right .menu ul li .menu-link svg path,
.header.fh .right .menu ul li .menu-link svg path {
  fill: #111;
}
.header.on .right .menu ul li:hover .menu-link,
.header.fh .right .menu ul li:hover .menu-link {
  color: #cc1f2d;
}
.header.on .right .other .search svg path,
.header.fh .right .other .search svg path {
  fill: #111;
}
.header.on .right .other .language a,
.header.fh .right .other .language a {
  color: #111;
}
.header.on .right .other .language:hover .icon svg path,
.header.fh .right .other .language:hover .icon svg path,
.header.on .right .other .language:hover .icon2 svg path,
.header.fh .right .other .language:hover .icon2 svg path {
  fill: #000;
}
.header.fhs {
  top: -1.2rem;
}
@media (max-width: 991px) {
  .header.fhs {
    top: 0;
  }
}
.loding {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}
.loding.on1 {
  transform: scale(25);
  transition: all ease-in 1.2s;
}
.loding.on2 {
  display: none;
}
.loding .img1 {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #e60012;
}
.loding .img1.on1 {
  background: transparent;
  transition: all ease 0.5s;
}
.loding .img1.on2 {
  opacity: 0;
  transition: all ease 0.5s;
}
.loding .img1 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loding .img1::before {
  content: '';
  width: 100%;
  height: 20%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
}
@media (max-width: 991px) {
  .loding .img1::before {
    height: 40%;
  }
}
.loding .img1::after {
  content: '';
  width: 100%;
  height: 20%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
}
@media (max-width: 991px) {
  .loding .img1::after {
    height: 40%;
  }
}
.loding .img2 {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  display: none;
}
.loding .img2.on {
  opacity: 0;
  transition: all ease 1s;
}
.loding .img2 svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loding .img2 svg path {
  width: 100%;
  height: 100%;
}
.loding-num {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 65%;
  font-size: 0.36rem;
  color: #e60012;
  opacity: 0.6;
  z-index: 100;
}
.loding-num.on {
  opacity: 0;
  transition: all ease-out 0.3s;
}
.banner {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
.banner .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.banner .swiper .swiper-slide img {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  opacity: 1;
  transition: all ease 5s;
}
@media (max-width: 991px) {
  .banner .swiper .swiper-slide img.pc {
    display: none;
  }
}
.banner .swiper .swiper-slide img.mobile {
  display: none;
}
@media (max-width: 991px) {
  .banner .swiper .swiper-slide img.mobile {
    display: block;
  }
}
.banner .swiper .swiper-slide video {
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 50%;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}
.banner .swiper .swiper-slide-active img {
  transform: scale(1.02);
}
.banner .swiper .swiper-pagination {
  width: 0.56rem;
  height: 100%;
  bottom: 0;
  left: initial;
  right: 0.6rem;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet {
  width: 100%;
  height: 0.56rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  background: none;
  border: 1px solid transparent;
  margin: 0;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
.banner .swiper .swiper-pagination .swiper-pagination-bullet-active {
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.banner .line1 {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}
@media (max-width: 767px) {
  .banner .line1 {
    top: 1.2rem;
  }
}
.banner .line1 span {
  width: 80%;
  height: 1px;
  display: block;
  background: #d71618;
  position: absolute;
  left: -80%;
  animation: runLine1 2s linear infinite;
  /* Firefox: */
  -moz-animation: runLine1 2s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: runLine1 2s linear infinite;
  /* Opera: */
  -o-animation: runLine1 2s linear infinite;
}
.banner .line2 {
  position: absolute;
  right: 1.66rem;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.banner .line2 span {
  width: 1px;
  height: 80%;
  display: block;
  background: #d71618;
  position: absolute;
  top: -80%;
  animation: runLine2 2s linear infinite;
  /* Firefox: */
  -moz-animation: runLine2 2s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: runLine2 2s linear infinite;
  /* Opera: */
  -o-animation: runLine2 2s linear infinite;
}
.banner .mouse {
  width: 22px;
  height: 34px;
  border-radius: 11px;
  border: 2px solid #fff;
  position: absolute;
  right: 0.69rem;
  bottom: 0.73rem;
  z-index: 2;
  opacity: 0;
  transition: all ease-out 0.3s;
}
.banner .mouse.on {
  opacity: 1;
}
.banner .mouse span {
  width: 2px;
  height: 8px;
  background: #e60012;
  display: block;
  position: absolute;
  top: 6px;
  left: 8px;
  animation: runArrow 2s linear infinite;
  /* Firefox: */
  -moz-animation: runArrow 2s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: runArrow 2s linear infinite;
  /* Opera: */
  -o-animation: runArrow 2s linear infinite;
}
.banner .banner-tbox {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: calc(100% - 1.66rem);
  display: flex;
  overflow: hidden;
  transition: all ease-out 0.5s;
  transform: translateX(-100%);
}
@media (max-width: 767px) {
  .banner .banner-tbox {
    flex-wrap: wrap;
  }
}
.banner .banner-tbox.on {
  transform: translateX(0);
}
.banner .banner-tbox.on .tbox1 .t1 {
  opacity: 1;
  transform: translateY(0);
}
.banner .banner-tbox.on .tbox1 .txt {
  opacity: 1;
  transform: translateY(0);
}
.banner .banner-tbox.on .more {
  width: 20%;
  opacity: 1;
}
@media (max-width: 767px) {
  .banner .banner-tbox.on .more {
    width: 100%;
    transform: translateX(0);
  }
}
.banner .banner-tbox .tbox1 {
  width: 80%;
  background: #e60012;
  overflow: hidden;
  display: none;
}
.banner .banner-tbox .tbox1.default {
  display: flex;
}
@media (max-width: 991px) {
  .banner .banner-tbox .tbox1 {
    flex-wrap: wrap;
    align-content: center;
  }
}
@media (max-width: 767px) {
  .banner .banner-tbox .tbox1 {
    width: 100%;
    padding: 0.5rem 0;
  }
}
.banner .banner-tbox .tbox1 .t1 {
  width: 5.48rem;
  padding-left: 1.6rem;
  font-size: 0.36rem;
  color: #fff;
  line-height: 1;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  opacity: 0;
  transition: all ease-out 0.3s 0.3s;
  transform: translateY(10px);
}
@media (max-width: 991px) {
  .banner .banner-tbox .tbox1 .t1 {
    padding: 0 0.8rem;
  }
}
@media (max-width: 767px) {
  .banner .banner-tbox .tbox1 .t1 {
    padding: 0 0.2rem 0 0.3rem;
  }
}
.banner .banner-tbox .tbox1 .t1 span {
  width: 100%;
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.18rem;
}
@media (max-width: 767px) {
  .banner .banner-tbox .tbox1 .t1 span {
    font-size: 14px;
  }
}
.banner .banner-tbox .tbox1 .txt {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  padding-left: 1.08rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 26px;
  transition: all ease-out 0.6s 0.3s;
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 1260px) {
  .banner .banner-tbox .tbox1 .txt {
    padding-left: 0.3rem;
  }
}
@media (max-width: 991px) {
  .banner .banner-tbox .tbox1 .txt {
    padding: 0.3rem 0.8rem 0;
  }
}
@media (max-width: 767px) {
  .banner .banner-tbox .tbox1 .txt {
    padding: 0.3rem 0.2rem 0 0.3rem;
    font-size: 14px;
  }
}
.banner .banner-tbox .more {
  height: 1.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #caa881;
  background: #fff;
  width: 0;
  transition: all ease-out 0.5s 0.3s;
  opacity: 0;
}
@media (max-width: 991px) {
  .banner .banner-tbox .more {
    height: 3.1rem;
  }
}
@media (max-width: 767px) {
  .banner .banner-tbox .more {
    width: 100%;
    transform: translateX(-100%);
    height: 0.8rem;
  }
}
.banner .banner-tbox .more img {
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transition: all ease-out 0.3s;
}
.banner .banner-tbox .more:hover img {
  margin-left: 20px;
}
@-webkit-keyframes runLine1 {
  from {
    left: -80%;
  }
  to {
    left: 100%;
  }
}
@keyframes runLine1 {
  from {
    left: -80%;
  }
  to {
    left: 100%;
  }
}
@-webkit-keyframes runLine2 {
  from {
    top: -80%;
  }
  to {
    top: 100%;
  }
}
@keyframes runLine2 {
  from {
    top: -80%;
  }
  to {
    top: 100%;
  }
}
@-webkit-keyframes runArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes runArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
}
.index-box1 {
  height: 100vh;
  position: relative;
  z-index: 2;
  background: #fafafa;
  display: flex;
}
@media (max-width: 767px) {
  .index-box1 {
    height: auto;
  }
}
.index-box1 .img {
  width: 28.45%;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .index-box1 .img {
    display: none;
  }
}
.index-box1 .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-out 1s;
}
.index-box1 .tbox {
  width: 71.55%;
  height: 100%;
  padding-left: 1.4rem;
  padding-top: 1.42rem;
  padding-right: 1rem;
  background-image: url(../images/index-box1-bg.png);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-color: #02199b;
}
@media (max-width: 767px) {
  .index-box1 .tbox {
    width: 100%;
    padding: 1.4rem 0.5rem;
  }
}
.index-box1 .tbox .t1 {
  color: #999;
  line-height: 1;
  opacity: 0;
}
.index-box1 .tbox .title {
  font-size: 0.45rem;
  line-height: 0.55rem;
  color: #caa881;
  opacity: 0;
  margin-top: 0.47rem;
}
.index-box1 .tbox .title h1 {
  color: #fff;
  display: inline;
}
@media (max-width: 767px) {
  .index-box1 .tbox .title br {
    display: none;
  }
}
.index-box1 .tbox .txt {
  font-size: 16px;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  margin-top: 0.46rem;
}
.index-box1 .tbox .other {
  display: flex;
  justify-content: space-between;
  padding-right: 1.6rem;
  margin-top: 1.54rem;
}
@media (max-width: 1580px) {
  .index-box1 .tbox .other {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .index-box1 .tbox .other {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    margin-top: 1rem;
  }
}
.index-box1 .tbox .other .more {
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 50%;
  background: #db0012;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  opacity: 0;
  position: relative;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .index-box1 .tbox .other .more {
    margin-top: 0.8rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.index-box1 .tbox .other .more::before {
  content: '';
  width: 1.21rem;
  height: 1.21rem;
  background: url(../images/index-box1-icon1.png) center center no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  animation: runMore 2s linear infinite;
  /* Firefox: */
  -moz-animation: runMore 2s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: runMore 2s linear infinite;
  /* Opera: */
  -o-animation: runMore 2s linear infinite;
}
@media (max-width: 767px) {
  .index-box1 .tbox .other .more::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.index-box1 .tbox .other .num-box {
  width: 4.25rem;
}
@media (max-width: 767px) {
  .index-box1 .tbox .other .num-box {
    width: 100%;
  }
}
.index-box1 .tbox .other .num-box ul li {
  opacity: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #fff;
  font-size: 14px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
  margin-bottom: 0.44rem;
}
.index-box1 .tbox .other .num-box ul li:last-child {
  margin-bottom: 0;
}
.index-box1 .tbox .other .num-box ul li .nums {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1580px) {
  .index-box1 .tbox .other .num-box ul li .nums {
    font-size: 16px;
  }
}
@media (max-width: 1260px) {
  .index-box1 .tbox .other .num-box ul li .nums {
    font-size: 14px;
  }
}
.index-box1 .tbox .other .num-box ul li .nums span {
  font-size: 0.5rem;
  font-style: italic;
}
@-webkit-keyframes runMore {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes runMore {
  from {
    transform: translate(-50%, -50%) rotate(0);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.index-box2 {
  width: 100%;
  background: #fff url(../images/index-box2-bg.jpg) top right no-repeat;
  height: 100vh;
  background-size: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.2rem 0 0;
}
@media (max-width: 991px) {
  .index-box2 {
    background-image: url(../images/index-box2-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.index-box2 .container {
  max-width: 1400px;
  position: relative;
}
.index-box2 .container .top {
  width: 100%;
}
.index-box2 .container .top .t1 {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
  opacity: 0;
}
.index-box2 .container .top .t1 span {
  width: 100vw;
  height: 1px;
  display: block;
  position: absolute;
  left: 1.34rem;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 991px) {
  .index-box2 .container .top .t1 span {
    left: 2rem;
  }
}
.index-box2 .container .top .t1 span::before {
  content: '';
  width: 2.86rem;
  height: 1px;
  background: #fff;
  display: block;
}
.index-box2 .container .top .t2 {
  font-size: 0.45rem;
  color: #fff;
  line-height: 1;
  margin-top: 0.7rem;
  opacity: 2;
}
.index-box2 .container .top .t3 {
  color: #fff;
  line-height: 26px;
  margin-top: 0.24rem;
  opacity: 3;
}
.index-box2 .container .list1 {
  position: absolute;
  right: 0;
  top: 0.72rem;
}
@media (max-width: 991px) {
  .index-box2 .container .list1 {
    position: relative;
    right: initial;
    top: initial;
    margin-top: 0.5rem;
  }
}
.index-box2 .container .list1 ul li {
  display: none;
}
@media (max-width: 767px) {
  .index-box2 .container .list1 ul li {
    width: 100%;
    overflow-x: auto;
  }
}
.index-box2 .container .list1 ul li.on {
  display: flex;
}
.index-box2 .container .list1 ul li.on .item {
  width: 1.04rem;
  height: 1.04rem;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-right: 0.16rem;
}
.index-box2 .container .list1 ul li.on .item:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .index-box2 .container .list1 ul li.on .item {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.index-box2 .container .list1 ul li.on .item .icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.index-box2 .container .list1 ul li.on .item .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.index-box2 .container .list1 ul li.on .item .txt {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .index-box2 .container .list1 ul li.on .item .txt {
    font-size: 12px;
  }
}
.index-box2 .list2 {
  width: 100%;
  margin-top: 0.7rem;
}
.index-box2 .list2 .swiper {
  width: 100%;
  overflow: hidden;
}
.index-box2 .list2 .swiper .swiper-slide img {
  width: 100%;
}
.index-box2 .list2:hover {
  cursor: url(../images/index-box2-icon.png), pointer;
}
.index-box3 {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #004e52;
  z-index: 2;
  padding: 1rem 0;
}
@media (max-width: 767px) {
  .index-box3 {
    height: initial;
  }
}
.index-box3 #particles {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  line-height: 1;
  font-size: 0;
  opacity: 0.3;
}
.index-box3 .container {
  max-width: 1400px;
  position: relative;
  z-index: 2;
}
.index-box3 .container .title {
  font-size: 0.45rem;
  line-height: 1;
  color: #fff;
  opacity: 0;
}
.index-box3 .container .top {
  width: 100%;
  margin-top: 0.27rem;
  padding-bottom: 0.4rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .index-box3 .container .top {
    margin-top: 0.5rem;
  }
}
.index-box3 .container .top a {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 767px) {
  .index-box3 .container .top a {
    flex-direction: column-reverse;
  }
}
.index-box3 .container .top a .tbox {
  width: 46.42%;
  opacity: 0;
}
@media (max-width: 767px) {
  .index-box3 .container .top a .tbox {
    width: 100%;
    margin-top: 0.5rem;
  }
}
.index-box3 .container .top a .tbox .t1 {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}
.index-box3 .container .top a .tbox .t1 span {
  margin-left: 0.32rem;
}
.index-box3 .container .top a .tbox .t2 {
  color: #d4b382;
  font-size: 0.4rem;
  line-height: 0.5rem;
  margin-top: 0.3rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.index-box3 .container .top a .tbox .more {
  color: #caa881;
  line-height: 1;
  margin-top: 0.58rem;
  display: inline-flex;
  align-items: center;
}
.index-box3 .container .top a .tbox .more img {
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transition: all ease-out 0.3s;
}
.index-box3 .container .top a .tbox .more:hover img {
  margin-left: 20px;
}
.index-box3 .container .top a .img {
  width: 4.45rem;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .index-box3 .container .top a .img {
    width: 100%;
  }
}
.index-box3 .container .top a .img::before {
  padding-top: 58.42%;
}
.index-box3 .container .top::before {
  content: '';
  width: 0;
  height: 1px;
  background: #caa881;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all ease-out 0.3s;
}
.index-box3 .container .top:hover::before {
  width: 100%;
}
.index-box3 .container .list {
  width: 100%;
  margin-top: 0.42rem;
}
@media (max-width: 767px) {
  .index-box3 .container .list {
    margin-top: 0.7rem;
  }
}
.index-box3 .container .list ul {
  display: flex;
  flex-wrap: wrap;
}
.index-box3 .container .list ul li {
  opacity: 0;
  width: 31.42%;
  margin-right: 2.87%;
}
.index-box3 .container .list ul li:nth-child(3) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .index-box3 .container .list ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.7rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
}
.index-box3 .container .list ul li a {
  display: block;
}
.index-box3 .container .list ul li a .t1 {
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
}
.index-box3 .container .list ul li a .t1 span {
  margin-left: 0.32rem;
}
.index-box3 .container .list ul li a .t2 {
  font-size: 24px;
  line-height: 36px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0.27rem;
  transition: all ease-out 0.3s;
}
@media (max-width: 1580px) {
  .index-box3 .container .list ul li a .t2 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 1260px) {
  .index-box3 .container .list ul li a .t2 {
    font-size: 20px;
    line-height: 32px;
  }
}
.index-box3 .container .list ul li a .t3 {
  line-height: 30px;
  color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 0.15rem;
  height: 90px;
}
@media (max-width: 1580px) {
  .index-box3 .container .list ul li a .t3 {
    line-height: 28px;
    height: 84px;
  }
}
@media (max-width: 1260px) {
  .index-box3 .container .list ul li a .t3 {
    line-height: 26px;
    height: 78px;
  }
}
@media (max-width: 767px) {
  .index-box3 .container .list ul li a .t3 {
    line-height: 1.5;
    height: auto;
  }
}
.index-box3 .container .list ul li a .more {
  color: #fff;
  line-height: 1;
  margin-top: 0.52rem;
  display: inline-flex;
  align-items: center;
}
.index-box3 .container .list ul li a .more img {
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transition: all ease-out 0.3s;
}
.index-box3 .container .list ul li a .more:hover img {
  margin-left: 20px;
}
.index-box3 .container .list ul li a:hover .t2 {
  color: #caa881;
}
.index-box3 .container .more-list {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0.2rem;
  line-height: 30px;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (max-width: 1580px) {
  .index-box3 .container .more-list {
    top: 0;
  }
}
.index-box3 .container .more-list img {
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transition: all ease-out 0.3s;
}
.index-box3 .container .more-list:hover img {
  margin-left: 20px;
}
.index-box4 {
  width: 100%;
  padding: 1.65rem 0 1.4rem;
  position: relative;
  z-index: 2;
  height: 100vh;
}
.index-box4 .container {
  max-width: 1400px;
}
.index-box4 .container .title {
  font-size: 0.5rem;
  color: #333;
  line-height: 1;
  opacity: 0;
}
.index-box4 .container .txt {
  color: #666;
  line-height: 26px;
  margin-top: 0.22rem;
  opacity: 0;
}
.index-box4 .container .list {
  margin-top: 0.55rem;
  opacity: 0;
}
.index-box4 .container .list .item {
  width: 350px;
  max-width: 100%;
  margin-bottom: 0.2rem;
  border-radius: 3px;
  overflow: hidden;
  background: #004e52 url(../images/index-box4-img3.png) 200px bottom no-repeat;
}
.index-box4 .container .list .item:nth-child(2) {
  background: #d4b382 url(../images/index-box4-img4.png) 200px bottom no-repeat;
  margin-bottom: 0;
}
.index-box4 .container .list .item a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
.index-box4 .container .list .item a .tbox {
  padding: 0.49rem 0.4rem;
}
.index-box4 .container .list .item a .tbox .t1 {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.index-box4 .container .list .item a .tbox .more {
  margin-top: 0.25rem;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}
.index-box4 .container .list .item a .tbox .more img {
  width: 16px;
  height: 10px;
  margin-left: 10px;
  transition: all ease-out 0.3s;
}
.index-box4 .container .list .item a .tbox .more:hover img {
  margin-left: 20px;
}
.index-box4 .container .list .item a .img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 31.14%;
  overflow: hidden;
}
.index-box4 .container .list .item a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-out 0.3s;
}
.index-box4 .container .list .item:hover a .img img {
  transform: scale(1.05);
}
.index-box5 {
  width: 100%;
  height: 100vh;
  padding: 1rem 0;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media (max-width: 767px) {
  .index-box5 {
    height: initial;
  }
}
.index-box5 .img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.index-box5 .img ul {
  width: 100%;
  height: 100%;
}
.index-box5 .img ul li {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: all ease-out 0.3s;
}
.index-box5 .img ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.index-box5 .img ul li.on {
  z-index: 2;
  opacity: 1;
}
.index-box5 .container {
  max-width: 1400px;
  position: relative;
  z-index: 2;
}
.index-box5 .container .title {
  font-size: 0.5rem;
  color: #333;
  line-height: 1;
  opacity: 0;
}
.index-box5 .container .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 0.28rem;
}
.index-box5 .container .content .list {
  width: 68.92%;
}
@media (max-width: 767px) {
  .index-box5 .container .content .list {
    width: 100%;
  }
}
.index-box5 .container .content .list li {
  display: none;
}
.index-box5 .container .content .list li.on {
  display: block;
}
.index-box5 .container .content .menu {
  width: 24%;
  border-left: 1px solid rgba(51, 51, 51, 0.2);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .index-box5 .container .content .menu {
    width: 100%;
    border-left: none;
    margin-top: 0.3rem;
  }
}
@media (max-width: 767px) {
  .index-box5 .container .content .menu ul {
    width: 100%;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
  }
}
.index-box5 .container .content .menu ul li {
  opacity: 0;
  padding-left: 0.64rem;
  color: #333;
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 0.38rem;
  cursor: pointer;
  transition: all ease-out 0.3s;
  position: relative;
}
.index-box5 .container .content .menu ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1580px) {
  .index-box5 .container .content .menu ul li {
    font-size: 22px;
  }
}
@media (max-width: 1260px) {
  .index-box5 .container .content .menu ul li {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .index-box5 .container .content .menu ul li {
    font-size: 14px;
    line-height: 26px;
    padding-left: 0;
    margin-right: 0.3rem;
    margin-bottom: 0.1rem;
  }
}
.index-box5 .container .content .menu ul li::before {
  content: '';
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 50%;
  background: #d81719;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  opacity: 0;
  transition: all ease-out 0.3s;
}
@media (max-width: 767px) {
  .index-box5 .container .content .menu ul li::before {
    display: none;
  }
}
.index-box5 .container .content .menu ul li::after {
  content: '';
  width: 21px;
  height: 21px;
  display: block;
  border-radius: 50%;
  border: 1px solid #d81719;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -12px;
  opacity: 0;
  transition: all ease-out 0.3s;
}
@media (max-width: 767px) {
  .index-box5 .container .content .menu ul li::after {
    display: none;
  }
}
.index-box5 .container .content .menu ul li.on {
  color: #d81719;
}
.index-box5 .container .content .menu ul li.on::before {
  opacity: 1;
}
.index-box5 .container .content .menu ul li.on::after {
  opacity: 1;
}
.pagefooter {
  background: #0f0a09 url(../images/foot-bg.jpg) right top no-repeat;
}
.pagefooter .fp-overflow {
  display: flex;
  align-items: center;
}
.footer {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 1rem 0 0;
}
.footer .container .logo {
  width: 2.6rem;
  height: 0.59rem;
}
.footer .container .logo a {
  width: 100%;
  height: 100%;
  display: block;
}
.footer .container .logo a img {
  width: 100%;
  height: 100%;
}
.footer .container .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 1.2rem;
  margin-bottom: 1.28rem;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer .container .content {
    margin: 0.6rem 0;
  }
}
@media (max-width: 1260px) {
  .footer .container .content .menu {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footer .container .content .menu {
    display: none;
  }
}
.footer .container .content .menu ul {
  display: flex;
}
@media (max-width: 1260px) {
  .footer .container .content .menu ul {
    justify-content: space-between;
  }
}
.footer .container .content .menu ul li {
  margin-right: 0.88rem;
}
@media (max-width: 1580px) {
  .footer .container .content .menu ul li {
    margin-right: 0.6rem;
  }
}
.footer .container .content .menu ul li:last-child {
  margin-right: 0;
}
.footer .container .content .menu ul li .t1 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.footer .container .content .menu ul li .t1 a {
  color: #fff;
}
.footer .container .content .menu ul li .t2 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  line-height: 28px;
  margin-bottom: 6px;
  transition: all ease-out 0.3s;
  display: block;
}
.footer .container .content .menu ul li .t2:hover {
  color: #fff;
}
@media (max-width: 1260px) {
  .footer .container .content .f-contact {
    margin-top: 0.5rem;
  }
}
.footer .container .content .f-contact .t1 {
  font-size: 20px;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.footer .container .content .f-contact .t2 {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer .container .content .f-contact .t2 {
    align-items: baseline;
  }
}
.footer .container .content .f-contact .t2 svg {
  width: 13px;
  height: auto;
  margin-right: 10px;
}
.footer .container .content .f-contact .t2 svg path {
  fill: #fff;
}
.footer .container .content .f-contact .ewm {
  margin-top: 0.12rem;
  padding-left: 0.18rem;
}
.footer .container .content .f-contact .ewm .img {
  width: 1.12rem;
  height: 1.12rem;
  background: #fff;
  padding: 0.06rem;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 767px) {
  .footer .container .content .f-contact .ewm .img {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.footer .container .content .f-contact .ewm .img img {
  width: 100%;
  height: 100%;
}
.footer .container .content .f-contact .ewm .img i {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  animation: runEwm 2s linear infinite;
  /* Firefox: */
  -moz-animation: runEwm 2s linear infinite;
  /* Safari and Chrome: */
  -webkit-animation: runEwm 2s linear infinite;
  /* Opera: */
  -o-animation: runEwm 2s linear infinite;
}
.footer .container .content .f-contact .ewm .img i img {
  width: 100%;
}
.footer .container .content .f-contact .ewm span {
  width: 1.12rem;
  font-size: 14px;
  color: #fff;
  text-align: center;
  margin-top: 0.13rem;
  line-height: 1;
  display: block;
}
@media (max-width: 767px) {
  .footer .container .content .f-contact .ewm span {
    width: 1.5rem;
  }
}
.footer .f-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.28rem 0 0.2rem;
  border-bottom: 2px solid #e60012;
}
.footer .f-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .f-bottom .container .copyright {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .footer .f-bottom .container .copyright {
    width: 100%;
    text-align: center;
  }
}
.footer .f-bottom .container .copyright a {
  color: rgba(255, 255, 255, 0.3);
  margin-left: 0.2rem;
  transition: all ease-out 0.3s;
}
.footer .f-bottom .container .copyright a:hover {
  color: #fff;
}
.footer .f-bottom .container .abox {
  display: flex;
}
@media (max-width: 767px) {
  .footer .f-bottom .container .abox {
    width: 100%;
    justify-content: center;
  }
}
.footer .f-bottom .container .abox a {
  font-size: 14px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.3);
  margin-right: 0.49rem;
  transition: all ease-out 0.3s;
}
.footer .f-bottom .container .abox a:last-child {
  margin-right: 0;
}
.footer .f-bottom .container .abox a:hover {
  color: #fff;
}
@-webkit-keyframes runEwm {
  0% {
    top: 0;
  }
  50% {
    top: 90%;
  }
  100% {
    top: 0;
  }
}
@keyframes runEwm {
  0% {
    top: 0;
  }
  50% {
    top: 90%;
  }
  100% {
    top: 0;
  }
}
.c-nav2-box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  transition: all 1s;
  opacity: 0;
  transform: translateY(-100%);
}
.c-nav2-box .c-nav2 {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-nav2-box .c-nav2 .c-left {
  opacity: 0;
  transform: translateY(100px);
  position: relative;
  width: 50%;
  height: 100%;
  transition: all 0.5s;
  overflow: hidden;
}
@media (max-width: 991px) {
  .c-nav2-box .c-nav2 .c-left {
    display: none;
  }
}
.c-nav2-box .c-nav2 .c-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-nav2-box .c-nav2 .c-left .c-title {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.c-nav2-box .c-nav2 .c-right {
  transition: all 0.5s;
  opacity: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 100%;
  background-color: #fff;
  text-align: left;
  padding: 0 2.6rem 0 0.8rem;
  overflow: auto;
}
.c-nav2-box .c-nav2 .c-right .close999 {
  cursor: pointer;
  position: absolute;
  top: 0.25rem;
  right: 0.6rem;
  width: auto;
}
.c-nav2-box .c-nav2 .c-right .close999 svg {
  width: 46px;
  height: 46px;
}
.c-nav2-box .c-nav2 .c-right .close999 svg path {
  fill: #333;
  opacity: 1;
}
@media (max-width: 991px) {
  .c-nav2-box .c-nav2 .c-right {
    padding: 60px 1rem 0;
    width: 100%;
    align-items: flex-start;
  }
}
.c-nav2-box .c-nav2 .c-right > div {
  width: 100%;
}
.c-nav2-box .c-nav2 .c-right .c-title {
  font-size: 24px;
  color: #333;
}
@media (max-width: 1580px) {
  .c-nav2-box .c-nav2 .c-right .c-title {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .c-nav2-box .c-nav2 .c-right .c-title {
    font-size: 16px;
  }
}
.c-nav2-box .c-nav2 .c-right a {
  color: #666;
}
.c-nav2-box .c-nav2 .c-right a:hover {
  color: #e60012;
}
@media (max-width: 991px) {
  .c-nav2-box .c-nav2 .c-right .c-list {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.c-nav2-box .c-nav2 .c-right .c-list > li {
  margin-bottom: 0.3rem;
}
@media (max-width: 991px) {
  .c-nav2-box .c-nav2 .c-right .c-list > li {
    margin-bottom: 1rem;
  }
}
.c-nav2-box .c-nav2 .c-right .c-list > li .c-list2 {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-nav2-box .c-nav2 .c-right .c-list > li .c-list2 li {
  margin: 0.1rem 0.4rem 0 0;
}
@media (max-width: 991px) {
  .c-nav2-box .c-nav2 .c-right .c-list > li .c-list2 li {
    margin: 0.5rem 1rem 0 0;
  }
}
@media (max-width: 767px) {
  .c-nav2-box .c-nav2 .c-right .c-list > li .c-list2 li {
    margin: 0 0.5rem 0 0;
  }
}
.c-nav2-box .c-nav2 .c-right .c-list > li .c-list2 li:last-child {
  margin-right: 0;
}
.c-nav2-box .c-nav2 .c-right .c-ico {
  display: flex;
  align-items: center;
  padding-top: 0.8rem;
}
@media (max-width: 1580px) {
  .c-nav2-box .c-nav2 .c-right .c-ico {
    padding-top: 0;
  }
}
.c-nav2-box .c-nav2 .c-right .c-ico a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  transition: 0.5s;
}
.c-nav2-box .c-nav2 .c-right .c-ico a:last-child {
  margin-right: 0;
}
.c-nav2-box .c-nav2 .c-right .c-ico a img {
  height: 20px;
}
.c-nav2-box .c-nav2 .c-right .c-ico a img:last-child {
  display: none;
}
.c-nav2-box .c-nav2 .c-right .c-ico a:hover {
  background: #e60012;
}
.c-nav2-box .c-nav2 .c-right .c-ico a:hover img {
  display: none;
}
.c-nav2-box .c-nav2 .c-right .c-ico a:hover img:last-child {
  display: inline-block;
}
.c-nav2-box.ononon {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.c-nav2-box.ononon .c-nav2 .c-left {
  opacity: 1;
  transform: translateY(0);
}
.c-nav2-box.ononon .c-nav2 .c-right {
  opacity: 1;
}
