/* Figtree字体引入 */
@font-face {
  font-family: 'Figtree';
  src: url('https://pixso.cn/Figtree-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('https://pixso.cn/Figtree-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('https://pixso.cn/Figtree-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Figtree';
  src: url('https://pixso.cn/Figtree-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

p,
ol,
ul,
dl,
body {
  margin: 0;
}

a {
  text-decoration: none;
  transition: none;
  -webkit-transition: none;
}

button {
  border: none;
  padding: 0;
}
button:focus {
  outline: none;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: 'Figtree', Arial, Helvetica Neue, Helvetica, sans-serif;
}

div,
section {
  box-sizing: border-box;
  font-family: 'Figtree', Arial, Helvetica Neue, Helvetica, sans-serif;
}

:root {
  --header-height: 54px;
  --content-max-width: 1380px;
}

h1,
h2,
h3 {
  margin-bottom: 0px;
}

.flex_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 公共样式 */
/* 滚动进入动画 */
.scroll-animate-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.scroll-animate-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* 公共按钮 */
.px-common-btn {
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid #000;
  background: rgba(0, 0, 0, 0.84);
  box-shadow: 0 0.8px 0 0 rgba(255, 255, 255, 0.3) inset;
  display: flex;
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 115.296%;
  width: fit-content;
}
.px-common-btn:hover {
  background: #303030;
  transition: all 150ms ease-out;
}

.px-common-btn:active {
  background: #303030;
  transform: scale(0.96);
  transition: transform 200ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

.px-common-btn__plain {
  box-sizing: border-box;
  display: flex;
  height: 40px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
  background: #fff;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.1), 0 0 1px 0 rgba(0, 0, 0, 0.4);
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 115.296%;
  background-color: transparent;
}

.px-common-btn__plain:hover {
  background: rgba(0, 0, 0, 0.03);
  transition: all 150ms ease-out;
}

.px-common-btn__plain:active {
  background: rgba(0, 0, 0, 0.03);
  transform: scale(0.96);
  transition: transform 200ms cubic-bezier(0.17, 0.84, 0.44, 1);
}

/* 公共模块 */
.border-bottom-above {
  position: relative;
  border-bottom: none !important;
}

.border-bottom-above::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  border-bottom: 1px solid #eaebee;
}

.border-right-above {
  position: relative;
  border-right: none !important;
}

.border-right-above::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  border-right: 1px solid #eaebee;
}

/* border-left-above */
.border-left-above {
  position: relative;
  border-left: none !important;
}

.border-left-above::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  border-left: 1px solid #eaebee;
}

/* border-top-above */
.border-top-above {
  position: relative;
  border-top: none !important;
}

.border-top-above::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  border-top: 1px solid #eaebee;
}

/* border-horizontal-above (左右边框) */
.border-horizontal-above {
  position: relative;
  border-left: none !important;
  border-right: none !important;
}

.border-horizontal-above::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  border-left: 1px solid #eaebee;
}

.border-horizontal-above::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  z-index: 1;
  border-right: 1px solid #eaebee;
}

/* border-vertical-above (上下边框) */
.border-vertical-above {
  position: relative;
  border-top: none !important;
  border-bottom: none !important;
}

.border-vertical-above::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  border-top: 1px solid #eaebee;
}

.border-vertical-above::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 1;
  border-bottom: 1px solid #eaebee;
}

/* border-box-above 系列 (覆盖元素全尺寸的边框) */
/* 四边边框 */
.border-box-above {
  position: relative;
  border: none !important;
}

.border-box-above::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  pointer-events: none;
}

/* 三边边框 - 无顶部 */
.border-box-above--no-top {
  position: relative;
  border: none !important;
}

.border-box-above--no-top::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  border-top: none;
  pointer-events: none;
}

/* 三边边框 - 无右侧 */
.border-box-above--no-right {
  position: relative;
  border: none !important;
}

.border-box-above--no-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  border-right: none;
  pointer-events: none;
}

/* 三边边框 - 无底部 */
.border-box-above--no-bottom {
  position: relative;
  border: none !important;
}

.border-box-above--no-bottom::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  border-bottom: none;
  pointer-events: none;
}

/* 三边边框 - 无左侧 */
.border-box-above--no-left {
  position: relative;
  border: none !important;
}

.border-box-above--no-left::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  border-left: none;
  pointer-events: none;
}

/* 两边边框 - 上右 */
.border-box-above--top-right {
  position: relative;
  border: none !important;
}

.border-box-above--top-right::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border: 1px solid #eaebee;
  border-bottom: none;
  border-left: none;
  pointer-events: none;
}

/* 虚线边框 */
.dotted-top-boder {
  position: relative;
}

.dotted-top-boder::before {
  position: absolute;
  content: '';
  width: 100%;
  top: 0;
  left: 0;
  height: 1px;
  transform: scale(1);
  background: url('https://pixso.cn/index-new/dotted.svg') no-repeat;
  z-index: 1;
}

.dotted-bottom-boder {
  position: relative;
}

.dotted-bottom-boder::after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  transform: scale(1);
  background: url('https://pixso.cn/index-new/dotted.svg') no-repeat;
  z-index: 1;
}

