html {
  font-size: calc(100vw * 100 / 1920);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw * 76.8 / 768);
  }
}
@font-face {
  font-family: "BebasNeue";
  src: url("https://font.fonwi.com/xinweb/fonts/BebasNeue-1.otf");
}
@font-face {
  font-family: "HONOR Sans CN";
  src: url("https://font.fonwi.com/xinweb/fonts/HONORSansCN-Regular.ttf");
}
body {
  font-size: 14px;
  font-family: HONOR Sans CN, sans-serif;
  line-height: normal;
}
input,
select,
textarea {
  font-family: HONOR Sans CN, sans-serif;
}
body.lock {
  overflow: hidden;
}
::-webkit-scrollbar {
  background-color: #efefef;
  width: 6px;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}
:root {
  --font-14: 14px;
  --font-16: max(16px, 0.16rem);
  --font-18: max(16px, 0.18rem);
  --font-20: max(16px, 0.2rem);
  --font-22: max(18px, 0.22rem);
  --font-24: max(18px, 0.24rem);
  --font-26: max(18px, 0.26rem);
  --font-28: max(20px, 0.28rem);
  --font-30: max(22px, 0.3rem);
  --font-31: max(22px, 0.31rem);
  --font-32: max(22px, 0.32rem);
  --font-34: max(22px, 0.34rem);
  --font-36: max(22px, 0.36rem);
  --font-38: max(22px, 0.38rem);
  --font-40: max(24px, 0.4rem);
  --font-42: max(24px, 0.42rem);
  --font-46: max(24px, 0.46rem);
  --font-48: max(24px, 0.48rem);
  --font-50: max(24px, 0.5rem);
  --font-58: max(24px, 0.58rem);
  --font-60: max(24px, 0.6rem);
  --font-70: max(24px, 0.7rem);
  --font-80: max(24px, 0.8rem);
  --font-90: max(24px, 0.9rem);
  --theme: #e22027;
  --header-height: 65px;
  --duration: 0.6s;
  --duration-min: 0.45s;
  --phone-space: 35px;
}
.img-w-100 {
  display: block;
  width: 100%;
  height: auto;
}
.img-mw-100 {
  display: block;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
img {
  vertical-align: top;
}
.phone-img {
  display: none !important;
}
@media (max-width: 768px) {
  .phone-img {
    display: block !important;
    max-width: 100%;
    height: auto;
  }
  .pc-img {
    display: none !important;
  }
}
.wrap {
  max-width: 1600px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 6;
}
header.active {
  background-color: #fff;
  --activeColor: #000;
}
header.active .header-wrap .logo-area .logo .active {
  display: block;
}
header.active .header-wrap .logo-area .logo .default {
  display: none;
}
header.active .header-wrap .nav .nav-item .nav-top a {
  color: var(--activeColor);
}
header.active .header-wrap .nav .nav-item .nav-top a span::after {
  background-color: var(--theme);
}
header.active .header-wrap .nav .nav-item.active .nav-top a span,
header.active .header-wrap .nav .nav-item:hover .nav-top a span {
  color: var(--theme);
}
header.active .header-wrap .other .lang .lang-top {
  background-color: #cc0000;
}
header.animate {
  animation: headAnimate 1s forwards;
}
.header-wrap {
  width: 90%;
  max-width: 1850px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: var(--header-height);
}
.header-wrap .logo-area {
  display: flex;
}
.header-wrap .logo-area .logo {
  cursor: pointer;
  padding-right: 0.22rem;
  margin-right: 0.23rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.header-wrap .logo-area .logo a {
  display: block;
}
/* 2025-4-21 修改 */
.header-wrap .logo-area .min-logo {
  display: flex;
  align-items: center;
}

/* 限制logo尺寸 */
.header-wrap .logo-area .logo a img {
  /* max-width: 184px; */
  width: clamp(90px, 1.84rem, 184px);
  height: auto;
  object-fit: contain;
}
.header-wrap .logo-area .logo .active {
  display: none;
}
.header-wrap .logo-area .min-logo a {
  margin-right: 0.2rem;
}
.header-wrap .logo-area .min-logo a img {
  vertical-align: middle;
  max-height: 25px;
  object-fit: contain;
}
.header-wrap .logo-area .min-logo a img:last-of-type {
  margin-right: 0;
}
.header-wrap .nav {
  display: flex;
  height: 100%;
  margin-left: auto;
}
.header-wrap .nav .nav-item {
  height: 100%;
  margin-right: 0.4rem;
  position: relative;
  /* 用来控制显示和隐藏的类名 */
  /* 服务类目 */
  /* 其他普通下拉菜单 */
}
.header-wrap .nav .nav-item:last-of-type {
  margin-right: 0;
}
.header-wrap .nav .nav-item.active .nav-top a span::after,
.header-wrap .nav .nav-item.hover .nav-top a span::after {
  width: 100%;
}
.header-wrap .nav .nav-item .nav-top {
  height: 100%;
}
.header-wrap .nav .nav-item .nav-top a {
  height: 100%;
  font-weight: 400;
  font-size: var(--font-18);
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: center;
}
.header-wrap .nav .nav-item .nav-top a:hover span::after {
  width: 100%;
}
.header-wrap .nav .nav-item .nav-top a span {
  display: block;
  position: relative;
}
.header-wrap .nav .nav-item .nav-top a span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 11px);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: 0.6s ease width;
  transform: translateX(-50%);
}
.header-wrap .nav .nav-item .nav-bottom {
  display: none;
}
.header-wrap .nav .nav-item .server-bottom {
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100%;
  height: auto;
  border-radius: 0px 0px 20px 20px;
  background-image: url(../images/nav-serve-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  padding-top: max(20px, 0.46rem);
  padding-bottom: max(30px, 0.6rem);
  overflow-x: hidden;
  overflow-y: auto;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap {
  max-width: 1600px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: flex-start;
}

/* 2025-4-10 修改 */
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 {
  width: 15.625%;
  margin-right: 5.375%;
  min-width: 192px;
  flex-shrink: 0;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 .pic {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 .pic::after {
  content: "";
  display: block;
  padding-top: 66.8%;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 .pic:hover img {
  transform: scale(1.07);
}

.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.6s ease;
  object-fit: cover;
  object-position: center center;
}

/* 2025-4-10 修改 */
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-1 .text {
  font-weight: bold;
  font-size: max(12px, 0.16rem);
  color: #000000;
  margin-top: 14px;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item {
  width: 15.823%;
  flex-shrink: 0;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item.item-width {
  width: 18.987%;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-head {
  padding-bottom: 0.16rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
  transition: 0.45s ease;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-head:hover .i-head-text {
  color: #e22027;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-head:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-head::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: #e22027;
  transition: 0.6s;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-head .i-head-text {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  overflow-wrap: break-word;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-main {
  padding-top: 0.16rem;
}

/* 2025-4-10 修改 */
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-main .main-item a {
  font-weight: 400;
  /* font-size: var(--font-18); */
  font-size: max(0.18rem, 14px);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.66666667;
  overflow-wrap: break-word;
  transition: 0.6s ease;
}
.header-wrap .nav .nav-item .server-bottom .server-wrap .col-list .item .i-main .main-item a:hover {
  color: #e22027;
}
.header-wrap .nav .nav-item .nav-common-bottom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  white-space: nowrap;
  z-index: 2;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 15px 20px;
}
.header-wrap .nav .nav-item .nav-common-bottom .b-item {
  margin-bottom: 15px;
}
.header-wrap .nav .nav-item .nav-common-bottom .b-item:last-of-type {
  margin-bottom: 0;
}
.header-wrap .nav .nav-item .nav-common-bottom .b-item a {
  font-weight: 400;
  font-size: var(--font-16);
  color: rgba(0, 0, 0, 0.6);
  transition: 0.45s ease;
}
.header-wrap .nav .nav-item .nav-common-bottom .b-item a:hover {
  color: var(--theme);
}
.header-wrap .other {
  margin-left: max(15px, 0.39rem);
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wrap .other .lang {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.header-wrap .other .lang:hover .lang-bottom {
  display: block;
}
.header-wrap .other .lang .lang-top {
  width: 80px;
  height: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .lang .lang-top:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}
.header-wrap .other .lang .lang-top span {
  margin-left: 7px;
  font-weight: 400;
  font-size: var(--font-16);
  color: #ffffff;
}
.header-wrap .other .lang .lang-top::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #cc0000;
  transition: 0.6s ease;
  z-index: -1;
}
.header-wrap .other .lang .lang-bottom {
  position: absolute;
  left: 0;
  top: 100%;
  width: 80px;
  height: auto;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 10px;
  transition: 0.6s ease;
  display: none;
}
.header-wrap .other .lang .lang-bottom a {
  display: block;
  font-weight: 400;
  font-size: var(--font-16);
  color: #101010;
  margin-bottom: 1px solid rgba(0, 0, 0, 0.45);
  text-align: center;
  margin-bottom: 10px;
  transition: 0.45s ease;
}
.header-wrap .other .lang .lang-bottom a:last-of-type {
  margin-bottom: 0;
}
.header-wrap .other .lang .lang-bottom a:hover {
  color: var(--theme);
}
.header-wrap .tel-btn {
  width: 160px;
  height: 40px;
  background: #cc0000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 11px;
}
.header-wrap .tel-btn img {
  display: block;
}
.header-wrap .tel-btn span {
  font-weight: 400;
  font-size: var(--font-16);
  color: #ffffff;
  line-height: 1;
  margin-left: 9px;
}
.header-wrap .phone-btn {
  display: none;
}
/* 底部 */
footer {
  padding-top: 0.98rem;
  background-color: #f7f7f7;
}
footer .f-t {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
/* 修改 */
footer .f-t .foot-left {
  /* width: 25%; */
  width: 32%;
  flex-shrink: 0;
}
footer .f-t .foot-left .foot-logo {
  margin-bottom: max(15px, 0.29rem);
}

/* 限制底部logo尺寸 */
footer .f-t .foot-left .foot-logo img {
  display: block;
  max-width: 148px;
  object-fit: contain;
}
footer .f-t .foot-left .foot-desc .in-line {
  display: flex;
  margin-bottom: 0.28rem;
}
footer .f-t .foot-left .foot-desc .in-line .item {
  margin-right: 0.82rem;
}
footer .f-t .foot-left .foot-desc .in-line .item:last-of-type {
  margin-right: 0;
}
footer .f-t .foot-left .foot-desc .title {
  font-weight: 400;
  font-size: var(--font-14);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1;
  margin-bottom: 9px;
}
footer .f-t .foot-left .foot-desc .info {
  font-weight: 400;
  font-size: var(--font-16);
  color: #000000;
}
footer .f-t .foot-right {
  margin-left: auto;
  width: 49.375%;
  flex-shrink: 0;
}
footer .f-t .foot-right .list {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
footer .f-t .foot-right .list ul {
  width: 25.317%;
  margin-right: 0.94rem;
  max-width: 200px;
}
footer .f-t .foot-right .list ul:last-of-type {
  margin-right: 0;
}
footer .f-t .foot-right .list ul .item-title {
  font-weight: bold;
  font-size: var(--font-20);
  color: #000000;
  line-height: 1.5;
  padding-bottom: max(10px, 0.18rem);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
footer .f-t .foot-right .list ul .item-link {
  font-weight: 400;
  /* font-size: var(--font-16); */
  font-size: max(0.16rem, 14px);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.875;
  transition: 0.45s;
}
footer .f-t .foot-right .list ul .item-link:hover {
  color: var(--theme);
  user-select: none;
  cursor: pointer;
}

/* 2025-6-19 添加 */
footer .f-b {
  margin-top: max(0.65rem, 30px);
}
footer .f-b .top-line {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

footer .f-b .top-line .line-left .link-text,
footer .f-b .top-line .line-left .link {
  font-weight: 400;
  font-size: var(--font-14);
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.5;
}
footer .f-b .top-line .line-left .link {
  margin-right: 10px;
  transition: 0.6s;
}
footer .f-b .top-line .line-left .link:last-of-type {
  margin-right: 0;
}
footer .f-b .top-line .line-left .link:hover {
  color: var(--theme);
}
footer .f-b .top-line .line-right {
  display: flex;
}
footer .f-b .top-line .line-right .item {
  position: relative;
  margin-right: max(15px, 0.24rem);
  cursor: pointer;
}
footer .f-b .top-line .line-right .item:last-of-type {
  margin-right: 0;
}
footer .f-b .top-line .line-right .item:hover .hover-box {
  transform: translateX(-50%) scale(1, 1);
}
footer .f-b .top-line .line-right .item:hover .icon {
  opacity: 1;
}
footer .f-b .top-line .line-right .item:hover .icon.default {
  display: none;
}
footer .f-b .top-line .line-right .item:hover .icon.hover {
  display: block;
}
footer .f-b .top-line .line-right .item .hover-box {
  position: absolute;
  bottom: calc(100% + 20px);
  left: 50%;
  width: max(90px, 1.3rem);
  height: max(90px, 1.3rem);
  background: #ffffff;
  border-radius: 10px;
  padding: 10px;
  transition: 0.6s;
  transform: translateX(-50%) scale(0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .f-b .top-line .line-right .item .hover-box img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
footer .f-b .top-line .line-right .item .icon {
  opacity: 0.4;
}
footer .f-b .top-line .line-right .item .icon.hover {
  display: none;
}
footer .f-b .bottom-line {
  padding-top: max(10px, 0.18rem);
  padding-bottom: max(0.15rem, 10px);
}
footer .f-b .bottom-line .copyright-text,
footer .f-b .bottom-line .copyright-text a {
  font-weight: 400;
  font-size: var(--font-14);
  color: rgba(0, 0, 0, 0.6);
}
footer .f-b .bottom-line .copyright-text.link-text {
  transition: 0.6s;
}
footer .f-b .bottom-line .copyright-text.link-text:hover {
  color: var(--theme);
}
.page-right-top {
  position: fixed;
  z-index: 67;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
  /* 返回顶部 */
}
.page-right-top .page-aside {
  width: 50px;
  height: 50px;
  position: relative;
}
.page-right-top .page-aside .icon {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
}
.page-right-top .page-aside .icon img {
  width: 16px;
}
.page-right-top .page-aside .ware {
  width: 154%;
  height: 154%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.page-right-top .page-aside .ware .w1,
.page-right-top .page-aside .ware .w2 {
  background: #efefef;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* 2025-3-31 修改 */
  animation: widthChange 3s infinite linear alternate;
}
.page-right-top .page-aside .ware .w1 {
  opacity: 0.1;
}
.page-right-top .page-aside .ware .w2 {
  opacity: 0.2;
  animation-delay: 2s;
}
.page-right-top .page-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  user-select: none;
  cursor: pointer;
  background-color: #fff;
  transition: var(--duration);
  display: none;
  margin-top: max(0.3rem, 15px);
  box-shadow: 0 0 10px #ccc;
}
.page-right-top .page-top.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-right-top .page-top img {
  width: 50%;
  object-fit: contain;
}
.page-right-top .page-top .hover {
  display: none;
}
.page-right-top .page-top:hover {
  background-color: var(--theme);
}
.page-right-top .page-top:hover .default {
  display: none;
}
.page-right-top .page-top:hover .hover {
  display: block;
}
@keyframes widthChange {
  from {
    width: 40%;
    height: 40%;
  }
  to {
    width: 100%;
    height: 100%;
  }
}
@keyframes headAnimate {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .header-wrap {
    width: 100%;
    padding: 0 max(0.45rem, 15px);
  }
  .header-wrap .nav {
    display: none;
  }
  .header-wrap .other {
    margin-left: auto;
  }
  .header-wrap .phone-btn {
    width: 30px;
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  .header-wrap .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  .header-wrap .phone-btn span:last-of-type {
    margin-bottom: 0;
  }
  .header-wrap .phone-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .header-wrap .phone-btn.active span:nth-child(2) {
    display: none;
  }
  .header-wrap .phone-btn.active span:nth-child(3) {
    transform: rotate(45deg);
  }
  .phone-nav {
    display: block;
  }
  .header .phone-nav {
    --phone-cate-color: #1f1f1f;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 7;
    width: 100%;
    padding: 20px max(0.45rem, 15px);
    background-color: #fff;
    border-radius: 0 0 20px 20px;
    height: 100vh;
    overflow-y: auto;
    display: none;
  }
  .header .phone-nav .nav-item {
    /* 控制显示和隐藏的 */
    /* 共用的普通下拉 */
    /* 服务下拉 */
  }
  .header .phone-nav .nav-item .nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
  }
  .header .phone-nav .nav-item .nav-top.active a {
    color: var(--theme);
  }
  .header .phone-nav .nav-item .nav-top.active .icon {
    color: var(--theme);
    transform: rotate(45deg);
  }
  .header .phone-nav .nav-item .nav-top a {
    font-size: var(--font-36);
    color: #000;
    transition: var(--duration);
  }
  .header .phone-nav .nav-item .nav-top a:hover {
    color: var(--theme);
  }
  .header .phone-nav .nav-item .nav-top .icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-46);
    color: #000;
    user-select: none;
    cursor: pointer;
    transition: var(--duration);
  }
  .header .phone-nav .nav-item .nav-bottom {
    display: none;
  }
  .header .phone-nav .nav-item .nav-common-bottom {
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .header .phone-nav .nav-item .nav-common-bottom .b-item {
    margin-bottom: 10px;
  }
  .header .phone-nav .nav-item .nav-common-bottom .b-item:last-of-type {
    margin-bottom: 0;
  }
  .header .phone-nav .nav-item .nav-common-bottom .b-item a {
    font-size: var(--font-28);
    color: var(--phone-cate-color);
    transition: var(--duration);
  }
  .header .phone-nav .nav-item .nav-common-bottom .b-item a:hover {
    color: var(--theme);
  }
  .header .phone-nav .nav-item .server-bottom {
    padding-bottom: 15px;
    padding-left: 15px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .item {
    margin-bottom: 15px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 15px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head.active a {
    color: var(--theme);
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head.active .icon {
    color: var(--theme);
    transform: rotate(45deg);
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head a {
    font-size: var(--font-28);
    color: var(--phone-cate-color);
    transition: var(--duration);
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head .icon {
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    cursor: pointer;
    font-size: var(--font-36);
    color: var(--phone-cate-color);
    transition: var(--duration);
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-main {
    text-indent: 2em;
    display: none;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-main .main-item {
    margin-bottom: 10px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-main .main-item:last-of-type {
    margin-bottom: 0;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-main .main-item a {
    font-size: var(--font-22);
    color: rgba(31, 31, 31, 0.75);
  }
  .header .phone-nav .nav-item .server-bottom .col-1 {
    margin-top: 15px;
    width: fit-content;
    display: block;
  }
  .header .phone-nav .nav-item .server-bottom .col-1 .pic img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .header .phone-nav .nav-item .server-bottom .col-1 .text {
    color: var(--phone-cate-color);
    font-size: var(--font-28);
    margin-top: 10px;
    text-align: center;
  }
}
/* 小于768px的时候 */
@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
  .header-wrap .logo-area .min-logo {
    display: none;
  }
  .header-wrap .other .tel-btn {
    display: none;
  }
  /* 手机端导航里面的按钮 */
  .header-wrap .phone-nav .tel-btn {
    margin-left: 0;
  }
  /* 底部处理 */
  footer .f-t {
    flex-wrap: wrap;
  }
  footer .f-t .foot-left {
    width: 100%;
    margin-bottom: max(25px, 0.65rem);
  }
  footer .f-t .foot-right {
    width: 100%;
  }
  footer .f-b .top-line {
    flex-wrap: wrap;
  }
  footer .f-b .top-line .line-left {
    width: 100%;
    /* margin-bottom: 15px; */
    margin-top: 15px;
  }
  footer .f-b .top-line .line-right {
    margin-left: 0;
  }
  footer .f-b .bottom-line .copyright-text {
    display: block;
    margin-bottom: 7px;
  }
}
@media (max-width: 576px) {
  .header-wrap .logo-area .logo img {
    width: 110px;
  }
  .page-right-top {
    right: 10px;
    top: 70%;
  }
  .page-right-top .page-aside,
  .page-right-top .page-top {
    width: 35px;
    height: 35px;
  }
  footer .f-t .foot-right .list {
    flex-wrap: wrap;
  }
  footer .f-t .foot-right .list ul .item-title {
    font-size: 14px;
  }
  footer .f-t .foot-right .list ul .item-link {
    font-size: 12px;
  }
  .page-right-top .page-aside .ware {
    display: none;
  }
  .header .phone-nav .nav-item .nav-top a {
    font-size: 18px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-head a {
    font-size: 16px;
  }
  .header .phone-nav .nav-item .nav-common-bottom .b-item a {
    font-size: 16px;
  }
  .header .phone-nav .nav-item .server-bottom .col-list .i-main .main-item a {
    font-size: 14px;
  }
  .header .phone-nav .nav-item .server-bottom .col-1 .text {
    font-size: 14px;
  }
  .header .phone-nav .nav-item .server-bottom .col-1 .pic img {
    max-width: 140px;
  }
}
/* 下面的代码是从小到大进行书写的 */
/* 大于等于769px的时候 */
@media (min-width: 769px) {
  .header-wrap .phone-nav .tel-btn {
    display: none;
  }
}
/* 大于1200px的时候 */
@media (min-width: 1201px) {
  .header .phone-nav {
    display: none !important;
  }
}

/* 2025-5-6新增加的右侧导航 */
.page-right-menu {
  position: fixed;
  bottom: 10%;
  right: 10px;
  z-index: 67;
  width: 70px;
  box-shadow: 0px 0px 4px 3px rgb(160 173 171 /15%);
  box-sizing: border-box;
  border-radius: 30px 30px;
  padding-top: 20px;
  background: #ffffff;
}

.page-right-menu.pt-0 {
  padding-top: 0;
  background-color: transparent;
  box-shadow: none;
}

.page-right-menu .list {
  padding-bottom: 0;
  /* background: #ffffff; */
}

.page-right-menu .menu-item {
  display: block;
  cursor: pointer;
  user-select: none;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.page-right-menu .menu-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-right-menu .menu-item .icon .hover {
  display: none;
}

.page-right-menu .menu-item .icon img {
  width: 20px;
  object-fit: contain;
}

.page-right-menu .menu-item .text {
  /* font-size: 14px; */
  font-size: 12px;
  color: rgba(0, 0, 0, 0.45);
  text-align: center;
  transition: 0.45s ease;
  margin-top: 5px;
}

.page-right-menu .menu-item:hover .icon .default {
  display: none;
}
.page-right-menu .menu-item:hover .icon .hover {
  display: inline-block;
}

.page-right-menu .menu-item:hover .text {
  color: #cc0000;
}

.page-right-menu .menu-item:hover .show-pic {
  opacity: 1;
  transform: translateY(-50%) scale(1, 1);
}

.page-right-menu .menu-item .show-pic {
  position: absolute;
  right: 105%;
  top: 50%;
  transform: translateY(-50%) scale(1, 0);
  width: 120px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.45s ease;
  opacity: 0;
}

.page-right-menu .menu-item .show-pic img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  object-position: center center;
}

/* 点击展开这折叠 */
.page-right-menu .right-menu-collapse {
  /* font-size: 13px; */
  font-size: 12px;
  text-align: center;
  background-color: #cc0000;
  color: #fff;
  border-radius: 0 0 30px 30px;
  padding: 10px 0;
  cursor: pointer;
  user-select: none;
}

.page-right-menu .right-menu-collapse span {
  text-align: center;
  white-space: nowrap;
  display: block;
}

.page-right-menu .right-menu-collapse .open {
  display: none;
}

/* 切换类名  */

.page-right-menu .right-menu-collapse.active .open {
  display: block;
}

.page-right-menu .right-menu-collapse.active .close {
  display: none;
}

@media (max-width: 576px) {
  .page-right-menu {
    width: 60px;
  }
  .page-right-menu .menu-item .icon img {
    width: 14px;
  }

  .page-right-menu .menu-item .text {
    font-size: 12px;
  }

  .page-right-menu .right-menu-collapse {
    font-size: 12px;
  }

  .page-right-menu {
    bottom: 5%;
    right: 5px;
  }
  .page-right-menu .menu-item {
    margin-bottom: 10px;
  }
}

/* 2025-6-19 添加扫码添加微信区域 */

footer .f-qrcode {
  width: 120px;
}
footer .f-qrcode .img {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

footer .f-qrcode .img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

footer .f-qrcode p {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 576px) {
  footer .f-qrcode {
    margin-left: auto;
    margin-right: auto;
    width: 100px;
  }

  footer .f-qrcode .img {
    height: 100px;
    padding: 6px;
  }

  footer .f-t .foot-right .list ul {
    margin-right: 0;
    width: 28.5%;
  }
}
