@font-face {
  font-family: "Funnel Display";
  src: url("/v2/fonts/FunnelDisplay-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900; /* 可选，变量字体权重范围 */
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Magnita";
  src: url("/v2/fonts/Magnita.ttf") format("truetype"),
    url("/v2/fonts/Magnita.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Funnel Display", sans-serif;
  background: #18171b;
  color: #fff;
  min-height: 100vh;
}
.min-width-container {
  min-width: 1440px;
  margin: 0 auto;
}
.wider-container {
  width: 1440px;
  margin: 0 auto;
}
.main-container {
  width: 1056px;
  margin: 0 auto;
}
.column-container {
  display: flex;
  flex-direction: column;
}
.horizontal-center-container {
  display: flex;
  justify-content: center;
}
.vertical-center-container {
  display: flex;
  align-items: center;
}
.border-box-container {
  box-sizing: border-box;
}

.white-bg-color {
  background: #fff;
}

.text-graph-layout-wrapper {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-in-out;
}
.text-graph-layout-wrapper.reverse {
  transform: translateX(100px);
}
.text-graph-layout-wrapper.mounted {
  opacity: 1;
  transform: translateX(0);
}
.text-graph-layout-wrapper.high {
  height: 360px;
}
.text-graph-layout {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
.text-graph-layout-wrapper.reverse .text-graph-layout {
  flex-direction: row-reverse;
}
.text-graph-layout-text {
  display: flex;
  flex-direction: column;
  width: 408px;
  gap: 24px;
  justify-content: center;
}
.text-graph-layout-wrapper.reverse .text-graph-layout-text {
  text-align: right;
  align-items: flex-end;
}
.text-graph-grilling {
  position: absolute;
  top: 0;
  left: 0;
}
.text-graph-grilling.grilling-hide {
  display: none;
}
.text-graph-grilling.grilling-vertical {
  width: 276px;
  height: 360px;
  background-image: url("/v2/images/grilling_vertical.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.text-graph-grilling.grilling-horizontal {
  width: 408px;
  height: 320px;
  background-image: url("/v2/images/grilling_horizontal.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.text-graph-grilling.grilling-reverse {
  transform: scaleX(-1);
  left: auto;
  right: 0;
}
.text-graph-layout-graph {
  /* width: 408px; */
  /* height: 240px; */
}
.text-graph-layout-text-title-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-graph-layout-text-title-container .text-graph-layout-text-title {
  font-size: 32px;
}
.text-graph-layout-text-title {
  font-size: 36px;
  font-family: "Magnita";
}
.text-graph-layout-text-subtitle {
  font-size: 16px;
  font-family: "Magnita";
}
.text-graph-layout-text-description {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: normal;
}

.red {
  color: #e31c2a;
}

a {
  color: inherit;
}
.link {
  text-decoration: underline;
}
.border-gradient-bottom {
  border: 2px solid transparent;
  border-image: linear-gradient(
      to bottom,
      rgba(228, 25, 54, 0.5),
      rgba(228, 25, 54, 0)
    )
    1;
}
.mt-15 {
  margin-top: 15px;
}