.dotted-right-boder {
  position: relative;
}

.dotted-right-boder::before {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  right: 0;
  top: 0%;
  transform: scale(1);
  background: url('https://pixso.cn/index-new/dotted-vertical.svg') no-repeat;
  z-index: 1;
}

.dotted-left-boder {
  position: relative;
}

.dotted-left-boder::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 100%;
  left: 0;
  top: 0;
  transform: scale(1);
  background: url('https://pixso.cn/index-new/dotted-vertical.svg') no-repeat;
  z-index: 1;
}

/* 左右两边斜线 */

.left-slash-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 100%;
  background-image: url('https://pixso.cn/index-new/slash-bg-vertical.svg');
}

.right-slash-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 100%;
  background-image: url('https://pixso.cn/index-new/slash-bg-vertical.svg');
}

.home-module {
  box-sizing: border-box;
  background: #fff;
  border-bottom: 1px solid #eaebee;
}

.home-module__content {
  position: relative;
  display: flex;
  height: 100%;
  padding: 0 270px;
}

.home-module__mid {
  position: relative;
  flex: 1;
  border-left: 1px solid #eaebee;
  border-right: 1px solid #eaebee;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
}

.home-module__mid.is-rectangle::before {
  content: '';
  position: absolute;
  bottom: -4.5px;
  left: -4.5px;
  width: 9px;
  height: 9px;
  z-index: 2;
  background: url('https://pixso.cn/index-new/rectangle-icon.svg') no-repeat
    center;
}

.home-module__mid.is-rectangle::after {
  content: '';
  position: absolute;
  bottom: -4.5px;
  right: -4.5px;
  width: 9px;
  height: 9px;
  z-index: 2;
  background: url('https://pixso.cn/index-new/rectangle-icon.svg') no-repeat
    center;
}

.home-module__lf {
  position: absolute;
  left: 0;
  top: 0;
}

.home-module__rt {
  position: absolute;
  right: 0;
  top: 0;
}

.home-module__title {
  color: #000;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
}

.home-module__subTitle {
  color: rgba(0, 0, 0, 0.6);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.home-contanier {
  width: 100%;
  overflow: hidden;
}

/* 公共tabs start*/
.common-module__tabs-boxs {
  width: 100%;
  height: 54px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.common-module__tabs-lf,
.common-module__tabs-rt {
  height: 100%;
  flex: 1;
}

.common-module__tabs {
  flex: 0 0 auto;
  display: flex;
  height: 54px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #eaebee;
}

.common-module__tabs-boxs::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Opera */
}

.common-module__tab {
  font-size: 14px;
  line-height: 110%;
  font-size: 14px;
  padding: 10px 14px 10px 12px;
  border-radius: 10px;
  opacity: 0.8;
  cursor: pointer;
  height: 42px;
  background: transparent;
}

.common-module__tab:hover {
  background: rgba(239, 239, 241, 0.5);
}

.common-module__tab:not(.is-active):active {
  background: rgba(239, 239, 241, 0.5);
  transform: scale(0.96);
  transition: transform 200ms;
}

.common-module__tab.is-active {
  background: #efeff1;
  color: #000;
  font-weight: 600;
  cursor: default;
}

/* 公共tabs end*/

/* 响应式 */
/* 1920+ */
@media (min-width: 1920px) {
  .home-module__content {
    padding: 0 calc((100% - var(--content-max-width)) / 2);
  }
}
/* 大屏幕适配 */
/* 1860+ */
@media (min-width: 1860px) and (max-width: 1919px) {
  .home-module__content {
    padding: 0 max(240px, calc((100% - var(--content-max-width)) / 2));
  }
}

/* 中等屏幕适配 */
/* 1280-1859 */
@media (min-width: 1280px) and (max-width: 1859px) {
  .home-module__content {
    padding: 0 max(32px, calc((100% - var(--content-max-width)) / 2));
  }
}

/* 小屏幕适配 */
/* 1080-1279 */
@media (min-width: 1080px) and (max-width: 1279px) {
  .left-slash-bg {
    width: 20px !important;
  }
  .right-slash-bg {
    width: 20px !important;
  }
  .home-module__content {
    padding: 0 max(32px, calc((100% - var(--content-max-width)) / 2));
  }
}

/* 平板横屏适配 */
/* 800-1079 */
@media (min-width: 800px) and (max-width: 1079px) {
  .left-slash-bg {
    width: 20px !important;
  }
  .right-slash-bg {
    width: 20px !important;
  }

  .home-module__content {
    padding: 0 max(32px, calc((100% - var(--content-max-width)) / 2));
  }
}

/* 移动端适配 */
/* 1-799 */
@media (max-width: 799px) {
  .left-slash-bg {
    display: none;
  }
  .right-slash-bg {
    display: none;
  }

  .home-module__content {
    padding: 0 max(16px, calc((100% - var(--content-max-width)) / 2));
  }

  .common-module__tabs-lf,
  .common-module__tabs-rt {
    display: none;
  }

  .common-module__tabs-boxs {
    justify-content: flex-start;
  }

  .common-module__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-shrink: 0;
    width: auto;
    min-width: 100%;
  }
}
