@charset "UTF-8";
:root {
  font-size: 20px;
  --red: #5c6a92;
  --yellow: #f8ab37;
  --green: #2ecc71;
  --white: #ffffff;
  --grey-light: #ff0000;
  --grey: #ff0000;
  --black: #080808;
  --black-blue: #1f2029;
  --black-blue-light: #353746;
  --black-blue-light-2: #404255;
  --black-blue-light-3: #4b4d64;
  --black-light: #424455;
}

/* #Progress
================================================== */
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: 'unicons';
  content: 'â†‘';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--grey);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: 'unicons';
  content: 'â†‘';
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-image: linear-gradient(298deg, var(--red), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--grey);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

body.light .progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
}

body.light .progress-wrap::after {
  color: var(--black-blue);
}

body.light .progress-wrap svg.progress-circle path {
  stroke: var(--black-blue);
}

.beginning {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  background: #00003c;
  padding: 15px 0;
}

.beginning .rendezvous {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 15px;
  box-sizing: border-box;
}

.beginning .rendezvous .logo {
  width: 132px;
  height: fit-content;
}

.beginning .rendezvous .logo a {
  display: block;
  width: 100%;
  height: fit-content;
}

.beginning .rendezvous .logo a img {
  width: 100%;
  height: fit-content;
}

.beginning .rendezvous .purpose {
  flex: 1;
  overflow: hidden;
}

.beginning .rendezvous .purpose ul {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  overflow-x: auto;
}

.beginning .rendezvous .purpose ul li {
  position: relative;
  white-space: nowrap;
  user-select: none;
}

.beginning .rendezvous .purpose ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 0%;
  background: #ff0000;
  transition: all 0.3s;
}

.beginning .rendezvous .purpose ul li:hover::after {
  height: 100%;
}

.beginning .rendezvous .purpose ul li a {
  position: relative;
  z-index: 2;
  padding: 3px 12px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 768px) {
  .beginning {
    padding: 0.4rem 0;
  }
  .beginning .rendezvous {
    padding: 0 0.26667rem;
    gap: 0.42667rem;
    flex-direction: column;
  }
  .beginning .rendezvous .logo {
    width: 2.08rem;
  }
  .beginning .rendezvous .purpose {
    flex: auto;
    width: 100%;
  }
  .beginning .rendezvous .purpose ul {
    gap: 0.16rem;
    padding-bottom: 0.16rem;
  }
  .beginning .rendezvous .purpose ul li a {
    padding: 0.06667rem 0.26667rem;
    font-size: 0.30667rem;
  }
}

.central {
  height: fit-content;
  padding: 121px 0;
  box-sizing: border-box;
  background-color: #202054;
}

.central.surround {
  padding: 102px 0;
  box-sizing: border-box;
  background-color: #e3ebfb;
}

.central .headline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  white-space: nowrap;
  user-select: none;
}

