:root {
  --nxr_i_paper: #f2eeee;
  --nxr_i_wine: #310202;
  --nxr_i_lilac: #deb7f0;
  --nxr_i_yellow: #f0e675;
  --nxr_i_mist: #b0b8ba;
  --nxr_i_text: #321d1d;
  --nxr_i_line: rgba(49, 2, 2, .22);
  --nxr_i_width: 90%;
  --nxr_i_radius: 2px;
  --nxr_i_shadow: 0 0 18px rgba(222, 183, 240, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--nxr_i_text);
  background:
    linear-gradient(rgba(49, 2, 2, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 2, 2, .055) 1px, transparent 1px),
    var(--nxr_i_paper);
  background-size: 34px 34px;
  font-family: Arial, "Microsoft YaHei", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.nxr_i_topline,
.nxr_i_navigationInner,
.nxr_i_mobileNavigationInner,
.nxr_i_homeMain > section,
.nxr_i_footerGrid,
.nxr_i_footerBottom {
  width: var(--nxr_i_width);
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.nxr_i_siteHeader {
  position: relative;
  z-index: 20;
  background: var(--nxr_i_paper);
}

.nxr_i_topline {
  min-height: 78px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 30px;
}

.nxr_i_brandMark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nxr_i_brandMark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nxr_i_brandMark h2 {
  display: none;
}

.nxr_i_welcomeRail {
  overflow: hidden;
  color: var(--nxr_i_wine);
  white-space: nowrap;
}

.nxr_i_welcomeText {
  display: block;
  animation: nxr_i_marquee 18s linear infinite;
}

.nxr_i_welcomeText p {
  margin: 0;
  font-size: 12px;
  letter-spacing: .08em;
}

@keyframes nxr_i_marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.nxr_i_headerActions {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--nxr_i_mist);
  font-size: 11px;
}

.nxr_i_bookmark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 0;
  border: 0;
  color: var(--nxr_i_mist);
  background: transparent;
}

.nxr_i_bookmark:hover,
.nxr_i_bookmark:focus {
  color: var(--nxr_i_wine);
}

.nxr_i_callEntry {
  display: flex;
  align-items: center;
  gap: 7px;
}

.nxr_i_callEntry i {
  color: var(--nxr_i_wine);
}

.nxr_i_navigationBar {
  border-top: 1px solid var(--nxr_i_line);
  border-bottom: 1px solid var(--nxr_i_line);
}

.nxr_i_navigationInner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nxr_i_desktopNavigation ul {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nxr_i_desktopNavigation a {
  position: relative;
  display: block;
  padding: 20px 0;
  color: var(--nxr_i_mist);
  font-size: 12px;
  letter-spacing: .08em;
}

.nxr_i_desktopNavigation a::after {
  position: absolute;
  right: 0;
  bottom: 12px;
  left: 0;
  height: 1px;
  background: var(--nxr_i_lilac);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.nxr_i_desktopNavigation a:hover,
.nxr_i_desktopNavigation a:focus {
  color: var(--nxr_i_wine);
}

.nxr_i_desktopNavigation a:hover::after,
.nxr_i_desktopNavigation a:focus::after {
  transform: scaleX(1);
}

.nxr_i_mobileTrigger {
  display: none;
}

.nxr_i_mobileNavigation {
  display: none;
}

.nxr_i_homeMain {
  padding-bottom: 100px;
}

.nxr_i_homeMain > section {
  margin-top: 110px;
}

.nxr_i_microLabel {
  display: inline-block;
  color: var(--nxr_i_wine);
  font-size: 10px;
  letter-spacing: .18em;
}

.nxr_i_sectionLead {
  margin-bottom: 34px;
}

.nxr_i_sectionLead h2,
.nxr_i_performanceHeading h2,
.nxr_i_faqHeading h2,
.nxr_i_articlesHeading h2,
.nxr_i_contactIntro h2 {
  margin: 13px 0 0;
  color: var(--nxr_i_wine);
  font-size: clamp(34px, 5vw, 68px);
  line-height: .95;
  letter-spacing: -.08em;
}

.nxr_i_stageTrack {
  position: relative;
  min-height: 580px;
}

.nxr_i_stagePanel {
  display: none;
  min-height: 580px;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .72);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_stagePanel.is-current {
  display: grid;
}

.nxr_i_stageCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.nxr_i_stageCopy h1 {
  max-width: 650px;
  margin: 25px 0;
  color: var(--nxr_i_wine);
  font-size: clamp(42px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.1em;
}

.nxr_i_stageCopy p {
  max-width: 510px;
  color: #695d5d;
  font-size: 14px;
  line-height: 1.9;
}

.nxr_i_stageVisual {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  background: var(--nxr_i_wine);
}

.nxr_i_stageVisual::before,
.nxr_i_stageVisual::after {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--nxr_i_lilac);
  content: "";
  pointer-events: none;
}

.nxr_i_stageVisual::before {
  inset: 10%;
}

.nxr_i_stageVisual::after {
  inset: 20%;
  transform: rotate(8deg);
}

.nxr_i_stageVisual img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  opacity: .62;
}

.nxr_i_visualTag {
  position: absolute;
  right: 30px;
  bottom: 28px;
  z-index: 2;
  color: var(--nxr_i_yellow);
  text-align: right;
}

.nxr_i_visualTag strong {
  display: block;
  font-size: 32px;
  line-height: .86;
}

.nxr_i_visualTag span {
  display: block;
  margin-top: 12px;
  color: var(--nxr_i_lilac);
  font-size: 10px;
  letter-spacing: .15em;
}

.nxr_i_yellowButton {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  border: 1px solid var(--nxr_i_wine);
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
  box-shadow: 4px 4px 0 var(--nxr_i_lilac);
  font-size: 12px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.nxr_i_yellowButton:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--nxr_i_lilac);
}

.nxr_i_stageArrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  transform: translateY(-50%);
}

.nxr_i_stageArrow:hover {
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_stageArrowPrev {
  left: 15px;
}

.nxr_i_stageArrowNext {
  right: 15px;
}

.nxr_i_stageDots,
.nxr_i_questionDots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.nxr_i_stageDots button,
.nxr_i_questionDots button {
  width: 24px;
  height: 4px;
  padding: 0;
  border: 0;
  background: var(--nxr_i_mist);
}

.nxr_i_stageDots button.is-current,
.nxr_i_questionDots button.is-current {
  background: var(--nxr_i_wine);
}

.nxr_i_profileColumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_profilePicture {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--nxr_i_wine);
}

.nxr_i_profilePicture img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  opacity: .75;
}

.nxr_i_profilePicture span {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--nxr_i_yellow);
  font-size: 10px;
  letter-spacing: .15em;
}

.nxr_i_profileText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--nxr_i_paper);
}

.nxr_i_wireBadge {
  width: 92px;
  height: 92px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
  text-align: center;
}

.nxr_i_wireBadge i {
  font-size: 22px;
}

.nxr_i_wireBadge span {
  font-size: 8px;
  letter-spacing: .12em;
}

.nxr_i_profileDescription {
  max-width: 590px;
  margin: 35px 0;
  color: #665858;
  font-size: 15px;
  line-height: 2;
}

.nxr_i_textLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--nxr_i_wine);
  font-size: 12px;
}

.nxr_i_textLink:hover {
  color: #8260a2;
}

.nxr_i_quadGrid,
.nxr_i_safetyGrid,
.nxr_i_regionGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_factCard,
.nxr_i_safetyItem,
.nxr_i_regionCard {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .78);
}

.nxr_i_factCard:last-child,
.nxr_i_safetyItem:last-child,
.nxr_i_regionCard:last-child {
  border-right: 0;
}

.nxr_i_factCardDark,
.nxr_i_safetyItemDark,
.nxr_i_regionDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_factCard i,
.nxr_i_safetyItem i,
.nxr_i_regionCard i {
  margin-bottom: 35px;
  color: var(--nxr_i_lilac);
  font-size: 25px;
}

