@charset "UTF-8";

:root {
  --colorPrimary: #e60012;
  --colorDeepPrimary: #9c1313;
  --colorAuxiliary: #deb97b;
  --colorText: #545658;
  --colorTitleText: #545658;
  --colorH1TitleText: #000;
  --colorSubTitleText: #696969;
  --colorBorder: #e2e0e0;
  --colorBorderSecondary: #eee;
  --sectionTop: 1.5rem;
  --sectionLeft: 2rem;
  --headerHeight: 0.9rem;
}

html {
  width: 100%;
  font-size: 50px;
  color: var(--colorText);
}

body {
  font-size: 0.16rem;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    Helvetica Neue,
    PingFang SC,
    Microsoft YaHei,
    Source Han Sans SC,
    Noto Sans CJK SC,
    WenQuanYi Micro Hei,
    sans-serif;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input {
  padding: 0 0.1rem;
  height: 0.3rem;
  outline: none;
  background-color: transparent;
  color: var(--colorText);
  border-radius: 0.5rem;
  border: 1px solid var(--colorBorderSecondary);
}

textarea {
  padding: 0.1rem;
  outline: none;
  background-color: transparent;
  color: var(--colorText);
  border-radius: 0.5rem;
  border: 1px solid var(--colorBorder);
}

input:focus {
  border: 1px solid var(--colorPrimary) !important;
}

button {
  cursor: pointer;
  color: var(--colorText);
  background-color: transparent;
  border: 1px solid var(--colorBorderSecondary);
}

a {
  text-decoration: none;
  color: var(--colorText);
}

a:hover {
  color: var(--colorText);
}

ol,
ul,
li {
  list-style: none;
}

input,
button,
em,
svg,
img {
  display: inline-block;
  vertical-align: middle;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-auto {
  width: 100%;
}

em {
  font-style: normal;
}

::-webkit-scrollbar {
  width: 0.08rem;
  box-sizing: border-box;
}

::-webkit-scrollbar-track {
  border: 1px solid var(--colorBorder);
  margin: 4px 0;
}

::-webkit-scrollbar-button:vertical:start {
  border-width: 4px;
  border-style: solid;
  border-color: transparent transparent var(--colorBorder) transparent;
}

::-webkit-scrollbar-button:vertical:end {
  border-width: 4px;
  border-style: solid;
  border-color: var(--colorBorder) transparent transparent transparent;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border: 1px solid var(--colorBorder);
  background-color: var(--colorFill);
  border-radius: 3px;
}

::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
  display: none;
}

.liufan-message {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  border-radius: 5px;
  padding: 9px 12px;
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  box-shadow:
    0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 9px 28px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.liufan-message-success .icon {
  color: #52c41a;
}

.liufan-message-error .icon {
  color: #ff0000;
}

.page-title {
  margin-bottom: 0.8rem;
  text-align: center;
}

.page-title-h {
  font-size: 0.4rem;
  color: var(--colorH1TitleText);
  font-weight: 600;
}

.page-title-p {
  font-size: 0.24rem;
  color: var(--colorSubTitleText);
  margin-top: 0.2rem;
  font-weight: 600;
}

.page-title-p span {
  color: var(--colorPrimary);
}

.page-title-en {
  font-size: 0.18rem;
  margin-top: 8px;
  font-weight: 400;
}

.header {
  height: var(--headerHeight);
  padding: 0 0.64rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: flex;
  transition: all 0.3s ease;
  background-color: #fff;
  border-bottom: 1px solid var(--colorBorderSecondary);
}

.header-left {
  height: 0.9rem;
  display: flex;
  align-items: center;
  position: relative;
}

.header-logo {
  display: block;
  width: auto;
  height: 0.45rem;
}

.header-logo img {
  display: block;
  width: auto;
  height: 100%;
}

.small-logo {
  width: 0.5rem;
  position: absolute;
  left: -0.57rem;
  top: 50%;
  transform: translateY(-50%);
}

.header-nav {
  margin-left: 0.34rem;
}

.header-nav .menu-item {
  display: inline-block;
  height: 0.4rem;
  line-height: 0.4rem;
  text-align: center;
  font-size: 0.18rem;
  position: relative;
}

.header-nav .menu-item > a {
  display: block;
  padding: 0 0.32rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.header-nav .menu-item > ul {
  position: absolute;
  top: 0.45rem;
  font-size: 0.14rem;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(-10%);
  transition: all 0.3s ease;
}

.header-nav .menu-item .sub-menu-item {
  height: 0.3rem;
  line-height: 0.3rem;
}

.header-nav .menu-item .sub-menu-item a:hover {
  color: var(--colorPrimary);
  text-decoration: underline;
}

.header-nav .menu-item .iconfont {
  display: none;
}

.header-right {
  flex: 1;
  height: var(--headerHeight);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right .header-tel {
  height: 0.6rem;
  line-height: 0.6rem;
  border: 1px solid var(--colorPrimary);
  border-radius: 0.1rem;
  font-size: 0.22rem;
  font-weight: 600;
  padding: 0 0.22rem;
  color: var(--colorPrimary);
  transition: all 0.3s ease;
}

.header-right .header-tel:hover {
  color: #fff;
  background-color: var(--colorPrimary);
}

.main {
  margin-top: var(--headerHeight);
}

.dot {
  width: 16px;
  height: 16px;
  position: relative;
}

.dot .child {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.dot:after,
.dot:before {
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  animation: dot 1.3s linear 0.15s infinite both;
  opacity: 0.6;
}

.dot:after {
  width: 32px;
  height: 32px;
}

.dot:before {
  width: 48px;
  height: 48px;
}

.look-detail {
  padding: 0.14rem 0.36rem;
  border-radius: 0.36rem;
  text-align: center;
  border: 1px solid #e6e8ec;
  cursor: pointer;
  color: var(--colorTitleText);
  transition: all 0.3s ease-in-out;
}

.more-btn {
  display: block;
  width: 2.4rem;
  height: 0.72rem;
  color: var(--colorText);
  font-size: 0.24rem;
  border: 2px solid var(--colorBorder);
  border-radius: 0.36rem;
  text-align: center;
  line-height: 0.72rem;
  cursor: pointer;
  margin: 1rem auto 0;
  transition: all 0.3s ease-in-out;
}

.more-btn:hover {
  border: 2px solid var(--colorPrimary);
  color: var(--colorPrimary);
}

.footer {
  background: #181818 url('../images/xk8.jpg') no-repeat center / cover;
  color: #fff;
  position: relative;
}

.footer-info {
  display: flex;
  padding: var(--sectionTop) calc(var(--sectionLeft) * 0.7);
}

.footer-left {
  flex: 1;
  margin-right: 1.8rem;
}

.m-f-info-logo {
  display: none;
}

.footer-jm-tel .jm-tel-text {
  font-size: 0.32rem;
  margin-bottom: 0.33rem;
}

.footer-jm-tel a {
  display: block;
  width: 5.67rem;
  height: 0.77rem;
  line-height: 0.77rem;
  background-color: var(--colorPrimary);
  color: #fff;
  text-align: center;
  border-radius: 0.36rem;
}

.footer-jm-tel a i {
  font-size: 0.38rem;
  vertical-align: middle;
}

.footer-jm-tel a .click-tel {
  font-size: 0.24rem;
  padding-left: 0.1rem;
  padding-right: 0.1rem;
  vertical-align: middle;
  font-weight: 600;
}

.footer-jm-tel a .tel-number {
  font-size: 0.44rem;
  vertical-align: middle;
  font-weight: 600;
}

.footer-addr {
  margin-top: 0.45rem;
  font-size: 0.2rem;
}

.footer-info-contact {
  margin-top: 0.45rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.52rem;
}

.f-info-c-item {
  cursor: pointer;
  margin-right: 0.2rem;
  position: relative;
}

.f-info-c-item:last-child {
  margin-right: 0;
}

.f-info-c-icon {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 0.6rem;
}

.f-info-c-icon .iconfont {
  font-size: 0.3rem;
}

.f-info-c-code {
  display: none;
  position: absolute;
  left: 0;
  bottom: -1.65rem;
  width: 1.6rem;
  height: 1.6rem;
  text-align: center;
  overflow: hidden;
  transform: translate(-0.45rem, 0.1rem);
}

.f-info-c-code img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.f-info-c-item:hover .f-info-c-code {
  display: block;
}

.f-info-logo {
  width: 3.35rem;
}

.footer-info .message-box {
  width: 8rem;
  background-color: #fff;
  border-radius: 0.2rem;
  padding: 0.57rem 0.6rem 0.43rem 0.58rem;
  color: #111;
}

.message-title {
  font-size: 0.32rem;
  font-weight: 600;
}

.message-content {
  margin-top: 0.3rem;
  display: flex;
  justify-content: space-between;
}

.message-content .liuvan-form {
  flex: 1;
  margin-right: 0.9rem;
}

.liuvan-form-item {
  margin-bottom: 0.2rem;
}

.liuvan-form-item label {
  display: block;
  margin-bottom: 0.1rem;
}

.liuvan-form-item input {
  width: 100%;
  height: 0.5rem;
  border-radius: 0.05rem;
  border: 1px solid var(--colorBorder);
}

.liuvan-form-btn {
  width: 2.8rem;
  height: 0.6rem;
  background-color: var(--colorPrimary);
  color: #fff;
  font-size: 0.24rem;
  border-radius: 0.05rem;
  text-align: center;
  line-height: 0.6rem;
  cursor: pointer;
}

.copyright {
  width: 100%;
  padding: 0 var(--sectionLeft);
  height: 0.7rem;
  background-color: #111;
  color: #fff9;
  display: flex;
  align-items: center;
  font-size: 0.13rem;
}

.message-ercode img {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.05rem;
}

.message-ercode p {
  margin-top: 0.2rem;
  color: var(--colorPrimary);
  font-size: 0.2rem;
}

.yq-links {
  font-size: 0.13rem;
  padding: 0.2rem calc(var(--sectionLeft) * 0.7);
}

.yq-links a {
  padding: 0 0.04rem;
}

.yq-links a:hover {
  color: var(--colorPrimary);
}

.copyright a {
  color: #fff9;
  padding: 0 0.08rem;
}

.copyright a:hover {
  color: var(--colorPrimary);
}

.return-top {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1.2rem;
  height: 0.7rem;
  background-color: var(--colorAuxiliary);
  color: #fff;
  cursor: pointer;
}

.return-top .icon-wrap {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  text-align: center;
  line-height: 0.4rem;
  border: 1px solid #fff;
  margin: 0.2rem auto;
}

.return-top .icon-wrap .iconfont {
  font-size: 0.24rem;
}

.beautify-swiper-button-next::after,
.beautify-swiper-button-prev::after {
  content: '' !important;
}

.beautify-swiper-button-prev,
.beautify-swiper-button-next {
  width: 0.76rem !important;
  height: 0.76rem !important;
  background-color: #fff;
  border: 1px solid var(--colorBorder);
  border-radius: 50%;
  text-align: center;
  line-height: 0.76rem;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.beautify-swiper-button-prev .iconfont,
.beautify-swiper-button-next .iconfont {
  font-size: 0.3rem;
  color: var(--colorSubTitleText);
}

.beautify-swiper-button-prev:hover,
.beautify-swiper-button-next:hover {
  background-color: var(--colorPrimary);
  color: #fff;
  border: 1px solid var(--colorPrimary);
}

.beautify-swiper-button-prev:hover .iconfont,
.beautify-swiper-button-next:hover .iconfont {
  color: #fff;
}

@keyframes ball-pulse {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0.1;
    transform: scale(0.01);
  }
}

@media (max-width: 1024px) {
  :root {
    --sectionTop: 0.8rem;
    --sectionLeft: 1rem;
    --headerHeight: 1.2rem;
  }

  body {
    font-size: 0.28rem;
  }

  .header {
    padding: 0 0.4rem;
    justify-content: space-between;
  }

  .header-left {
    height: var(--headerHeight);
  }

  .mobile-menu {
    width: 0.6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .mobile-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #111;
    margin-top: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-menu-open span:nth-child(1) {
    transform: rotate(45deg) translateY(0.22rem);
  }

  .mobile-menu-open span:nth-child(2) {
    width: 0;
  }

  .mobile-menu-open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-0.22rem);
  }

  .header-right {
    position: fixed;
    width: 100%;
    top: var(--headerHeight);
    height: 0;
    left: 0;
    opacity: 0;
    background-color: #fff;
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .header-nav {
    width: 100%;
    height: calc(100% - 2rem);
    padding: 0.4rem;
    margin-left: 0;
  }

  .header-nav .menu-item {
    display: flex;
    flex-direction: column;
    font-size: 0.32rem;
    min-height: 1rem;
    height: auto;
    overflow: visible;
    position: relative;
    border-bottom: 1px solid var(--colorBorder);
  }

  .header-nav .menu-item a {
    display: block;
    position: relative;
    background-color: #fff;
  }

  .header-nav .menu-item > a {
    width: calc(100% - 0.6rem);
    height: 1rem;
    line-height: 1rem;
    padding: 0;
    color: #111;
    border-radius: 0;
    text-align: left;
  }

  .header-nav .menu-item .iconfont {
    font-size: 0.32rem;
    font-weight: bold;
    padding-left: 0.1rem;
    position: absolute;
    right: 0;
    top: 0.3rem;
    display: block;
    transition: transform 0.3s ease;
  }

  .header-nav .menu-item-active {
    border-bottom: 1px solid var(--colorPrimary);
  }

  .header-nav .menu-item > ul {
    font-size: 0.28rem;
    position: static;
    opacity: 1;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header-nav .menu-item .sub-menu-item {
    height: auto;
  }

  .header-nav .menu-item .sub-menu-item a {
    color: var(--colorText);
    font-size: 0.28rem;
    height: 0.8rem;
    line-height: 0.8rem;
    padding: 0 0.15rem;
  }

  .header-right .header-tel {
    height: 0.88rem;
    line-height: 0.88rem;
    font-size: 0.32rem;
    padding: 0 1rem;
  }
}

.scroll-tips {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 0.64rem;
  position: relative;
  z-index: 2;
  background-color: #fff;
}

.scroll-tips-box .tips-text {
  color: var(--colorPrimary);
  font-size: 0.14rem;
  width: 0.2rem;
  margin: 0 auto;
  text-align: center;
}

.scroll-tips-box .tips-line {
  width: 1px;
  height: 1.5rem;
  background-color: var(--colorPrimary);
  margin: 0.1rem auto 0;
  position: relative;
}

.scroll-tips-box .tips-line::before {
  content: '';
  position: absolute;
  top: -2;
  left: -0.04rem;
  width: 0.09rem;
  height: 0.09rem;
  background-color: var(--colorPrimary);
  border-radius: 50%;
  animation:
    updown 1.5s infinite ease-in-out,
    fadeInOut 1.5s infinite ease-in-out;
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-list-item {
  width: 32%;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid var(--colorBorderSecondary);
}

.news-list-item:hover {
  border-color: var(--colorPrimary);
}

.news-list-item-cover {
  width: 100%;
  height: 3.6rem;
  border-radius: 0.1rem;
  overflow: hidden;
}

.news-list-item-cover img {
  transition: all 0.3s ease-in-out;
}

.news-list-item:hover .news-list-item-cover img {
  transform: scale(1.1);
}

.news-list-item-content {
  padding: 0.2rem;
}

.news-list-item-title {
  color: var(--colorTitleText);
  font-weight: 600;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}

.news-list-item:hover .news-list-item-title {
  margin-left: 0.1rem;
}

.news-list-item-desc {
  margin-top: 0.1rem;
  line-height: 1.8;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: all 0.3s ease-in-out;
}

.news-list-item:hover .news-list-item-desc {
  margin-left: 0.2rem;
}

.news-list-item .look-detail {
  display: inline-block;
  margin-top: 0.15rem;
}

.news-list-item:hover .look-detail {
  background-color: var(--colorPrimary);
  color: #fff;
  border: 1px solid var(--colorPrimary);
}

.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #666;
  background-color: #f5f5f5;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.5s ease;
}

.loading-page > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loading-page > div:nth-child(1) {
  animation-delay: -200ms;
}

.loading-page > div:nth-child(2) {
  animation-delay: -100ms;
}

.loading-page > div:nth-child(3) {
  animation-delay: 0ms;
}

.loading-page > div {
  width: 0.1rem;
  height: 0.1rem;
  margin: 0.04rem;
  border-radius: 100%;
  animation: ball-pulse 1s ease infinite;
}

@keyframes ball-pulse {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0.1;
    transform: scale(0.01);
  }
}

@keyframes updown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1.2rem);
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .scroll-tips {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --sectionTop: 1rem;
    --sectionLeft: 0.4rem;
  }

  .page-title-en {
    font-size: 0.26rem;
  }

  .more-btn {
    margin: 0.5rem auto 0;
  }

  .footer-info {
    display: block;
  }

  .footer-left {
    margin-right: 0;
    text-align: center;
  }

  .m-f-info-logo {
    display: block;
    width: 180px;
    margin: 0 auto 26px;
  }

  .footer-jm-tel a {
    margin: 0 auto;
  }

  .f-info-logo,
  .footer-info-contact {
    display: none;
  }

  .jm-tel-text {
    font-size: 0.3rem;
  }

  .footer-addr {
    font-size: 0.26rem;
  }

  .message-box {
    margin-top: 0.5rem;
  }

  .message-content {
    display: block;
  }

  .message-title {
    text-align: center;
  }

  .message-content .liuvan-form {
    margin-right: 0;
    margin-top: 0.4rem;
  }

  .liuvan-form-item {
    margin-bottom: 0.4rem;
  }

  .liuvan-form-item input {
    height: 0.8rem;
    border-radius: 0.2rem;
  }

  .footer-info .message-box {
    width: 100%;
    padding: 0.48rem 0.32rem;
  }

  .liuvan-form-btn {
    width: 100%;
    height: 0.8rem;
    line-height: 0.8rem;
    border-radius: 0.2rem;
  }

  .message-ercode {
    margin-top: 0.4rem;
    text-align: center;
  }

  .message-ercode img {
    width: 3rem;
    height: 3rem;
  }

  .message-ercode p {
    font-size: 0.28rem;
  }

  .yq-links {
    display: none;
  }

  .return-top {
    display: none;
  }

  .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.24rem;
    height: auto;
    padding: 0.2rem;
    text-align: center;
  }

  .copyright p {
    margin-bottom: 0.1rem;
  }

  .page-title-p {
    font-size: 0.28rem;
  }

  .news-list-item {
    width: 100%;
    padding-bottom: 0.3rem;
    margin-bottom: 0.3rem;
  }
}

@media (min-width: 1025px) {
  html {
    font-size: 70px;
  }

  .mobile-menu {
    display: none;
  }
  .header:hover {
    height: 3rem;
  }

  .header-nav .menu-item > a:hover,
  .header-nav .menu-item-active > a {
    background-color: var(--colorAuxiliary);
    color: #fff;
  }

  .header:hover .header-nav .menu-item > ul {
    opacity: 1;
    transform: translateY(0);
  }

  .header {
    padding: 0 0.32rem;
  }

  .header-nav .menu-item > a {
    padding: 0 0.1rem;
  }

  .header-right .header-tel {
    padding: 0 0.2rem;
  }
}

/* Middle */
@media (min-width: 1200px) {
  html {
    font-size: 80px;
  }
}

/* PC */
@media (min-width: 1500px) {
  html {
    font-size: 100px;
  }

  .header {
    padding: 0 0.3rem;
  }

  .header-nav .menu-item > a {
    padding: 0 0.12rem;
  }

  .header-right .header-tel {
    padding: 0 0.12rem;
  }
}

@media (min-width: 1800px) {
  .header {
    padding: 0 0.64rem;
  }

  .header-nav .menu-item > a {
    padding: 0 0.32rem;
  }

  .header-right .header-tel {
    padding: 0 0.22rem;
  }
}
