@charset "UTF-8";

:root {
  font-size: 20px;
  --red: #5c6a92;
  --yellow: #f8ab37;
  --green: #2ecc71;
  --white: #ffffff;
  --grey-light: #f2f7f9;
  --grey: #ecedf3;
  --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);
}

.chief {
  width: 100%;
  padding: 8px 10px;
  box-sizing: border-box;
  background: #000000;
}

.chief .joint {
  display: flex;
  align-items: center;
  gap: 24px;
}

.chief .joint .logo {
  width: 132px;
  height: fit-content;
}

.chief .joint .logo a {
  width: 100%;
  height: fit-content;
}

.chief .joint .logo a img {
  width: 100%;
  height: fit-content;
}

.chief .joint nav {
  flex: 1;
  overflow: hidden;
}

.chief .joint nav ul {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
}

.chief .joint nav ul li {
  position: relative;
  font-size: 13px;
}

.chief .joint nav ul li::after {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: #3d339a;
  transition: all 0.2s;
}

.chief .joint nav ul li:hover::after,
.chief .joint nav ul li.active::after {
  width: 100%;
}

.chief .joint nav ul li:hover a,
.chief .joint nav ul li.active a {
  color: #3d339a;
}

.chief .joint nav ul li::after {
  content: '';
}

.chief .joint nav ul li a {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  padding: 3px 12px;
  box-sizing: border-box;
  user-select: none;
  display: block;
}

@media screen and (max-width: 768px) {
  .chief {
    padding: 0.21333rem 0.16rem;
  }

  .chief .joint {
    gap: 0.34667rem;
    flex-direction: column;
  }

  .chief .joint .logo {
    width: 2.02667rem;
  }

  .chief .joint nav {
    flex: auto;
    width: 100%;
  }

  .chief .joint nav ul {
    gap: 0.13333rem;
    padding-bottom: 0.16rem;
  }

  .chief .joint nav ul li {
    font-size: 0.30667rem;
  }

  .chief .joint nav ul li a {
    padding: 0.08rem 0.26667rem;
  }
}

.considerable {
  width: 100%;
  box-sizing: border-box;
}

.considerable.demand {
  padding: 46px 0;
  background-image: linear-gradient(190deg, #6e53ec, #dc71d7);
}

.considerable .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  white-space: nowrap;
}

.considerable .breadcrumbs strong {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
}

.considerable .breadcrumbs strong::before {
  content: '';
  width: 2px;
  height: 12px;
  border-radius: 3px;
  background: #fff;
}

.considerable .breadcrumbs ul {
  display: flex;
  align-items: center;
}

.considerable .breadcrumbs ul li {
  white-space: nowrap;
  user-select: none;
}

.considerable .breadcrumbs ul li a {
  color: #fff;
  font-size: 13px;
}

.considerable .breadcrumbs ul li::after {
  content: '>';
  font-size: 13px;
  color: #fff;
  margin: 0 8px;
}

.considerable .breadcrumbs ul li:last-child a {
  color: #d870d8;
}

.considerable .breadcrumbs ul li:last-child::after {
  content: '';
}

.considerable .navigation {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
  width: 100%;
}

.considerable .navigation .inscribe {
  display: flex;
  align-items: center;
  gap: 12px;
}

.considerable .navigation .inscribe img {
  width: 36px;
}

