/* 主题通用样式 */
/* 颜色 */
:root {
  /* 主色调 */
  --c-main: #2084ff;
  --c-main-rgb: 32, 132, 255;
  --c-assist: #007bff;
  --c-bg-blue: #cae4ff;
  --c-bg-gray: #f4f7fc;

  /* 字体颜色 */
  --fc-black: #000000;
  --fc-500: #666666;
  --fc-400: #999999;
  --fc-300: #cccccc;
  --fc-200: #eeeeee;
  --fc-0: #ffffff;
  --c-border: #c9cdd4;

  /* 字体大小 */
  --fs-12: 0.75rem; /* 12px */
  --fs-14: 0.875rem; /* 14px */
  --fs-16: 1rem; /* 16px */
  --fs-18: 1.125rem; /* 18px */
  --fs-24: 1.5rem; /* 24px */
  --fs-32: 2rem; /* 32px */
  --fs-36: 2.25rem; /* 36px */
  --fs-40: 2.5rem; /* 40px */
  --fs-44: 2.75rem; /* 44px */
  --fs-48: 3rem; /* 48px */
  --fs-64: 4rem; /* 64px */

  /* 字体样式 */
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* 字体族 */
  --ff-main: 'PingFang SC Regular', sans-serif;
  --ff-medium: 'PingFang SC Medium', sans-serif;
  /* --ff-semibold: 'PingFang SC Semibold', sans-serif; */

  /* 菜单色系 */
  --menu-color: #000000;
  --menu-color-hover: #2084ff;
  --sub-menu-bg: #fff;
  --sub-menu-border: #2084ff;
  --menu-desc-text: #666666;
  --menu-active-border-color: #007bff;
  --menu-active-text-color: #007bff;
  --menu-mobile-text: #2084ff;

  /* 渐变色 */
  /* 卡片渐变背景 */
  --gradient-1: linear-gradient(264deg, #0dcafe 15.12%, #465fff 95.14%);
}

/* 边框 */
.border-c-main {
  border-color: var(--c-main);
}

.border-c-assist {
  border-color: var(--c-assist);
}

.border-c-blue {
  border-color: var(--c-bg-blue);
}

.border-c-gray {
  border-color: var(--c-bg-gray);
}

.c-bg-main {
  background-color: var(--c-main);
}

.c-assist {
  background-color: var(--c-assist);
}

.c-bg-blue {
  background-color: var(--c-bg-blue);
}

.c-bg-gray {
  background-color: var(--c-bg-gray);
}

/* 字体颜色 */
.fc-black {
  color: var(--fc-black);
}

.fc-main {
  color: var(--c-main);
}

.fc-assist {
  color: var(--c-assist);
}

.fc-500 {
  color: var(--fc-500);
}

.fc-400 {
  color: var(--fc-400);
}

.fc-300 {
  color: var(--fc-300);
}

.fc-200 {
  color: var(--fc-200);
}

.fc-0 {
  color: var(--fc-0);
}

/* 字体大小 */
.fs-12 {
  font-size: var(--fs-12);
}

.fs-14 {
  font-size: var(--fs-14);
}

.fs-16 {
  font-size: var(--fs-16);
}

.fs-18 {
  font-size: var(--fs-18);
}

.fs-24 {
  font-size: var(--fs-24);
}

.fs-32 {
  font-size: var(--fs-32);
}

.fs-36 {
  font-size: var(--fs-36);
}

.fs-40 {
  font-size: var(--fs-40);
}

.fs-44 {
  font-size: var(--fs-44);
}

.fs-48 {
  font-size: var(--fs-48);
}

.fs-64 {
  font-size: var(--fs-64);
}

.fw-400 {
  font-weight: var(--fw-400);
}

.fw-500 {
  font-weight: var(--fw-500);
}

.fw-600 {
  font-weight: var(--fw-600);
}

.fw-700 {
  font-weight: var(--fw-700);
}

/* 字体 */
.ff-main {
  font-family: var(--ff-main);
}
.ff-medium {
  font-family: var(--ff-medium);
}
/* .ff-semibold {
  font-family: var(--ff-semibold);
} */
.ff-nune {
  font-family: 'Bebas Neue';
}

.card-bg-gradient {
  background: var(--gradient-1);
}

/* 按钮 */
.c-btn {
  padding: 0.75rem 3.5rem;
  border-radius: 2.5rem;
  transition: all 0.2s;
  background: #fff;
  font-size: var(--fs-16);
  font-weight: 500;
  font-family: var(--ff-medium);
  border: 2px solid var(--c-main);
  color: var(--c-main);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.c-btn:hover {
  background: transparent;
  border: 2px solid transparent;
  color: var(--fc-0);
}
.c-btn:hover::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-1);
  border-radius: 2.5rem;
  z-index: -1;
}
.c-btn.border-gradient {
  border-radius: 9999px;
  border: 2px solid transparent;
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(84deg, #465fff 4.86%, #0dcafe 84.88%) border-box;
}
.c-btn.fill {
  background-color: var(--c-main);
  color: var(--fc-0);
}
.c-btn.fill:hover {
  background-color: transparent;
  color: var(--c-main);
}
.c-btn.gradient {
  transition: all 0s;
  padding: 0.875rem 3.625rem;
  border: none;
  background: var(--gradient-1);
  color: var(--fc-0);
}
.c-btn.gradient:hover {
  padding: 0.75rem 3.5rem;
  border: 2px solid var(--c-main);
  background: transparent;
  color: var(--c-main);
}
.c-btn.grey-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 2.5rem;
  font-size: var(--fs-14);
  border: 1px solid var(--c-border);
  color: black;
}
.c-btn.grey-btn:hover {
  color: white;
}
.c-btn.full {
  width: 100%;
  text-align: center;
}
.c-btn.lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-16);
  border-radius: 2.5rem;
}
.c-btn.img-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.c-btn.img-btn img.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.c-btn2 {
  padding: 0.75rem 3.5rem;
  border-radius: 2.5rem;
  transition: all 0.2s;
  background: #fff;
  font-size: var(--fs-16);
  font-weight: 500;
  font-family: var(--ff-medium);
  border: 2px solid var(--c-main);
  color: var(--c-main);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}
