:root {
  --theme: #e60012;
  --duration: 0.45s;
  --header-height: max(1rem, 80px);
  /* --- font40以下 */
  --font12: clamp(12px, 0.12rem, 12px);
  --font14: clamp(12px, 0.14rem, 14px);
  --font15: clamp(12px, 0.15rem, 15px);
  --font16: clamp(13px, 0.16rem, 16px);
  --font17: clamp(13px, 0.17rem, 17px);
  --font18: clamp(14px, 0.18rem, 18px);
  --font20: clamp(15px, 0.2rem, 20px);
  --font22: clamp(16px, 0.22rem, 22px);
  --font24: clamp(17px, 0.24rem, 24px);
  --font26: clamp(18px, 0.26rem, 26px);
  --font27: clamp(18px, 0.27rem, 27px);
  --font28: clamp(18px, 0.28rem, 28px);
  --font30: clamp(20px, 0.3rem, 30px);
  --font32: clamp(20px, 0.32rem, 32px);
  --font34: clamp(22px, 0.34rem, 34px);
  --font36: clamp(22px, 0.36rem, 36px);
  --font38: clamp(24px, 0.38rem, 38px);
  /* --- font40 */
  --font40: clamp(23px, 0.4rem, 40px);
  --font42: clamp(24px, 0.42rem, 42px);
  --font44: clamp(24px, 0.44rem, 44px);
  --font46: clamp(25px, 0.46rem, 46px);
  --font48: clamp(26px, 0.48rem, 48px);
  /* --- font50 */
  --font50: clamp(28px, 0.5rem, 50px);
  --font52: clamp(28px, 0.52rem, 52px);
  --font54: clamp(28px, 0.54rem, 54px);
  --font56: clamp(28px, 0.56rem, 56px);
  --font58: clamp(29px, 0.58rem, 58px);
  /* --- font60 */
  --font60: clamp(30px, 0.6rem, 60px);
  --font62: clamp(31px, 0.62rem, 62px);
  --font64: clamp(31px, 0.66rem, 64px);
  --font66: clamp(31px, 0.66rem, 66px);
  --font68: clamp(31px, 0.68rem, 68px);
  /* --- font70以及以上 */
  --font70: clamp(32px, 0.7rem, 70px);
  --font72: clamp(32px, 0.72rem, 72px);
  --font80: clamp(32px, 0.8rem, 80px);
  --font88: clamp(32px, 0.88rem, 88px);
  --font100: 1rem;
  --font120: 1.2rem;
  --font160: 1.6rem;
  --font230: 2.3rem;
  --font400: 4rem;
  --space-min: 30px;
  --space: 45px;
  --liner: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  --border: 1px solid rgba(204, 204, 204, 0.5);
  --mask: rgba(255, 255, 255, 0.6);
  --mask-filter: blur(6px);
  --more-w: 135px;
  --more-h: 35px;
}
html {
  font-size: calc(100vw / 19.2);
}
@media (min-width: 1921px) {
  html {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: calc(100vw / 15.36);
  }
}
/* 引入字体包 */
@font-face {
  font-family: Source Han Sans CN;
  src: url("../fonts/SourceHanSansSC-Regular-2.otf");
  font-display: swap;
}
@font-face {
  font-family: SourceHanSansCN-Medium;
  src: url(../fonts/SourceHanSansSC-Medium-2.otf);
  font-display: swap;
}
@font-face {
  font-family: SourceHanSansCN-Light;
  src: url(../fonts/Source-Sans-Pro-Light-2.otf);
  font-display: swap;
}
html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: #ccc;
  cursor: pointer;
}
html::-webkit-scrollbar-thumb {
  background-color: var(--theme);
  border-radius: 10px;
}
body {
  font-family: "Source Han Sans CN", sans-serif;
  line-height: normal;
  font-size: 14px;
}
body.lock {
  overflow: hidden;
}
input,
select,
textarea,
button {
  font-family: "Source Han Sans CN", sans-serif;
}
.wrap {
  max-width: 1536px;
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .wrap {
    width: 92%;
  }
}
@media (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .phone-hide {
    display: none !important;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  transition: 0.6s ease linear;
  height: var(--header-height);
  z-index: 99;
  transition: 0.6s linear;
  /* 激活的样式 */
}
header.active,
header.hover {
  background: #ffffff;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.3);
}
header.active .header-wrap .nav .nav-item .item-top a,
header.hover .header-wrap .nav .nav-item .item-top a {
  color: #333333;
}
header.active .header-wrap .other .search img,
header.hover .header-wrap .other .search img {
  filter: none;
}
header.active .header-wrap .other .line,
header.hover .header-wrap .other .line {
  background-color: #014099;
}
header.active .header-wrap .other .lang .lang-head .icon img,
header.hover .header-wrap .other .lang .lang-head .icon img {
  filter: none;
}
header.active .header-wrap .other .lang .lang-head .current-text,
header.hover .header-wrap .other .lang .lang-head .current-text {
  color: #014099;
}
header.active .head-mask,
header.hover .head-mask {
  opacity: 0;
}
header.scroll {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
header.scroll .head-mask {
  opacity: 0;
}
.header-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
.header-wrap .logo {
  display: block;
}
.header-wrap .logo img {
  display: block;
  width: max(180px, 2.5rem);
}
.header-wrap .nav {
  margin-left: max(1.55rem, 30px);
  display: flex;
  align-items: center;
  height: 100%;
}
.header-wrap .nav .nav-item {
  height: 100%;
  margin-right: max(10px, 0.4rem);
  position: relative;
  /* 当前激活的和鼠标移入的样式 */
  /* 产品下拉 */
  /* 共用多图排列下拉 */
  /* 关于我们下拉  */
}
.header-wrap .nav .nav-item:last-child {
  margin-right: 0;
}
.header-wrap .nav .nav-item.active .item-top a,
.header-wrap .nav .nav-item:hover .item-top a {
  color: #e70113 !important;
}
.header-wrap .nav .nav-item .item-top {
  height: 100%;
}
.header-wrap .nav .nav-item .item-top a {
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font18);
  color: #ffffff;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .item-bottom {
  display: none;
}
.header-wrap .nav .nav-item .pro-bottom {
  position: fixed;
  left: 0;
  top: var(--header-height);
  background: #ffffff;
  box-shadow: -19px 19px 18px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  max-height: 490px;
  overflow-y: auto;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap {
  display: flex;
  /* 显示当前一级分类信息 */
  /* 一级分类 */
  /* 二级分类 */
  /* 三级里面的swiper */
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one {
  width: 23.56770833%;
  flex-shrink: 0;
  margin-right: 1.19rem;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item {
  display: none;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item.show {
  display: block;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic {
  position: relative;
  overflow: hidden;
  margin-bottom: max(0.23rem, 10px);
  border-radius: 10px;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 53.31491713%;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .cate {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font24);
  color: #333333;
  margin-bottom: max(0.19rem, 10px);
  transition: var(--duration);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .name,
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item .text .model {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.625;
  overflow-wrap: break-word;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item:hover .pic img {
  transform: scale(1.05);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .current-cate-one .item:hover .text .cate {
  color: var(--theme);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one {
  width: 15.95052083%;
  flex-shrink: 0;
  border-right: 1px solid #ccc;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item:not(:last-child) {
  margin-bottom: max(0.19rem, 10px);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item.current a {
  color: #f71f26;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item.current a img {
  opacity: 1;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item a {
  display: flex;
  align-items: center;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font18);
  line-height: 1.5;
  transition: var(--duration);
  width: fit-content;
  color: #666666;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-one .one-item a img {
  display: block;
  width: 7px;
  margin-left: max(0.25rem, 10px);
  opacity: 0;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two {
  width: 27.21354167%;
  flex-shrink: 0;
  padding-left: max(20px, 0.3rem);
  margin-right: max(15px, 0.3rem);
  border-right: 1px solid #ccc;
  transition: border-color var(--theme);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section {
  display: none;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section.show {
  display: block;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item {
  width: inherit;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item:not(:last-child) {
  margin-bottom: max(0.14rem, 10px);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item.current .item-link {
  color: #f71f26;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item.current .item-link img {
  opacity: 1;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link {
  display: flex;
  align-items: center;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  color: #666666;
  line-height: 1.5;
  transition: var(--duration);
  width: fit-content;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-two .two-section .two-item .item-link img {
  height: 12px;
  opacity: 0;
  margin-right: 10px;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three {
  width: 27.47395833%;
  margin-left: auto;
  flex-shrink: 0;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item {
  display: none;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item.show {
  display: block;
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item:not(:last-child) {
  margin-bottom: max(0.14rem, 10px);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item a {
  font-size: var(--font16);
  color: #666;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  line-height: 1.5;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .pro-bottom .pro-bottom-wrap .cate-three .cate-three-item .list .item a:hover {
  color: #f71f26;
}
.header-wrap .nav .nav-item .common-head-bottom {
  position: fixed;
  left: 0;
  top: var(--header-height);
  width: 100%;
  height: auto;
  background: #ffffff;
  box-shadow: -19px 19px 18px 0px rgba(0, 0, 0, 0.1);
  padding-top: max(0.57rem, 30px);
  padding-bottom: max(1.08rem, 30px);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap {
  display: flex;
  gap: 30px max(15px, 0.3rem);
  justify-content: center;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item {
  width: 18.42447917%;
  flex-shrink: 0;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .pic img {
  transform: scale(1.05);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .title {
  color: var(--theme);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-text {
  color: var(--theme);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-icon .default {
  opacity: 0;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item:hover .text .more .more-icon .hover {
  opacity: 1;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic::after {
  content: "";
  display: block;
  padding-bottom: 62.8975265%;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .pic img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--duration, 0.45s);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text {
  padding-left: 10px;
  padding-right: 10px;
  overflow-wrap: break-word;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .title {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  line-height: 1.55555556;
  margin-top: max(0.15rem, 10px);
  text-align: center;
  overflow-wrap: break-word;
  transition: var(--duration);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more {
  margin-top: max(0.24rem, 15px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  user-select: none;
  cursor: pointer;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-text {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #666666;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon {
  width: 5px;
  position: relative;
  z-index: 2;
  margin-left: 11px;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon img {
  display: block;
  width: 100%;
  object-fit: contain;
  transition: var(--duration, 0.45s);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon .default {
  opacity: 1;
}
.header-wrap .nav .nav-item .common-head-bottom .head-bottom-wrap .item .text .more .more-icon .hover {
  opacity: 0;
}
.header-wrap .nav .nav-item .about-head-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  background: #ffffff;
  border-radius: 0px 0px 10px 10px;
  width: 118px;
  padding-top: max(15px, 0.19rem);
  padding-bottom: max(15px, 0.23rem);
}
.header-wrap .nav .nav-item .about-head-bottom .item {
  margin-bottom: 10px;
}
.header-wrap .nav .nav-item .about-head-bottom .item:last-child {
  margin-bottom: 0;
}
.header-wrap .nav .nav-item .about-head-bottom .item .text {
  display: block;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 300;
  font-size: var(--font16);
  line-height: 1.5;
  color: #666666;
  transition: var(--duration);
  text-align: center;
}
.header-wrap .nav .nav-item .about-head-bottom .item .text:hover {
  color: #f71e26;
}
.header-wrap .other {
  margin-left: auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-wrap .other .search {
  margin-right: max(0.2rem, 10px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
}
.header-wrap .other .search img {
  transition: var(--duration);
  filter: brightness(0) invert(1);
}
.header-wrap .other .line {
  width: 1px;
  height: 14px;
  background-color: #fff;
  flex-shrink: 0;
}
.header-wrap .other .lang {
  margin-left: max(0.2rem, 10px);
  position: relative;
  z-index: 10;
  height: 100%;
}
.header-wrap .other .lang:hover .lang-list {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  pointer-events: initial;
}
.header-wrap .other .lang .lang-head {
  display: flex;
  align-items: center;
  user-select: none;
  cursor: pointer;
  height: 100%;
}
.header-wrap .other .lang .lang-head .icon img {
  display: block;
  filter: brightness(0) invert(1);
}
.header-wrap .other .lang .lang-head .current-text {
  font-weight: 400;
  font-size: 12px;
  color: #ffffff;
  line-height: 1;
  white-space: nowrap;
  margin-left: 6px;
}
.header-wrap .other .lang .lang-list {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(20px);
  width: 100px;
  height: auto;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: var(--duration);
  border-radius: 0 0 10px 10px;
  opacity: 0;
  pointer-events: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header-wrap .other .lang .lang-list .lang-item {
  margin-bottom: 15px;
}
.header-wrap .other .lang .lang-list .lang-item:last-child {
  margin-bottom: 0;
}
.header-wrap .other .lang .lang-list .lang-item .text {
  color: #000000;
  font-size: var(--font14);
  line-height: 1;
  transition: var(--duration);
  display: block;
  text-align: center;
}
.header-wrap .other .lang .lang-list .lang-item .text:hover {
  color: var(--theme);
}
.header-wrap .other .head-contact {
  width: max(1.2rem, 100px);
  height: 36px;
  background: linear-gradient(90deg, #d71418, #e60012, #ff3131);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  font-weight: 400;
  font-size: var(--font16);
  color: #ffffff;
  margin-left: max(0.51rem, 20px);
  border: 1px solid transparent;
}
.header-wrap .head-search {
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  background-color: #fff;
  padding-top: max(20px, 0.45rem);
  padding-bottom: max(20px, 0.45rem);
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  display: none;
}
.header-wrap .head-search .search-wrap {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 7;
}
.header-wrap .head-search .search-wrap input {
  display: block;
  width: 100%;
  height: max(30px, 0.6rem);
  padding-left: 20px;
  padding-right: max(0.6rem, 45px);
  font-size: 16px;
  color: #000000;
  transition: var(--duration);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
  position: relative;
  z-index: 2;
}
.header-wrap .head-search .search-wrap input:focus {
  border-bottom-color: #014099;
}
.header-wrap .head-search .search-wrap input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-wrap .head-search .search-wrap .search-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  cursor: pointer;
  z-index: 2;
}
.header-wrap .head-search .search-wrap .search-btn:hover img {
  filter: none;
}
.header-wrap .head-search .search-wrap .search-btn img {
  display: block;
  width: 18px;
  object-fit: contain;
  filter: grayscale(1);
  transition: var(--duration);
}
.head-mask {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  width: 100%;
  height: auto;
  transition: var(--duration);
}
.head-mask img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
footer {
  background-color: #f8f8f8;
  padding-top: max(1.18rem, var(--space));
  padding-bottom: max(0.72rem, var(--space));
}
footer .footer-wrap {
  display: flex;
  align-items: flex-start;
}
footer .footer-wrap .footer-left {
  width: 56.31510417%;
  flex-shrink: 0;
}
footer .footer-wrap .footer-left .foot-nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: max(0.35rem, 20px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
footer .footer-wrap .footer-left .foot-nav .nav-item {
  margin-right: 10px;
}
footer .footer-wrap .footer-left .foot-nav .nav-item:last-child {
  margin-right: 0;
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-t {
  margin-bottom: max(0.25rem, 15px);
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .t-link {
  font-weight: 400;
  font-size: var(--font18);
  color: #333333;
  transition: var(--duration);
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .t-link:hover {
  color: var(--theme);
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon {
  display: none;
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text {
  margin-bottom: 5px;
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text:last-child {
  margin-bottom: 0;
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text .link {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-weight: 400;
  font-size: var(--font14);
  color: #666666;
  line-height: 1.5;
  transition: var(--duration);
  overflow-wrap: break-word;
}
footer .footer-wrap .footer-left .foot-nav .nav-item .item-b .text .link:hover {
  color: var(--theme);
}
footer .footer-wrap .footer-left .foot-friend-link {
  padding-top: max(0.3rem, 15px);
  padding-bottom: max(0.3rem, 15px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  margin-bottom: max(20px, 0.3rem);
}
footer .footer-wrap .footer-left .foot-friend-link .custom {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
footer .footer-wrap .footer-left .foot-friend-link .custom .icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
footer .footer-wrap .footer-left .foot-friend-link .custom .text {
  font-weight: 400;
  font-size: var(--font16);
  color: transparent;
  background: linear-gradient(0deg, #d71418 0%, #e60012 0%, #ff3131 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list {
  display: flex;
  align-items: center;
  margin-left: max(0.35rem, 15px);
  flex-wrap: wrap;
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item {
  padding-right: max(0.2rem, 10px);
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item:last-child .link::after {
  display: none;
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-size: var(--font14);
  color: #666666;
  transition: var(--duration);
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link:hover {
  color: var(--theme);
}
footer .footer-wrap .footer-left .foot-friend-link .friend-list .friend-item .link::after {
  content: "|";
  padding-left: max(0.2rem, 10px);
}
footer .footer-wrap .footer-left .foot-info {
  margin-bottom: 20px;
}
footer .footer-wrap .footer-left .foot-info p,
footer .footer-wrap .footer-left .foot-info a,
footer .footer-wrap .footer-left .foot-info span {
  font-family: SourceHanSansCN-Light, sans-serif;
  font-size: var(--font14);
  color: #666666;
  line-height: 2.28571429;
  transition: var(--duration);
}
footer .footer-wrap .footer-left .foot-info a:hover {
  color: var(--theme);
}
footer .footer-wrap .footer-left .foot-follow {
  display: flex;
  align-items: center;
}
footer .footer-wrap .footer-left .foot-follow .text {
  color: #666;
  font-size: var(--font18);
  margin-right: max(0.2rem, 10px);
  line-height: 1;
  white-space: nowrap;
}
footer .footer-wrap .footer-left .foot-follow .icon-list {
  display: flex;
  align-items: center;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  margin-right: max(0.2rem, 10px);
  width: 21px;
  position: relative;
  z-index: 10;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:last-child {
  margin-right: 0;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon img {
  object-fit: contain;
  object-position: center center;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon .default {
  display: block;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .icon .hover {
  display: none;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .qrcode {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  bottom: 115%;
  width: 120px;
  height: 120px;
  background-color: #fff;
  padding: 6px;
  transition: var(--duration);
  box-shadow: 0 0 5px rgba(204, 204, 204, 0.6);
  border-radius: 10px;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .icon .default {
  display: none;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .icon .hover {
  display: block;
}
footer .footer-wrap .footer-left .foot-follow .icon-list .icon-item:hover .qrcode {
  transform: translateX(-50%) scale(1, 1);
}
footer .footer-wrap .footer-right {
  width: 30.72916667%;
  flex-shrink: 0;
  margin-left: auto;
}
footer .footer-wrap .footer-right .foot-logo {
  margin-bottom: max(0.5rem, 20px);
}
footer .footer-wrap .footer-right .foot-logo img {
  display: block;
  width: max(2.54rem, 150px);
  object-fit: contain;
}
footer .footer-wrap .footer-right .foot-name {
  font-family: Source Han Sans CN;
  font-weight: 500;
  font-size: var(--font24);
  background: linear-gradient(0deg, #d71418 0%, #e60012 0%, #ff3131 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: max(0.2rem, 10px);
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
footer .footer-wrap .footer-right .foot-info-list {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
footer .footer-wrap .footer-right .foot-info-list .foot-info-item {
  display: flex;
  align-items: center;
  margin-bottom: max(0.2rem, 10px);
}
footer .footer-wrap .footer-right .foot-info-list .foot-info-item:last-child {
  margin-bottom: 0;
}
footer .footer-wrap .footer-right .foot-info-list .foot-info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
}
footer .footer-wrap .footer-right .foot-info-list .foot-info-item .text {
  margin-left: 10px;
  font-family: SourceHanSansCN-Light, sans-serif;
  font-size: var(--font16);
  color: #333333;
}
footer .footer-wrap .footer-right .foot-qrcode-area {
  margin-top: max(0.24rem, 20px);
  display: flex;
  align-items: flex-start;
}
footer .footer-wrap .footer-right .foot-qrcode-area .item {
  margin-right: max(0.4rem, 25px);
}
footer .footer-wrap .footer-right .foot-qrcode-area .item:last-child {
  margin-right: 0;
}
footer .footer-wrap .footer-right .foot-qrcode-area .item .img {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  border: 1px solid rgba(204, 204, 204, 0.3);
}
footer .footer-wrap .footer-right .foot-qrcode-area .item .img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}
footer .footer-wrap .footer-right .foot-qrcode-area .item .text {
  font-size: var(--font16);
  text-align: center;
  margin-top: 10px;
  color: #666;
}
.foot-aside {
  position: fixed;
  right: max(0.45rem, 15px);
  bottom: 6%;
  z-index: 99;
  --w: 52px;
}
.foot-aside .aside-item {
  position: relative;
  z-index: 10;
}
.foot-aside .aside-item:hover .icon {
  background-color: #d71418;
  border-color: transparent;
}
.foot-aside .aside-item:hover .icon img {
  filter: brightness(0) invert(1);
}
.foot-aside .aside-item.hover-aside.hover .hover-content {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(0);
}
.foot-aside .aside-item .hover-content {
  position: absolute;
  right: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(50%);
  transition: var(--duration);
  top: 0;
  padding-right: 10px;
}
.foot-aside .aside-item .qrcode {
  width: 120px;
  border-radius: 10px;
  padding: 6px;
  background-color: #fff;
}
.foot-aside .aside-item .qrcode img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.foot-aside .aside-item .form-content {
  top: auto;
  bottom: -10%;
}
.foot-aside .aside-item .form-content.show {
  opacity: 1;
  pointer-events: initial;
  transform: translateX(0);
}
.foot-aside .aside-item .form-content .form {
  background-color: #fff;
  border-radius: max(0.2rem, 10px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 20px max(0.25rem, 15px);
  width: max(3rem, 200px);
}
.foot-aside .aside-item .form-content .form .close {
  width: fit-content;
  margin-left: auto;
  user-select: none;
  cursor: pointer;
  margin-bottom: 10px;
}
.foot-aside .aside-item .form-content .form .close:hover img {
  filter: none;
}
.foot-aside .aside-item .form-content .form .close img {
  width: 20px;
  object-fit: contain;
  display: block;
  transition: var(--duration);
  filter: brightness(0);
}
.foot-aside .aside-item .form-content .form .form-title {
  font-size: var(--font20);
  color: #000;
  margin-bottom: 15px;
  font-weight: 600;
  user-select: none;
}
.foot-aside .aside-item .form-content .form .input {
  display: block;
  width: 100%;
  height: max(0.4rem, 30px);
  border: 1px solid #ccc;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 15px;
  font-size: var(--font14);
  transition: var(--duration);
  color: #101010;
}
.foot-aside .aside-item .form-content .form .input::placeholder {
  color: #999;
}
.foot-aside .aside-item .form-content .form .input:focus {
  border-color: var(--theme);
}
.foot-aside .aside-item .form-content .form .textarea {
  height: max(1.1rem, 90px);
  display: block;
  width: 100%;
  resize: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px;
}
.foot-aside .aside-item .form-content .form .textarea:focus {
  border-color: var(--theme);
}
.foot-aside .aside-item .form-content .form .submit-btn {
  width: 110px;
  height: 35px;
  background: #e70112;
  border-radius: 24px;
  font-size: var(--font16);
  color: #fff;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  user-select: none;
  cursor: pointer;
}
.foot-aside .aside-item .icon {
  display: block;
  width: var(--w);
  height: var(--w);
  background: #ffffff;
  border: 1px solid rgba(204, 204, 204, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  cursor: pointer;
  transition: var(--duration);
  border-top: none;
}
.foot-aside .aside-item .icon img {
  transition: var(--duration);
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  object-position: center center;
}
.foot-aside .aside-item:last-child .icon {
  border-radius: 0 0 3px 3px;
}
.foot-aside .aside-item:first-child .icon {
  border-top: 1px solid rgba(204, 204, 204, 0.5);
  border-radius: 3px 3px 0 0;
}
.phone-nav {
  display: none;
}
.common-footer-link {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: max(0.35rem, 20px);
  padding-bottom: max(0.35rem, 20px);
}
.common-footer-link .list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-footer-link .list .item {
  padding-left: max(20px, 1.46rem);
  padding-right: 1.46rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.common-footer-link .list .item:hover .icon img {
  filter: none;
}
.common-footer-link .list .item:hover .text {
  color: var(--theme);
}
.common-footer-link .list .item:first-child {
  padding-left: 0;
}
.common-footer-link .list .item:last-child {
  padding-right: 0;
  border-right: none;
}
.common-footer-link .list .item .icon {
  height: max(0.51rem, 30px);
  display: flex;
  align-items: center;
}
.common-footer-link .list .item .icon img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: var(--duration);
  max-height: 100%;
  filter: brightness(0) invert(1);
}
.common-footer-link .list .item .text {
  font-weight: 400;
  font-size: var(--font18);
  color: #fff;
  text-align: center;
  margin-top: 17px;
  transition: var(--duration);
}
@media (max-width: 1450px) {
  .header-wrap .nav {
    margin-left: 1rem;
  }
}
@media (max-width: 1200px) {
  /* 隐藏手机端nav */
  .header-wrap .nav {
    display: none;
  }
  .phone-btn {
    width: 30px;
    display: block;
    margin-left: 15px;
    user-select: none;
    cursor: pointer;
  }
  .phone-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--theme);
    margin-bottom: 5px;
    transition: all 0.6s ease;
  }
  .phone-btn span:last-child {
    margin-bottom: 0;
  }
  .phone-nav {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: #fff;
    overflow-y: auto;
    padding: 30px 0;
    border-top: 1px solid #cccccc;
    display: none;
    --padding: 7%;
    /* 点击展开的下级 */
  }
  .phone-nav::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
    background-color: #ccc;
  }
  .phone-nav::-webkit-scrollbar-thumb {
    background-color: var(--theme);
    border-radius: 10px;
  }
  .phone-nav .nav-item {
    margin-bottom: 10px;
  }
  .phone-nav .nav-item .item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    cursor: pointer;
    padding-left: var(--padding);
    padding-right: var(--padding);
    border-bottom: var(--border);
    padding-bottom: 10px;
  }
  .phone-nav .nav-item .item-top.active a {
    color: var(--theme);
  }
  .phone-nav .nav-item .item-top.active .item-top-icon img {
    transform: rotate(90deg);
    filter: none;
  }
  .phone-nav .nav-item .item-top a {
    font-size: 18px;
    color: #333;
    transition: var(--duration);
  }
  .phone-nav .nav-item .item-top a:hover {
    color: var(--theme);
  }
  .phone-nav .nav-item .item-top .item-top-icon {
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
  }
  .phone-nav .nav-item .item-top .item-top-icon img {
    width: 10px;
    filter: grayscale(1);
    transition: var(--duration);
  }
  .phone-nav .nav-item .item-bottom {
    display: none;
    /* 其余共用的 */
    margin-top: 10px;
    /* 关于我们的 */
    /* 产品特有的 */
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap::-webkit-scrollbar {
    height: 6px;
    border-radius: 10px;
    background-color: #ccc;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap::-webkit-scrollbar-thumb {
    background-color: var(--theme);
    border-radius: 10px;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item {
    width: 100%;
    flex-shrink: 0;
    margin-right: 0 !important;
    padding-left: calc(var(--padding) + 1em);
    padding-right: calc(var(--padding) + 1em);
    border-bottom: var(--border);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item:last-child {
    margin-right: 0;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .pic {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    display: none;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .pic::after {
    content: "";
    display: block;
    padding-bottom: 62.8975265%;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .pic img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--duration, 0.45s);
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .text {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    overflow-wrap: break-word;
    text-align: left;
    margin-top: 0;
  }
  .phone-nav .nav-item .item-bottom.about-head-bottom {
    padding-left: 1em;
    padding-right: 1em;
    overflow-wrap: break-word;
  }
  .phone-nav .nav-item .item-bottom.about-head-bottom .item {
    margin-top: 6px;
  }
  .phone-nav .nav-item .item-bottom.about-head-bottom .item .text {
    font-size: 14px;
    color: #666;
    text-align: center;
    transition: var(--duration);
  }
  .phone-nav .nav-item .item-bottom.about-head-bottom .item .text:hover {
    color: var(--theme);
  }
  .phone-nav .nav-item .item-bottom .bottom-section {
    margin-bottom: 10px;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: calc(var(--padding) + 1em);
    padding-right: calc(var(--padding) + 1em);
    padding-bottom: 10px;
    border-bottom: var(--border);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active .item-link {
    color: var(--theme);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top.active .icon {
    transform: rotate(90deg);
    opacity: 1;
    filter: none;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top .item-link {
    font-size: 16px;
    color: #333;
    transition: var(--duration);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top .icon {
    width: 8px;
    filter: grayscale(1);
    transition: var(--duration);
    opacity: 0.6;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: none;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two {
    padding-left: calc(var(--padding) + 0.5em);
    padding-right: calc(var(--padding) + 0.5em);
    padding-bottom: 10px;
    border-bottom: var(--border);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item a {
    font-size: 15px;
    color: #333;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item img {
    transition: var(--duration);
    width: 7px;
    filter: grayscale(1);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active a {
    color: var(--theme);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .two-item.active img {
    transform: rotate(90deg);
    filter: none;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-content {
    display: none;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 20px;
    column-gap: 10px;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list .three-item {
    padding-left: 6px;
    padding-right: 6px;
    overflow-wrap: break-word;
    padding-bottom: 10px;
    border-bottom: var(--border);
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .section-two .three-list .three-item a {
    font-size: 14px;
    color: #333;
    transition: var(--duration);
  }
  .phone-nav .item-bottom .icon {
    width: 6px;
  }
  .phone-nav .item-bottom .more-icon img {
    width: 6px;
  }
}
@media (max-width: 992px) {
  footer .footer-wrap {
    flex-wrap: wrap;
  }
  footer .footer-wrap .footer-left {
    width: 100%;
  }
  footer .footer-wrap .footer-right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    order: -1;
    margin-bottom: 30px;
  }
  footer .footer-wrap .footer-right .foot-qrcode-area .item .img {
    width: 105px;
    height: 105px;
  }
  footer .footer-wrap .footer-right .foot-qrcode-area {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  footer .footer-wrap .footer-left .foot-nav {
    display: none;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item {
    margin-bottom: 15px;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .t-link {
    color: var(--theme);
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .phone-icon span:nth-child(1) {
    background-color: var(--theme);
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t.active .phone-icon span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(90deg);
    background-color: var(--theme);
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .t-link {
    transition: var(--duration);
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item {
    margin-right: 0;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-b {
    display: none;
    padding-left: 1em;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon {
    display: block;
    position: relative;
    width: 15px;
    height: 15px;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span {
    background-color: #333333;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--duration);
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span:nth-child(1) {
    width: 100%;
    height: 1px;
  }
  footer .footer-wrap .footer-left .foot-nav .nav-item .item-t .phone-icon span:nth-child(2) {
    width: 1px;
    height: 100%;
  }
  .foot-aside {
    display: none;
  }
}
@media (max-width: 576px) {
  :root {
    --header-height: 65px;
  }
  .header-wrap .logo img {
    width: 120px;
    object-fit: contain;
  }
  .header-wrap .other .lang .lang-head .icon img {
    width: 14px;
  }
  .header-wrap .other .head-contact {
    width: 80px;
    height: 30px;
    margin-left: 10px;
    display: none;
  }
  .phone-nav .nav-item .item-top a {
    font-size: 16px;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-top .item-link {
    font-size: 14px;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .b-item {
    width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .phone-nav .nav-item .item-bottom .bottom-section .section-bottom .b-item .text {
    font-size: 12px;
  }
  .phone-nav .nav-item .item-bottom.common-head-bottom .head-bottom-wrap .item .pic {
    border-radius: 6px;
  }
  footer .footer-wrap .footer-left .foot-friend-link {
    flex-wrap: wrap;
  }
  footer .footer-wrap .footer-left .foot-friend-link .custom {
    width: 100%;
  }
  footer .footer-wrap .footer-left .foot-friend-link .friend-list {
    margin-left: 0;
    width: 100%;
    margin-top: 10px;
  }
  footer .footer-wrap .footer-left .foot-info p,
  footer .footer-wrap .footer-left .foot-info a,
  footer .footer-wrap .footer-left .foot-info span {
    line-height: 1.7;
  }
  footer .footer-wrap .footer-left .foot-follow {
    display: none;
  }
  .common-footer-link .list .item .text {
    margin-top: 10px;
  }
  footer {
    padding-bottom: 10px;
  }
}