.nxr_i_factCard h3,
.nxr_i_safetyItem h3,
.nxr_i_regionCard h3 {
  margin-bottom: 14px;
  font-size: 17px;
}

.nxr_i_factCard strong,
.nxr_i_safetyItem strong,
.nxr_i_regionCard strong {
  display: block;
  margin-bottom: 15px;
  color: var(--nxr_i_wine);
  font-size: 28px;
}

.nxr_i_factCardDark strong,
.nxr_i_safetyItemDark strong,
.nxr_i_regionDark strong {
  color: var(--nxr_i_yellow);
}

.nxr_i_factCard p,
.nxr_i_safetyItem p,
.nxr_i_regionCard p {
  margin: 0;
  color: #7d7171;
  font-size: 12px;
  line-height: 1.8;
}

.nxr_i_factCardDark p,
.nxr_i_safetyItemDark p,
.nxr_i_regionDark p {
  color: var(--nxr_i_mist);
}

.nxr_i_safetySection {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 55px;
  align-items: center;
}

.nxr_i_safetyIntro p {
  margin-top: 24px;
  color: #756868;
  font-size: 13px;
  line-height: 1.9;
}

.nxr_i_safetyGrid {
  grid-template-columns: repeat(2, 1fr);
}

.nxr_i_safetyItem:nth-child(2) {
  border-right: 0;
}

.nxr_i_safetyItem:nth-child(-n + 2) {
  border-bottom: 1px solid var(--nxr_i_lilac);
}

.nxr_i_performanceSection {
  padding: 70px 0;
}

.nxr_i_performanceHeading {
  text-align: center;
}

.nxr_i_performanceHeading p {
  color: #756868;
  font-size: 13px;
}

.nxr_i_radialMetrics {
  position: relative;
  max-width: 720px;
  min-height: 610px;
  margin: 40px auto 0;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 29%, rgba(222, 183, 240, .55) 29.2% 29.5%, transparent 29.8%),
    radial-gradient(circle, transparent 0 53%, rgba(222, 183, 240, .5) 53.2% 53.5%, transparent 53.8%),
    rgba(242, 238, 238, .75);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_radialCore {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  text-align: center;
  transform: translate(-50%, -50%);
}

.nxr_i_radialCore span {
  font-size: 38px;
  font-weight: bold;
}

.nxr_i_radialCore small {
  font-size: 9px;
  letter-spacing: .14em;
}

.nxr_i_metricMetric {
  position: absolute;
  width: 190px;
  padding: 20px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
  text-align: center;
}

.nxr_i_metricMetric i {
  color: var(--nxr_i_wine);
}

.nxr_i_metricMetric strong {
  display: block;
  margin: 8px 0;
  color: var(--nxr_i_wine);
  font-size: 27px;
}

.nxr_i_metricMetric h3 {
  margin: 0 0 7px;
  font-size: 14px;
}

.nxr_i_metricMetric p {
  margin: 0;
  color: #827575;
  font-size: 11px;
  line-height: 1.6;
}