.considerable .navigation .inscribe strong {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.considerable .navigation .question {
  flex: 1;
  overflow-x: auto;
  padding-bottom: 5px;
  transform: translateY(5px);
}

.considerable .navigation .question ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.considerable .navigation .question ul li {
  white-space: nowrap;
  user-select: none;
  background: #000;
  border-radius: 3px;
}

.considerable .navigation .question ul li:hover,
.considerable .navigation .question ul li.picking {
  background-image: linear-gradient(to right, #fb85b4, #ffb976);
}

.considerable .navigation .question ul li a {
  font-size: 13px;
  font-weight: bold;
  padding: 4px 15px;
  display: block;
  color: #fff;
}

.considerable .tournament {
  position: relative;
  width: 100%;
  padding: 62px 0;
  box-sizing: border-box;
  background: #6b52de;
}

.considerable .tournament::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 26px;
  background: #fc92a2;
  transform: translateY(1px);
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.considerable .obscure {
  width: 100%;
  user-select: none;
}

.considerable .obscure.emulate {
  height: 862px;
  overflow-y: auto;
  background: url("../photograph/bear.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.considerable .obscure ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
  box-sizing: border-box;
}

.considerable .obscure ul li {
  position: relative;
  background: #fff;
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  gap: 22px;
  align-items: center;
  padding: 8px 12px;
  box-sizing: border-box;
  box-shadow: rgba(28, 36, 44, 0.2) 0px 0px 20px 0px;
}

.considerable .obscure ul li:hover {
  background: #c5baf7;
}

.considerable .obscure ul li:hover time,
.considerable .obscure ul li:hover span,
.considerable .obscure ul li:hover strong,
.considerable .obscure ul li:hover a {
  color: #fff;
}

.considerable .obscure ul li::before {
  position: absolute;
  content: '';
  width: 3px;
  height: 100%;
  background: #6b52de;
  display: block;
}

.considerable .obscure ul li time,
.considerable .obscure ul li span,
.considerable .obscure ul li strong,
.considerable .obscure ul li a {
  color: #4d5570;
}

.considerable .obscure ul li .particulars {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 6px;
}

.considerable .obscure ul li .particulars .separate {
  width: 100%;
  overflow: hidden;
}

.considerable .obscure ul li .particulars .separate a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .obscure ul li .particulars .separate a img {
  width: 32px;
  height: fit-content;
}

.considerable .obscure ul li .particulars .separate a strong {
  font-size: 13px;
  font-weight: bold;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow: hidden;
}

.considerable .obscure ul li .particulars .period {
  width: 100%;
  white-space: nowrap;
}

.considerable .obscure ul li .particulars .period a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.considerable .obscure ul li .particulars .period a time {
  font-weight: bold;
  font-size: 13px;
}

.considerable .obscure ul li .particulars .fettle {
  white-space: nowrap;
  user-select: none;
}

.considerable .obscure ul li .particulars .fettle.start a {
  color: #7154da;
}

.considerable .obscure ul li .particulars .fettle.await a {
  color: #ffb975;
}

.considerable .obscure ul li .particulars .fettle a {
  font-weight: bold;
  font-size: 14px;
}

.considerable .obscure ul li .harbor {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
}

.considerable .obscure ul li .harbor .comprise {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.considerable .obscure ul li .harbor .comprise .badge {
  width: 100%;
  overflow: hidden;
}

.considerable .obscure ul li .harbor .comprise .badge a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.considerable .obscure ul li .harbor .comprise .badge a img {
  width: 28px;
}

.considerable .obscure ul li .harbor .comprise .badge a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  overflow: hidden;
  font-size: 14px;
}

.considerable .obscure ul li .harbor .condition {
  width: 100%;
  overflow: hidden;
}

.considerable .obscure ul li .harbor .condition a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}

.considerable .obscure ul li .harbor .condition a img {
  width: 26px;
}

.considerable .obscure ul li .harbor .condition a span {
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}

.considerable .obscure ul li .surplus {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.considerable .obscure ul li .surplus .speaker {
  width: 100%;
}

.considerable .obscure ul li .surplus .speaker a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.considerable .obscure ul li .surplus .speaker a img {
  width: 22px;
}

.considerable .obscure ul li .surplus .speaker a span {
  font-size: 13px;
  font-weight: bold;
}

.considerable .obscure ul li .surplus .status {
  display: flex;
  justify-content: center;
}

.considerable .obscure ul li .surplus .status img {
  width: 26px;
  vertical-align: bottom;
}

.considerable .examine {
  width: 100%;
  white-space: nowrap;
}

.considerable .examine.instead ul {
  grid-template-columns: repeat(2, 1fr);
}

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

.considerable .examine ul li {
  width: 100%;
  user-select: none;
  background: #fff;
  transition: all 0.2s;
  box-shadow: rgba(28, 36, 44, 0.2) 0px 0px 20px 0px;
}

.considerable .examine ul li:hover {
  background: rgba(251, 167, 100, 0.6);
  transform: scale(1.06);
}

.considerable .examine ul li:hover p,
.considerable .examine ul li:hover time,
.considerable .examine ul li:hover span {
  color: #fff;
}

.considerable .examine ul li a {
  width: 100%;
  display: block;
  overflow: hidden;
}

.considerable .examine ul li a .reveal {
  position: relative;
  width: 100%;
  height: 212px;
}

.considerable .examine ul li a .reveal .cover {
  width: 100%;
  height: 100%;
}

.considerable .examine ul li a .reveal .cover img {
  width: 100%;
  height: 100%;
}

.considerable .examine ul li a .reveal .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
}

.considerable .examine ul li a .reveal .play img {
  width: 100%;
  height: 100%;
}

.considerable .examine ul li a .reveal time {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.considerable .examine ul li a .minutiae {
  width: 100%;
  height: 139px;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.considerable .examine ul li a .minutiae p {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  line-height: 24px;
  font-size: 13px;
  font-weight: bold;
  white-space: wrap;
}

.considerable .examine ul li a .minutiae .perspicuity {
  border-top: 1px solid #d9dbe0;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.considerable .examine ul li a .minutiae .perspicuity .each {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .examine ul li a .minutiae .perspicuity .each .icon-remen {
  color: #ffba78;
  font-size: 17px;
}

.considerable .examine ul li a .minutiae .perspicuity .each .icon-shijian {
  color: #7455f9;
  font-size: 18px;
}

.considerable .examine ul li a .minutiae .perspicuity .each span,
.considerable .examine ul li a .minutiae .perspicuity .each time {
  font-size: 13px;
  font-weight: bold;
}

.considerable .showcase {
  position: relative;
  width: 100%;
  background-image: linear-gradient(60deg, #fb83b2, #ffbc76);
  padding: 72px 0;
  box-sizing: border-box;
}

.considerable .showcase::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 22%;
  height: 26px;
  background: #c467d1;
  clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0 100%);
}

.considerable .organization {
  position: relative;
  width: 100%;
  background-image: linear-gradient(45deg, #6d4ff0, #ca69cf);
  padding: 82px 0;
  box-sizing: border-box;
}

.considerable .organization::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22%;
  height: 26px;
  background: #f9927c;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.considerable .organized {
  width: 100%;
  overflow: hidden;
}

.considerable .organized ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}

.considerable .organized ul li {
  width: 100%;
  height: 155px;
  background: #fff;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border: 1px solid #efda84;
}

.considerable .organized ul li:hover {
  background: #513ec6;
}

.considerable .organized ul li:hover a strong {
  color: #fff;
}

.considerable .organized ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  box-sizing: border-box;
}

.considerable .organized ul li a img {
  width: fit-content;
  height: 53px;
}

.considerable .organized ul li a strong {
  font-weight: bold;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 13px;
}

.considerable .possess {
  position: relative;
  width: 100%;
  background-image: linear-gradient(60deg, #f89a59, #fb84b6);
  padding: 72px 0;
  box-sizing: border-box;
}

.considerable .newspaper {
  width: 100%;
  user-select: none;
}

.considerable .newspaper ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.considerable .newspaper li {
  width: 100%;
  padding: 10px;
  height: 219px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #7752ec;
  transition: all 0.2s;
}

.considerable .newspaper li:hover {
  transform: translateY(-8px);
  background: #fcd5bb;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px -1px, rgba(0, 0, 0, 0.07) 0px 6px 20px 0px;
}

.considerable .newspaper li a {
  width: 100%;
  height: 100%;
  display: block;
}

.considerable .newspaper li a figure {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 18px;
}

.considerable .newspaper li a figure img {
  width: 34%;
  height: 100%;
}

.considerable .newspaper li a figure figcaption {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 6px 0;
  box-sizing: border-box;
}

.considerable .newspaper li a figure figcaption article {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.considerable .newspaper li a figure figcaption article strong {
  font-weight: bold;
  color: #404966;
  font-size: 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.considerable .newspaper li a figure figcaption article p {
  text-indent: 14px;
  line-height: 24px;
  font-size: 13px;
  color: #404966;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.considerable .newspaper li a figure figcaption .slender {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.considerable .newspaper li a figure figcaption .slender .knot {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .newspaper li a figure figcaption .slender .knot .icon-remen {
  color: #fb84b3;
  font-size: 18px;
}

.considerable .newspaper li a figure figcaption .slender .knot .icon-shijian {
  color: #7250ef;
  font-size: 18px;
}

.considerable .newspaper li a figure figcaption .slender .knot time,
.considerable .newspaper li a figure figcaption .slender .knot span {
  font-size: 13px;
}

.considerable .genus {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  margin-bottom: 12px;
}

.considerable .genus ul {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  box-sizing: border-box;
}

.considerable .genus ul li {
  border: 1px solid #000000;
}

.considerable .genus ul li:hover,
.considerable .genus ul li.active {
  background-image: linear-gradient(to right, #fb85b5, #ffb975);
  border-color: transparent;
}

.considerable .genus ul li:hover a,
.considerable .genus ul li.active a {
  color: #fff;
}

.considerable .genus ul li a {
  display: block;
  font-size: 13px;
  color: #000;
  padding: 2px 14px;
}

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

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

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

.considerable .pages .pagination li:hover {
  background: #7254eb;
  border-color: transparent;
}

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

.considerable .pages .pagination li span,
.considerable .pages .pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: #fff;
  font-size: 14px;
}

.considerable .pages .pagination .active {
  background: #7254eb;
  border-color: transparent;
}

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

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

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

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

@media screen and (max-width: 768px) {
  .considerable .pages {
    padding: 0.26667rem;
    margin-top: 0.26667rem;
  }

  .considerable .pages .pagination {
    gap: 0.13333rem;
  }

  .considerable .pages .pagination li {
    padding: 0.06667rem 0.13333rem;
    border-radius: 0.06667rem;
    border-width: 0.04rem;
  }

  .considerable .pages .pagination li.Jump {
    display: none;
  }

  .considerable .pages .pagination li span,
  .considerable .pages .pagination li a {
    font-size: 0.34667rem;
  }
}

.considerable .collectively {
  display: flex;
  gap: 18px;
}

.considerable .collectively .nucleus {
  flex: 1;
  overflow: hidden;
  padding: 0 6px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .section {
  width: 100%;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .section h1 {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  color: #000;
  user-select: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.considerable .collectively .nucleus .section .exact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .section .exact .know {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .collectively .nucleus .section .exact .know .icon-shijian {
  color: #7250ef;
  font-size: 18px;
}

.considerable .collectively .nucleus .section .exact .know .icon-remen {
  color: #fb84b3;
  font-size: 18px;
}

.considerable .collectively .nucleus .section .exact .know time,
.considerable .collectively .nucleus .section .exact .know span {
  color: #6f7588;
  font-size: 13px;
}

.considerable .collectively .nucleus .section p {
  font-size: 13px;
  line-height: 24px;
  text-indent: 12px;
}

.considerable .collectively .nucleus .section .chapter {
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .nucleus .section .chapter article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.considerable .collectively .nucleus .section .chapter article p {
  font-size: 14px;
  color: #000;
  line-height: 26px;
  text-indent: 20px;
}

.considerable .collectively .nucleus .section .chapter 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;
}

.considerable .collectively .nucleus .section .advance {
  margin-top: 72px;
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .nucleus .section .advance ol {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.considerable .collectively .nucleus .section .advance ol li {
  width: 100%;
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #000;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  border-radius: 5px;
}

.considerable .collectively .nucleus .section .advance ol li:hover {
  background-image: linear-gradient(to right, #7154eb, #d36fd9);
  border-color: transparent;
}

.considerable .collectively .nucleus .section .advance ol li:hover a p,
.considerable .collectively .nucleus .section .advance ol li:hover a span {
  color: #fff;
}

.considerable .collectively .nucleus .section .advance ol li a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .collectively .nucleus .section .advance ol li a span {
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

.considerable .collectively .nucleus .section .advance ol li a p {
  flex: 1;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  color: #000;
}

.considerable .collectively .nucleus .section .unfold {
  position: relative;
  width: 100%;
  height: 382px;
}

.considerable .collectively .nucleus .section .unfold .intention {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .section .unfold .intention img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .section .unfold .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
}

.considerable .collectively .nucleus .section .unfold .play img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .section .unfold time {
  position: absolute;
  left: 12px;
  top: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.considerable .collectively .nucleus .section .unfold time.duration {
  right: 12px;
  left: auto;
}

.considerable .collectively .nucleus .section .unfold strong {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 6px 12px;
  box-sizing: border-box;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.7);
}

.considerable .collectively .nucleus .section .argue {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.considerable .collectively .nucleus .section .argue ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.considerable .collectively .nucleus .section .argue ul li {
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #000;
  font-weight: bold;
  flex-wrap: wrap;
}

.considerable .collectively .nucleus .section .argue ul li span,
.considerable .collectively .nucleus .section .argue ul li a {
  color: #000;
  font-weight: bold;
}

.considerable .collectively .nucleus .section .argue>strong,
.considerable .collectively .nucleus .section .argue p {
  font-size: 12px;
  color: #000;
  font-weight: bold;
}

.considerable .collectively .nucleus .section .gigantic {
  position: relative;
  width: 100%;
  height: 328px;
  background: url("../photograph/gigantic_bask.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.considerable .collectively .nucleus .section .gigantic.revolt {
  background: url("../photograph/gigantic_foot.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.considerable .collectively .nucleus .section .gigantic .spread {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background: rgba(225, 225, 225, 0.7);
  padding: 5px 10px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .section .gigantic .spread a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.considerable .collectively .nucleus .section .gigantic .spread a span {
  font-weight: bold;
  font-size: 14px;
}

.considerable .collectively .nucleus .section .gigantic .spread a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  font-size: 13px;
}

.considerable .collectively .nucleus .section .gigantic .atomic {
  width: 100%;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  gap: 12px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stylistic {
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stylistic a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stylistic a img {
  width: 72px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stylistic a strong {
  font-size: 16px;
  color: #fff;
  width: 100%;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .lasting {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .lasting time {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .situation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .situation span {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .situation img {
  width: 32px;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .cls {
  font-size: 15px;
  text-align: center;
}

.considerable .collectively .nucleus .section .gigantic .atomic .stress .cls a {
  color: #fff;
  font-weight: bold;
}

.considerable .collectively .nucleus .cognate {
  width: 100%;
  margin-top: 22px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .cognate .problem {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .cognate .problem .tender {
  display: flex;
  align-items: center;
  gap: 8px;
}

.considerable .collectively .nucleus .cognate .problem .tender img {
  width: 26px;
}

.considerable .collectively .nucleus .cognate .problem .tender strong {
  font-weight: bold;
  font-size: 15px;
  color: #000;
}

.considerable .collectively .nucleus .cognate .problem .more {
  overflow: hidden;
}

.considerable .collectively .nucleus .cognate .problem .more a {
  display: flex;
  gap: 8px;
}

.considerable .collectively .nucleus .cognate .problem .more a img {
  width: 18px;
}

.considerable .collectively .nucleus .cognate .problem .more a span {
  color: #000;
  font-size: 13px;
  font-weight: bold;
}

.considerable .collectively .nucleus .cognate ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.considerable .collectively .nucleus .cognate ul li {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .cognate ul li a {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.considerable .collectively .nucleus .cognate ul li a .patrol {
  position: relative;
  width: 100%;
  height: 172px;
}

.considerable .collectively .nucleus .cognate ul li a .patrol .visit {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .cognate ul li a .patrol .visit img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .cognate ul li a .patrol .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}

.considerable .collectively .nucleus .cognate ul li a .patrol .play img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .nucleus .cognate ul li a .patrol time {
  position: absolute;
  right: 8px;
  top: 8px;
  color: #fff;
  font-size: 13px;
}

.considerable .collectively .nucleus .cognate ul li a p {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  font-weight: bold;
  font-size: 13px;
}

.considerable .collectively .nucleus .partition {
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #fff;
  margin-top: 22px;
}

.considerable .collectively .nucleus .partition .different {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.considerable .collectively .nucleus .partition .different ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.considerable .collectively .nucleus .partition .different ul li {
  position: relative;
  user-select: none;
}

.considerable .collectively .nucleus .partition .different ul li a {
  padding: 5px 12px;
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #000;
}

.considerable .collectively .nucleus .partition .different ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  width: 0%;
  height: 3px;
  background: #7254eb;
  border-radius: 2px;
  transition: all 0.2s;
}

.considerable .collectively .nucleus .partition .different ul li:hover a,
.considerable .collectively .nucleus .partition .different ul li.active a {
  color: #7f58e9;
}

.considerable .collectively .nucleus .partition .different ul li:hover::after,
.considerable .collectively .nucleus .partition .different ul li.active::after {
  width: 100%;
}

.considerable .collectively .nucleus .partition .permit {
  width: 100%;
  overflow: hidden;
  margin-top: 14px;
}

.considerable .collectively .nucleus .partition .permit .separately {
  width: 100%;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .partition .permit .separately .corps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 52px;
  padding: 0 15px;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.considerable .collectively .nucleus .partition .permit .separately .corps .sphere {
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .nucleus .partition .permit .separately .corps .sphere a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.considerable .collectively .nucleus .partition .permit .separately .corps .sphere a img {
  width: 32px;
}

.considerable .collectively .nucleus .partition .permit .separately .corps .sphere a strong {
  flex: 1;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.considerable .collectively .nucleus .partition .permit .separately .corps .sphere:first-child a strong {
  text-align: right;
}

.considerable .collectively .nucleus .partition .permit .separately .construe {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.considerable .collectively .nucleus .partition .permit .separately .construe p {
  font-size: 13px;
  color: #000;
  line-height: 22px;
}

.considerable .collectively .nucleus .partition .permit .separately .construe p span {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.considerable .collectively .nucleus .partition .permit .separately .construe p a {
  color: #000;
}

.considerable .collectively .nucleus .partition .permit .separately .construe .semaphore {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .collectively .nucleus .partition .permit .separately .construe .semaphore span {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}

.considerable .collectively .nucleus .partition .permit .separately .construe .semaphore ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.considerable .collectively .nucleus .partition .permit .separately .construe .semaphore ul li {
  font-size: 16px;
}

.considerable .collectively .nucleus .partition .permit .separately .construe .semaphore ul li a {
  color: #000;
  background: linear-gradient(to right, #7054ec 0, #fff 40%, #ae64e0 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;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate.lonely {
  grid-template-columns: auto;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate.lonely .oneself {
  width: 50%;
  margin: auto;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: bold;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself strong::before {
  content: '';
  width: 3px;
  height: 14px;
  background: #7054ec;
  border-radius: 7px;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li {
  width: 100%;
  white-space: wrap;
  font-size: 13px;
  line-height: 28px;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li.qb-status-1 {
  background: #71a172;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li.qb-status-2 {
  background: #cba96f;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li.qb-status-3 {
  background: #bc67d8;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li.qb-status-4 {
  background: #eb7913;
}

.considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li.qb-status-5 {
  background: #fb2828;
}

.considerable .collectively .nucleus .partition .permit .separately .abbreviation {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.considerable .collectively .nucleus .partition .permit .separately .abbreviation::before {
  content: '';
  width: 3px;
  height: 14px;
  display: block;
  border-radius: 3px;
  background: #7455f9;
}

.considerable .collectively .nucleus .partition .permit .separately .abbreviation strong {
  font-weight: bold;
  font-size: 14px;
  color: #7455f9;
}

.considerable .collectively .nucleus .partition .permit .separately .swords {
  width: 100%;
  overflow: hidden;
  border: 1px solid #7054ec;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #7054ec;
  padding: 8px 10px;
  box-sizing: border-box;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li:hover {
  background-image: linear-gradient(to left, #7b56e9, #da71d8);
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li:hover span,
.considerable .collectively .nucleus .partition .permit .separately .swords ul li:hover time,
.considerable .collectively .nucleus .partition .permit .separately .swords ul li:hover a {
  color: #fff;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li:last-child {
  border-bottom: none;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .different {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .different .apart {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  text-overflow: ellipsis;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .different .apart a {
  font-weight: bold;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .different time {
  font-size: 13px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .different time a {
  font-weight: bold;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  align-items: center;
  gap: 12px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a img {
  width: 34px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a span {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  font-size: 13px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia:first-child a span {
  text-align: right;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover {
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover span {
  font-size: 16px;
  font-weight: bold;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover img {
  width: 26px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .terrain {
  padding: 0 10px;
}

.considerable .collectively .nucleus .partition .permit .separately .swords ul li .terrain a {
  font-weight: bold;
  font-size: 13px;
}

.considerable .collectively .nucleus .partition .permit .separately .recently {
  margin-top: 20px;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency {
  white-space: nowrap;
  user-select: none;
  margin-bottom: 20px;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li {
  position: relative;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li:hover::after,
.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li.active::after {
  width: 100%;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li:hover a,
.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li.active a {
  color: #7154ec;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 3px;
  transform: translate(-50%, 100%);
  background: #7154ec;
  transition: all 0.2s;
}

.considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li a {
  font-size: 15px;
  font-weight: bold;
  color: #000;
  padding: 5px 10px;
  box-sizing: border-box;
}

.considerable .collectively .boundary {
  width: 32%;
  overflow: hidden;
}

.considerable .collectively .boundary .apiece {
  padding: 10px;
  margin-bottom: 12px;
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  box-sizing: border-box;
}

.considerable .collectively .boundary .tidings {
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .boundary .tidings ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.considerable .collectively .boundary .tidings ul li {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.considerable .collectively .boundary .tidings ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}

.considerable .collectively .boundary .tidings ul li a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

.considerable .collectively .boundary .tidings ul li a time {
  font-size: 13px;
  font-weight: bold;
  color: #3d339a;
}

.considerable .collectively .boundary .television {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .boundary .television ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.considerable .collectively .boundary .television ul li {
  width: 100%;
  overflow: hidden;
}

.considerable .collectively .boundary .television ul li a {
  width: 100%;
  display: block;
}

.considerable .collectively .boundary .television ul li a .attempt {
  position: relative;
  width: 100%;
  height: 132px;
}

.considerable .collectively .boundary .television ul li a .attempt .envelope {
  width: 100%;
  height: 100%;
}

.considerable .collectively .boundary .television ul li a .attempt .envelope img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .boundary .television ul li a .attempt .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
}

.considerable .collectively .boundary .television ul li a .attempt .play img {
  width: 100%;
  height: 100%;
}

.considerable .collectively .boundary .television ul li a .attempt time {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.considerable .collectively .boundary .television ul li a p {
  width: 100%;
  margin-top: 10px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.considerable .collectively .boundary .topic {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 12px;
}

.considerable .collectively .boundary .topic .sign {
  display: flex;
  align-items: center;
  gap: 8px;
}

.considerable .collectively .boundary .topic .sign img {
  width: 18px;
}

.considerable .collectively .boundary .topic .sign strong {
  font-size: 15px;
  font-weight: bold;
}

.considerable .collectively .boundary .topic .much {
  white-space: nowrap;
  user-select: none;
}

.considerable .collectively .boundary .topic .much a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.considerable .collectively .boundary .topic .much a span {
  font-size: 13px;
  font-weight: bold;
  color: #7455f9;
}

.considerable .collectively .boundary .topic .much a img {
  width: 16px;
}

.considerable .accept {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.considerable .accept .together {
  width: 100%;
  overflow: hidden;
  padding: 20px 15px;
  box-sizing: border-box;
  background: #fff;
}

.considerable .accept .together ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  white-space: nowrap;
  user-select: none;
  gap: 16px;
}

.considerable .accept .together ul li {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  border: 1px solid #7354eb;
  padding: 5px;
  box-sizing: border-box;
}

.considerable .accept .together ul li time {
  font-size: 13px;
}

.considerable .accept .together ul li time a {
  font-weight: bold;
}

.considerable .accept .together ul li .comity {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.considerable .accept .together ul li .comity .squadron {
  width: 100%;
  font-size: 13px;
}

.considerable .accept .together ul li .comity .squadron:first-child a {
  text-align: right;
}

.considerable .accept .together ul li .comity .squadron a {
  width: 100%;
  display: block;
  color: #7355ec;
  font-weight: bold;
}

.considerable .accept .together ul li .comity img {
  width: 22px;
}

.considerable .accept .together ul li .status {
  font-size: 13px;
}

.considerable .accept .together ul li .status a {
  font-weight: bold;
}

.considerable .numerous {
  margin-top: 32px;
  background: #fff;
  padding: 15px 10px;
  width: 100%;
  box-sizing: border-box;
}

.considerable .numerous .headline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.considerable .numerous .headline img {
  width: 32px;
}

.considerable .numerous .headline strong {
  font-weight: bold;
  color: #7154eb;
  font-size: 16px;
}

.considerable .numerous ol {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.considerable .numerous ol li {
  font-size: 13px;
}

.considerable .numerous ol li a {
  color: #000;
  font-weight: bold;
}

@media screen and (max-width: 1000px) {
  .considerable.demand {
    padding: 46px 10px;
  }

  .considerable .tournament {
    padding: 62px 10px;
  }

  .considerable .showcase {
    padding: 72px 10px;
  }

  .considerable .organization {
    padding: 82px 10px;
  }

  .considerable .organization .organized ul {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }

  .considerable .possess {
    padding: 72px 10px;
  }
}

@media screen and (max-width: 768px) {
  .considerable.demand {
    padding: 0.86667rem 0.2rem;
  }

  .considerable .collectively {
    flex-direction: column;
    gap: 0.37333rem;
  }

  .considerable .collectively .nucleus {
    width: 100%;
    flex: auto;
    padding: 0;
  }

  .considerable .collectively .nucleus .section {
    padding: 0.13333rem;
  }

  .considerable .collectively .nucleus .section h1 {
    font-size: 0.34667rem;
  }

  .considerable .collectively .nucleus .section .exact {
    margin: 0.13333rem 0;
    gap: 0.10667rem;
  }

  .considerable .collectively .nucleus .section .exact .know {
    gap: 0.08rem;
  }

  .considerable .collectively .nucleus .section .exact .know .icon-shijian,
  .considerable .collectively .nucleus .section .exact .know .icon-remen {
    font-size: 0.37333rem;
  }

  .considerable .collectively .nucleus .section .exact .know time,
  .considerable .collectively .nucleus .section .exact .know span {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section p {
    font-size: 0.30667rem;
    line-height: 0.48rem;
    text-indent: 0.16rem;
  }

  .considerable .collectively .nucleus .section .chapter article {
    gap: 0.26667rem;
  }

  .considerable .collectively .nucleus .section .chapter article p {
    font-size: 0.32rem;
    line-height: 0.50667rem;
    text-indent: drem(20);
  }

  .considerable .collectively .nucleus .section .chapter article img {
    width: 100% !important;
    margin-bottom: 0.26667rem;
    border-radius: 0.2rem;
  }

  .considerable .collectively .nucleus .section .advance {
    margin-top: 0.96rem;
  }

  .considerable .collectively .nucleus .section .advance ol {
    grid-template-columns: auto;
    gap: 0.34667rem;
  }

  .considerable .collectively .nucleus .section .advance ol li {
    padding: 0.06667rem;
    border-radius: 0.06667rem;
  }

  .considerable .collectively .nucleus .section .advance ol li a {
    gap: 0.08rem;
  }

  .considerable .collectively .nucleus .section .advance ol li a span {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .advance ol li a p {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .unfold {
    height: 6.16rem;
  }

  .considerable .collectively .nucleus .section .unfold .play {
    width: 1.18667rem;
    height: 1.18667rem;
  }

  .considerable .collectively .nucleus .section .unfold time {
    left: 0.16rem;
    top: 0.16rem;
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .unfold time.duration {
    right: 0.16rem;
  }

  .considerable .collectively .nucleus .section .unfold strong {
    padding: 0.10667rem 0.2rem;
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .section .argue {
    gap: 0.10667rem;
    margin: 0.16rem 0;
  }

  .considerable .collectively .nucleus .section .argue ul {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .section .argue ul li {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .argue>strong,
  .considerable .collectively .nucleus .section .argue p {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .gigantic {
    height: 5.68rem;
    margin-top: 0.21333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .spread {
    padding: 0.06667rem 0.13333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .spread a {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .spread a span {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .section .gigantic .spread a strong {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic {
    gap: 0.16rem;
    padding: 0 0.13333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stylistic a {
    gap: 0.21333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stylistic a img {
    width: 1.22667rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stylistic a strong {
    font-size: 0.34667rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress {
    gap: 0.10667rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress .lasting time {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress .situation {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress .situation span {
    font-size: 0.37333rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress .situation img {
    width: 0.56rem;
  }

  .considerable .collectively .nucleus .section .gigantic .atomic .stress .cls {
    font-size: 0.33333rem;
  }

  .considerable .collectively .nucleus .cognate {
    margin-top: 0.29333rem;
    padding: 0.13333rem;
  }

  .considerable .collectively .nucleus .cognate .problem .tender {
    gap: 0.10667rem;
  }

  .considerable .collectively .nucleus .cognate .problem .tender img {
    width: 0.45333rem;
  }

  .considerable .collectively .nucleus .cognate .problem .tender strong {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .cognate .problem .more a {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .cognate .problem .more a img {
    width: 0.29333rem;
  }

  .considerable .collectively .nucleus .cognate .problem .more a span {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .cognate ul {
    gap: 0.13333rem;
    margin-top: 0.21333rem;
  }

  .considerable .collectively .nucleus .cognate ul li a {
    gap: 0.10667rem;
  }

  .considerable .collectively .nucleus .cognate ul li a .patrol {
    height: 3.49333rem;
  }

  .considerable .collectively .nucleus .cognate ul li a .patrol .play {
    width: 0.86667rem;
    height: 0.86667rem;
  }

  .considerable .collectively .nucleus .cognate ul li a .patrol time {
    right: 0.13333rem;
    top: 0.13333rem;
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .cognate ul li a p {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition {
    padding: 0.2rem 0.13333rem;
    margin-top: 0.29333rem;
  }

  .considerable .collectively .nucleus .partition .different ul {
    gap: 0.24rem;
  }

  .considerable .collectively .nucleus .partition .different ul li a {
    padding: 0.06667rem 0.16rem;
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit {
    margin-top: 0.18667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .corps {
    gap: 0.69333rem;
    padding: 0 0.2rem;
    margin-bottom: 0.26667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .corps .sphere a {
    gap: 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .corps .sphere a img {
    width: 0.69333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .corps .sphere a strong {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe {
    gap: 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe p {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe p span {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe .semaphore {
    gap: 0.08rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe .semaphore span {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe .semaphore ul {
    gap: 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .construe .semaphore ul li {
    font-size: 0.34667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .legitimate {
    gap: 0.21333rem;
    margin-bottom: 0.24rem;
    grid-template-columns: auto;
  }

  .considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself strong {
    gap: 0.13333rem;
    margin-bottom: 0.16rem;
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself strong::before {
    height: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul {
    gap: 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .legitimate .oneself ul li {
    line-height: 0.48rem;
    font-size: 0.30667rem;
    padding: 0.08rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .abbreviation {
    gap: 0.10667rem;
    margin-bottom: 0.21333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .abbreviation::before {
    height: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .abbreviation strong {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li {
    grid-template-columns: auto;
    gap: 0.29333rem;
    padding: 0.13333rem 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .different {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .different .apart {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .different time {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent {
    gap: 0.16rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a {
    gap: 0.10667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a img {
    width: 0.61333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .insignia a span {
    font-size: 0.30667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover a {
    gap: 0.13333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover span {
    font-size: 0.34667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .contingent .moreover img {
    width: 0.48rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .terrain {
    padding: 0 0.13333rem;
    text-align: center;
  }

  .considerable .collectively .nucleus .partition .permit .separately .swords ul li .terrain a {
    font-size: 0.32rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .recently {
    margin-top: 0.26667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .recently .tangency {
    margin-bottom: 0.26667rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul {
    gap: 0.29333rem;
  }

  .considerable .collectively .nucleus .partition .permit .separately .recently .tangency ul li a {
    font-size: 0.33333rem;
    padding: 0.08rem 0.13333rem;
  }

  .considerable .collectively .boundary {
    width: 100%;
  }

  .considerable .collectively .boundary .apiece {
    padding: 0.13333rem;
    margin-bottom: 0.16rem;
  }

  .considerable .collectively .boundary .television ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.13333rem;
  }

  .considerable .collectively .boundary .television ul li a .attempt {
    height: 2.56rem;
  }

  .considerable .collectively .boundary .television ul li a .attempt .play {
    width: 0.88rem;
    height: 0.88rem;
  }

  .considerable .collectively .boundary .television ul li a .attempt time {
    top: 0.10667rem;
    right: 0.10667rem;
    font-size: 0.30667rem;
  }

  .considerable .collectively .boundary .television ul li a p {
    margin-top: 0.13333rem;
    font-size: 0.30667rem;
  }

  .considerable .navigation {
    flex-direction: column;
    gap: 0.34667rem;
    margin-bottom: 0.32rem;
  }

  .considerable .navigation .inscribe {
    gap: 0.16rem;
  }

  .considerable .navigation .inscribe img {
    width: 0.48rem;
  }

  .considerable .navigation .inscribe strong {
    font-size: 0.29333rem;
  }

  .considerable .navigation .question {
    flex: auto;
    width: 100%;
    padding-bottom: 0.10667rem;
    transform: translateY(0.10667rem);
  }

  .considerable .navigation .question ul {
    gap: 0.13333rem;
  }

  .considerable .navigation .question ul li {
    border-radius: 0.08rem;
  }

  .considerable .navigation .question ul li a {
    font-size: 0.30667rem;
    padding: 0.06667rem 0.21333rem;
  }

  .considerable .tournament {
    padding: 0.86667rem 0.2rem;
  }

  .considerable .tournament::after {
    width: 30%;
    height: 0.56rem;
  }

  .considerable .obscure.emulate {
    height: 15.76rem;
  }

  .considerable .obscure ul {
    gap: 0.10667rem;
    padding: 0.08rem;
  }

  .considerable .obscure ul li {
    grid-template-columns: auto;
    gap: 0.24rem;
    padding: 0.10667rem 0.16rem;
  }

  .considerable .obscure ul li .particulars {
    gap: 0.08rem;
    grid-template-columns: 1fr 2fr auto;
  }

  .considerable .obscure ul li .particulars .separate a {
    gap: 0.08rem;
  }

  .considerable .obscure ul li .particulars .separate a img {
    width: 0.56rem;
  }

  .considerable .obscure ul li .particulars .separate a strong {
    font-size: 0.30667rem;
  }

  .considerable .obscure ul li .particulars .period a {
    gap: 0.05333rem;
  }

  .considerable .obscure ul li .particulars .period a time {
    font-size: 0.30667rem;
  }

  .considerable .obscure ul li .particulars .fettle a {
    font-size: 0.30667rem;
  }

  .considerable .obscure ul li .harbor {
    gap: 0.21333rem;
  }

  .considerable .obscure ul li .harbor .comprise {
    gap: 0.10667rem;
  }

  .considerable .obscure ul li .harbor .comprise .badge a {
    gap: 0.16rem;
  }

  .considerable .obscure ul li .harbor .comprise .badge a img {
    width: 0.50667rem;
  }

  .considerable .obscure ul li .harbor .comprise .badge a strong {
    font-size: 0.30667rem;
  }

  .considerable .obscure ul li .harbor .condition a {
    gap: 0.16rem;
  }

  .considerable .obscure ul li .harbor .condition a img {
    width: 0.42667rem;
  }

  .considerable .obscure ul li .harbor .condition a span {
    font-size: 0.34667rem;
  }

  .considerable .obscure ul li .surplus {
    gap: 0.16rem;
  }

  .considerable .obscure ul li .surplus .speaker a {
    gap: 0.16rem;
  }

  .considerable .obscure ul li .surplus .speaker a img {
    width: 0.42667rem;
  }

  .considerable .obscure ul li .surplus .speaker a img span {
    font-size: 0.30667rem;
  }

  .considerable .obscure ul li .surplus .status {
    justify-content: flex-end;
    transform: scale(0.8);
  }

  .considerable .examine ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.21333rem;
  }

  .considerable .examine ul li a .reveal {
    height: 3.62667rem;
  }

  .considerable .examine ul li a .reveal .play {
    width: 1.01333rem;
    height: 1.01333rem;
  }

  .considerable .examine ul li a .reveal time {
    right: 0.16rem;
    bottom: 0.16rem;
    font-size: 0.30667rem;
  }

  .considerable .examine ul li a .minutiae {
    height: 2.34667rem;
    padding: 0.13333rem;
  }

  .considerable .examine ul li a .minutiae p {
    font-size: 0.30667rem;
    line-height: 0.45333rem;
  }

  .considerable .examine ul li a .minutiae .perspicuity {
    padding-top: 0.21333rem;
  }

  .considerable .examine ul li a .minutiae .perspicuity .each {
    gap: 0.08rem;
  }

  .considerable .examine ul li a .minutiae .perspicuity .each .icon-remen {
    font-size: 0.36rem;
  }

  .considerable .examine ul li a .minutiae .perspicuity .each .icon-shijian {
    font-size: 0.37333rem;
  }

  .considerable .examine ul li a .minutiae .perspicuity .each span,
  .considerable .examine ul li a .minutiae .perspicuity .each time {
    font-size: 0.30667rem;
  }

  .considerable .showcase {
    padding: 1.09333rem 0.2rem;
  }

  .considerable .showcase::after {
    width: 30%;
    height: 0.56rem;
  }

  .considerable .organization {
    padding: 1.09333rem 0.2rem;
  }

  .considerable .organization .organized ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.34667rem;
  }

  .considerable .organization .organized ul li {
    height: 3.01333rem;
  }

  .considerable .organization .organized ul li a {
    gap: 0.10667rem;
    padding: 0.16rem;
  }

  .considerable .organization .organized ul li a img {
    height: 0.82667rem;
  }

  .considerable .organization .organized ul li a strong {
    font-size: 0.30667rem;
  }

  .considerable .possess {
    padding: 1.09333rem 0.2rem;
  }

  .considerable .newspaper ul {
    gap: 0.13333rem;
  }

  .considerable .newspaper ul li {
    height: 3.58667rem;
  }

  .considerable .newspaper ul li a figure {
    gap: 0.24rem;
  }

  .considerable .newspaper ul li a figure img {
    width: 40%;
  }

  .considerable .newspaper ul li a figure figcaption {
    padding: 0.08rem 0;
  }

  .considerable .newspaper ul li a figure figcaption article {
    gap: 0.08rem;
  }

  .considerable .newspaper ul li a figure figcaption article strong {
    font-size: 0.33333rem;
  }

  .considerable .newspaper ul li a figure figcaption article p {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-indent: 0.18667rem;
  }

  .considerable .newspaper ul li a figure figcaption .slender {
    gap: 0.16rem;
  }

  .considerable .newspaper ul li a figure figcaption .slender .knot {
    gap: 0.08rem;
  }

  .considerable .newspaper ul li a figure figcaption .slender .knot .icon-remen {
    font-size: 0.37333rem;
  }

  .considerable .newspaper ul li a figure figcaption .slender .knot .icon-shijian {
    font-size: 0.37333rem;
  }

  .considerable .newspaper ul li a figure figcaption .slender .knot time,
  .considerable .newspaper ul li a figure figcaption .slender .knot span {
    font-size: 0.30667rem;
  }

  .considerable .accept .together {
    padding: 0.26667rem 0.2rem;
  }

  .considerable .accept .together ul {
    gap: 0.21333rem;
    grid-template-columns: auto;
  }

  .considerable .accept .together ul li {
    padding: 0.06667rem;
  }

  .considerable .accept .together ul li time {
    font-size: 0.30667rem;
  }

  .considerable .accept .together ul li .comity {
    gap: 0.16rem;
  }

  .considerable .accept .together ul li .comity .squadron {
    font-size: 0.30667rem;
  }

  .considerable .accept .together ul li .comity img {
    width: 0.48rem;
  }

  .considerable .accept .together ul li .status {
    font-size: 0.30667rem;
  }

  .considerable .numerous {
    padding: 0.2rem 0.13333rem;
  }

  .considerable .numerous .headline {
    gap: 0.16rem;
  }

  .considerable .numerous .headline img {
    width: 0.56rem;
  }

  .considerable .numerous .headline strong {
    font-size: 0.37333rem;
  }

  .considerable .numerous ol {
    gap: 0.21333rem;
    margin-top: 0.21333rem;
  }

  .considerable .numerous ol li {
    font-size: 0.30667rem;
  }
}

.foundation {
  width: 100%;
  background: #000000;
}

.foundation .tolerate {
  padding: 53px 12px;
  box-sizing: border-box;
}

.foundation .tolerate dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  white-space: nowrap;
}

.foundation .tolerate dl dt {
  font-weight: bold;
  font-size: 14px;
  color: #fff;
}

.foundation .tolerate dl dd {
  font-size: 13px;
  user-select: none;
}

.foundation .tolerate dl dd a {
  color: #fff;
}

.foundation .tolerate p {
  margin-top: 16px;
  text-align: center;
  line-height: 32px;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  user-select: none;
}

.foundation .tolerate p a {
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .foundation .tolerate {
    padding: 1.10667rem 0.2rem;
  }

  .foundation .tolerate dl {
    gap: 0.10667rem;
  }

  .foundation .tolerate dl dt {
    font-size: 0.32rem;
  }

  .foundation .tolerate dl dd {
    font-size: 0.30667rem;
  }

  .foundation .tolerate p {
    font-size: 0.30667rem;
    line-height: 0.50667rem;
    margin-top: 0.21333rem;
  }
}

.start {
  --speed-of-animation: 0.9s;
  --gap: 6px;
  --first-color: #4c86f9;
  --second-color: #49a84c;
  --third-color: #f6bb02;
  --fourth-color: #f6bb02;
  --fifth-color: #2196f3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 6px;
  height: fit-content;
}

.start span {
  width: 2px;
  height: 20px;
  background: var(--first-color);
  animation: scale var(--speed-of-animation) ease-in-out infinite;
}

.start span:nth-child(2) {
  background: var(--second-color);
  animation-delay: -0.8s;
}

.start span:nth-child(3) {
  background: var(--third-color);
  animation-delay: -0.7s;
}

.traffic-loader {
  --uib-size: 16px;
  --uib-speed: 1.5s;
  --uib-color: black;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--uib-size);
  width: var(--uib-size);
  animation: rotate936 calc(var(--uib-speed) * 1.667) infinite linear;
}

.traffic-loader::before,
.traffic-loader::after {
  content: '';
  position: absolute;
  height: 60%;
  width: 60%;
  border-radius: 50%;
  background-color: var(--uib-color);
  will-change: transform;
  flex-shrink: 0;
}

.traffic-loader::before {
  animation: orbit var(--uib-speed) linear infinite;
}

.traffic-loader::after {
  animation: orbit var(--uib-speed) linear calc(var(--uib-speed) / -2) infinite;
}

@keyframes rotate936 {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes orbit {
  0% {
    transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
    opacity: 0.65;
  }

  5% {
    transform: translate(calc(var(--uib-size) * 0.4)) scale(0.68421);
    opacity: 0.58;
  }

  10% {
    transform: translate(calc(var(--uib-size) * 0.3)) scale(0.63158);
    opacity: 0.51;
  }

  15% {
    transform: translate(calc(var(--uib-size) * 0.2)) scale(0.57894);
    opacity: 0.44;
  }

  20% {
    transform: translate(calc(var(--uib-size) * 0.1)) scale(0.52631);
    opacity: 0.37;
  }

  25% {
    transform: translate(0%) scale(0.47368);
    opacity: 0.3;
  }

  30% {
    transform: translate(calc(var(--uib-size) * -0.1)) scale(0.52631);
    opacity: 0.37;
  }

  35% {
    transform: translate(calc(var(--uib-size) * -0.2)) scale(0.57894);
    opacity: 0.44;
  }

  40% {
    transform: translate(calc(var(--uib-size) * -0.3)) scale(0.63158);
    opacity: 0.51;
  }

  45% {
    transform: translate(calc(var(--uib-size) * -0.4)) scale(0.68421);
    opacity: 0.58;
  }

  50% {
    transform: translate(calc(var(--uib-size) * -0.5)) scale(0.73684);
    opacity: 0.65;
  }

  55% {
    transform: translate(calc(var(--uib-size) * -0.4)) scale(0.78947);
    opacity: 0.72;
  }

  60% {
    transform: translate(calc(var(--uib-size) * -0.3)) scale(0.8421);
    opacity: 0.79;
  }

  65% {
    transform: translate(calc(var(--uib-size) * -0.2)) scale(0.89474);
    opacity: 0.86;
  }

  70% {
    transform: translate(calc(var(--uib-size) * -0.1)) scale(0.94737);
    opacity: 0.93;
  }

  75% {
    transform: translate(0%) scale(1);
    opacity: 1;
  }

  80% {
    transform: translate(calc(var(--uib-size) * 0.1)) scale(0.94737);
    opacity: 0.93;
  }

  85% {
    transform: translate(calc(var(--uib-size) * 0.2)) scale(0.89474);
    opacity: 0.86;
  }

  90% {
    transform: translate(calc(var(--uib-size) * 0.3)) scale(0.8421);
    opacity: 0.79;
  }

  95% {
    transform: translate(calc(var(--uib-size) * 0.4)) scale(0.78947);
    opacity: 0.72;
  }

  100% {
    transform: translate(calc(var(--uib-size) * 0.5)) scale(0.73684);
    opacity: 0.65;
  }
}

@keyframes scale {

  0%,
  40%,
  100% {
    transform: scaleY(0.05);
  }

  20% {
    transform: scaleY(1);
  }
}

@keyframes shine {
  0% {
    background-position: 0;
  }

  60% {
    background-position: 90px;
  }

  100% {
    background-position: 180px;
  }
}