.central .headline::before, .central .headline::after {
  content: "";
  flex: 1;
  height: 18px;
  background: url("/template/forty-two/image/title_left.png") no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

.central .headline::after {
  background-image: url("/template/forty-two/image/title_right.png");
}

.central .headline strong {
  font-size: 40px;
  color: #151750;
  font-weight: bold;
}

.central .headline.conversion::before {
  background: url("/template/forty-two/image/title_active_left.png");
}

.central .headline.conversion::after {
  background-image: url("/template/forty-two/image/title_active_right.png");
}

.central .headline.conversion strong {
  color: #ffff;
}

.central .events {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  --color: #151750;
}

.central .events.convert {
  --color: #fff;
}

.central .events ul {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
}

.central .events ul li {
  border: 1px solid var(--color);
  border-radius: 22px;
}

.central .events ul li:hover {
  background: #ff0000;
  border-color: transparent;
}

.central .events ul li:hover a {
  color: #fff;
}

.central .events ul li a {
  padding: 3px 22px;
  display: block;
  white-space: nowrap;
  user-select: none;
  font-size: 13px;
  color: var(--color);
  font-weight: bold;
}

.central .antagonism {
  white-space: nowrap;
  padding: 60px 0;
  box-sizing: border-box;
  background: url("/template/forty-two/image/backdrop.png") no-repeat;
  background-size: 100% 100%;
}

.central .controversy {
  width: 100%;
}

.central .controversy.alongside {
  height: 920px;
  overflow-y: auto;
  background-image: url("/template/forty-two/image/alongside.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.central .controversy ul {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  display: flex;
  flex-direction: column;
}

.central .controversy ul li {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  align-items: center;
  padding: 6px 14px;
  box-sizing: border-box;
  gap: 12px;
  background: #151750;
  border-bottom: 1px solid #d9d9e4;
}

.central .controversy ul li:hover {
  background: rgba(255, 0, 0, 0.6);
  border-color: #ff0000;
}

.central .controversy ul li .revelation {
  width: 100%;
  display: flex;
  align-items: center;
}

.central .controversy ul li .revelation .piece {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.central .controversy ul li .revelation .piece .difference {
  width: 100%;
  overflow: hidden;
}

.central .controversy ul li .revelation .piece .difference a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .controversy ul li .revelation .piece .difference a img {
  width: 28px;
  height: fit-content;
}

.central .controversy ul li .revelation .piece .difference a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
}

.central .controversy ul li .revelation .piece .course {
  width: 100%;
}

.central .controversy ul li .revelation .piece .course a {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.central .controversy ul li .revelation .piece .course a time {
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.central .controversy ul li .revelation .piece .course a time:first-child {
  font-size: 18px;
}

.central .controversy ul li .revelation .affection {
  white-space: nowrap;
}

.central .controversy ul li .revelation .affection.start a strong {
  color: #ea3434;
}

.central .controversy ul li .revelation .affection.await a strong {
  color: #ffea48;
}

.central .controversy ul li .revelation .affection a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .controversy ul li .revelation .affection a img {
  width: 22px;
}

.central .controversy ul li .revelation .affection a strong {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.central .controversy ul li .squadron {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  gap: 16px;
}

.central .controversy ul li .squadron .team {
  width: 100%;
  overflow: hidden;
}

.central .controversy ul li .squadron .team a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.central .controversy ul li .squadron .team a img {
  width: 28px;
}

.central .controversy ul li .squadron .team a strong {
  color: #fff;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
}

.central .controversy ul li .squadron .team:first-child a strong {
  text-align: right;
}

.central .controversy ul li .squadron .minute {
  width: 100%;
}

.central .controversy ul li .squadron .minute a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .controversy ul li .squadron .minute a span {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.central .controversy ul li .squadron .minute a em {
  font-size: 13px;
  color: #fff;
}

.central .controversy ul li .surplus {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.central .controversy ul li .surplus .speaker {
  width: 100%;
  overflow: hidden;
}

.central .controversy ul li .surplus .speaker a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .controversy ul li .surplus .speaker a img {
  width: 22px;
}

.central .controversy ul li .surplus .speaker a span {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.central .controversy ul li .surplus .battle {
  width: 100%;
}

.central .controversy ul li .surplus .battle a {
  width: 100%;
  display: flex;
  justify-content: center;
}

.central .television {
  padding: 52px 0;
  box-sizing: border-box;
}

.central .movie {
  width: 100%;
}

.central .movie.second ul {
  grid-template-columns: repeat(2, 1fr);
}

.central .movie ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.central .movie ul li {
  width: 100%;
  overflow: hidden;
  transition: all 0.2s;
}

.central .movie ul li:hover {
  box-shadow: rgba(37, 44, 97, 0.15) 0px 5px 15px 0px, rgba(93, 100, 148, 0.2) 0px 2px 4px 0px;
  transform: scale(1.03);
}

.central .movie ul li a {
  display: block;
  width: 100%;
  height: fit-content;
  user-select: none;
}

.central .movie ul li a .excerpt {
  position: relative;
  width: 100%;
  height: 182px;
  white-space: nowrap;
}

.central .movie ul li a .excerpt .cover {
  width: 100%;
  height: 100%;
}

.central .movie ul li a .excerpt .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: fit-content;
}

.central .movie ul li a .excerpt .play img {
  width: 100%;
  height: fit-content;
}

.central .movie ul li a .excerpt time {
  position: absolute;
  right: 8px;
  bottom: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.central .movie ul li a .delineate {
  width: 100%;
  height: 139px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.central .movie ul li a .delineate p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: 13px;
  line-height: 23px;
  color: #202054;
  font-weight: bold;
}

.central .movie ul li a .delineate .painstaking {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.central .movie ul li a .delineate .painstaking .solitary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .movie ul li a .delineate .painstaking .solitary .icon-redu {
  color: #ff3d43;
  font-size: 18px;
}

.central .movie ul li a .delineate .painstaking .solitary .icon-shijian {
  color: #9582ff;
  font-size: 20px;
}

.central .movie ul li a .delineate .painstaking .solitary time,
.central .movie ul li a .delineate .painstaking .solitary span {
  color: #6d6d73;
  font-size: 13px;
  font-weight: bold;
}

.central .scorching {
  padding: 76px 0;
  background: url(/template/forty-two/image/backdrop.png) no-repeat;
  background-size: 100%;
  background-position: center;
}

.central .scorching .contingent {
  width: 100%;
  overflow: hidden;
}

.central .scorching .contingent ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.central .scorching .contingent ul li {
  width: 100%;
  height: 156px;
  background: url("/template/forty-two/image/scorching.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.central .scorching .contingent ul li:hover {
  background: url("/template/forty-two/image/scorching_active.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  animation: whirling 1s linear;
}

.central .scorching .contingent ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 32px;
  box-sizing: border-box;
}

.central .scorching .contingent ul li a img {
  width: fit-content;
  height: 52px;
}

.central .scorching .contingent ul li a strong {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}

.central .recount {
  padding: 66px 0;
}

.central .newsprint {
  width: 100%;
  overflow: hidden;
}

.central .newsprint ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.central .newsprint ul li {
  width: 100%;
  height: 252px;
  background: #f5f9fd;
}

.central .newsprint ul li:hover {
  background: #ff0000;
}

.central .newsprint ul li:hover span,
.central .newsprint ul li:hover strong,
.central .newsprint ul li:hover p {
  color: #fff;
}

.central .newsprint ul li span,
.central .newsprint ul li strong,
.central .newsprint ul li p {
  color: #151750;
}

.central .newsprint ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 12px;
}

.central .newsprint ul li a .prestige {
  position: relative;
  width: 40%;
  height: 100%;
}

.central .newsprint ul li a .prestige img {
  width: 100%;
  height: 100%;
}

.central .newsprint ul li a .prestige time {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;
  font-weight: bold;
  font-size: 13px;
}

.central .newsprint ul li a .depicting {
  flex: 1;
  height: 100%;
  overflow: hidden;
  padding: 10px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.central .newsprint ul li a .depicting article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.central .newsprint ul li a .depicting article strong {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.central .newsprint ul li a .depicting article p {
  font-size: 13px;
  line-height: 25px;
  font-size: 13px;
  text-indent: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.central .newsprint ul li a .depicting .tender {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.central .newsprint ul li a .depicting .tender .labels {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .newsprint ul li a .depicting .tender .labels span {
  padding: 2px 10px;
  border: 1px solid #151750;
  font-size: 13px;
}

.central .newsprint ul li a .depicting .tender .hot {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .newsprint ul li a .depicting .tender .hot .icon-redu {
  font-size: 18px;
  color: #ff692a;
}

.central .newsprint ul li a .depicting .tender .hot span {
  font-size: 13px;
  font-weight: bold;
  color: #ff692a;
}

.central .crumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.central .crumbs strong {
  color: #00003c;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .crumbs strong::before {
  content: "";
  width: 3px;
  height: 10px;
  border-radius: 5px;
  background: #00003c;
}

.central .crumbs ul {
  display: flex;
  align-items: center;
}

.central .crumbs ul li {
  font-size: 13px;
}

.central .crumbs ul li a {
  color: #000;
  font-weight: bold;
  white-space: nowrap;
}

.central .crumbs ul li::after {
  content: ">";
  margin: 0 8px;
  color: #000;
}

.central .crumbs ul li:last-child a {
  color: #00003c;
}

.central .crumbs ul li:last-child::after {
  display: none;
}

.central .encompass {
  display: flex;
  gap: 16px;
}

.central .encompass .gravity {
  flex: 1;
  overflow: hidden;
}

.central .encompass .gravity .narrative {
  width: 100%;
  overflow: hidden;
  padding: 20px 15px;
  box-sizing: border-box;
  background: #fff;
}

.central .encompass .gravity .narrative h1 {
  width: 100%;
  font-weight: bold;
  color: #00003c;
  font-size: 15px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
}

.central .encompass .gravity .narrative .describe {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  gap: 12px;
}

.central .encompass .gravity .narrative .describe .solely {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .encompass .gravity .narrative .describe .solely .icon-shijian {
  font-size: 18px;
  color: #24abf2;
}

.central .encompass .gravity .narrative .describe .solely .icon-redu {
  font-size: 20px;
  color: #fc334c;
}

.central .encompass .gravity .narrative .describe .solely span,
.central .encompass .gravity .narrative .describe .solely time {
  color: #00003c;
  font-size: 13px;
  font-weight: bold;
}

.central .encompass .gravity .narrative .alluring {
  position: relative;
  width: 100%;
  height: 366px;
}

.central .encompass .gravity .narrative .alluring .drawing {
  width: 100%;
  height: 100%;
}

.central .encompass .gravity .narrative .alluring .drawing img {
  width: 100%;
  height: 100%;
}

.central .encompass .gravity .narrative .alluring time {
  position: absolute;
  left: 12px;
  top: 12px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.central .encompass .gravity .narrative .alluring time:last-of-type {
  left: auto;
  top: auto;
  right: 12px;
  bottom: 42px;
}

.central .encompass .gravity .narrative .alluring .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: fit-content;
}

.central .encompass .gravity .narrative .alluring .play img {
  width: 100%;
  height: fit-content;
}

.central .encompass .gravity .narrative .alluring p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 7px 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
}

.central .encompass .gravity .narrative .bewrite {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 22px;
}

.central .encompass .gravity .narrative .bewrite ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.central .encompass .gravity .narrative .bewrite ul li {
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #00003c;
  font-weight: bold;
  flex-wrap: wrap;
}

.central .encompass .gravity .narrative .bewrite ul li span,
.central .encompass .gravity .narrative .bewrite ul li a {
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .narrative .bewrite > strong,
.central .encompass .gravity .narrative .bewrite p {
  font-size: 12px;
  color: #00003c;
  line-height: 24px;
  font-weight: bold;
  text-indent: 8px;
}

.central .encompass .gravity .narrative .essay {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .narrative .essay article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.central .encompass .gravity .narrative .essay article p {
  font-size: 14px;
  color: #000;
  line-height: 26px;
  text-indent: 20px;
}

.central .encompass .gravity .narrative .essay article img {
  margin: 0 auto;
  width: 80% !important;
  height: auto;
  display: block;
  padding: 0;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 4px 0px, rgba(0, 0, 0, 0.08) 0px 4px 12px 0px;
}

.central .encompass .gravity .narrative .deliver {
  margin-top: 78px;
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .narrative .deliver ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.central .encompass .gravity .narrative .deliver ol li {
  width: 100%;
  overflow: hidden;
  border: 2px solid #00003c;
  border-radius: 13px;
}

.central .encompass .gravity .narrative .deliver ol li:hover {
  border-color: #ff0000;
}

.central .encompass .gravity .narrative .deliver ol li a {
  padding: 3px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  user-select: none;
}

.central .encompass .gravity .narrative .deliver ol li a span {
  font-size: 14px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .narrative .deliver ol li a p {
  font-size: 13px;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  font-weight: bold;
}

.central .encompass .gravity .narrative .synopsis {
  font-size: 13px;
  color: #00003c;
  font-weight: bold;
  line-height: 28px;
  text-indent: 8px;
  margin-bottom: 12px;
}

.central .encompass .gravity .narrative .synopsis a {
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .narrative .theorem {
  position: relative;
  width: 100%;
  height: 352px;
  background: url("/template/forty-two/image/theorem.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
  user-select: none;
}

.central .encompass .gravity .narrative .theorem .televise {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  box-sizing: border-box;
}

.central .encompass .gravity .narrative .theorem .televise a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .encompass .gravity .narrative .theorem .televise a span {
  font-size: 14px;
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .narrative .theorem .televise a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  color: #000;
  vertical-align: middle;
  font-size: 13px;
}

.central .encompass .gravity .narrative .theorem .struggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}

.central .encompass .gravity .narrative .theorem .struggle .unilateral {
  flex: 1;
  overflow: hidden;
}

.central .encompass .gravity .narrative .theorem .struggle .unilateral a {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.central .encompass .gravity .narrative .theorem .struggle .unilateral a img {
  height: 76px;
}

.central .encompass .gravity .narrative .theorem .struggle .unilateral a strong {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .lasting {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .lasting time {
  font-size: 14px;
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .achievement {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .achievement img {
  width: 38px;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .achievement span {
  font-size: 22px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .systematics {
  font-size: 18px;
}

.central .encompass .gravity .narrative .theorem .struggle .terrain .systematics a {
  color: #fff;
  font-weight: bold;
}

.central .encompass .gravity .regarding {
  width: 100%;
  margin-top: 22px;
  padding: 22px 10px;
  background: #fff;
  box-sizing: border-box;
}

.central .encompass .gravity .regarding .strike {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 18px;
}

.central .encompass .gravity .regarding .strike .indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .encompass .gravity .regarding .strike .indicator img {
  width: 24px;
}

.central .encompass .gravity .regarding .strike .indicator strong {
  font-size: 15px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .regarding .strike .extra {
  overflow: hidden;
}

.central .encompass .gravity .regarding .strike .extra a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.central .encompass .gravity .regarding .strike .extra a span {
  font-size: 13px;
  font-weight: bold;
}

.central .encompass .gravity .regarding .strike .extra a .icon-gengduo2 {
  color: #00003c;
  font-size: 16px;
}

.central .encompass .gravity .regarding ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .regarding ol li {
  overflow: hidden;
  width: 100%;
  height: fit-content;
}

.central .encompass .gravity .regarding ol li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
}

.central .encompass .gravity .regarding ol li a .instant {
  position: relative;
  width: 100%;
  height: 178px;
}

.central .encompass .gravity .regarding ol li a .instant .graphics {
  width: 100%;
  height: 100%;
}

.central .encompass .gravity .regarding ol li a .instant .graphics img {
  width: 100%;
  height: 100%;
}

.central .encompass .gravity .regarding ol li a .instant time {
  position: absolute;
  left: 6px;
  top: 6px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.central .encompass .gravity .regarding ol li a .instant .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
}

.central .encompass .gravity .regarding ol li a .instant .play img {
  width: 100%;
  height: 100%;
}

.central .encompass .gravity .regarding ol li a .explain {
  width: 100%;
  overflow: hidden;
  font-size: 13px;
  white-space: nowrap;
  user-select: none;
  margin-top: 6px;
}

.central .encompass .gravity .regarding ol li a .explain p {
  width: 100%;
  font-weight: bold;
  color: #00003c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
}

.central .encompass .gravity .existence {
  width: 100%;
  padding: 22px 15px;
  box-sizing: border-box;
  background: #fff;
  margin-top: 16px;
}

.central .encompass .gravity .existence .subdivision {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .subdivision ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.central .encompass .gravity .existence .subdivision ul li {
  position: relative;
  white-space: nowrap;
  user-select: none;
}

.central .encompass .gravity .existence .subdivision ul li::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  content: "";
  width: 0%;
  height: 3px;
  transition: all 0.3s;
  background: #00003c;
}

.central .encompass .gravity .existence .subdivision ul li:hover::after, .central .encompass .gravity .existence .subdivision ul li.active::after {
  width: 100%;
}

.central .encompass .gravity .existence .subdivision ul li a {
  padding: 3px 10px;
  padding-bottom: 6px;
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .existence .grouping {
  margin-top: 18px;
}

.central .encompass .gravity .existence .grouping .depiction {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.central .encompass .gravity .existence .grouping .depiction p {
  font-size: 13px;
  color: #000;
  line-height: 22px;
}

.central .encompass .gravity .existence .grouping .depiction p span {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.central .encompass .gravity .existence .grouping .depiction p a {
  color: #000;
}

.central .encompass .gravity .existence .grouping .depiction .semaphore {
  display: flex;
  align-items: center;
  gap: 6px;
}

.central .encompass .gravity .existence .grouping .depiction .semaphore span {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

.central .encompass .gravity .existence .grouping .depiction .semaphore ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.central .encompass .gravity .existence .grouping .depiction .semaphore ul li {
  font-size: 16px;
}

.central .encompass .gravity .existence .grouping .depiction .semaphore ul li a {
  color: #000;
  background: linear-gradient(to right, #00003c 0, #fff 40%, #00003c 20%);
  background-position: 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s infinite linear;
  text-decoration: none;
  white-space: nowrap;
  font-weight: bold;
}

.central .encompass .gravity .existence .grouping .brigade {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.central .encompass .gravity .existence .grouping .brigade .corps {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .brigade .corps a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.central .encompass .gravity .existence .grouping .brigade .corps a img {
  height: 45px;
}

.central .encompass .gravity .existence .grouping .brigade .corps a strong {
  width: 100%;
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .existence .grouping .conjecture {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether.pertinence {
  display: flex;
  justify-content: center;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether.pertinence .provision {
  width: 60%;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 12px;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #1784d6;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem strong {
  font-size: 14px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  background: #1784d6;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li.qb-status-1 {
  background: #67a16f;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li.qb-status-2 {
  background: #4b8bc1;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li.qb-status-3 {
  background: #b863dc;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li.qb-status-4 {
  background: #edd579;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li.qb-status-5 {
  background: #ff0000;
}

.central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li p {
  font-size: 13px;
  color: #fff;
  line-height: 24px;
  text-indent: 12px;
}

.central .encompass .gravity .existence .grouping .antagonize {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .caption {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 10px;
}

.central .encompass .gravity .existence .grouping .caption::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00003c;
}

.central .encompass .gravity .existence .grouping .caption strong {
  font-size: 14px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .existence .grouping .receptacle {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .receptacle ul {
  border: 1px solid #eee;
}

.central .encompass .gravity .existence .grouping .receptacle ul li {
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
  display: grid;
  grid-template-columns: 1.4fr 3fr auto;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  user-select: none;
}

.central .encompass .gravity .existence .grouping .receptacle ul li:last-child {
  border-bottom: none;
}

.central .encompass .gravity .existence .grouping .receptacle ul li:hover {
  border-color: #ff0000;
  background: rgba(255, 0, 0, 0.1);
}

.central .encompass .gravity .existence .grouping .receptacle ul li .confident {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .confident .assort {
  flex: 1;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .confident .assort a {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .confident time {
  font-size: 13px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .confident time a {
  font-weight: bold;
  color: #00003c;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1.6fr 3fr;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member {
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a img {
  width: 28px;
  max-height: 34px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a strong {
  flex: 1;
  font-weight: bold;
  color: #00003c;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member:first-child a strong {
  text-align: right;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction {
  width: 100%;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a span {
  flex: 1;
  font-weight: bold;
  text-align: center;
  color: #00003c;
  font-size: 16px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a em {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .status {
  font-size: 14px;
}

.central .encompass .gravity .existence .grouping .receptacle ul li .status a {
  color: #00003c;
  font-weight: bold;
}

.central .encompass .gravity .existence .grouping .recently {
  margin-top: 22px;
  width: 100%;
  overflow: hidden;
}

.central .encompass .gravity .existence .grouping .recently .comity {
  width: 100%;
  margin: 16px 0;
}

.central .encompass .gravity .existence .grouping .recently .comity ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.central .encompass .gravity .existence .grouping .recently .comity ul li {
  position: relative;
}

.central .encompass .gravity .existence .grouping .recently .comity ul li::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 100%;
  height: 0%;
  background: #ff0000;
  transition: all 0.2s;
}

.central .encompass .gravity .existence .grouping .recently .comity ul li:hover::after, .central .encompass .gravity .existence .grouping .recently .comity ul li.active::after {
  height: 100%;
}

.central .encompass .gravity .existence .grouping .recently .comity ul li:hover a, .central .encompass .gravity .existence .grouping .recently .comity ul li.active a {
  color: #fff;
}

.central .encompass .gravity .existence .grouping .recently .comity ul li a {
  position: relative;
  z-index: 2;
  padding: 4px 10px;
  display: block;
  font-size: 14px;
  color: #00003c;
  font-weight: bold;
}

.central .encompass aside {
  width: 32%;
  overflow: hidden;
}

.central .encompass aside .combine {
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #fff;
  margin-bottom: 22px;
}

.central .encompass aside .combine .issue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.central .encompass aside .combine .issue .indicate {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.central .encompass aside .combine .issue .indicate img {
  width: 22px;
}

.central .encompass aside .combine .issue .indicate strong {
  font-size: 15px;
  font-weight: bold;
  color: #00003c;
}

.central .encompass aside .combine .issue .manifold {
  white-space: nowrap;
}

.central .encompass aside .combine .issue .manifold a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.central .encompass aside .combine .issue .manifold a span {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

.central .encompass aside .combine .issue .manifold a .icon-gengduo2 {
  font-size: 15px;
  color: #00003c;
}

.central .encompass aside .combine .communique {
  width: 100%;
  overflow: hidden;
}

.central .encompass aside .combine .communique ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.central .encompass aside .combine .communique ul li {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.central .encompass aside .combine .communique ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.central .encompass aside .combine .communique ul li a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  font-weight: bold;
  font-size: 13px;
}

.central .encompass aside .combine .communique ul li a time {
  font-size: 13px;
  color: #6d6d73;
  font-weight: bold;
}

.central .encompass aside .combine .drama {
  width: 100%;
  overflow: hidden;
}

.central .encompass aside .combine .drama ul {
  width: 100%;
  overflow: hidden;
}

.central .encompass aside .combine .drama ul li {
  margin-bottom: 14px;
  width: 100%;
  overflow: hidden;
}

.central .encompass aside .combine .drama ul li a {
  display: block;
  width: 100%;
  overflow: hidden;
}

.central .encompass aside .combine .drama ul li a .pursue {
  position: relative;
  width: 100%;
  height: 132px;
}

.central .encompass aside .combine .drama ul li a .pursue .face {
  width: 100%;
  height: 100%;
}

.central .encompass aside .combine .drama ul li a .pursue .face img {
  width: 100%;
  height: 100%;
}

.central .encompass aside .combine .drama ul li a .pursue .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.central .encompass aside .combine .drama ul li a .pursue .play img {
  width: 100%;
  height: 100%;
}

.central .encompass aside .combine .drama ul li a .pursue time {
  position: absolute;
  left: 6px;
  top: 6px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.central .encompass aside .combine .drama ul li a .pursue time:last-child {
  left: auto;
  right: 6px;
  top: auto;
  bottom: 6px;
}

.central .encompass aside .combine .drama ul li a strong {
  color: #00003c;
  font-weight: bold;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.central .pages {
  width: 100%;
  display: flex;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  margin-top: 20px;
}

.central .pages .pagination {
  display: flex;
  gap: 10px;
  user-select: none;
}

.central .pages .pagination li {
  width: auto;
  height: auto;
  border-radius: 5px;
  border: 2px solid #fff;
}

.central .pages .pagination li:hover {
  background: rgba(0, 0, 60, 0.7);
  border-color: transparent;
}

.central .pages .pagination li:hover a {
  color: #fff;
}

.central .pages .pagination li span,
.central .pages .pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #2a3b59;
  font-size: 14px;
  padding: 3px 10px;
  display: block;
}

.central .pages .pagination .active {
  background: rgba(0, 0, 60, 0.7);
  border-color: transparent;
}

.central .pages .pagination .active span {
  color: #fff;
}

.central .pages .pagination .disabled {
  cursor: pointer;
  user-select: none;
}

.central .pages .pagination .disabled span {
  color: #fff;
  white-space: nowrap;
}

.central .pages .pagination .omit {
  cursor: default;
  width: auto;
  border: none;
  background: none;
}

@media screen and (max-width: 768px) {
  .central .pages {
    padding: 0.26667rem;
    margin-top: 0.26667rem;
  }
  .central .pages .pagination {
    gap: 0.13333rem;
  }
  .central .pages .pagination li {
    border-radius: 0.06667rem;
    border-width: 0.04rem;
  }
  .central .pages .pagination li.Jump {
    display: none;
  }
  .central .pages .pagination li span,
  .central .pages .pagination li a {
    font-size: 0.34667rem;
    padding: 0.06667rem 0.13333rem;
  }
}

.central .comprise {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.central .comprise .systematically {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 20px 10px;
  box-sizing: border-box;
}

.central .comprise .systematically ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.central .comprise .systematically ul li {
  width: 100%;
  padding: 5px 12px;
  border: 1px solid #d9d9e4;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  user-select: none;
}

.central .comprise .systematically ul li:hover {
  border-color: #ff0000;
  background-color: rgba(255, 0, 0, 0.1);
}

.central .comprise .systematically ul li time,
.central .comprise .systematically ul li .fettle {
  font-size: 13px;
}

.central .comprise .systematically ul li time a,
.central .comprise .systematically ul li .fettle a {
  color: #000;
  font-weight: bold;
}

.central .comprise .systematically ul li .resistance {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.central .comprise .systematically ul li .resistance .force {
  flex: 1;
  overflow: hidden;
}

.central .comprise .systematically ul li .resistance .force a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.central .comprise .systematically ul li .resistance .force a img {
  width: 28px;
}

.central .comprise .systematically ul li .resistance .force a strong {
  flex: 1;
  color: #00003c;
  font-weight: bold;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.central .comprise .systematically ul li .resistance .force:first-child a strong {
  text-align: right;
}

.central .comprise .systematically ul li .resistance .vs {
  font-size: 15px;
}

.central .comprise .systematically ul li .resistance .vs a {
  color: #00003c;
  font-weight: bold;
}

.central .fiery {
  margin-top: 26px;
  padding: 22px 14px;
  background: #fff;
}

.central .fiery .inscribe {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 16px;
}

.central .fiery .inscribe img {
  width: 26px;
}

.central .fiery .inscribe strong {
  font-size: 15px;
  font-weight: bold;
  color: #00003c;
}

.central .fiery ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.central .fiery ol li {
  white-space: nowrap;
  font-size: 13px;
}

.central .fiery ol li a {
  color: #00003c;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .central.surround {
    padding: 102px 10px;
  }
  .central .antagonism {
    padding: 62px 10px;
  }
  .central .television {
    padding: 52px 10px;
  }
  .central .scorching {
    padding: 76px 10px;
  }
  .central .scorching .contingent ul {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
  .central .recount {
    padding: 66px 10px;
  }
}

@media screen and (max-width: 768px) {
  .central {
    padding: 2.16rem 0;
  }
  .central.surround {
    padding: 3.09333rem 0.2rem;
  }
  .central .headline {
    gap: 0.29333rem;
    margin-bottom: 0.34667rem;
  }
  .central .headline::before, .central .headline::after {
    height: 0.29333rem;
  }
  .central .headline strong {
    font-size: 0.64rem;
  }
  .central .events {
    margin-bottom: 0.29333rem;
  }
  .central .events ul {
    gap: 0.21333rem;
    padding-bottom: 0.13333rem;
  }
  .central .events ul li {
    border-radius: 0.29333rem;
  }
  .central .events ul li a {
    padding: 0.06667rem 0.32rem;
    font-size: 0.30667rem;
  }
  .central .antagonism {
    padding: 1.14667rem 0.2rem;
  }
  .central .controversy.alongside {
    height: 17.62667rem;
  }
  .central .controversy.alongside::-webkit-scrollbar {
    display: block;
  }
  .central .controversy ul li {
    padding: 0.26667rem 0.24rem;
    grid-template-columns: auto;
    gap: 0.26667rem;
  }
  .central .controversy ul li .revelation {
    align-items: flex-start;
  }
  .central .controversy ul li .revelation .piece {
    gap: 0.2rem;
  }
  .central .controversy ul li .revelation .piece .difference a {
    gap: 0.16rem;
  }
  .central .controversy ul li .revelation .piece .difference a img {
    width: 0.42667rem;
  }
  .central .controversy ul li .revelation .piece .difference a strong {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .revelation .piece .course a {
    gap: 0.16rem;
  }
  .central .controversy ul li .revelation .piece .course a time {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .revelation .piece .course a time:first-child {
    font-size: 0.37333rem;
  }
  .central .controversy ul li .revelation .affection a {
    gap: 0.16rem;
  }
  .central .controversy ul li .revelation .affection a img {
    width: 0.42667rem;
  }
  .central .controversy ul li .revelation .affection a strong {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .squadron {
    gap: 0.29333rem;
  }
  .central .controversy ul li .squadron .team a {
    gap: 0.2rem;
  }
  .central .controversy ul li .squadron .team a img {
    width: 0.50667rem;
  }
  .central .controversy ul li .squadron .team a strong {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .squadron .minute a {
    gap: 0.13333rem;
  }
  .central .controversy ul li .squadron .minute a span {
    font-size: 0.37333rem;
  }
  .central .controversy ul li .squadron .minute a em {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .surplus {
    gap: 0.29333rem;
  }
  .central .controversy ul li .surplus .speaker a {
    gap: 0.16rem;
  }
  .central .controversy ul li .surplus .speaker a img {
    width: 0.42667rem;
  }
  .central .controversy ul li .surplus .speaker a span {
    font-size: 0.30667rem;
  }
  .central .controversy ul li .surplus .battle a {
    justify-content: flex-end;
  }
  .central .television {
    padding: 0.88rem 0.2rem;
  }
  .central .movie ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }
  .central .movie ul li a .excerpt {
    height: 3.21333rem;
  }
  .central .movie ul li a .excerpt .play {
    width: 0.88rem;
  }
  .central .movie ul li a .excerpt time {
    right: 0.16rem;
    bottom: 0.16rem;
    font-size: 0.30667rem;
  }
  .central .movie ul li a .delineate {
    height: 2.68rem;
  }
  .central .movie ul li a .delineate p {
    font-size: 0.30667rem;
    line-height: 0.48rem;
  }
  .central .movie ul li a .delineate .painstaking .solitary {
    gap: 0.13333rem;
  }
  .central .movie ul li a .delineate .painstaking .solitary .icon-redu {
    font-size: 0.37333rem;
  }
  .central .movie ul li a .delineate .painstaking .solitary .icon-shijian {
    font-size: 0.34667rem;
  }
  .central .movie ul li a .delineate .painstaking .solitary time,
  .central .movie ul li a .delineate .painstaking .solitary span {
    font-size: 0.30667rem;
  }
  .central .scorching {
    padding: 1.09333rem 0.2rem;
    background-size: 100% 100%;
  }
  .central .scorching .contingent ul {
    gap: 0.29333rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .central .scorching .contingent ul li {
    height: 2.94667rem;
  }
  .central .scorching .contingent ul li a {
    gap: 0.18667rem;
    padding: 0.26667rem 0.56rem;
  }
  .central .scorching .contingent ul li a img {
    height: 0.77333rem;
  }
  .central .scorching .contingent ul li a strong {
    font-size: 0.32rem;
  }
  .central .recount {
    padding: 0.96rem 0.2rem;
  }
  .central .newsprint ul {
    gap: 0.16rem;
  }
  .central .newsprint ul li {
    height: 4.16rem;
  }
  .central .newsprint ul li a {
    gap: 0.16rem;
  }
  .central .newsprint ul li a .prestige time {
    left: 0.21333rem;
    top: 0.21333rem;
  }
  .central .newsprint ul li a .depicting {
    padding: 0.16rem;
    padding-left: 0;
  }
  .central .newsprint ul li a .depicting article {
    gap: 0.16rem;
  }
  .central .newsprint ul li a .depicting article strong {
    font-size: 0.32rem;
  }
  .central .newsprint ul li a .depicting article p {
    font-size: 0.30667rem;
    line-height: 0.48rem;
    text-indent: 0.17333rem;
  }
  .central .newsprint ul li a .depicting .tender {
    gap: 0.17333rem;
  }
  .central .newsprint ul li a .depicting .tender .labels {
    gap: 0.10667rem;
  }
  .central .newsprint ul li a .depicting .tender .labels span {
    padding: 0.04rem 0.2rem;
    font-size: 0.30667rem;
  }
  .central .newsprint ul li a .depicting .tender .hot {
    gap: 0.16rem;
  }
  .central .newsprint ul li a .depicting .tender .hot .icon-redu {
    font-size: 0.34667rem;
  }
  .central .newsprint ul li a .depicting .tender .hot span {
    font-size: 0.30667rem;
  }
  .central .crumbs {
    margin-bottom: 0.24rem;
    gap: 0.2rem;
  }
  .central .crumbs strong {
    font-size: 0.32rem;
    gap: 0.16rem;
  }
  .central .crumbs strong::before {
    width: 0.06667rem;
    height: 0.18667rem;
    border-radius: 0.09333rem;
  }
  .central .crumbs ul li {
    font-size: 0.30667rem;
  }
  .central .crumbs ul li::after {
    margin: 0 0.10667rem;
    font-size: 0.30667rem;
  }
  .central .encompass {
    flex-direction: column;
    gap: 0.29333rem;
  }
  .central .encompass .gravity {
    width: 100%;
    flex: auto;
  }
  .central .encompass .gravity .narrative {
    padding: 0.26667rem 0.21333rem;
  }
  .central .encompass .gravity .narrative h1 {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .narrative .describe {
    margin: 0.16rem 0;
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .describe .solely {
    gap: 0.13333rem;
  }
  .central .encompass .gravity .narrative .describe .solely .icon-shijian {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .narrative .describe .solely .icon-redu {
    font-size: 0.37333rem;
  }
  .central .encompass .gravity .narrative .describe .solely span,
  .central .encompass .gravity .narrative .describe .solely time {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .narrative .alluring {
    height: 5.77333rem;
  }
  .central .encompass .gravity .narrative .alluring time {
    left: 0.18667rem;
    top: 0.18667rem;
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .narrative .alluring time:last-of-type {
    right: 0.18667rem;
    bottom: 0.74667rem;
  }
  .central .encompass .gravity .narrative .alluring .play {
    width: 1.14667rem;
  }
  .central .encompass .gravity .narrative .alluring p {
    padding: 0.09333rem 0.16rem;
    font-size: 0.32rem;
  }
  .central .encompass .gravity .narrative .bewrite {
    gap: 0.08rem;
    margin-top: 0.32rem;
  }
  .central .encompass .gravity .narrative .bewrite ul {
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .bewrite ul li {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .narrative .bewrite > strong,
  .central .encompass .gravity .narrative .bewrite p {
    font-size: 0.30667rem;
    text-indent: 0.16rem;
    line-height: 0.48rem;
  }
  .central .encompass .gravity .narrative .essay article {
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .essay article p {
    font-size: 0.32rem;
    text-indent: 0.29333rem;
    line-height: 0.49333rem;
  }
  .central .encompass .gravity .narrative .essay article img {
    width: 100% !important;
    margin-bottom: 0.26667rem;
    border-radius: 0.21333rem;
  }
  .central .encompass .gravity .narrative .deliver {
    margin-top: 1.18667rem;
  }
  .central .encompass .gravity .narrative .deliver ol {
    grid-template-columns: auto;
    gap: 0.29333rem;
  }
  .central .encompass .gravity .narrative .deliver ol li {
    border-radius: 0.2rem;
  }
  .central .encompass .gravity .narrative .deliver ol li a {
    padding: 0.08rem 0.16rem;
    gap: 0.13333rem;
  }
  .central .encompass .gravity .narrative .deliver ol li a span {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .narrative .deliver ol li a p {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .narrative .synopsis {
    font-size: 0.30667rem;
    text-indent: 0.16rem;
    line-height: 0.49333rem;
    margin-bottom: 0.2rem;
  }
  .central .encompass .gravity .narrative .theorem {
    height: 6.01333rem;
  }
  .central .encompass .gravity .narrative .theorem .televise {
    padding: 0.08rem 0.16rem;
  }
  .central .encompass .gravity .narrative .theorem .televise a {
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .theorem .televise a span {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .narrative .theorem .televise a p {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle {
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .unilateral a {
    gap: 0.21333rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .unilateral a img {
    height: 1.18667rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .unilateral a strong {
    font-size: 0.33333rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain {
    gap: 0.21333rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .lasting {
    gap: 0.10667rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .lasting time {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .achievement {
    gap: 0.16rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .achievement img {
    width: 0.65333rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .achievement span {
    font-size: 0.42667rem;
  }
  .central .encompass .gravity .narrative .theorem .struggle .terrain .systematics {
    font-size: 0.37333rem;
  }
  .central .encompass .gravity .regarding {
    margin-top: 0.29333rem;
    padding: 0.29333rem 0.2rem;
  }
  .central .encompass .gravity .regarding .strike {
    gap: 0.16rem;
    margin-bottom: 0.29333rem;
  }
  .central .encompass .gravity .regarding .strike .indicator {
    gap: 0.13333rem;
  }
  .central .encompass .gravity .regarding .strike .indicator img {
    width: 0.42667rem;
  }
  .central .encompass .gravity .regarding .strike .indicator strong {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .regarding .strike .extra a {
    gap: 0.08rem;
  }
  .central .encompass .gravity .regarding .strike .extra a span {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .regarding .strike .extra a .icon-gengduo2 {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .regarding ol {
    gap: 0.24rem;
  }
  .central .encompass .gravity .regarding ol li a .instant {
    height: 3.22667rem;
  }
  .central .encompass .gravity .regarding ol li a .instant time {
    left: 0.13333rem;
    top: 0.13333rem;
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .regarding ol li a .instant .play {
    width: 0.88rem;
    height: 0.88rem;
  }
  .central .encompass .gravity .regarding ol li a .explain {
    font-size: 0.30667rem;
    margin-top: 0.13333rem;
  }
  .central .encompass .gravity .existence {
    padding: 0.34667rem 0.21333rem;
    margin-top: 0.29333rem;
  }
  .central .encompass .gravity .existence .subdivision ul {
    gap: 0.16rem;
  }
  .central .encompass .gravity .existence .subdivision ul li a {
    padding: 0.06667rem 0.16rem;
    padding-bottom: 0.10667rem;
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .existence .grouping {
    margin-top: 0.34667rem;
  }
  .central .encompass .gravity .existence .grouping .depiction {
    gap: 0.16rem;
  }
  .central .encompass .gravity .existence .grouping .depiction p {
    font-size: 0.30667rem;
    line-height: 0.49333rem;
  }
  .central .encompass .gravity .existence .grouping .depiction p span {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .depiction .semaphore {
    gap: 0.13333rem;
  }
  .central .encompass .gravity .existence .grouping .depiction .semaphore span {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .depiction .semaphore ul {
    gap: 0.2rem;
  }
  .central .encompass .gravity .existence .grouping .depiction .semaphore ul li {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .existence .grouping .brigade {
    gap: 0.21333rem;
    margin-bottom: 0.29333rem;
  }
  .central .encompass .gravity .existence .grouping .brigade .corps a {
    gap: 0.18667rem;
  }
  .central .encompass .gravity .existence .grouping .brigade .corps a img {
    height: 0.69333rem;
  }
  .central .encompass .gravity .existence .grouping .brigade .corps a strong {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture {
    gap: 0.24rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether {
    gap: 0.29333rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem {
    gap: 0.16rem;
    margin-bottom: 0.21333rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem::before {
    width: 0.13333rem;
    height: 0.13333rem;
    border-radius: 0.05333rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision .problem strong {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul {
    gap: 0.16rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li {
    padding: 0.08rem;
  }
  .central .encompass .gravity .existence .grouping .conjecture .altogether .provision ul li p {
    font-size: 0.30667rem;
    line-height: 0.49333rem;
    text-indent: 0.21333rem;
  }
  .central .encompass .gravity .existence .grouping .caption {
    gap: 0.16rem;
    margin-bottom: 0.16rem;
  }
  .central .encompass .gravity .existence .grouping .caption::before {
    width: 0.13333rem;
    height: 0.13333rem;
  }
  .central .encompass .gravity .existence .grouping .caption strong {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li {
    grid-template-columns: auto;
    padding: 0.10667rem;
    gap: 0.29333rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .confident {
    gap: 0.16rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .confident .assort a {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .confident time {
    font-size: 0.30667rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel {
    gap: 0.13333rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a {
    gap: 0.16rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a img {
    width: 0.45333rem;
    max-height: 0.56rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .member a strong {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a {
    gap: 0.13333rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a span {
    font-size: 0.34667rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .parallel .fraction a em {
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .receptacle ul li .status {
    text-align: center;
    font-size: 0.32rem;
  }
  .central .encompass .gravity .existence .grouping .recently {
    margin-top: 0.29333rem;
  }
  .central .encompass .gravity .existence .grouping .recently .comity {
    margin: 0.29333rem 0;
  }
  .central .encompass .gravity .existence .grouping .recently .comity ul {
    gap: 0.29333rem;
  }
  .central .encompass .gravity .existence .grouping .recently .comity ul li a {
    padding: 0.08rem 0.16rem;
    font-size: 0.32rem;
  }
  .central .encompass aside {
    width: 100%;
  }
  .central .encompass aside .combine {
    padding: 0.29333rem 0.16rem;
    margin-bottom: 0.29333rem;
  }
  .central .encompass aside .combine .issue {
    gap: 0.13333rem;
  }
  .central .encompass aside .combine .issue .indicate {
    gap: 0.16rem;
    margin-bottom: 0.24rem;
  }
  .central .encompass aside .combine .issue .indicate img {
    width: 0.34667rem;
  }
  .central .encompass aside .combine .issue .indicate strong {
    font-size: 0.34667rem;
  }
  .central .encompass aside .combine .issue .manifold a {
    gap: 0.13333rem;
  }
  .central .encompass aside .combine .issue .manifold a span {
    font-size: 0.30667rem;
  }
  .central .encompass aside .combine .issue .manifold a .icon-gengduo2 {
    font-size: 0.34667rem;
  }
  .central .encompass aside .combine .communique ul {
    gap: 0.13333rem;
  }
  .central .encompass aside .combine .communique ul li a {
    gap: 0.10667rem;
  }
  .central .encompass aside .combine .communique ul li a p,
  .central .encompass aside .combine .communique ul li a time {
    font-size: 0.30667rem;
  }
  .central .encompass aside .combine .drama ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.18667rem;
  }
  .central .encompass aside .combine .drama ul li {
    margin-bottom: 0.21333rem;
  }
  .central .encompass aside .combine .drama ul li a .pursue {
    height: 2.52rem;
  }
  .central .encompass aside .combine .drama ul li a .pursue .play {
    width: 0.82667rem;
    height: 0.82667rem;
  }
  .central .encompass aside .combine .drama ul li a .pursue time {
    left: 0.10667rem;
    top: 0.10667rem;
    font-size: 0.30667rem;
  }
  .central .encompass aside .combine .drama ul li a .pursue time:last-child {
    right: 0.10667rem;
    bottom: 0.10667rem;
  }
  .central .encompass aside .combine .drama ul li a strong {
    font-size: 0.30667rem;
  }
  .central .comprise .systematically {
    padding: 0.26667rem 0.13333rem;
  }
  .central .comprise .systematically ul {
    grid-template-columns: auto;
    gap: 0.21333rem;
  }
  .central .comprise .systematically ul li {
    padding: 0.08rem 0.2rem;
    gap: 0.16rem;
  }
  .central .comprise .systematically ul li time,
  .central .comprise .systematically ul li .fettle {
    font-size: 0.30667rem;
  }
  .central .comprise .systematically ul li .resistance {
    gap: 0.16rem;
  }
  .central .comprise .systematically ul li .resistance .force a {
    gap: 0.13333rem;
  }
  .central .comprise .systematically ul li .resistance .force a img {
    width: 0.45333rem;
  }
  .central .comprise .systematically ul li .resistance .force a strong {
    font-size: 0.30667rem;
  }
  .central .comprise .systematically ul li .resistance .vs {
    font-size: 0.34667rem;
  }
  .central .fiery {
    margin-top: 0.42667rem;
    padding: 0.32rem 0.2rem;
  }
  .central .fiery .inscribe {
    gap: 0.16rem;
    margin-bottom: 0.24rem;
  }
  .central .fiery .inscribe img {
    width: 0.42667rem;
  }
  .central .fiery .inscribe strong {
    font-size: 0.33333rem;
  }
  .central .fiery ol {
    gap: 0.2rem;
  }
  .central .fiery ol li {
    font-size: 0.30667rem;
  }
}

@media screen and (max-width: 768px) {
  ::-webkit-scrollbar {
    display: none;
  }
}

@keyframes whirling {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer {
  width: 100%;
  overflow: hidden;
  background: #000000;
}

.footer .business {
  width: 100%;
  background: #00003c;
  padding: 22px 0;
  box-sizing: border-box;
}

.footer .business .assemble {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 10px;
  box-sizing: border-box;
}

.footer .business .assemble .trademark {
  max-width: 82px;
  height: fit-content;
}

.footer .business .assemble .trademark a {
  display: block;
  width: 100%;
  height: fit-content;
}

.footer .business .assemble .trademark a img {
  width: 100%;
  height: fit-content;
  vertical-align: bottom;
}

.footer .business .assemble dl {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  user-select: none;
  flex-wrap: wrap;
}

.footer .business .assemble dl dt,
.footer .business .assemble dl dd {
  color: #fff;
  font-size: 12px;
}

.footer .business .assemble dl dt a,
.footer .business .assemble dl dd a {
  color: #fff;
}

.footer .business .assemble dl dt {
  font-weight: bold;
  font-size: 14px;
}

.footer .business .assemble dl dd a {
  font-weight: bold;
}

.footer .launch {
  width: 100%;
  overflow: hidden;
  padding: 22px 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer .launch dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 16px;
  gap: 10px;
}

.footer .launch dl dt,
.footer .launch dl dd {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  user-select: none;
}

.footer .launch dl dt a,
.footer .launch dl dd a {
  font-weight: bold;
  color: #fff;
}

.footer .launch dl dt {
  font-size: 14px;
}

.footer .launch dl dd {
  font-size: 12px;
}

.footer .launch p {
  text-align: center;
  line-height: 27px;
  color: #fff;
  font-size: 13px;
}

.footer .launch p a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .footer .business {
    padding: 0.29333rem 0;
  }
  .footer .business .assemble {
    gap: 0.21333rem;
    padding: 0 0.2rem;
  }
  .footer .business .assemble .trademark {
    max-width: 1.62667rem;
  }
  .footer .business .assemble dl {
    gap: 0.16rem;
  }
  .footer .business .assemble dl dt,
  .footer .business .assemble dl dd {
    font-size: 0.30667rem;
  }
  .footer .business .assemble dl dt {
    font-size: 0.32rem;
  }
  .footer .launch {
    padding: 0.69333rem 0.2rem;
  }
  .footer .launch dl {
    margin-bottom: 0.24rem;
    gap: 0.16rem;
  }
  .footer .launch dl dt {
    font-size: 0.32rem;
  }
  .footer .launch dl dd {
    font-size: 0.30667rem;
  }
  .footer .launch p {
    font-size: 0.30667rem;
    line-height: 0.48rem;
  }
}

.middle {
  position: relative;
}

.middle .bar {
  width: 3px;
  height: 20px;
  display: inline-block;
  transform-origin: bottom center;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  box-shadow: 5px 10px 20px inset rgba(52, 152, 219, 0.8);
  animation: loader 1.2s linear infinite;
}

.middle .bar.bar1 {
  animation-delay: 0.1s;
}

.middle .bar.bar2 {
  animation-delay: 0.2s;
}

.middle .bar.bar3 {
  animation-delay: 0.3s;
}

.middle .bar.bar4 {
  animation-delay: 0.4s;
}

.middle .bar.bar5 {
  animation-delay: 0.5s;
}

@keyframes loader {
  0% {
    transform: scaleY(0.1);
    background: transparent;
  }
  50% {
    transform: scaleY(1);
    background: #3498db;
  }
  100% {
    transform: scaleY(0.1);
    background: transparent;
  }
}

.spinner {
  width: 26px;
  height: 26px;
  display: grid;
  border: 2px solid #00003c;
  border-radius: 50%;
  border-right-color: #004dff;
  animation: spinner-a4dj62 2s infinite linear;
}

.spinner::before, .spinner::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
  animation: spinner-a4dj62 3s infinite;
}

.spinner::after {
  margin: 5px;
  animation-duration: 3s;
}

.watch {
  width: 26px;
}

.watch img {
  width: 100%;
  vertical-align: bottom;
}

@keyframes spinner-a4dj62 {
  100% {
    transform: rotate(1turn);
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }
  60% {
    background-position: 90px;
  }
  100% {
    background-position: 180px;
  }
}
<!--ºÄÊ±1764433369.2485Ãë-->