.c-btn2.fill {
  background-color: var(--c-main);
  color: var(--fc-0);
}
.c-btn2.white {
  background: transparent;
  color: var(--fc-0);
  border: 2px solid var(--fc-0);
}
.c-btn2.fill-white {
  background-color: var(--fc-0);
  color: var(--c-main);
  border: 2px solid var(--fc-0);
}
.c-btn2.gradient {
  padding: 0.875rem 3.625rem;
  border: none;
  background: var(--gradient-1);
  color: var(--fc-0);
}
.c-btn2.header {
  padding: 0.75rem 2rem;
}
.c-btn2.header.gradient {
  padding: 0.875rem 2.125rem;
}
.c-btn2.full {
  width: 100%;
  text-align: center;
}
.c-btn2:hover {
  opacity: 0.8;
}
.c-btn2.lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-16);
  border-radius: 2.5rem;
}
.c-btn2.img-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #fff;
}
.c-btn2.img-btn img.icon {
  width: 1.5rem;
  height: 1.5rem;
}

.container {
  width: 100% !important;
  max-width: unset !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* 全宽布局背景图 */
.block-container-wrap {
  position: relative;
}
.block-container-wrap .block-container-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.block-container-bg img {
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

/* 滚动条 */
.custom-scroll-bar::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
.custom-scroll-bar::-webkit-scrollbar-track {
  background: #e5e6eb;
  border-radius: 10px;
}
.custom-scroll-bar::-webkit-scrollbar-thumb {
  background: #c9cdd4;
  border-radius: 10px;
}
