@charset "UTF-8";

*,
*::after,
*::before {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* 移除点击高亮 */
}

/* 基础元素重置 */
html,
body {
  padding: 0;
  margin: 0;
  text-size-adjust: 100%;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  appearance: none; /* 统一外观 */
  width: 3px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}
::-webkit-scrollbar-thumb:active {
  background: #666;
}

/* 图片重置 */
img {
  border: 0;
}

/* 标题重置（修复了重复的h5选择器） */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* 段落/强调元素 */
p {
  margin: 0;
  padding: 0;
}
b,
strong {
  font-weight: bolder;
}

/* 链接样式 */
a {
  background-color: transparent;
  text-decoration: none;
  outline: none;
  color: #221815;
}
a:hover,
a:focus,
a:active {
  color: #221815;
  transition: 0.3s;
}

/* 列表重置（增加了ol元素） */
ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 表单元素统一设置 */
input,
button,
textarea {
  outline: none;
  -webkit-appearance: none;
  font-family: inherit; /* 保持字体一致 */
}
input {
  border: none;
}
textarea {
  font-family:
    Arial, "Open Sans", "PingFang SC", "Microsoft YaHei", "Helvetica Neue",
    "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  overflow: auto;
  resize: none;
}
button {
  cursor: pointer;
}

/* 表格重置 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 工具类（简化了前缀写法） */
.flex {
  display: flex;
  flex-wrap: wrap;
}
.position {
  position: relative;
}
.overflow {
  overflow: hidden;
}
.background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*  */
:root {
  /* 主色 */
  --color-primary: #01004d;
  /* 辅助色 */
  /* background: linear-gradient(to right, #4947de, #66c5cc); */
}
/*  */
body {
  margin: 0 auto;
  line-height: 1.4;
  font-size: 16px;
  font-family:
    Arial, "PingFang SC", "Microsoft YaHei", "Helvetica Neue",
    "Hiragino Sans GB", "WenQuanYi Micro Hei", sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* swiper */
.swiper-button-next,
.swiper-button-prev {
  top: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  transition: 0.3s;
  border-radius: 40px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 12px;
  color: #fff;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--color-primary);
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: #fff;
}

@media (max-width: 1200px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
}

/*  */
.cp-container {
  margin: 0 auto;
  max-width: 1680px;
  width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

@media (max-width: 1440px) {
  .cp-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1366px) {
  .cp-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .cp-container {
    width: 100%;
  }
}

/* cp-pages-title */

.cp-page-title {
  padding-bottom: 30px;
}

.cp-page-title h3 {
  font-size: 36px;
  color: var(--color-primary);
  text-align: center;
}

.cp-page-title.flex {
  justify-content: space-between;
  align-items: center;
}

.cp-page-title.flex .cp-left {
  position: relative;
}

/*  */

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.px-100 {
  padding-left: 100px;
  padding-right: 100px;
}

/* padding-top */
.pt-100 {
  padding-top: 100px;
}

/* padding-bottom */
.pb-100 {
  padding-bottom: 100px;
}

@media (max-width: 768px) {
  .py-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .px-100 {
    padding-left: 50px;
    padding-right: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
}

.mt-30 {
  margin-top: 30px;
}
.mt-50 {
  margin-top: 50px;
}

/* button */
.cp-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: transparent;
  user-select: none;
  overflow: hidden;
  padding: 0 20px;
  min-width: 100px;
  line-height: 48px;
  height: 50px;
  border-radius: 50px;
}

.cp-btn::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 0;
  height: 100%;
  background: linear-gradient(to right, #4947de, #66c5cc);
  transition: 0.3s;
}

.cp-btn .cp-arrow {
  position: relative;
  display: block;
  margin-left: 5px;
  width: 14px;
  height: 1px;
  background-color: var(--color-primary);
  margin-top: -1px;
  transform: rotate(0);
  transition: 0.3s;
}

.cp-btn .cp-arrow::before,
.cp-btn .cp-arrow::after {
  position: absolute;
  right: 0;
  content: "";
  width: 7px;
  height: 1px;
  background-color: var(--color-primary);
  transform-origin: 100% 0;
  transition: 0.3s;
}

.cp-btn .cp-arrow::before {
  transform: rotate(45deg);
}
.cp-btn .cp-arrow::after {
  transform: rotate(-45deg);
}

/* 按钮类型 */
.cp-btn-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.cp-btn-primary.active,
.cp-btn-primary:hover {
  color: #fff;
  border-color: transparent !important;
}

.cp-btn-primary.active::before,
.cp-btn-primary:hover::before {
  width: 100%;
}

.cp-btn:hover .cp-arrow {
  transform: rotate(-45deg);
}
.cp-btn-primary.active .cp-arrow,
.cp-btn-primary.active .cp-arrow::before,
.cp-btn-primary.active .cp-arrow::after,
.cp-btn-primary:hover .cp-arrow,
.cp-btn-primary:hover .cp-arrow::before,
.cp-btn-primary:hover .cp-arrow::after {
  background-color: #fff;
}

/*  */

.cp-btn-white {
  border: 1px solid #fff;
  color: #fff;
}
.cp-btn-white::before {
  background: none;
  background-color: #fff;
}

.cp-btn-white:hover {
  color: var(--color-primary);
  border-color: transparent !important;
}

.cp-btn-white:hover::before {
  width: 100%;
}

.cp-btn-white .cp-arrow {
  background-color: #fff;
}

.cp-btn-white .cp-arrow::before,
.cp-btn-white .cp-arrow::after {
  background-color: #fff;
}

.cp-btn-white:hover .cp-arrow {
  background-color: var(--color-primary);
}

.cp-btn-white:hover .cp-arrow::before,
.cp-btn-white:hover .cp-arrow::after {
  background-color: var(--color-primary);
}

@media (max-width: 768px) {
  .cp-btn {
    padding: 0 10px;
    line-height: 38px;
    height: 40px;
    border-radius: 40px;
    font-size: 12px;
  }
}

/* 分页 */
.cp-pagination {
  padding: 50px 0;
}

.cp-pagination ul {
  margin-left: -4px;
}

.cp-pagination.center ul {
  justify-content: center;
}

.cp-pagination-maxpage span,
.cp-pagination-link span,
.cp-pagination-link a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2px 4px;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #fff;
  border-radius: 40px;
  transition: all 0.2s ease;
}

.cp-pagination-link a i,
.cp-pagination-link span i {
  position: absolute;
  top: 15px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #333;
  transform: rotate(45deg);
}
/*  */
.cp-pagination-prev a i,
.cp-pagination-prev span i {
  left: 18px;
  border-right: none;
  border-top: none;
}
.cp-pagination-next a i,
.cp-pagination-next span i {
  right: 18px;
  border-left: none;
  border-bottom: none;
}

/* hover */
.cp-pagination-link a:hover,
.cp-pagination ul li a.current {
  background: linear-gradient(to right, #4947de, #66c5cc);
  color: #fff;
}

.cp-pagination-link a:hover i {
  border-color: #fff;
}

@media (max-width: 768px) {
  .cp-pagination {
    margin-top: 50px;
    text-align: center;
  }
  .cp-pagination ul {
    margin-left: -4px;
  }

  .cp-pagination-prev span,
  .cp-pagination-next span,
  .cp-pagination-link a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .cp-pagination-link a i,
  .cp-pagination-link span i {
    top: 11px;
  }

  .cp-pagination-prev a i,
  .cp-pagination-prev span i {
    left: 13px;
  }
  .cp-pagination-next a i,
  .cp-pagination-next span i {
    right: 13px;
  }
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 120px;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  transition: all 0.3s ease;
}

/*  */
.header .cp-left,
.header .cp-right {
  align-items: center;
}

.header-logo {
  width: 270px;
  height: 50px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../images/logo-w.svg");
}

.header-nav > ul > li {
  position: relative;
  z-index: 1;
  margin-right: 50px;
}

.header-nav > ul > li > a {
  line-height: 50px;
  font-size: 14px;
  color: #fff;
}

.header-nav > ul > li > i {
  display: inline-block;
  font-size: 12px;
  margin-left: 4px;
  transform: translateY(-3px);
  color: #fff;
}

.header-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 140px;
  background-color: rgba(255, 255, 255, 1);
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-100deg);
  transform-origin: left top;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.header-nav .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  line-height: 20px;
  font-size: 14px;
  color: var(--color-text-body);
}