.nxr_i_metricTop {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.nxr_i_metricRight {
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.nxr_i_metricBottom {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.nxr_i_metricLeft {
  top: 50%;
  left: 22px;
  transform: translateY(-50%);
}

.nxr_i_reachSection {
  padding: 55px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_reachSection .nxr_i_sectionLead h2,
.nxr_i_reachSection .nxr_i_sectionLead p {
  color: var(--nxr_i_paper);
}

.nxr_i_reachSection .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_regionCard {
  min-height: 230px;
}

.nxr_i_regionCard i {
  font-size: 31px;
}

.nxr_i_questionCarousel {
  position: relative;
  min-height: 215px;
  padding: 25px;
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_questionCard {
  display: none;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 25px;
}

.nxr_i_questionCard.is-visible {
  display: grid;
}

.nxr_i_avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  font-size: 26px;
}

.nxr_i_questionCard strong {
  color: var(--nxr_i_wine);
  font-size: 20px;
}

.nxr_i_questionCard p {
  margin: 13px 0 0;
  color: #756868;
  font-size: 14px;
  line-height: 1.8;
}

.nxr_i_offeringGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nxr_i_offeringCard {
  display: grid;
  grid-template-columns: 110px 1fr;
  min-height: 180px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_offeringCardDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_offeringCard img {
  width: 110px;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  opacity: .75;
}

.nxr_i_offeringCard > div {
  padding: 22px;
}

.nxr_i_offeringCard span {
  color: var(--nxr_i_lilac);
  font-size: 11px;
}

.nxr_i_offeringCard h3 {
  margin: 12px 0 10px;
  font-size: 17px;
}

.nxr_i_offeringCard p {
  margin: 0;
  color: #827575;
  font-size: 12px;
  line-height: 1.7;
}

.nxr_i_offeringCardDark p {
  color: var(--nxr_i_mist);
}

.nxr_i_faqSection {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
}

.nxr_i_faqHeading p {
  color: #756868;
  font-size: 13px;
  line-height: 1.8;
}

.nxr_i_faqList {
  border-top: 1px solid var(--nxr_i_wine);
}

.nxr_i_faqItem {
  border-bottom: 1px solid var(--nxr_i_wine);
}

.nxr_i_faqItem summary {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 15px;
  padding: 21px 0;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
}

.nxr_i_faqItem summary::-webkit-details-marker {
  display: none;
}

.nxr_i_faqItem summary span {
  color: #92719f;
  font-size: 11px;
}

.nxr_i_faqItem summary i {
  color: var(--nxr_i_wine);
  transition: transform .2s ease;
}

.nxr_i_faqItem[open] summary i {
  transform: rotate(45deg);
}

.nxr_i_faqItem p {
  max-width: 700px;
  margin: 0 45px 22px 60px;
  color: #776969;
  font-size: 13px;
  line-height: 1.8;
}

.nxr_i_articlesHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 34px;
}

.nxr_i_articleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nxr_i_articleCard {
  overflow: hidden;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_articleCard:nth-child(even) {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_articleImage {
  position: relative;
  display: block;
  overflow: hidden;
}

.nxr_i_articleImage img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .3s ease;
}

.nxr_i_articleImage:hover img {
  transform: scale(1.05);
}

.nxr_i_articleImage span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_articleContent {
  padding: 23px;
}

.nxr_i_articleContent h3 {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.4;
}

.nxr_i_articleContent h3 a:hover {
  color: #92719f;
}

.nxr_i_articleContent p {
  /* 控制显示行数为5 */
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 18px;
  color: #806f6f;
  font-size: 12px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.nxr_i_articleCard:nth-child(even) .nxr_i_articleContent p {
  color: var(--nxr_i_mist);
}

.nxr_i_articleContent time {
  color: #92719f;
  font-size: 10px;
}

.nxr_i_contactSection {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  padding: 58px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_contactIntro .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_contactIntro h2 {
  color: var(--nxr_i_paper);
}

.nxr_i_contactIntro > p {
  max-width: 430px;
  margin-top: 25px;
  color: var(--nxr_i_mist);
  font-size: 13px;
  line-height: 1.9;
}

.nxr_i_contactDetails {
  display: grid;
  gap: 15px;
  margin-top: 35px;
}

.nxr_i_contactDetails a,
.nxr_i_contactDetails > span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--nxr_i_paper);
  font-size: 12px;
}

.nxr_i_contactDetails i {
  width: 23px;
  color: var(--nxr_i_yellow);
  text-align: center;
}

.nxr_i_messageForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  align-content: center;
}

.nxr_i_messageForm label {
  color: var(--nxr_i_lilac);
  font-size: 11px;
}

.nxr_i_messageForm label:nth-of-type(3),
.nxr_i_messageForm textarea,
.nxr_i_messageForm button {
  grid-column: 1 / -1;
}

.nxr_i_messageForm input,
.nxr_i_messageForm textarea {
  width: 100%;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--nxr_i_lilac);
  outline: 0;
  resize: vertical;
  color: var(--nxr_i_paper);
  background: transparent;
  font-size: 13px;
}

.nxr_i_messageForm input::placeholder,
.nxr_i_messageForm textarea::placeholder {
  color: #a89999;
}

.nxr_i_messageForm .nxr_i_yellowButton {
  margin-top: 12px;
}

.nxr_i_siteFooter {
  padding: 70px 0 25px;
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_footerGrid {
  display: grid;
  grid-template-columns: 1.3fr .7fr 1fr;
  gap: 65px;
}

.nxr_i_footerIdentity img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nxr_i_footerName {
  margin: 22px 0 15px;
  color: var(--nxr_i_yellow);
  font-size: 20px;
}

.nxr_i_footerDescription {
  max-width: 420px;
  color: var(--nxr_i_mist);
  font-size: 12px;
  line-height: 1.9;
}

.nxr_i_footerLinks h2,
.nxr_i_footerContact h2 {
  margin: 0 0 20px;
  color: var(--nxr_i_yellow);
  font-size: 14px;
  font-weight: 500;
}

.nxr_i_footerLinks ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nxr_i_footerLinks a {
  color: var(--nxr_i_mist);
  font-size: 12px;
}

.nxr_i_footerLinks a:hover {
  color: var(--nxr_i_yellow);
}

.nxr_i_footerContact {
  display: grid;
  align-content: start;
  gap: 15px;
  font-style: normal;
}

.nxr_i_footerContact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--nxr_i_mist);
  font-size: 12px;
  line-height: 1.6;
}

.nxr_i_footerContact i {
  width: 16px;
  color: var(--nxr_i_lilac);
  text-align: center;
}

.nxr_i_footerBottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 20px;
  border-top: 1px solid rgba(222, 183, 240, .42);
  color: #a89999;
  font-size: 10px;
  letter-spacing: .04em;
}

.nxr_i_footerBottom a:hover {
  color: var(--nxr_i_yellow);
}

.nxr_i_backTop {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 30;
  width: 48px;
  height: 48px;
  display: grid;
  place-content: center;
  gap: 2px;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
  box-shadow: 4px 4px 0 var(--nxr_i_lilac);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.nxr_i_backTop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nxr_i_backTop i {
  font-size: 17px;
}

.nxr_i_backTop span {
  font-size: 8px;
  letter-spacing: .1em;
}

@media (max-width: 1000px) {
  .nxr_i_topline {
    grid-template-columns: 130px 1fr auto;
    gap: 15px;
  }

  .nxr_i_headerActions {
    gap: 9px;
  }

  .nxr_i_quadGrid,
  .nxr_i_regionGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxr_i_factCard:nth-child(2),
  .nxr_i_regionCard:nth-child(2) {
    border-right: 0;
  }

  .nxr_i_factCard:nth-child(-n + 2),
  .nxr_i_regionCard:nth-child(-n + 2) {
    border-bottom: 1px solid var(--nxr_i_lilac);
  }

  .nxr_i_offeringGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxr_i_articleGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxr_i_articleCard:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --nxr_i_width: 92%;
  }

  .nxr_i_topline {
    grid-template-columns: 1fr auto;
  }

  .nxr_i_welcomeRail {
    display: none;
  }

  .nxr_i_headerActions {
    justify-content: flex-end;
  }

  .nxr_i_bookmark span:last-child,
  .nxr_i_callEntry a {
    display: none;
  }

  .nxr_i_desktopNavigation {
    display: none;
  }

  .nxr_i_navigationInner {
    justify-content: flex-end;
  }

  .nxr_i_mobileTrigger {
    display: block;
  }

  .nxr_i_menuButton {
    width: 42px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--nxr_i_lilac);
    color: var(--nxr_i_wine);
    background: transparent;
    font-size: 19px;
  }

  .nxr_i_menuButton:hover,
  .nxr_i_menuButton:focus {
    color: var(--nxr_i_yellow);
    background: var(--nxr_i_wine);
  }

  .nxr_i_mobileNavigation {
    display: none;
    border-top: 1px solid var(--nxr_i_line);
    background: var(--nxr_i_paper);
  }

  .nxr_i_mobileNavigation.is-open {
    display: block;
  }

  .nxr_i_mobileNavigation ul {
    margin: 0;
    padding: 10px 0 16px;
    list-style: none;
  }

  .nxr_i_mobileNavigation li {
    border-bottom: 1px solid var(--nxr_i_line);
  }

  .nxr_i_mobileNavigation a {
    display: block;
    padding: 15px 4px;
    color: var(--nxr_i_wine);
    font-size: 13px;
  }

  .nxr_i_stagePanel,
  .nxr_i_profileColumns,
  .nxr_i_safetySection,
  .nxr_i_faqSection,
  .nxr_i_contactSection {
    grid-template-columns: 1fr;
  }

  .nxr_i_stageCopy,
  .nxr_i_profileText,
  .nxr_i_contactSection,
  .nxr_i_reachSection {
    padding: 35px 25px;
  }

  .nxr_i_stagePanel,
  .nxr_i_stageTrack {
    min-height: auto;
  }

  .nxr_i_stageVisual,
  .nxr_i_stageVisual img {
    min-height: 340px;
  }

  .nxr_i_safetySection,
  .nxr_i_faqSection {
    gap: 32px;
  }

  .nxr_i_radialMetrics {
    min-height: 500px;
    transform: scale(.86);
  }

  .nxr_i_offeringGrid,
  .nxr_i_articleGrid {
    grid-template-columns: 1fr;
  }

  .nxr_i_articleCard:last-child {
    grid-column: auto;
  }

  .nxr_i_footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .nxr_i_footerIdentity {
    grid-column: 1 / -1;
  }

  .nxr_i_footerBottom {
    display: grid;
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .nxr_i_headerActions {
    gap: 5px;
  }

  .nxr_i_callEntry i {
    font-size: 15px;
  }

  .nxr_i_stageCopy h1 {
    font-size: 43px;
  }

  .nxr_i_stageArrow {
    top: auto;
    bottom: 15px;
    transform: none;
  }

  .nxr_i_stageArrowPrev {
    left: 15px;
  }

  .nxr_i_stageArrowNext {
    right: 15px;
  }

  .nxr_i_quadGrid,
  .nxr_i_regionGrid,
  .nxr_i_safetyGrid {
    grid-template-columns: 1fr;
  }

  .nxr_i_factCard,
  .nxr_i_safetyItem,
  .nxr_i_regionCard {
    border-right: 0;
    border-bottom: 1px solid var(--nxr_i_lilac);
  }

  .nxr_i_factCard:last-child,
  .nxr_i_safetyItem:last-child,
  .nxr_i_regionCard:last-child {
    border-bottom: 0;
  }

  .nxr_i_radialMetrics {
    min-height: 430px;
    transform: scale(.68);
    transform-origin: top center;
    margin-bottom: -80px;
  }

  .nxr_i_metricMetric {
    width: 175px;
  }

  .nxr_i_questionCard {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nxr_i_avatar {
    margin: 0 auto;
  }

  .nxr_i_messageForm {
    grid-template-columns: 1fr;
  }

  .nxr_i_messageForm label:nth-of-type(3),
  .nxr_i_messageForm textarea,
  .nxr_i_messageForm button {
    grid-column: auto;
  }

  .nxr_i_footerGrid {
    grid-template-columns: 1fr;
  }

  .nxr_i_footerIdentity {
    grid-column: auto;
  }
}
/* =========================================================
   LIST PAGE
   ========================================================= */

.nxr_i_listMain,
.nxr_i_showMain {
  width: var(--nxr_i_width);
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.nxr_i_listMain > section,
.nxr_i_showMain > section {
  margin-top: 78px;
}

.nxr_i_listMasthead {
  min-height: 420px;
  display: grid;
  grid-template-columns: 1fr .8fr;
  overflow: hidden;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_listMastCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
}

.nxr_i_listMastCopy .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_listMastCopy h1 {
  margin: 20px 0;
  color: var(--nxr_i_paper);
  font-size: clamp(50px, 8vw, 110px);
  line-height: .85;
  letter-spacing: -.1em;
}

.nxr_i_listMastCopy p {
  max-width: 520px;
  margin: 0;
  color: var(--nxr_i_mist);
  font-size: 14px;
  line-height: 1.9;
}

.nxr_i_listMastGraphic {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-left: 1px solid var(--nxr_i_lilac);
}

.nxr_i_listMastGraphic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.nxr_i_gridOrb {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_yellow);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  text-align: center;
  transform: translate(-50%, -50%);
}

.nxr_i_gridOrb::before,
.nxr_i_gridOrb::after {
  position: absolute;
  inset: 20px;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  content: "";
}

.nxr_i_gridOrb::after {
  inset: -28px;
  border-style: dashed;
}

.nxr_i_gridOrb span {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: .22em;
}

.nxr_i_gridOrb strong {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-size: 28px;
}

.nxr_i_breadcrumbRow,
.nxr_i_articleTrail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--nxr_i_line);
  color: #7d7070;
  font-size: 11px;
}

