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

@font-face {
  font-family: "Magnita";
  src: url("../fonts/Magnita.ttf") format("truetype"),
    url("../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;
}
.main-container {
  width: 354px;
  margin: 0 auto;
}
.max-width-container {
  max-width: 402px;
  margin: 0 auto;
}

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

.text-graph-layout-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.text-graph-layout {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  gap: 41px;
}
.text-graph-layout.reverse {
}
.text-graph-layout-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.text-graph-grilling {
  position: absolute;
  top: 0;
  right: 0;
}
.text-graph-grilling.grilling-hide {
  display: none;
}
.text-graph-grilling.grilling-vertical {
  width: 240px;
  height: 200px;
  background-image: url("/v2/mobile/images/grilling_vertical.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.text-graph-grilling.grilling-horizontal {
  width: 240px;
  height: 200px;
  background-image: url("/v2/mobile/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: 100%;
  margin-top: 17px;
}
.text-graph-layout-graph.full-width {
  margin-top: 0;
}
.text-graph-layout-graph.full-width img {
  width: 100%;
  height: auto;
}
.text-graph-layout-graph img {
  width: 283px;
  height: 166px;
}
.text-graph-layout-text-title {
  font-size: 24px;
  font-family: "Magnita";
}
.text-graph-layout-text-subtitle {
  font-size: 12px;
  font-family: "Magnita";
}
.text-graph-layout-text-description {
  font-size: 12px;
  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-18 {
  margin-top: 18px;
}