.header-nav .sub-menu li a::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 2px;
  height: 0;
  background-color: var(--color-primary);
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.header-nav .sub-menu li a i {
  margin-left: 8px;
  transform: translateX(-3px);
  transition: transform 0.3s ease;
}

.header-nav li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0);
}

.header-nav .sub-menu li a:hover {
  background-color: #f8fafc;
  color: var(--color-primary);
}

.header-nav .sub-menu li a:hover::after {
  height: 100%;
}

.header-nav .sub-menu li a:hover i {
  transform: translateX(0);
}

.header-publish {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 38px;
  border-radius: 40px;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(to right, #4947de, #66c5cc);
  transition: all 0.3s ease;
}

.header-publish:hover {
  color: #fff;
}

.header-search {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  height: 38px;
  border-radius: 40px;
  font-size: 14px;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.3s ease;
}

.header-search i {
  margin-right: 4px;
}

/* header-navbar */
.header-navbar {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 6px 2px;
  cursor: pointer;
  /* border: 1px solid #fff; */
  display: none;
}

.header-navbar span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.header-navbar span:nth-child(2) {
  position: relative;
  margin: 5px 0;
}

/*  */
.header-hide {
  transform: translateY(-100%);
}

/*  */

.header:hover,
.header-active {
  background-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header:hover .header-logo,
.header-active .header-logo {
  background-image: url("../images/logo.svg") !important;
}

.header:hover .header-navbar span,
.header-active .header-navbar span {
  background-color: #333;
}

.header:hover .header-nav > ul > li > i,
.header-active .header-nav > ul > li > i,
.header:hover .header-nav > ul > li > a,
.header-active .header-nav > ul > li > a {
  color: var(--color-text-body);
}

.header-nav > ul > li:hover > a {
  color: var(--color-primary) !important;
}

.header:hover .header-search,
.header-active .header-search {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.header-search:hover {
  background: linear-gradient(to right, #4947de, #66c5cc);
  border-color: transparent !important;
  color: #fff !important;
}

.header-space {
  height: 80px;
}

/*  */
.header-nav > ul > li.current-category-ancestor > a,
.header-nav > ul > li.current-menu-item > a,
.header-nav > ul > li.current-menu-ancestor > a,
.header-nav > ul > li.current-menu-parent > a {
  color: #66c5cc !important;
}

@media (max-width: 1600px) {
  .header {
    padding: 15px 50px;
  }
  .header-nav > ul > li {
    margin-right: 30px;
  }
}

@media (max-width: 1440px) {
  .header {
    padding: 15px;
  }
}

@media (max-width: 1366px) {
  .header-nav > ul > li {
    margin-right: 15px;
  }
}

@media (max-width: 1200px) {
  .header-publish {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
  }
  .header-search {
    padding: 0 10px;
    height: 30px;
    line-height: 30px;
    margin-right: 15px;
    font-size: 12px;
  }

  .header-search i {
    font-size: 12px;
  }

  .header-logo {
    width: 50px;
    height: 30px;
  }

  .header-nav {
    display: none;
  }

  .header-navbar {
    display: block;
  }

  .header-space {
    height: 60px;
  }
}

/* footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 0 120px;
  background-color: #051734;
  overflow: hidden;
}

.footer-head {
  padding: 65px 0;
  justify-content: space-between;
}

.footer-body {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  padding-bottom: 200px;
}

.footer-say {
  padding-top: 50px;
  flex: 1;
  font-size: 20px;
  background: linear-gradient(to left, #4947de 0, #66c5cc 99.99%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-say span {
  display: block;
}

/*  */

.footer-nav {
  position: relative;
  z-index: 1;
  flex: 1;
  padding-top: 50px;
  padding-left: 60px;
}

.footer-nav::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-nav ul li {
  margin-bottom: 10px;
}
.footer-nav ul li a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: 24px;
}

.footer-nav li a::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 12px;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12'%3E%3Cpath d='M0 6h10M6.5 2l4 4-4 4' stroke='%23ffffff' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition:
    transform 0.3s,
    opacity 0.3s;
  opacity: 0.7;
}

.footer-nav li a:hover::after {
  transform: rotate(-45deg);
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='12' viewBox='0 0 14 12'%3E%3Cpath d='M0 6h10M6.5 2l4 4-4 4' stroke='%2366c5cc' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.footer-nav ul li a:hover {
  color: #fff;
}
/*  */
.footer-info {
  width: 320px;
  padding-top: 50px;
}

.footer-call h3 {
  font-size: 16px;
  color: #fff;
}
.footer-call p {
  font-size: 42px;
  color: #fff;
}

.footer-address {
  font-size: 16px;
  color: #fff;
}
.footer-media li {
  margin-top: 30px;
  margin-right: 10px;
}
.footer-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
}

.footer-media a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}
/*  */
.footer-copyright {
  padding: 30px 0;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright .cp-left a {
  margin-left: 5px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright .cp-link a {
  margin-left: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-copyright a:hover {
  color: var(--color-primary);
}

.comma-sign i {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50%;
  color: #051734;
}

@media (max-width: 1600px) {
  .footer {
    padding: 0 50px;
  }
}

@media (max-width: 1440px) {
  .footer {
    padding: 0 15px;
  }

  .footer-head {
    padding: 30px 0;
  }
}

@media (max-width: 1200px) {
  .footer-body {
    display: block;
  }

  .footer-say {
    text-align: center;
  }

  /* .footer-say span {
    display: inline;
  } */

  .footer-nav {
    padding-left: 0;
    margin-top: 0;
  }

  .footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-nav ul li {
    margin: 30px 10px 0;
  }

  .footer-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 960px) {
  .footer-nav ul li a {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .footer-head {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-talk {
    margin-top: 20px;
  }

  .footer-say span {
    display: block;
  }

  .footer-nav ul {
    display: block;
  }

  .footer-nav ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-nav ul li a {
    font-size: 16px;
    line-height: 30px;
  }

  .footer-body {
    padding-bottom: 50px;
  }

  .footer-call p {
    font-size: 32px;
  }

  .footer-call h3,
  .footer-address {
    font-size: 14px;
  }

  .footer-copyright .cp-link a {
    margin-left: 0;
  }
}

/* burger */
.burger {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3378;
  width: 100%;
  height: 100%;
  padding: 60px 15px;
  background-color: #fff;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  transform: translateX(120px);
}

.burger-scroll {
  height: 100%;
  overflow-y: auto;
}

.burger-logo {
  position: fixed;
  top: 15px;
  left: 15px;
  width: 160px;
  height: 30px;
  background-image: url("../images/logo.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
}

.burger-logo img {
  height: 20px;
}

/* close */
.close-burger {
  position: fixed;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
}

.close-burger span {
  position: absolute;
  top: 17px;
  left: 6px;
  width: 25px;
  height: 1px;
  background-color: #000;
}

.close-burger span:first-child {
  transform: rotate(45deg);
}

.close-burger span:last-child {
  transform: rotate(-45deg);
}

/* menu */
.burger-nav {
  position: relative;
  padding-top: 20px;
  height: 100%;
}

.burger-nav > ul > li {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #eee;
}

.burger-nav > ul > li > i {
  position: absolute;
  top: 15px;
  right: 0;
  display: block;
  font-size: 12px;
  margin-left: 4px;
}

.burger-nav > ul > li > a {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 45px;
  text-transform: uppercase;
}

.burger-nav .sub-menu {
  padding-bottom: 10px;
  display: none;
}

.burger-nav .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 10px;
  line-height: 30px;
  font-size: 16px;
  color: var(--color-text-body);
}

.burger-nav .sub-menu li a i {
  display: inline-block;
  font-size: 12px;
  margin-left: 4px;
}

/* active */
.burger-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}

/* 悬浮侧边栏 */
.fixed-aside {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 999;
}

.fixed-aside ul > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.fixed-aside ul > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(to right, #4947de, #66c5cc);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.fixed-aside ul > li > a i {
  font-size: 20px;
  color: #fff;
}

.fixed-aside ul > li > a img {
  display: block;
  width: 100%;
  height: 100%;
}

.kefu-item {
  position: relative;
}
.kefu-popup {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: none;
  z-index: 1000;
}
.kefu-item:hover .kefu-popup {
  display: flex;
  align-items: center;
}
.kefu-content {
  flex: 1;
  padding-right: 20px;
}
.kefu-title {
  font-size: 14px;
  color: #333;
}
.kefu-phone {
  margin-top: 10px;
  font-size: 20px;
  color: var(--color-primary);
}

.kefu-qrcode {
  width: 80px;
  height: 80px;
  border: 2px solid #007bff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}
.kefu-qrcode img {
  width: 100%;
  height: 100%;
}

.kefu-arrow {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
}

@media screen and (max-width: 768px) {
  .fixed-aside {
    display: none;
  }
}

/* alert-search */
.alert-search {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3399;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}
.alert-search-box {
  width: 100%;
  height: auto;
  padding: 180px 0;
  background-color: #fff;
  transform: translateY(-100px);
  visibility: hidden;
  transition: 0.3s;
}
.alert-search-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.alert-search-wrap {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 30px;
}

.alert-search-form h3 {
  text-align: center;
}

.alert-search-form form {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  border-bottom: 1px solid #ccc;
}

.alert-search-form form input {
  display: block;
  width: 100%;
  line-height: 30px;
  padding: 10px 0;
  outline: none;
  border: none;
  flex: 1;
}

.alert-search-form form button {
  background-color: #fff;
  border: none;
  height: 30px;
  line-height: 30px;
  display: block;
}

.alert-search-form form button i {
  color: #333;
}

/*  */
.pages-banner-tips {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  font-size: 16px;
  cursor: pointer;
}

.pages-banner-tips img {
  width: 18px;
  margin-bottom: 10px;
  animation: 1s ease 0s infinite normal none running jump;
}

@keyframes jump {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ================================================================
   公共弹窗（cp-alert）
   用法: <div class="cp-alert 自定义类">...</div>
   ================================================================ */

.cp-alert {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
}

.cp-alert.active {
  visibility: visible;
  opacity: 1;
}

.cp-alert-mask {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.cp-alert-container {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  cursor: default;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.cp-alert.active .cp-alert-container {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 关闭按钮 */
.cp-alert-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cp-alert-close:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.cp-alert-close span {
  position: relative;
  z-index: 1;
  width: 16px;
  height: 1px;
  background-color: #fff;
  transform: rotate(45deg);
}

.cp-alert-close span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 16px;
  height: 1px;
  background-color: #fff;
  transform: rotate(90deg);
}

/* 移动端遮罩和关闭按钮 */
@media (max-width: 768px) {
  .cp-alert-mask {
    padding: 15px;
    align-items: flex-end;
  }

  .cp-alert-close {
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .cp-alert-close span,
  .cp-alert-close span::before {
    width: 14px;
  }
}

@media (max-width: 480px) {
  .cp-alert-mask {
    padding: 0;
  }
}