.nxr_i_breadcrumbRow > span:first-child,
.nxr_i_articleTrail > span:first-child {
  color: var(--nxr_i_wine);
}

.nxr_i_breadcrumbRow a:hover,
.nxr_i_articleTrail a:hover {
  color: #92719f;
}

.nxr_i_breadcrumbRow > i,
.nxr_i_articleTrail > i {
  color: var(--nxr_i_lilac);
  font-size: 9px;
}

.nxr_i_listLayout,
.nxr_i_articleLayout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, .5fr);
  gap: 50px;
  margin-top: 78px;
}

.nxr_i_streamHeader,
.nxr_i_articlesHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.nxr_i_streamHeader h2 {
  margin: 12px 0 0;
  color: var(--nxr_i_wine);
  font-size: 46px;
  letter-spacing: -.08em;
}

.nxr_i_streamCount {
  color: #92719f;
  font-size: 10px;
  letter-spacing: .14em;
}

.nxr_i_storyItems {
  display: grid;
  gap: 15px;
}

.nxr_i_storyItem {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 210px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .78);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_storyItem:nth-child(2n) {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_storyThumb {
  position: relative;
  overflow: hidden;
}

.nxr_i_storyThumb img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform .3s ease;
}

.nxr_i_storyThumb:hover img {
  transform: scale(1.06);
}

.nxr_i_storyNumber {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
  font-size: 11px;
}

.nxr_i_storyBody {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.nxr_i_storyMeta {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  color: #92719f;
  font-size: 9px;
  letter-spacing: .1em;
}

.nxr_i_storyBody h3 {
  margin: 18px 0 12px;
  font-size: 21px;
  line-height: 1.35;
}

.nxr_i_storyBody h3 a:hover,
.nxr_i_hotNote h3 a:hover {
  color: #92719f;
}

.nxr_i_storyBody p {
  /* 控制显示行数为5 */
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 17px;
  color: #796d6d;
  font-size: 12px;
  line-height: 1.8;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.nxr_i_storyItem:nth-child(2n) .nxr_i_storyBody p {
  color: var(--nxr_i_mist);
}

.nxr_i_storyRead {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--nxr_i_wine);
  font-size: 11px;
}

.nxr_i_storyItem:nth-child(2n) .nxr_i_storyRead {
  color: var(--nxr_i_yellow);
}

.nxr_i_pagination {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  color: var(--nxr_i_wine);
  font-size: 12px;
}

.nxr_i_pagination a,
.nxr_i_pagination span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  padding: 0 9px;
  border: 1px solid var(--nxr_i_lilac);
}

.nxr_i_pagination a:hover,
.nxr_i_pagination .active {
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_listAside {
  display: grid;
  align-content: start;
  gap: 22px;
}

.nxr_i_searchPanel,
.nxr_i_topicNavigation,
.nxr_i_hotNotes {
  padding: 28px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_searchPanel h2,
.nxr_i_topicNavigation h2,
.nxr_i_hotNotes h2 {
  margin: 13px 0 23px;
  color: var(--nxr_i_wine);
  font-size: 27px;
  letter-spacing: -.06em;
}

.nxr_i_searchForm label {
  display: block;
  margin-bottom: 9px;
  color: #92719f;
  font-size: 10px;
}

.nxr_i_searchField {
  display: flex;
  border-bottom: 1px solid var(--nxr_i_wine);
}

.nxr_i_searchField input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  border: 0;
  outline: 0;
  color: var(--nxr_i_wine);
  background: transparent;
  font-size: 12px;
}

.nxr_i_searchField button {
  width: 38px;
  padding: 0;
  border: 0;
  color: var(--nxr_i_wine);
  background: transparent;
}

.nxr_i_searchField button:hover {
  color: #92719f;
}

.nxr_i_topicNavigation ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nxr_i_topicNavigation li {
  border-bottom: 1px solid var(--nxr_i_line);
}

.nxr_i_topicNavigation a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  color: #746868;
  font-size: 12px;
}

.nxr_i_topicNavigation a:hover {
  color: var(--nxr_i_wine);
}

.nxr_i_topicNavigation a i {
  color: #92719f;
  font-size: 10px;
}

.nxr_i_hotNoteList {
  display: grid;
  gap: 14px;
}

.nxr_i_hotNote {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
}

.nxr_i_hotNote img {
  width: 72px;
  height: 58px;
  object-fit: cover;
}

.nxr_i_hotNote h3 {
  margin: 0 0 7px;
  font-size: 12px;
  line-height: 1.4;
}

.nxr_i_hotNote time {
  color: #92719f;
  font-size: 9px;
}

.nxr_i_hotNote h3 a:hover {
  color: #92719f;
}


/* =========================================================
   SHOW PAGE
   ========================================================= */

.nxr_i_articleMasthead {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  overflow: hidden;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_articleMastText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 65px;
}

.nxr_i_articleMastText h1 {
  max-width: 780px;
  margin: 20px 0;
  color: var(--nxr_i_wine);
  font-size: clamp(40px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.08em;
}

.nxr_i_articleMastText p {
  max-width: 580px;
  margin: 0;
  color: #746868;
  font-size: 14px;
  line-height: 1.9;
}

.nxr_i_articleMastImage {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--nxr_i_wine);
}

.nxr_i_articleMastImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
}

.nxr_i_articleStamp {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 108px;
  height: 108px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_yellow);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  text-align: center;
  transform: rotate(-12deg);
}

.nxr_i_articleStamp span {
  font-size: 29px;
  font-weight: bold;
}

.nxr_i_articleStamp small {
  margin-top: 5px;
  color: var(--nxr_i_lilac);
  font-size: 8px;
  letter-spacing: .12em;
}

.nxr_i_articleBody {
  min-width: 0;
  padding: 0 0 45px;
}

.nxr_i_articleHeader {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--nxr_i_line);
}

.nxr_i_articleInfo {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #806f6f;
  font-size: 11px;
}

.nxr_i_articleInfo span,
.nxr_i_articleInfo time {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nxr_i_articleInfo i {
  color: #92719f;
}

.nxr_i_articleContent {
  padding: 42px 5% 55px;
  border-bottom: 1px solid var(--nxr_i_line);
  color: #493b3b;
  font-size: 16px;
  line-height: 2.1;
}

.nxr_i_articleContent h2 {
  margin: 38px 0 18px;
  color: var(--nxr_i_wine);
  font-size: 28px;
  line-height: 1.3;
}

.nxr_i_articleContent h3 {
  margin: 32px 0 15px;
  color: var(--nxr_i_wine);
  font-size: 21px;
}

.nxr_i_articleContent p {
  margin-bottom: 23px;
}

.nxr_i_articleContent img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_articleContent blockquote {
  margin: 30px 0;
  padding: 20px 25px;
  border-left: 3px solid var(--nxr_i_yellow);
  color: #695d5d;
  background: rgba(222, 183, 240, .18);
}

.nxr_i_articleContent ul,
.nxr_i_articleContent ol {
  padding-left: 25px;
}

.nxr_i_articlePager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 28px 0;
}

.nxr_i_articlePager a {
  display: block;
  min-height: 105px;
  padding: 20px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .72);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_articlePager a:last-child {
  text-align: right;
}

.nxr_i_articlePager a:hover {
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_articlePager span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  color: #92719f;
  font-size: 10px;
  letter-spacing: .1em;
}

.nxr_i_articlePager strong {
  display: block;
  font-size: 13px;
  line-height: 1.5;
}

.nxr_i_articleFooterTools {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-top: 10px;
}

.nxr_i_backToList {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--nxr_i_wine);
  font-size: 12px;
}

.nxr_i_backToList:hover {
  color: #92719f;
}

.nxr_i_shareBlock {
  text-align: right;
}

.nxr_i_shareBlock h2 {
  margin: 0 0 7px;
  color: var(--nxr_i_wine);
  font-size: 16px;
}

.nxr_i_shareBlock p {
  margin: 0 0 15px;
  color: #887b7b;
  font-size: 11px;
}

.nxr_i_shareButtons {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.nxr_i_shareButtons a,
.nxr_i_shareButtons button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_wine);
  background: transparent;
}

.nxr_i_shareButtons a:hover,
.nxr_i_shareButtons button:hover,
.nxr_i_shareButtons button.is-copied {
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_recommendRail {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_railHeading h2 {
  margin: 13px 0 28px;
  color: var(--nxr_i_paper);
  font-size: 33px;
  letter-spacing: -.07em;
}

.nxr_i_railHeading .nxr_i_microLabel,
.nxr_i_articleAsideSearch .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_recommendList {
  display: grid;
  gap: 16px;
}

.nxr_i_recommendCard {
  display: grid;
  grid-template-columns: 25px 66px 1fr;
  gap: 9px;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(222, 183, 240, .36);
}

.nxr_i_recommendIndex {
  color: var(--nxr_i_yellow);
  font-size: 10px;
}

.nxr_i_recommendCard img {
  width: 66px;
  height: 58px;
  object-fit: cover;
}

.nxr_i_recommendCopy h3 {
  margin: 0 0 8px;
  color: var(--nxr_i_paper);
  font-size: 12px;
  line-height: 1.4;
}

.nxr_i_recommendCopy h3 a:hover {
  color: var(--nxr_i_yellow);
}

.nxr_i_recommendCopy time {
  color: var(--nxr_i_mist);
  font-size: 9px;
}

.nxr_i_articleAsideSearch {
  margin-top: 28px;
  padding-top: 23px;
  border-top: 1px solid rgba(222, 183, 240, .36);
}

.nxr_i_articleAsideSearch .nxr_i_searchField {
  border-color: var(--nxr_i_lilac);
}

.nxr_i_articleAsideSearch .nxr_i_searchField input,
.nxr_i_articleAsideSearch .nxr_i_searchField button {
  color: var(--nxr_i_paper);
}

.nxr_i_articleHotline {
  padding: 52px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_hotlineHeading h2 {
  margin: 12px 0 30px;
  color: var(--nxr_i_wine);
  font-size: 43px;
  letter-spacing: -.08em;
}

.nxr_i_hotlineGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.nxr_i_hotlineCard {
  overflow: hidden;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
}

.nxr_i_hotlineCard img {
  width: 100%;
  height: 125px;
  object-fit: cover;
}

.nxr_i_hotlineCard > div {
  padding: 16px;
}

.nxr_i_hotlineCard h3 {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.45;
}

.nxr_i_hotlineCard h3 a:hover {
  color: #92719f;
}

.nxr_i_hotlineCard p {
  /* 控制显示行数为5 */
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 12px;
  color: #796d6d;
  font-size: 11px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.nxr_i_hotlineCard time {
  color: #92719f;
  font-size: 9px;
}

@media (max-width: 1050px) {
  .nxr_i_hotlineGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .nxr_i_listMasthead,
  .nxr_i_articleMasthead,
  .nxr_i_listLayout,
  .nxr_i_articleLayout {
    grid-template-columns: 1fr;
  }

  .nxr_i_listMastGraphic,
  .nxr_i_articleMastImage {
    min-height: 300px;
    border-top: 1px solid var(--nxr_i_lilac);
    border-left: 0;
  }

  .nxr_i_listMastGraphic img,
  .nxr_i_articleMastImage img {
    min-height: 300px;
  }

  .nxr_i_listAside {
    grid-template-columns: 1fr 1fr;
  }

  .nxr_i_hotNotes {
    grid-column: 1 / -1;
  }

  .nxr_i_hotlineGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .nxr_i_listMastCopy,
  .nxr_i_articleMastText {
    padding: 40px 25px;
  }

  .nxr_i_listMastCopy h1 {
    font-size: 62px;
  }

  .nxr_i_storyItem {
    grid-template-columns: 1fr;
  }

  .nxr_i_storyThumb,
  .nxr_i_storyThumb img {
    min-height: 220px;
  }

  .nxr_i_listAside {
    grid-template-columns: 1fr;
  }

  .nxr_i_hotNotes {
    grid-column: auto;
  }

  .nxr_i_articleInfo {
    display: grid;
    gap: 10px;
  }

  .nxr_i_articleContent {
    padding-right: 0;
    padding-left: 0;
    font-size: 15px;
  }

  .nxr_i_articlePager {
    grid-template-columns: 1fr;
  }

  .nxr_i_articlePager a:last-child {
    text-align: left;
  }

  .nxr_i_articleFooterTools {
    display: grid;
  }

  .nxr_i_shareBlock {
    text-align: left;
  }

  .nxr_i_shareButtons {
    justify-content: flex-start;
  }

  .nxr_i_articleHotline {
    padding: 32px 22px;
  }

  .nxr_i_hotlineGrid {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   CONTACT PAGE
   ========================================================= */

.nxr_i_contactMain,
.nxr_i_appMain {
  width: var(--nxr_i_width);
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.nxr_i_contactMain > section,
.nxr_i_appMain > section {
  margin-top: 78px;
}

.nxr_i_contactMasthead,
.nxr_i_appMasthead {
  min-height: 460px;
  display: grid;
  grid-template-columns: 1fr .85fr;
  overflow: hidden;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_contactMastCopy,
.nxr_i_appMastCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
}

.nxr_i_contactMastCopy .nxr_i_microLabel,
.nxr_i_appMastCopy .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_contactMastCopy h1,
.nxr_i_appMastCopy h1 {
  margin: 22px 0;
  color: var(--nxr_i_paper);
  font-size: clamp(52px, 8vw, 104px);
  line-height: .85;
  letter-spacing: -.1em;
}

.nxr_i_contactMastCopy p,
.nxr_i_appMastCopy p {
  max-width: 530px;
  color: var(--nxr_i_mist);
  font-size: 14px;
  line-height: 1.9;
}

.nxr_i_contactMastVisual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--nxr_i_lilac);
}

.nxr_i_contactMastVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
}

.nxr_i_signalCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_yellow);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  text-align: center;
  transform: translate(-50%, -50%) rotate(-10deg);
}

.nxr_i_signalCircle::before,
.nxr_i_signalCircle::after {
  position: absolute;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  content: "";
}

.nxr_i_signalCircle::before {
  inset: 18px;
}

.nxr_i_signalCircle::after {
  inset: -28px;
  border-style: dashed;
}

.nxr_i_signalCircle span,
.nxr_i_signalCircle strong,
.nxr_i_signalCircle small {
  position: relative;
  z-index: 1;
}

.nxr_i_signalCircle span {
  font-size: 12px;
  letter-spacing: .2em;
}

.nxr_i_signalCircle strong {
  margin: 12px 0;
  font-size: 32px;
}

.nxr_i_signalCircle small {
  color: var(--nxr_i_lilac);
  font-size: 8px;
  letter-spacing: .13em;
}

.nxr_i_contactTrail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
  padding: 17px 0;
  border-bottom: 1px solid var(--nxr_i_line);
  color: #7d7070;
  font-size: 11px;
}

.nxr_i_contactTrail > span:first-child {
  color: var(--nxr_i_wine);
}

.nxr_i_contactTrail i {
  color: var(--nxr_i_lilac);
  font-size: 9px;
}

.nxr_i_channelIntro {
  margin-bottom: 32px;
}

.nxr_i_channelIntro h2,
.nxr_i_methodsIntro h2,
.nxr_i_formStatement h2,
.nxr_i_appBenefits h2,
.nxr_i_intelligenceHeading h2,
.nxr_i_experienceHeading h2,
.nxr_i_compareHeading h2,
.nxr_i_updatesIntro h2,
.nxr_i_appFaqHeading h2,
.nxr_i_installHeading h2,
.nxr_i_trustLead h2,
.nxr_i_ctaCopy h2 {
  margin: 13px 0 0;
  color: var(--nxr_i_wine);
  font-size: clamp(36px, 5vw, 65px);
  line-height: .92;
  letter-spacing: -.08em;
}

.nxr_i_channelIntro p,
.nxr_i_methodsIntro p,
.nxr_i_intelligenceHeading p,
.nxr_i_experienceHeading p,
.nxr_i_compareHeading p,
.nxr_i_updatesIntro p,
.nxr_i_appFaqHeading p,
.nxr_i_installHeading p,
.nxr_i_trustLead p {
  max-width: 540px;
  margin: 20px 0 0;
  color: #776969;
  font-size: 13px;
  line-height: 1.9;
}

.nxr_i_channelGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_channelCard {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .78);
}

.nxr_i_channelCard:last-child {
  border-right: 0;
}

.nxr_i_channelCardDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_channelCard i {
  margin-bottom: 35px;
  color: var(--nxr_i_wine);
  font-size: 25px;
}

.nxr_i_channelCardDark i {
  color: var(--nxr_i_lilac);
}

.nxr_i_channelCard h3 {
  margin: 0 0 13px;
  font-size: 17px;
}

.nxr_i_channelCard strong {
  margin-bottom: 13px;
  color: var(--nxr_i_wine);
  font-size: 16px;
  word-break: break-word;
}

.nxr_i_channelCardDark strong {
  color: var(--nxr_i_yellow);
}

.nxr_i_channelCard span {
  margin-top: auto;
  color: #7d7070;
  font-size: 11px;
  line-height: 1.7;
}

.nxr_i_channelCardDark span {
  color: var(--nxr_i_mist);
}

.nxr_i_contactMethods {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 65px;
  align-items: start;
}

.nxr_i_methodList {
  border-top: 1px solid var(--nxr_i_wine);
}

.nxr_i_methodItem {
  border-bottom: 1px solid var(--nxr_i_wine);
}

.nxr_i_methodItem summary {
  display: grid;
  grid-template-columns: 48px 1fr auto 22px;
  align-items: center;
  gap: 15px;
  padding: 19px 0;
  cursor: pointer;
  list-style: none;
}

.nxr_i_methodItem summary::-webkit-details-marker {
  display: none;
}

.nxr_i_methodIcon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_wine);
}

.nxr_i_methodItem summary strong {
  color: var(--nxr_i_wine);
  font-size: 15px;
}

.nxr_i_methodItem summary small {
  color: #92719f;
  font-size: 10px;
}

.nxr_i_methodItem summary > i {
  color: var(--nxr_i_wine);
  transition: transform .2s ease;
}

.nxr_i_methodItem[open] summary > i {
  transform: rotate(45deg);
}

.nxr_i_methodAnswer {
  padding: 0 0 24px 63px;
}

.nxr_i_methodAnswer p {
  margin: 0 0 18px;
  color: #776969;
  font-size: 13px;
  line-height: 1.8;
}

.nxr_i_methodAnswer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nxr_i_methodAnswer li {
  color: #92719f;
  font-size: 11px;
}

.nxr_i_methodAnswer li i {
  margin-right: 6px;
  color: var(--nxr_i_wine);
}

.nxr_i_contactFormSection {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 65px;
  padding: 58px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_formStatement .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_formStatement h2 {
  color: var(--nxr_i_paper);
}

.nxr_i_formStatement p {
  max-width: 390px;
  margin-top: 25px;
  color: var(--nxr_i_mist);
  font-size: 13px;
  line-height: 1.9;
}

.nxr_i_formOrb {
  width: 85px;
  height: 85px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid var(--nxr_i_yellow);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  font-size: 24px;
}

.nxr_i_contactForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: center;
}

.nxr_i_formField {
  display: grid;
  gap: 8px;
}

.nxr_i_formFieldWide,
.nxr_i_contactForm > .nxr_i_yellowButton {
  grid-column: 1 / -1;
}

.nxr_i_formField label {
  color: var(--nxr_i_lilac);
  font-size: 10px;
}

.nxr_i_formField input,
.nxr_i_formField select,
.nxr_i_formField textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--nxr_i_lilac);
  outline: 0;
  color: var(--nxr_i_paper);
  background: transparent;
  font-size: 13px;
}

.nxr_i_formField select option {
  color: var(--nxr_i_wine);
}

.nxr_i_formField textarea {
  resize: vertical;
}

.nxr_i_formField input::placeholder,
.nxr_i_formField textarea::placeholder {
  color: #a89999;
}

.nxr_i_contactNotice {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_contactNotice > div {
  min-height: 175px;
  padding: 30px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
}

.nxr_i_contactNotice > div:last-child {
  border-right: 0;
}

.nxr_i_contactNotice i {
  margin-bottom: 28px;
  color: var(--nxr_i_wine);
  font-size: 23px;
}

.nxr_i_contactNotice strong {
  display: block;
  margin-bottom: 12px;
  color: var(--nxr_i_wine);
  font-size: 16px;
}

.nxr_i_contactNotice p {
  margin: 0;
  color: #776969;
  font-size: 11px;
  line-height: 1.7;
}


/* =========================================================
   APP PAGE
   ========================================================= */

.nxr_i_appMasthead {
  grid-template-columns: 1fr 1fr;
}

.nxr_i_appIconMark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-top: 28px;
  border: 1px solid var(--nxr_i_yellow);
  border-radius: 17px;
  color: var(--nxr_i_yellow);
  font-size: 25px;
}

.nxr_i_appMastCopy h1 {
  margin-top: 20px;
  font-size: clamp(45px, 6vw, 78px);
}

.nxr_i_appDownloadLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.nxr_i_darkButton {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border: 1px solid var(--nxr_i_lilac);
  color: var(--nxr_i_paper);
  background: transparent;
  font-size: 12px;
}

.nxr_i_darkButton:hover {
  color: var(--nxr_i_wine);
  background: var(--nxr_i_yellow);
}

.nxr_i_phoneStage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  overflow: hidden;
  border-left: 1px solid var(--nxr_i_lilac);
  background:
    linear-gradient(45deg, transparent 49.7%, rgba(222, 183, 240, .38) 50%, transparent 50.3%),
    linear-gradient(-45deg, transparent 49.7%, rgba(222, 183, 240, .38) 50%, transparent 50.3%),
    var(--nxr_i_wine);
  background-size: 48px 48px;
}

.nxr_i_phoneOutline {
  position: relative;
  width: 245px;
  height: 470px;
  padding: 10px;
  border: 2px solid var(--nxr_i_lilac);
  border-radius: 32px;
  background: #170000;
  box-shadow: 15px 18px 0 rgba(222, 183, 240, .22);
  transform: rotate(7deg);
}

.nxr_i_phoneCamera {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 2;
  width: 70px;
  height: 19px;
  border-radius: 12px;
  background: #170000;
  transform: translateX(-50%);
}

.nxr_i_phoneScreen {
  height: 100%;
  padding: 25px 17px;
  overflow: hidden;
  border-radius: 23px;
  background:
    linear-gradient(rgba(49, 2, 2, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 2, 2, .08) 1px, transparent 1px),
    var(--nxr_i_paper);
  background-size: 17px 17px;
  color: var(--nxr_i_wine);
}

.nxr_i_phoneTopbar {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.nxr_i_phoneLogo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-top: 34px;
  border-radius: 12px;
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  font-size: 16px;
  font-weight: bold;
}

.nxr_i_phoneHeadline {
  margin-top: 30px;
  font-size: 18px;
  line-height: .9;
}

.nxr_i_phoneHeadline strong {
  color: #92719f;
  font-size: 26px;
}

.nxr_i_phoneScore {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_yellow);
}

.nxr_i_phoneScore span,
.nxr_i_phoneScore small {
  font-size: 8px;
}

.nxr_i_phoneScore strong {
  font-size: 35px;
}

.nxr_i_phoneRows {
  display: grid;
  gap: 11px;
  margin-top: 25px;
}

.nxr_i_phoneRows span {
  height: 10px;
  display: block;
  background: var(--nxr_i_lilac);
}

.nxr_i_phoneRows span:nth-child(2) {
  width: 74%;
}

.nxr_i_phoneRows span:nth-child(3) {
  width: 88%;
}

.nxr_i_phoneLabel {
  position: absolute;
  right: 25px;
  bottom: 25px;
  color: var(--nxr_i_yellow);
  font-size: 9px;
  letter-spacing: .12em;
  line-height: 1.6;
  text-align: right;
}

.nxr_i_appStats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_appStats > div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
}

.nxr_i_appStats > div:last-child {
  border-right: 0;
}

.nxr_i_appStats .nxr_i_appStatDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_appStats i {
  margin-bottom: 23px;
  color: #92719f;
}

.nxr_i_appStatDark i {
  color: var(--nxr_i_lilac);
}

.nxr_i_appStats strong {
  color: var(--nxr_i_wine);
  font-size: 30px;
}

.nxr_i_appStatDark strong {
  color: var(--nxr_i_yellow);
}

.nxr_i_appStats span {
  margin-top: 8px;
  color: #827575;
  font-size: 11px;
}

.nxr_i_appStatDark span {
  color: var(--nxr_i_mist);
}

.nxr_i_appBenefits {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.nxr_i_benefitsIntro p {
  max-width: 380px;
  margin-top: 25px;
  color: #776969;
  font-size: 13px;
  line-height: 1.9;
}

.nxr_i_benefitStack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.nxr_i_benefitCard {
  min-height: 195px;
  padding: 26px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_benefitCardDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_benefitCard i {
  color: var(--nxr_i_wine);
  font-size: 23px;
}

.nxr_i_benefitCardDark i {
  color: var(--nxr_i_lilac);
}

.nxr_i_benefitCard h3 {
  margin: 27px 0 9px;
  font-size: 16px;
}

.nxr_i_benefitCard strong {
  display: block;
  margin-bottom: 10px;
  color: #92719f;
  font-size: 12px;
  letter-spacing: .1em;
}

.nxr_i_benefitCard p {
  margin: 0;
  color: #776969;
  font-size: 11px;
  line-height: 1.7;
}

.nxr_i_benefitCardDark p {
  color: var(--nxr_i_mist);
}

.nxr_i_appIntelligence {
  padding: 60px 0;
}

.nxr_i_intelligenceHeading {
  text-align: center;
}

.nxr_i_intelligenceHeading p {
  margin-right: auto;
  margin-left: auto;
}

.nxr_i_intelligenceRing {
  position: relative;
  max-width: 720px;
  min-height: 620px;
  margin: 40px auto 0;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 28%, rgba(222, 183, 240, .55) 28.2% 28.5%, transparent 28.8%),
    radial-gradient(circle, transparent 0 54%, rgba(222, 183, 240, .5) 54.2% 54.5%, transparent 54.8%);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_intelCore {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  text-align: center;
  transform: translate(-50%, -50%);
}

.nxr_i_intelCore span {
  font-size: 37px;
  font-weight: bold;
}

.nxr_i_intelCore small {
  font-size: 8px;
  letter-spacing: .15em;
}

.nxr_i_intelNode {
  position: absolute;
  width: 180px;
  padding: 18px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
  box-shadow: var(--nxr_i_shadow);
  text-align: center;
}

.nxr_i_intelNode i {
  color: var(--nxr_i_wine);
}

.nxr_i_intelNode h3 {
  margin: 9px 0;
  font-size: 13px;
}

.nxr_i_intelNode p {
  margin: 0;
  color: #807474;
  font-size: 10px;
}

.nxr_i_intelNodeTop {
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.nxr_i_intelNodeRight {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.nxr_i_intelNodeBottom {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
}

.nxr_i_intelNodeLeft {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.nxr_i_experienceHeading {
  margin-bottom: 32px;
}

.nxr_i_experienceGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_experienceCard {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
}

.nxr_i_experienceCard:last-child {
  border-right: 0;
}

.nxr_i_experienceCardDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_experienceNumber {
  display: block;
  margin-bottom: 35px;
  color: #92719f;
  font-size: 11px;
}

.nxr_i_experienceCard i {
  color: var(--nxr_i_wine);
  font-size: 25px;
}

.nxr_i_experienceCardDark i {
  color: var(--nxr_i_lilac);
}

.nxr_i_experienceCard h3 {
  margin: 20px 0 12px;
  font-size: 16px;
}

.nxr_i_experienceCard p {
  margin: 0;
  color: #7d7070;
  font-size: 11px;
  line-height: 1.8;
}

.nxr_i_experienceCardDark p {
  color: var(--nxr_i_mist);
}

.nxr_i_compareHeading {
  margin-bottom: 28px;
}

.nxr_i_compareTable {
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_compareRow {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--nxr_i_lilac);
}

.nxr_i_compareRow:last-child {
  border-bottom: 0;
}

.nxr_i_compareRow > * {
  padding: 17px 20px;
  border-right: 1px solid var(--nxr_i_lilac);
  font-size: 12px;
}

.nxr_i_compareRow > *:last-child {
  border-right: 0;
}

.nxr_i_compareHeader {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_compareHeader > * {
  color: var(--nxr_i_yellow);
  font-size: 10px;
  letter-spacing: .1em;
}

.nxr_i_compareRow strong {
  color: var(--nxr_i_wine);
  background: rgba(240, 230, 117, .18);
}

.nxr_i_updates {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
}

.nxr_i_appUpdates {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px;
}

.nxr_i_updatesIntro p {
  max-width: 380px;
}

.nxr_i_updateTimeline {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 25px;
  border-left: 1px solid var(--nxr_i_lilac);
}

.nxr_i_updateYear {
  margin: 10px 0;
  color: var(--nxr_i_wine);
  font-size: 23px;
  font-weight: bold;
}

.nxr_i_updateCard {
  position: relative;
  padding: 23px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_updateCard::before {
  position: absolute;
  top: 28px;
  left: -31px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--nxr_i_wine);
  border-radius: 50%;
  background: var(--nxr_i_yellow);
  content: "";
}

.nxr_i_updateCardActive {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_updateCard > span {
  color: #92719f;
  font-size: 10px;
  letter-spacing: .08em;
}

.nxr_i_updateCard h3 {
  margin: 13px 0;
  font-size: 17px;
}

.nxr_i_updateCard ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 16px;
  color: #776969;
  font-size: 11px;
  line-height: 1.6;
}

.nxr_i_updateCardActive ul {
  color: var(--nxr_i_mist);
}

.nxr_i_appFaq {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 65px;
}

.nxr_i_appFaqList {
  border-top: 1px solid var(--nxr_i_wine);
}

.nxr_i_appFaqList details {
  border-bottom: 1px solid var(--nxr_i_wine);
}

.nxr_i_appFaqList summary {
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 13px;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  color: var(--nxr_i_wine);
  font-size: 14px;
}

.nxr_i_appFaqList summary::-webkit-details-marker {
  display: none;
}

.nxr_i_appFaqList summary span {
  color: #92719f;
  font-size: 11px;
}

.nxr_i_appFaqList summary i {
  transition: transform .2s ease;
}

.nxr_i_appFaqList details[open] summary i {
  transform: rotate(45deg);
}

.nxr_i_appFaqList details p {
  margin: 0 35px 20px 58px;
  color: #776969;
  font-size: 12px;
  line-height: 1.8;
}

.nxr_i_installHeading {
  margin-bottom: 32px;
}

.nxr_i_installColumns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--nxr_i_lilac);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_installColumn {
  padding: 35px;
  border-right: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .8);
}

.nxr_i_installColumn:last-child {
  border-right: 0;
}

.nxr_i_installColumnDark {
  color: var(--nxr_i_paper);
  background: var(--nxr_i_wine);
}

.nxr_i_installColumn h3 {
  margin: 0 0 30px;
  color: var(--nxr_i_wine);
  font-size: 20px;
}

.nxr_i_installColumnDark h3 {
  color: var(--nxr_i_yellow);
}

.nxr_i_installColumn h3 i {
  margin-right: 8px;
}

.nxr_i_installStep {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  padding: 18px 0;
  border-top: 1px solid var(--nxr_i_line);
}

.nxr_i_installColumnDark .nxr_i_installStep {
  border-color: rgba(222, 183, 240, .35);
}

.nxr_i_installStep > strong {
  color: #92719f;
  font-size: 12px;
}

.nxr_i_installStep h4 {
  margin: 0 0 7px;
  color: var(--nxr_i_wine);
  font-size: 14px;
}

.nxr_i_installColumnDark .nxr_i_installStep h4 {
  color: var(--nxr_i_paper);
}

.nxr_i_installStep p {
  margin: 0;
  color: #776969;
  font-size: 11px;
  line-height: 1.7;
}

.nxr_i_installColumnDark .nxr_i_installStep p {
  color: var(--nxr_i_mist);
}

.nxr_i_appTrust {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  padding: 55px;
  border: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_wine);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_trustLead .nxr_i_microLabel {
  color: var(--nxr_i_yellow);
}

.nxr_i_trustLead h2 {
  color: var(--nxr_i_paper);
}

.nxr_i_trustLead p {
  color: var(--nxr_i_mist);
}

.nxr_i_trustGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--nxr_i_lilac);
}

.nxr_i_trustCard {
  min-height: 175px;
  padding: 25px;
  border-right: 1px solid var(--nxr_i_lilac);
  border-bottom: 1px solid var(--nxr_i_lilac);
  background: var(--nxr_i_paper);
}

.nxr_i_trustCard:nth-child(2),
.nxr_i_trustCard:nth-child(4) {
  border-right: 0;
}

.nxr_i_trustCard:nth-child(3),
.nxr_i_trustCard:nth-child(4) {
  border-bottom: 0;
}

.nxr_i_trustCardDark {
  color: var(--nxr_i_paper);
  background: #4a1717;
}

.nxr_i_trustCard i {
  color: var(--nxr_i_wine);
  font-size: 22px;
}

.nxr_i_trustCardDark i {
  color: var(--nxr_i_yellow);
}

.nxr_i_trustCard h3 {
  margin: 18px 0 9px;
  font-size: 15px;
}

.nxr_i_trustCard p {
  margin: 0;
  color: #776969;
  font-size: 11px;
  line-height: 1.7;
}

.nxr_i_trustCardDark p {
  color: var(--nxr_i_mist);
}

.nxr_i_appCta {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 45px;
  padding: 55px;
  border: 1px solid var(--nxr_i_lilac);
  background: rgba(242, 238, 238, .82);
  box-shadow: var(--nxr_i_shadow);
}

.nxr_i_ctaOrb {
  width: 190px;
  height: 190px;
  display: grid;
  place-content: center;
  border: 1px solid var(--nxr_i_lilac);
  border-radius: 50%;
  color: var(--nxr_i_yellow);
  background: var(--nxr_i_wine);
  text-align: center;
  transform: rotate(-10deg);
}

.nxr_i_ctaOrb span,
.nxr_i_ctaOrb strong {
  display: block;
}

.nxr_i_ctaOrb span {
  font-size: 10px;
  letter-spacing: .2em;
}

.nxr_i_ctaOrb strong {
  margin-top: 12px;
  font-size: 43px;
}

.nxr_i_ctaCopy p {
  max-width: 480px;
  margin: 22px 0;
  color: #776969;
  font-size: 13px;
  line-height: 1.9;
}


/* CONTACT / APP RESPONSIVE */

@media (max-width: 1050px) {
  .nxr_i_channelGrid,
  .nxr_i_appStats {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxr_i_channelCard:nth-child(2),
  .nxr_i_appStats > div:nth-child(2) {
    border-right: 0;
  }

  .nxr_i_channelCard:nth-child(-n + 2),
  .nxr_i_appStats > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--nxr_i_lilac);
  }

  .nxr_i_benefitStack {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .nxr_i_contactMasthead,
  .nxr_i_appMasthead,
  .nxr_i_contactMethods,
  .nxr_i_contactFormSection,
  .nxr_i_appBenefits,
  .nxr_i_appUpdates,
  .nxr_i_appFaq,
  .nxr_i_appTrust {
    grid-template-columns: 1fr;
  }

  .nxr_i_contactMastVisual,
  .nxr_i_phoneStage {
    min-height: 390px;
    border-top: 1px solid var(--nxr_i_lilac);
    border-left: 0;
  }

  .nxr_i_phoneStage {
    min-height: 520px;
  }

  .nxr_i_contactMastVisual img {
    min-height: 390px;
  }

  .nxr_i_appTrust {
    padding: 35px 25px;
  }

  .nxr_i_experienceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nxr_i_experienceCard:nth-child(2) {
    border-right: 0;
  }

  .nxr_i_experienceCard:nth-child(-n + 2) {
    border-bottom: 1px solid var(--nxr_i_lilac);
  }
}

@media (max-width: 560px) {
  .nxr_i_contactMastCopy,
  .nxr_i_appMastCopy {
    padding: 42px 25px;
  }

  .nxr_i_contactMastCopy h1,
  .nxr_i_appMastCopy h1 {
    font-size: 54px;
  }

  .nxr_i_channelGrid,
  .nxr_i_appStats,
  .nxr_i_experienceGrid,
  .nxr_i_installColumns,
  .nxr_i_trustGrid,
  .nxr_i_contactNotice {
    grid-template-columns: 1fr;
  }

  .nxr_i_channelCard,
  .nxr_i_appStats > div,
  .nxr_i_experienceCard,
  .nxr_i_installColumn,
  .nxr_i_trustCard,
  .nxr_i_contactNotice > div {
    border-right: 0;
    border-bottom: 1px solid var(--nxr_i_lilac);
  }

  .nxr_i_channelCard:last-child,
  .nxr_i_appStats > div:last-child,
  .nxr_i_experienceCard:last-child,
  .nxr_i_installColumn:last-child,
  .nxr_i_trustCard:last-child,
  .nxr_i_contactNotice > div:last-child {
    border-bottom: 0;
  }

  .nxr_i_contactFormSection,
  .nxr_i_appCta {
    padding: 35px 25px;
  }

  .nxr_i_contactForm {
    grid-template-columns: 1fr;
  }

  .nxr_i_formFieldWide,
  .nxr_i_contactForm > .nxr_i_yellowButton {
    grid-column: auto;
  }

  .nxr_i_methodItem summary {
    grid-template-columns: 42px 1fr 20px;
  }

  .nxr_i_methodItem summary small {
    display: none;
  }

  .nxr_i_methodAnswer {
    padding-left: 0;
  }

  .nxr_i_benefitStack {
    grid-template-columns: 1fr;
  }

  .nxr_i_intelligenceRing {
    min-height: 440px;
    transform: scale(.68);
    transform-origin: top center;
    margin-bottom: -100px;
  }

  .nxr_i_compareRow > * {
    padding: 13px 9px;
    font-size: 10px;
  }

  .nxr_i_appCta {
    grid-template-columns: 1fr;
  }

  .nxr_i_ctaOrb {
    width: 145px;
    height: 145px;
  }
}