.header {
  width: 100%;
  height: fit-content;
  background: #fff;
}

.header .preceding {
  background: url(../quiescent/photo/preceding_bg.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 15px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #05dce1;
}

.header .preceding .logo {
  width: 163px;
  height: fit-content;
}

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

.header .preceding .logo a img {
  width: 100%;
  height: fit-content;
}

.header .preceding .proper {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header .preceding .proper .contest {
  flex: 1;
  overflow: hidden;
}

.header .preceding .proper .contest ul {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.header .preceding .proper .contest ul li {
  white-space: nowrap;
}

.header .preceding .proper .contest ul li a {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  user-select: none;
}

.header .navigate {
  width: 100%;
  overflow: hidden;
  background-color: #d7e4ef;
}

.header .navigate .inside {
  width: 100%;
  height: 34px;
  background: #004576;
}

.header .navigate nav {
  width: 100%;
  overflow: hidden;
  background: #005896;
  clip-path: polygon(1.68% 0%, 100% 0%, 98% 100%, 0% 100%);
}

.header .navigate nav ul {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  overflow-x: auto;
  padding-bottom: 3px;
}

.header .navigate nav ul li {
  transition: all 0.2s;
  user-select: none;
}

.header .navigate nav ul li a {
  padding: 16px 28px;
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
}

.header .navigate nav ul li:hover,
.header .navigate nav ul li.is_active {
  background: #0c8de7;
  transform: skew(-20deg);
}

.header .navigate nav ul li:hover a,
.header .navigate nav ul li.is_active a {
  transform: skew(20deg);
}

@media screen and (max-width: 768px) {
  .header .preceding {
    padding: 0.42667rem 0.13333rem;
  }

  .header .preceding .proper {
    flex-direction: column;
    gap: 0.29333rem;
  }

  .header .preceding .proper .logo {
    width: 2.97333rem;
  }

  .header .preceding .proper .contest {
    width: 100%;
    flex: auto;
  }

  .header .preceding .proper .contest ul {
    gap: 0.16rem;
  }

  .header .preceding .proper .contest ul li a {
    font-size: 0.32rem;
  }

  .header .preceding .proper .botao {
    display: none;
  }

  .header .navigate .inside {
    display: none;
  }

  .header .navigate nav {
    clip-path: inherit;
  }

  .header .navigate nav ul {
    padding: 0 r(10);
  }

  .header .navigate nav ul li a {
    padding: 0.21333rem 0.37333rem;
    font-size: 0.30667rem;
  }
}

.botao {
  width: 125px;
  height: 45px;
  border-radius: 20px;
  border: none;
  box-shadow: 1px 1px rgba(107, 221, 215, 0.37);
  padding: 5px 10px;
  background-color: #3bbee6;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 505;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 0 10px rgba(59, 190, 230, 0.568));
  transition: 0.5s linear;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botao .mysvg {
  display: none;
}

.botao:hover {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: 0.5s linear;
}

.botao:hover .texto {
  display: none;
}

.botao:hover .mysvg {
  display: inline;
}

.botao:hover::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 3px;
  background-color: #3bbee6;
  margin-left: -2px;
  animation: animate 0.9s linear infinite;
}

.botao:hover:before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  width: 100%;
  height: 100%;
  border: 3.5px solid transparent;
  border-top: 3.5px solid #fff;
  border-right: 3.5px solid #fff;
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

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

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

@keyframes animate {
  0% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(20px);
  }
}

.footer {
  width: 100%;
  height: fit-content;
  background: #005896;
}

.footer .packet {
  border-bottom: 1px solid #fff;
  background: #004576;
}

.footer .faith {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 10px;
  box-sizing: border-box;
}

.footer .faith .sign {
  width: 82px;
  height: 100%;
}

.footer .faith .sign a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer .faith .sign a img {
  width: 100%;
  height: fit-content;
}

.footer .faith dl {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  white-space: nowrap;
  user-select: none;
}

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

.footer .faith dl dd {
  font-size: 12px;
  white-space: nowrap;
}

.footer .faith dl dd a {
  color: #fff;
}

.footer .depiction {
  padding: 28px 10px;
  box-sizing: border-box;
  user-select: none;
}

.footer .depiction dl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  white-space: nowrap;
}

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

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

.footer .depiction dl dd a {
  color: #fff;
}

.footer .depiction p {
  text-align: center;
  font-size: 13px;
  line-height: 28px;
  color: #fff;
  margin-top: 18px;
}

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

@media screen and (max-width: 768px) {
  .footer .faith {
    gap: 0.29333rem;
    padding: 0.16rem 0.13333rem;
  }

  .footer .faith .sign {
    width: 1.09333rem;
  }

  .footer .faith dl {
    gap: 0.16rem;
  }

  .footer .faith dl dt {
    font-size: 0.32rem;
  }

  .footer .faith dl dd {
    font-size: 0.30667rem;
  }

  .footer .depiction {
    padding: 0.37333rem 0.13333rem;
  }

  .footer .depiction dl {
    gap: 0.16rem;
  }

  .footer .depiction dl dt {
    font-size: 0.32rem;
  }

  .footer .depiction dl dd {
    font-size: 0.30667rem;
  }

  .footer .depiction p {
    font-size: 0.32rem;
    line-height: 0.48rem;
    margin-top: 0.24rem;
  }
}

.headline {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  padding: 15px 10px;
  border-bottom: 1px solid #e8e8e8;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  gap: 22px;
}

.headline .explain {
  display: flex;
  align-items: center;
  gap: 8px;
}

.headline .explain img {
  width: 36px;
  height: auto;
}

.headline .explain strong {
  font-size: 18px;
  font-weight: bold;
}

.headline .decorate {
  flex: 1;
  height: fit-content;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.headline .decorate ol {
  display: flex;
  align-items: center;
  overflow-x: auto;
  gap: 16px;
}

.headline .decorate ol li {
  background: #fff;
  border: 1px solid #05dce1;
}

.headline .decorate ol li a {
  display: block;
  padding: 3px 12px;
  font-size: 13px;
  font-weight: bold;
}

.headline .decorate ol li:hover,
.headline .decorate ol .active {
  background: #0c8de7;
}

.headline .decorate ol li:hover a,
.headline .decorate ol .active a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .headline {
    padding: 0.2rem 0.13333rem;
    flex-direction: column;
  }

  .headline .explain {
    gap: 0.10667rem;
  }

  .headline .explain img {
    width: 0.61333rem;
  }

  .headline .decorate {
    width: 100%;
    flex: auto;
    padding: 0 0.16rem;
  }

  .headline .decorate ol {
    gap: 0.21333rem;
  }

  .headline .decorate ol li a {
    padding: 0.04rem 0.16rem;
    font-size: 0.30667rem;
  }
}

.photograph {
  width: 100%;
  overflow: hidden;
  border: 1px solid #ebeeef;
  background: #f3f3f3;
}

.photograph ul {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photograph ul li {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(51, 102, 255, 0.24);
}

.photograph ul li a {
  width: 100%;
  height: 100%;
}

.photograph ul li a .attempt {
  position: relative;
  width: 100%;
  height: 221px;
}

.photograph ul li a .attempt .cover {
  width: 100%;
  height: 100%;
}

.photograph ul li a .attempt .cover img {
  width: 100%;
  height: 100%;
}

.photograph ul li a .attempt .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 66px;
}

.photograph ul li a .attempt .play img {
  width: 100%;
  height: 100%;
}

.photograph ul li a .attempt time {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 13px;
  color: #fff;
}

.photograph ul li a .convey {
  width: 100%;
  height: 132px;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.photograph ul li a .convey p {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.photograph ul li a .convey .additional {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.photograph ul li a .convey .additional .sole {
  display: flex;
  align-items: center;
  gap: 6px;
}

.photograph ul li a .convey .additional .sole span {
  font-size: 18px;
}

.photograph ul li a .convey .additional .sole .icon-icon {
  color: #ffe41f;
}

.photograph ul li a .convey .additional .sole .icon-shijian {
  color: #94ccfb;
}

.photograph ul li a .convey .additional .sole em,
.photograph ul li a .convey .additional .sole time {
  font-size: 12px;
  white-space: nowrap;
  user-select: none;
}

@media screen and (max-width: 768px) {
  .photograph ul {
    column-count: 2;
    column-gap: 0.2rem;
    display: block;
    grid-template-columns: auto;
    padding: 0.26667rem 0;
  }

  .photograph ul li {
    height: fit-content;
    margin-bottom: 0.29333rem;
  }

  .photograph ul li a .attempt {
    height: fit-content;
  }

  .photograph ul li a .attempt .cover {
    width: 100%;
    height: 100%;
  }

  .photograph ul li a .attempt .play {
    width: 1.14667rem;
    height: 1.14667rem;
  }

  .photograph ul li a .attempt time {
    left: 0.16rem;
    top: 0.16rem;
    font-size: 0.32rem;
  }

  .photograph ul li a .convey {
    height: fit-content;
    gap: 0.42667rem;
  }

  .photograph ul li a .convey p {
    white-space: wrap;
    font-size: 0.30667rem;
    line-height: 0.42667rem;
  }

  .photograph ul li a .convey .additional .sole {
    gap: 0.08rem;
  }

  .photograph ul li a .convey .additional .sole span {
    font-size: 0.37333rem;
  }

  .photograph ul li a .convey .additional .sole em,
  .photograph ul li a .convey .additional .sole time {
    font-size: 0.32rem;
  }
}

.procession {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #ebeeef;
  background: #f3f3f3;
}

.procession ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
}

.procession ol li {
  width: 100%;
  overflow: hidden;
}

.procession ol li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.procession ol li a img {
  width: fit-content;
  height: 52px;
}

.procession ol li a strong {
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media screen and (max-width: 1000px) {
  .procession ol {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media screen and (max-width: 768px) {
  .procession {
    padding: 0.26667rem;
  }

  .procession ol {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.29333rem;
  }

  .procession ol li a {
    gap: 0.16rem;
  }

  .procession ol li a img {
    height: 0.69333rem;
  }

  .procession ol li a strong {
    font-size: 0.33333rem;
  }
}

.tidy {
  width: 100%;
  background: #f3f3f3;
}

.tidy.swathe {
  height: 926px;
  overflow-y: auto;
}

.tidy ul {
  width: 100%;
  overflow: hidden;
}

.tidy ul li {
  padding: 20px 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #e8e8e8;
  display: grid;
  grid-template-columns: 2fr 3fr 1fr;
  align-items: center;
}

.tidy ul li:nth-child(2n) {
  background-color: #fff;
}

.tidy ul li:hover {
  background: #0c8de7;
}

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

.tidy ul li .connect {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  gap: 6px;
}

.tidy ul li .connect .kind {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.tidy ul li .connect .kind a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.tidy ul li .connect .kind a img {
  width: 28px;
  height: fit-content;
}

.tidy ul li .connect .kind a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.tidy ul li .connect .lasting {
  width: 100%;
}

.tidy ul li .connect .lasting a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.tidy ul li .connect .terrain {
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.tidy ul li .connect .terrain.await a {
  color: #f3ba00;
}

.tidy ul li .connect .terrain.start a {
  color: #7ad5e2;
}

.tidy ul li .squad {
  display: grid;
  grid-template-columns: 3fr 1.8fr 3fr;
  align-items: center;
  gap: 16px;
}

.tidy ul li .squad .part {
  width: 100%;
  overflow: hidden;
}

.tidy ul li .squad .part a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tidy ul li .squad .part a img {
  width: fit-content;
  height: 32px;
}

.tidy ul li .squad .part a strong {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 13px;
}

.tidy ul li .squad .effect {
  width: 100%;
}

.tidy ul li .squad .effect a {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
}

.tidy ul li .squad .effect a span {
  width: 100%;
  height: 26px;
  line-height: 26px;
  background: #e8e8e8;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #0b0b0d;
}

.tidy ul li .squad .effect a em {
  font-size: 16px;
  font-weight: bold;
}

.tidy ul li .remainder {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 8px;
}

.tidy ul li .remainder .question {
  width: 100%;
  white-space: nowrap;
}

.tidy ul li .remainder .question a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.tidy ul li .remainder .question a img {
  width: 22px;
}

.tidy ul li .remainder .condition {
  display: flex;
  justify-content: center;
}

.tidy ul li .remainder .condition img {
  height: 22px;
}

@media screen and (max-width: 768px) {
  .tidy.swathe {
    height: 16.88rem;
  }

  .tidy ul li {
    padding: 0.26667rem 0.2rem;
    grid-template-columns: auto;
    gap: 0.42667rem;
  }

  .tidy ul li .connect {
    gap: 0.08rem;
    grid-template-columns: 2fr 3fr 1fr;
  }

  .tidy ul li .connect .kind a {
    gap: 0.10667rem;
  }

  .tidy ul li .connect .kind a img {
    width: 0.56rem;
  }

  .tidy ul li .connect .kind a strong {
    font-size: 0.30667rem;
  }

  .tidy ul li .connect .lasting a {
    flex-direction: row;
    font-size: 0.30667rem;
  }

  .tidy ul li .connect .terrain {
    font-size: 0.32rem;
  }

  .tidy ul li .squad {
    gap: 0.21333rem;
    grid-template-columns: 3fr 2fr 3fr;
  }

  .tidy ul li .squad .part a {
    gap: 0.08rem;
  }

  .tidy ul li .squad .part a img {
    height: 0.69333rem;
  }

  .tidy ul li .squad .part a strong {
    font-size: 0.32rem;
  }

  .tidy ul li .squad .effect a {
    gap: 0.13333rem;
  }

  .tidy ul li .squad .effect a span {
    height: 0.56rem;
    line-height: 0.56rem;
    font-size: 0.32rem;
  }

  .tidy ul li .squad .effect a em {
    font-size: 0.37333rem;
  }

  .tidy ul li .remainder {
    gap: 0.10667rem;
  }

  .tidy ul li .remainder .question a {
    gap: 0.10667rem;
    font-size: 0.32rem;
  }

  .tidy ul li .remainder .question a img {
    height: 0.42667rem;
  }

  .tidy ul li .remainder .condition {
    justify-content: flex-end;
    transform: scale(0.8);
  }
}

.tidings {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 10px;
  box-sizing: border-box;
  border: 1px solid #ebeeef;
  background: #f3f3f3;
}

.tidings ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.tidings ul li {
  width: 100%;
  height: 281px;
  background: #fff;
  box-shadow: 0 1px 10px rgba(51, 102, 255, 0.24);
}

.tidings ul li a {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 12px;
  padding: 10px;
  box-sizing: border-box;
}

.tidings ul li a .photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 5px;
  overflow: hidden;
}

.tidings ul li a .photo img {
  width: 100%;
  height: 100%;
}

.tidings ul li a .depict {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  overflow: hidden;
}

.tidings ul li a .depict article {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tidings ul li a .depict article strong {
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  color: #0c8de7;
}

.tidings ul li a .depict article p {
  white-space: wrap;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 26px;
  font-size: 13px;
  text-indent: 16px;
}

.tidings ul li a .depict .convey {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  white-space: nowrap;
  user-select: none;
  line-height: inherit;
  text-indent: inherit;
}

.tidings ul li a .depict .convey .adjunct {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tidings ul li a .depict .convey .adjunct span {
  padding: 3px 13px;
  font-size: 13px;
  max-width: 145px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #0b0b0d;
  font-weight: bold;
  border: 1px solid #f3f3f3;
  line-height: ;
}

.tidings ul li a .depict .convey .focal {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tidings ul li a .depict .convey .focal .celibate {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tidings ul li a .depict .convey .focal .celibate .icon-icon {
  color: #506bef;
}

.tidings ul li a .depict .convey .focal .celibate .icon-shijian {
  color: #86a6f7;
}

.tidings ul li a .depict .convey .focal .celibate em,
.tidings ul li a .depict .convey .focal .celibate time {
  color: #253494;
  font-size: 13px;
}

.tidings ul li a .depict .convey .focal .celibate .iconfont {
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .tidings {
    padding: 0.26667rem 0.13333rem;
  }

  .tidings ul {
    gap: 0.29333rem;
  }

  .tidings ul li {
    height: fit-content;
  }

  .tidings ul li a {
    grid-template-columns: auto;
    gap: 0.16rem;
    padding: 0.26667rem;
  }

  .tidings ul li a .photo {
    border-radius: 0.06667rem;
  }

  .tidings ul li a .depict {
    height: 4.29333rem;
    gap: 0.16rem;
  }

  .tidings ul li a .depict article {
    gap: 0.21333rem;
  }

  .tidings ul li a .depict article strong {
    font-size: 0.37333rem;
  }

  .tidings ul li a .depict article p {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-indent: 0.24rem;
  }

  .tidings ul li a .depict .convey {
    gap: 0.10667rem;
  }

  .tidings ul li a .depict .convey .adjunct {
    gap: 0.13333rem;
  }

  .tidings ul li a .depict .convey .adjunct span {
    padding: 0.04rem 0.17333rem;
    font-size: 0.30667rem;
    max-width: 1.6rem;
  }

  .tidings ul li a .depict .convey .focal {
    gap: 0.21333rem;
  }

  .tidings ul li a .depict .convey .focal .celibate {
    gap: 0.10667rem;
  }

  .tidings ul li a .depict .convey .focal .celibate em,
  .tidings ul li a .depict .convey .focal .celibate time {
    font-size: 0.30667rem;
  }

  .tidings ul li a .depict .convey .focal .celibate .iconfont {
    font-size: 0.37333rem;
  }
}

.swap {
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  box-sizing: border-box;
}

.swap .suggestion {
  padding: 20px 10px;
  width: 100%;
  box-sizing: border-box;
}

.swap .suggestion .separately {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.swap .suggestion .separately ul {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.swap .suggestion .separately ul li {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.swap .suggestion .separately ul li time,
.swap .suggestion .separately ul li a,
.swap .suggestion .separately ul li span,
.swap .suggestion .separately ul li em {
  color: #262626;
}

.swap .suggestion .separately ul li:hover {
  background: #0c8de7;
}

.swap .suggestion .separately ul li:hover time,
.swap .suggestion .separately ul li:hover a,
.swap .suggestion .separately ul li:hover span,
.swap .suggestion .separately ul li:hover em {
  color: #fff;
}

.swap .suggestion .separately ul li .chance {
  width: 100%;
  overflow: hidden;
}

.swap .suggestion .separately ul li .chance a time {
  font-size: 13px;
  white-space: nowrap;
  font-weight: bold;
}

.swap .suggestion .separately ul li .corps {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  overflow: hidden;
}

.swap .suggestion .separately ul li .corps a {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.swap .suggestion .separately ul li .corps a:first-child {
  text-align: right;
}

.swap .suggestion .separately ul li .corps a strong {
  font-weight: bold;
  font-size: 13px;
}

.swap .suggestion .separately ul li .corps em {
  font-weight: bold;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .swap .suggestion {
    padding: 0.26667rem 0.13333rem;
  }

  .swap .suggestion .separately ul {
    grid-template-columns: auto;
    gap: 0.16rem;
  }

  .swap .suggestion .separately ul li {
    padding: 0.26667rem 0.2rem;
  }

  .swap .suggestion .separately ul li .chance a time {
    font-size: 0.30667rem;
  }

  .swap .suggestion .separately ul li .corps {
    gap: 0.16rem;
  }

  .swap .suggestion .separately ul li .corps a strong {
    font-size: 0.30667rem;
  }

  .swap .suggestion .separately ul li .corps em {
    font-size: 0.30667rem;
  }
}

.multiple {
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  padding: 20px 10px;
  box-sizing: border-box;
  margin-top: 22px;
  white-space: nowrap;
  user-select: none;
}

.multiple .caption {
  display: flex;
  align-items: center;
  gap: 13px;
}

.multiple .caption img {
  width: 28px;
}

.multiple .caption strong {
  font-size: 16px;
  font-weight: bold;
  color: #262626;
}

.multiple ol {
  display: flex;
  flex-wrap: wrap;
  margin-top: 18px;
  gap: 16px;
}

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

.multiple ol li a {
  color: #262626;
  font-weight: bold;
}

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

  .multiple .caption {
    gap: 0.17333rem;
  }

  .multiple .caption img {
    width: 0.50667rem;
  }

  .multiple .caption strong {
    font-size: 0.34667rem;
  }

  .multiple ol {
    gap: 0.21333rem;
    margin-top: 0.24rem;
  }

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

.pertaining {
  width: 100%;
  padding: 15px 10px;
  box-sizing: border-box;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  margin-top: 22px;
}

.pertaining .problem {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.pertaining .problem .inscribe {
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  white-space: nowrap;
}

.pertaining .problem .inscribe img {
  width: 22px;
}

.pertaining .problem .inscribe strong {
  font-size: 16px;
  font-weight: bold;
}

.pertaining .problem .extra {
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.pertaining .problem .extra a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pertaining .problem .extra a span {
  font-size: 14px;
  font-weight: bold;
}

.pertaining .problem .extra a img {
  width: 28px;
  height: auto;
}

.pertaining .systematically {
  width: 100%;
  overflow: hidden;
  margin-top: 22px;
}

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

.pertaining .systematically ul li {
  width: 100%;
  overflow: hidden;
}

.pertaining .systematically ul li a {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pertaining .systematically ul li a .package {
  position: relative;
  width: 100%;
  height: 174px;
}

.pertaining .systematically ul li a .package .graphics {
  width: 100%;
  height: 100%;
}

.pertaining .systematically ul li a .package .graphics img {
  width: 100%;
  height: 100%;
}

.pertaining .systematically ul li a .package .control {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
}

.pertaining .systematically ul li a .package .control img {
  width: 100%;
  height: 100%;
}

.pertaining .systematically ul li a .package time {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  user-select: none;
}

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

@media screen and (max-width: 768px) {
  .pertaining {
    margin-top: 0.29333rem;
    padding: 0.2rem 0.13333rem;
  }

  .pertaining .problem {
    gap: 0.16rem;
  }

  .pertaining .problem .inscribe {
    gap: 0.08rem;
  }

  .pertaining .problem .inscribe img {
    width: 0.29333rem;
  }

  .pertaining .problem .inscribe strong {
    font-size: 0.34667rem;
  }

  .pertaining .problem .extra a {
    gap: 0.10667rem;
  }

  .pertaining .problem .extra a span {
    font-size: 0.32rem;
  }

  .pertaining .problem .extra a img {
    width: 0.48rem;
  }

  .pertaining .systematically {
    margin-top: 0.29333rem;
  }

  .pertaining .systematically ul {
    gap: 0.16rem;
  }

  .pertaining .systematically ul li a {
    gap: 0.10667rem;
  }

  .pertaining .systematically ul li a .package {
    height: 3.64rem;
  }

  .pertaining .systematically ul li a .package .control {
    width: 1.14667rem;
    height: 1.14667rem;
  }

  .pertaining .systematically ul li a .package time {
    font-size: 0.30667rem;
  }

  .pertaining .systematically ul li a strong {
    font-size: 0.30667rem;
  }
}

.convey {
  line-height: 28px;
  font-size: 13px;
  text-indent: 16px;
  color: #6e6a65;
  font-weight: bold;
}

.modern {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 362px;
  background: url(../quiescent/photo/match_zuqiu.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin-top: 16px;
  border-radius: 12px;
}

.modern.contrary {
  background: url(../quiescent/photo/match_lanqiu.png) no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.modern .recording {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  box-sizing: border-box;
  background: rgba(225, 225, 225, 0.5);
}

.modern .recording a {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
}

.modern .recording a strong {
  font-size: 14px;
  font-weight: bold;
}

.modern .recording a p {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.modern .twofold {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  align-items: center;
  gap: 22px;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.modern .twofold .swathe {
  width: 100%;
  overflow: hidden;
}

.modern .twofold .swathe a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.modern .twofold .swathe a img {
  width: fit-content;
  height: 82px;
}

.modern .twofold .swathe a strong {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  color: #0c8de7;
  font-weight: bold;
  font-size: 13px;
}

.modern .twofold .retention {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
}

.modern .twofold .retention .period {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
}

.modern .twofold .retention .period time {
  font-size: 13px;
  font-weight: bold;
}

.modern .twofold .retention strong {
  font-size: 13px;
  font-weight: bold;
  color: #fff;
}

.modern .twofold .retention .genre {
  font-size: 13px;
}

.modern .twofold .retention .genre a {
  font-weight: bold;
  color: #fff;
}

.reveal {
  width: 100%;
  overflow: hidden;
}

.reveal .infinite {
  position: relative;
  width: fit-content;
  overflow: hidden;
  margin: 12px auto;
  padding: 8px 12px;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
}

.reveal .infinite ul {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reveal .infinite ul li {
  padding: 5px 13px;
}

.reveal .infinite ul li a {
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  user-select: none;
}

.reveal .infinite ul li:hover,
.reveal .infinite ul li.active {
  background: #0c8de7;
}

.reveal .infinite ul li:hover a,
.reveal .infinite ul li.active a {
  color: #fff;
}

.reveal .receptacle {
  width: 100%;
  height: fit-content;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
  padding: 20px 10px;
  box-sizing: border-box;
}

.reveal .receptacle .tolerate {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .apex {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 10px;
}

.reveal .receptacle .tolerate .apex a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.reveal .receptacle .tolerate .apex a img {
  height: 52px;
  width: fit-content;
}

.reveal .receptacle .tolerate .apex a span {
  font-size: 13px;
}

.reveal .receptacle .tolerate .introduction {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reveal .receptacle .tolerate .introduction p,
.reveal .receptacle .tolerate .introduction a {
  color: #0b0b23;
  font-weight: bold;
  font-size: 13px;
}

.reveal .receptacle .tolerate .introduction .waft {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.reveal .receptacle .tolerate .introduction .waft .ul-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.reveal .receptacle .tolerate .introduction .waft .ul-signal li {
  white-space: nowrap;
}

.reveal .receptacle .tolerate .introduction .waft .ul-signal li a {
  color: #0c8de7;
  font-weight: bold;
  white-space: nowrap;
  display: inline-block;
  font-size: 16px;
  animation: pulse 2s infinite forwards;
}

.reveal .receptacle .tolerate .newspaper {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.reveal .receptacle .tolerate .newspaper .designation {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 10px 0;
}

.reveal .receptacle .tolerate .newspaper .designation.neutrally::before {
  background: #ec8e39;
}

.reveal .receptacle .tolerate .newspaper .designation.neutrally strong {
  color: #ec8e39;
}

.reveal .receptacle .tolerate .newspaper .designation.unfavorable::before {
  background: #fb2a2a;
}

.reveal .receptacle .tolerate .newspaper .designation.unfavorable strong {
  color: #fb2a2a;
}

.reveal .receptacle .tolerate .newspaper .designation::before {
  content: "";
  width: 3px;
  height: 14px;
  background: #0c8de7;
  border-radius: 8px;
}

.reveal .receptacle .tolerate .newspaper .designation strong {
  font-size: 14px;
  font-weight: bold;
  color: #0c8de7;
}

.reveal .receptacle .tolerate .newspaper .piece {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.reveal .receptacle .tolerate .newspaper .piece.neutral {
  grid-template-columns: auto;
}

.reveal .receptacle .tolerate .newspaper .piece.neutral ul {
  width: 50%;
  margin: 0 auto;
}

.reveal .receptacle .tolerate .newspaper .piece.neutral::before {
  display: none;
}

.reveal .receptacle .tolerate .newspaper .piece::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background: #0c8de7;
}

.reveal .receptacle .tolerate .newspaper .piece ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reveal .receptacle .tolerate .newspaper .piece ul li {
  padding: 10px 5px;
  background: #0c8de7;
  opacity: 0.8;
  animation: flicker 2s infinite forwards;
}

.reveal .receptacle .tolerate .newspaper .piece ul li.qb-status-1 {
  background: #71a172;
}

.reveal .receptacle .tolerate .newspaper .piece ul li.qb-status-2 {
  background: #0c8de7;
}

.reveal .receptacle .tolerate .newspaper .piece ul li.qb-status-3 {
  background: #bc67d8;
}

.reveal .receptacle .tolerate .newspaper .piece ul li.qb-status-4 {
  background: #eb7913;
}

.reveal .receptacle .tolerate .newspaper .piece ul li.qb-status-5 {
  background: #fb2828;
}

.reveal .receptacle .tolerate .newspaper .piece ul li span {
  color: #fff;
  line-height: 26px;
  font-size: 13px;
  font-weight: bold;
}

.reveal .receptacle .tolerate .journey {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0px;
}

.reveal .receptacle .tolerate .journey .heading::before {
  content: "";
  width: 5px;
  height: 16px;
  background: #0c8de7;
}

.reveal .receptacle .tolerate .journey .heading strong {
  color: #0c8de7;
  font-weight: bold;
  font-size: 14px;
}

.reveal .receptacle .tolerate .journey .swords {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.reveal .receptacle .tolerate .journey .swords ul {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .swords ul li {
  padding: 10px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid #e8e8e8;
}

.reveal .receptacle .tolerate .journey .swords ul li:hover {
  background: #fff;
}

.reveal .receptacle .tolerate .journey .swords ul li .time {
  font-size: 13px;
  white-space: nowrap;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 14px;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .single {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .single a {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .single a img {
  width: 22px;
  height: fit-content;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .single a span {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .single:first-child a span {
  text-align: right;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .gain {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .gain a {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 4px;
  align-items: center;
}

.reveal .receptacle .tolerate .journey .swords ul li .portion .gain a span {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

.reveal .receptacle .tolerate .journey .swords ul li .outcome {
  font-size: 13px;
}

.reveal .receptacle .tolerate .journey .swords ul li .outcome a {
  font-weight: bold;
}

.reveal .receptacle .tolerate .journey .recent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.reveal .receptacle .tolerate .journey .recent ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reveal .receptacle .tolerate .journey .recent ul li {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border: 1px solid #e8e8e8;
  padding: 5px;
  box-sizing: border-box;
}

.reveal .receptacle .tolerate .journey .recent ul li:hover {
  background: #fff;
}

.reveal .receptacle .tolerate .journey .recent ul li .maintain {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .recent ul li .maintain a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reveal .receptacle .tolerate .journey .recent ul li .maintain a img {
  width: fit-content;
  height: 32px;
}

.reveal .receptacle .tolerate .journey .recent ul li .maintain a span {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  font-size: 13px;
}

.reveal .receptacle .tolerate .journey .recent ul li .surplus {
  width: 100%;
  overflow: hidden;
}

.reveal .receptacle .tolerate .journey .recent ul li .surplus a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.reveal .receptacle .tolerate .journey .recent ul li .surplus a time,
.reveal .receptacle .tolerate .journey .recent ul li .surplus a strong,
.reveal .receptacle .tolerate .journey .recent ul li .surplus a span,
.reveal .receptacle .tolerate .journey .recent ul li .surplus a em {
  font-weight: bold;
  font-size: 13px;
}

.reveal .receptacle .tolerate .journey .recent ul li .surplus a .consequent {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reveal .receptacle .tolerate .journey .recent ul li .surplus a .consequent span {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .convey {
    line-height: 0.48rem;
    font-size: 0.30667rem;
    text-indent: 0.21333rem;
  }

  .modern {
    border-radius: 0.16rem;
    margin-top: 0.21333rem;
    height: 6.16rem;
  }

  .modern .recording {
    padding: 0.06667rem 0.13333rem;
  }

  .modern .recording a {
    gap: 0.08rem;
  }

  .modern .recording a strong {
    font-size: 0.32rem;
  }

  .modern .recording a p {
    font-size: 0.30667rem;
  }

  .modern .twofold {
    gap: 0.29333rem;
    padding: 0 0.13333rem;
  }

  .modern .twofold .swathe a {
    gap: 0.21333rem;
  }

  .modern .twofold .swathe a img {
    height: 1.36rem;
  }

  .modern .twofold .swathe a strong {
    font-size: 0.30667rem;
  }

  .modern .twofold .retention {
    gap: 0.10667rem;
  }

  .modern .twofold .retention .period time {
    font-size: 0.30667rem;
  }

  .modern .twofold .retention strong {
    font-size: 0.30667rem;
  }

  .modern .twofold .retention .genre {
    font-size: 0.30667rem;
  }

  .reveal .infinite {
    margin: 0.16rem auto;
    padding: 0.10667rem 0.16rem;
  }

  .reveal .infinite ul {
    gap: 0.21333rem;
  }

  .reveal .infinite ul li {
    padding: 0.06667rem 0.17333rem;
  }

  .reveal .infinite ul li a {
    font-size: 0.32rem;
  }

  .reveal .receptacle {
    padding: 0.26667rem 0.13333rem;
  }

  .reveal .receptacle .tolerate .apex {
    gap: 0.29333rem;
    margin-bottom: 0.13333rem;
  }

  .reveal .receptacle .tolerate .apex a {
    gap: 0.16rem;
  }

  .reveal .receptacle .tolerate .apex a img {
    height: 0.82667rem;
  }

  .reveal .receptacle .tolerate .apex a span {
    font-size: 0.30667rem;
  }

  .reveal .receptacle .tolerate .introduction {
    gap: 0.08rem;
  }

  .reveal .receptacle .tolerate .introduction p,
  .reveal .receptacle .tolerate .introduction a {
    font-size: 0.30667rem;
  }

  .reveal .receptacle .tolerate .introduction .waft {
    gap: 0.08rem;
  }

  .reveal .receptacle .tolerate .introduction .waft .ul-signal {
    gap: 0.33333rem;
  }

  .reveal .receptacle .tolerate .introduction .waft .ul-signal li a {
    font-size: 0.34667rem;
  }

  .reveal .receptacle .tolerate .newspaper .designation {
    gap: 0.08rem;
    margin: 0.13333rem 0;
  }

  .reveal .receptacle .tolerate .newspaper .designation::before {
    width: 0.08rem;
    height: 0.29333rem;
    border-radius: 0.13333rem;
  }

  .reveal .receptacle .tolerate .newspaper .designation strong {
    font-size: 0.32rem;
  }

  .reveal .receptacle .tolerate .newspaper .piece {
    gap: 0.26667rem;
  }

  .reveal .receptacle .tolerate .newspaper .piece ul {
    gap: 0.13333rem;
  }

  .reveal .receptacle .tolerate .newspaper .piece ul li {
    padding: 0.13333rem;
  }

  .reveal .receptacle .tolerate .newspaper .piece ul li span {
    font-size: 0.30667rem;
    line-height: 0.42667rem;
  }

  .reveal .receptacle .tolerate .journey .heading {
    gap: 0.16rem;
    margin: 0.26667rem 0;
  }

  .reveal .receptacle .tolerate .journey .heading::before {
    width: 0.10667rem;
    height: 0.34667rem;
  }

  .reveal .receptacle .tolerate .journey .heading strong {
    font-size: 0.32rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li {
    grid-template-columns: auto;
    gap: 0.29333rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .time {
    font-size: 0.30667rem;
    text-align: center;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion {
    gap: 0.32rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion .single a {
    gap: 0.10667rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion .single a img {
    width: 0.56rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion .single a span {
    font-size: 0.30667rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion .gain a {
    gap: 0.08rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .portion .gain a span {
    font-size: 0.34667rem;
  }

  .reveal .receptacle .tolerate .journey .swords ul li .outcome {
    font-size: 0.30667rem;
    text-align: center;
  }

  .reveal .receptacle .tolerate .journey .recent {
    grid-template-columns: auto;
    gap: 0.29333rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul {
    gap: 0.10667rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li {
    gap: 0.08rem;
    padding: 0.06667rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .maintain a {
    gap: 0.10667rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .maintain a img {
    height: 0.69333rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .maintain a span {
    font-size: 0.30667rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .surplus a {
    gap: 0.08rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .surplus a time,
  .reveal .receptacle .tolerate .journey .recent ul li .surplus a strong,
  .reveal .receptacle .tolerate .journey .recent ul li .surplus a span,
  .reveal .receptacle .tolerate .journey .recent ul li .surplus a em {
    font-size: 0.30667rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .surplus a .consequent {
    gap: 0.08rem;
  }

  .reveal .receptacle .tolerate .journey .recent ul li .surplus a .consequent span {
    font-size: 0.34667rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    color: #0c8de7;
  }

  50% {
    transform: scale(1.2);
    color: #ff6f61;
  }

  100% {
    transform: scale(1);
    color: #0c8de7;
  }
}

@keyframes flicker {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 1;
  }
}

.significant {
  width: 100%;
  padding-top: 46px;
  padding-bottom: 122px;
  box-sizing: border-box;
  background: #edf1f5;
}

.significant .reflection {
  width: 100%;
  overflow: hidden;
  padding: 36px 0px;
  box-sizing: border-box;
  background: url(../quiescent/photo/reflection.png) no-repeat;
  background-size: 100%;
  background-position: center;
  background-color: #f7f7f7;
}

.significant .local {
  border: 1px solid #e8e8e8;
}

.significant .everything {
  width: 100%;
  height: fit-content;
  background: url(../quiescent/photo/everything.png) no-repeat;
  background-size: 100%;
  background-position: top;
  background-color: #eff3f7;
  padding: 42px 0;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .significant .everything {
    padding: 42px 10px;
  }
}

@media screen and (max-width: 768px) {
  .significant .everything {
    padding: 0.56rem 0.2rem;
  }
}

.significant .fever {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  padding: 36px 0px;
  box-sizing: border-box;
  background: url(../quiescent/photo/fever.png) no-repeat;
  background-size: 100%;
  background-color: #f7f7f7;
  background-position: bottom;
}

.significant .resource {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  padding: 36px 0px;
  background: url(../quiescent/photo/resource.png) no-repeat;
  background-size: 100%;
  background-color: #f7f7f7;
  background-position: center;
  box-sizing: border-box;
}

@media screen and (max-width: 1000px) {
  .significant .reflection {
    padding: 36px 10px;
  }

  .significant .fever {
    padding: 36px 10px;
  }

  .significant .resource {
    padding: 36px 10px;
  }
}

@media screen and (max-width: 768px) {
  .significant {
    padding-top: 0.61333rem;
    padding-bottom: 1.62667rem;
  }

  .significant .reflection {
    padding: 0.48rem 0.2rem;
  }

  .significant .fever {
    padding: 0.48rem 0.2rem;
  }

  .significant .resource {
    padding: 0.48rem 0.2rem;
  }
}

.exchange {
  background: url(../quiescent/photo/everything.png) no-repeat;
  background-size: 100%;
  background-position: top;
  padding: 45px 0;
  background-color: #ecf2f5;
}

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

.exchange .crumb::before {
  content: "";
  width: 5px;
  height: 16px;
  border-radius: 10px;
  background: #0c8de7;
}

.exchange .crumb ul {
  display: flex;
  align-items: center;
}

.exchange .crumb ul li {
  display: flex;
  align-items: center;
}

.exchange .crumb ul li::after {
  content: "/";
  margin: 0 6px;
  font-size: 12px;
}

.exchange .crumb ul li:last-child {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.exchange .crumb ul li:last-child::after {
  display: none;
}

.exchange .crumb ul li:last-child a {
  color: #0c8de7;
}

.exchange .crumb ul li a {
  font-size: 13px;
  white-space: nowrap;
  color: #262626;
  user-select: none;
}

.exchange .unified {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 22px;
}

.exchange .unified .stress {
  width: 100%;
  overflow: hidden;
}

.exchange .unified .stress .participate {
  width: 100%;
  height: fit-content;
  background: #f3f3f3;
  border: 1px solid #e8e8e8;
}

.exchange .unified .stress .participate .tractate {
  width: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.exchange .unified .stress .participate .tractate h1 {
  color: #262626;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.exchange .unified .stress .participate .tractate .statement {
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
}

.exchange .unified .stress .participate .tractate .statement ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.exchange .unified .stress .participate .tractate .statement ol li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exchange .unified .stress .participate .tractate .statement ol li .iconfont {
  font-size: 17px;
  color: #80a7f1;
}

.exchange .unified .stress .participate .tractate .statement ol li time,
.exchange .unified .stress .participate .tractate .statement ol li span,
.exchange .unified .stress .participate .tractate .statement ol li em {
  font-size: 13px;
  font-weight: bold;
  color: #262626;
}

.exchange .unified .stress .participate .tractate .papers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exchange .unified .stress .participate .tractate .papers p {
  font-size: 14px;
  color: #262626;
  line-height: 26px;
  text-indent: 20px;
}

.exchange .unified .stress .participate .tractate .papers 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;
}

.exchange .unified .stress .participate .tractate .promote {
  margin-top: 52px;
  width: 100%;
  overflow: hidden;
}

.exchange .unified .stress .participate .tractate .promote ol {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.exchange .unified .stress .participate .tractate .promote ol li {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #919191;
}

.exchange .unified .stress .participate .tractate .promote ol li a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
}

.exchange .unified .stress .participate .tractate .promote ol li a em {
  color: #919191;
  font-size: 13px;
  white-space: nowrap;
}

.exchange .unified .stress .participate .tractate .promote ol li a strong {
  flex: 1;
  font-size: 12px;
  font-weight: bold;
  color: #919191;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.exchange .unified .stress .participate .tractate .exhibition {
  position: relative;
  width: 100%;
  height: 346px;
  cursor: pointer;
}

.exchange .unified .stress .participate .tractate .exhibition .picture {
  width: 100%;
  height: 100%;
}

.exchange .unified .stress .participate .tractate .exhibition .picture img {
  width: 100%;
  height: 100%;
}

.exchange .unified .stress .participate .tractate .exhibition .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.exchange .unified .stress .participate .tractate .exhibition .play img {
  width: 62px;
  height: fit-content;
}

.exchange .unified .stress .participate .tractate .exhibition p {
  position: absolute;
  bottom: 0px;
  left: 0;
  padding: 12px 10px;
  box-sizing: border-box;
  width: 100%;
  background: rgba(225, 225, 225, 0.5);
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

.exchange .unified .stress .participate .tractate .exhibition time {
  position: absolute;
  right: 8px;
  bottom: 46px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.exchange .unified .stress .participate .tractate .argue {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
}

.exchange .unified .stress .participate .tractate .argue ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exchange .unified .stress .participate .tractate .argue ul li {
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #262626;
  font-weight: bold;
  flex-wrap: wrap;
}

.exchange .unified .stress .participate .tractate .argue ul li span,
.exchange .unified .stress .participate .tractate .argue ul li a {
  color: #262626;
  font-weight: bold;
}

.exchange .unified .stress .participate .tractate .argue>strong,
.exchange .unified .stress .participate .tractate .argue p {
  font-size: 12px;
  color: #262626;
  font-weight: bold;
}

.exchange .unified .oblique {
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.exchange .unified .oblique .sovereignty {
  width: 100%;
  overflow: hidden;
  background: #f3f3f3;
  padding: 15px 10px;
  border: 1px solid #e8e8e8;
  margin-bottom: 22px;
}

.exchange .unified .oblique .sovereignty .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.exchange .unified .oblique .sovereignty .question .exterior {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exchange .unified .oblique .sovereignty .question .exterior img {
  width: 26px;
  height: fit-content;
}

.exchange .unified .oblique .sovereignty .question .exterior strong {
  font-size: 15px;
  font-weight: bold;
}

.exchange .unified .oblique .sovereignty .question .numerous {
  user-select: none;
  white-space: nowrap;
}

.exchange .unified .oblique .sovereignty .question .numerous a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.exchange .unified .oblique .sovereignty .question .numerous a span {
  font-size: 13px;
}

.exchange .unified .oblique .sovereignty .question .numerous a img {
  width: 22px;
  height: fit-content;
}

.exchange .unified .oblique .sovereignty .site_news {
  width: 100%;
  overflow: hidden;
}

.exchange .unified .oblique .sovereignty .site_news ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exchange .unified .oblique .sovereignty .site_news ul li {
  width: 100%;
  overflow: hidden;
}

.exchange .unified .oblique .sovereignty .site_news ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
  white-space: nowrap;
  user-select: none;
}

.exchange .unified .oblique .sovereignty .site_news ul li a p {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  font-weight: bold;
}

.exchange .unified .oblique .sovereignty .site_news ul li a time {
  font-size: 12px;
  color: #0c8de7;
  font-weight: bold;
}

.exchange .unified .oblique .sovereignty .site_video {
  width: 100%;
  overflow: hidden;
}

.exchange .unified .oblique .sovereignty .site_video ul {
  width: 100%;
  overflow: hidden;
  user-select: none;
  white-space: nowrap;
}

.exchange .unified .oblique .sovereignty .site_video ul li {
  width: 100%;
  overflow: hidden;
  margin-bottom: 16px;
}

.exchange .unified .oblique .sovereignty .site_video ul li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme {
  position: relative;
  width: 100%;
  height: 132px;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme .represent {
  width: 100%;
  height: 100%;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme .represent img {
  width: 100%;
  height: 100%;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme .transmit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme .transmit img {
  width: 100%;
  height: 100%;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme time {
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 12px;
  color: #fff;
}

.exchange .unified .oblique .sovereignty .site_video ul li a .scheme time.tense {
  left: auto;
  top: auto;
  right: 5px;
  bottom: 5px;
}

.exchange .unified .oblique .sovereignty .site_video ul li a p {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
}

@media screen and (max-width: 1000px) {
  .exchange .unified {
    gap: 12px;
  }

  .exchange .unified .oblique {
    padding: 0 10px;
  }
}

@media screen and (max-width: 768px) {
  .exchange .unified {
    grid-template-columns: auto;
  }

  .exchange .unified .stress .participate .tractate {
    padding: 0.13333rem 0.13333rem;
  }

  .exchange .unified .stress .participate .tractate h1 {
    font-size: 0.34667rem;
  }

  .exchange .unified .stress .participate .tractate .statement {
    padding: 0.13333rem 0;
  }

  .exchange .unified .stress .participate .tractate .statement ol {
    gap: 0.16rem;
  }

  .exchange .unified .stress .participate .tractate .statement ol li {
    gap: 0.08rem;
  }

  .exchange .unified .stress .participate .tractate .statement ol li .iconfont {
    font-size: 0.36rem;
  }

  .exchange .unified .stress .participate .tractate .statement ol li time,
  .exchange .unified .stress .participate .tractate .statement ol li span,
  .exchange .unified .stress .participate .tractate .statement ol li em {
    font-size: 0.30667rem;
  }

  .exchange .unified .stress .participate .tractate .papers {
    gap: 0.2rem;
  }

  .exchange .unified .stress .participate .tractate .papers p {
    font-size: 0.32rem;
    line-height: 0.48rem;
    text-indent: 0.26667rem;
  }

  .exchange .unified .stress .participate .tractate .papers img {
    width: 100% !important;
    border-radius: 0.2rem;
    margin-bottom: 0.26667rem;
  }

  .exchange .unified .stress .participate .tractate .promote {
    margin-top: 0.69333rem;
  }

  .exchange .unified .stress .participate .tractate .promote ol {
    gap: 0.29333rem;
    grid-template-columns: auto;
  }

  .exchange .unified .stress .participate .tractate .promote ol li {
    border-radius: 0.13333rem;
    padding: 0.13333rem 0;
  }

  .exchange .unified .stress .participate .tractate .promote ol li a {
    padding: 0.04rem 0.13333rem;
    gap: 0.08rem;
  }

  .exchange .unified .stress .participate .tractate .promote ol li a em {
    font-size: 0.30667rem;
  }

  .exchange .unified .stress .participate .tractate .promote ol li a strong {
    font-size: 0.30667rem;
  }

  .exchange .unified .stress .participate .tractate .exhibition {
    height: 5.89333rem;
  }

  .exchange .unified .stress .participate .tractate .exhibition .play img {
    width: 1.09333rem;
  }

  .exchange .unified .stress .participate .tractate .exhibition p {
    font-size: 0.32rem;
    padding: 0.16rem 0.13333rem;
  }

  .exchange .unified .stress .participate .tractate .exhibition time {
    right: 0.10667rem;
    bottom: 0.82667rem;
  }

  .exchange .unified .stress .participate .tractate .argue {
    gap: 0.10667rem;
    margin: 0.26667rem 0;
  }

  .exchange .unified .stress .participate .tractate .argue ul {
    gap: 0.10667rem;
  }

  .exchange .unified .stress .participate .tractate .argue ul li {
    font-size: 0.30667rem;
  }

  .exchange .unified .stress .participate .tractate .argue>strong,
  .exchange .unified .stress .participate .tractate .argue p {
    font-size: 0.30667rem;
  }

  .exchange .unified .oblique {
    padding: 0 0.2rem;
  }

  .exchange .unified .oblique .sovereignty {
    padding: 0.2rem 0.13333rem;
    margin-bottom: 0.29333rem;
  }

  .exchange .unified .oblique .sovereignty .question {
    margin-bottom: 0.16rem;
  }

  .exchange .unified .oblique .sovereignty .question .exterior {
    gap: 0.08rem;
  }

  .exchange .unified .oblique .sovereignty .question .exterior img {
    width: 0.34667rem;
  }

  .exchange .unified .oblique .sovereignty .question .exterior strong {
    font-size: 0.34667rem;
  }

  .exchange .unified .oblique .sovereignty .question .numerous a {
    gap: 0.08rem;
  }

  .exchange .unified .oblique .sovereignty .question .numerous a span {
    font-size: 0.30667rem;
  }

  .exchange .unified .oblique .sovereignty .question .numerous a img {
    width: 0.42667rem;
  }

  .exchange .unified .oblique .sovereignty .site_news ul {
    gap: 0.16rem;
  }

  .exchange .unified .oblique .sovereignty .site_news ul li a {
    gap: 0.08rem;
  }

  .exchange .unified .oblique .sovereignty .site_news ul li a p {
    font-size: 0.30667rem;
  }

  .exchange .unified .oblique .sovereignty .site_news ul li a time {
    font-size: 0.30667rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.16rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li {
    margin-bottom: 0.21333rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a {
    gap: 0.08rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a .scheme {
    height: 3.09333rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a .scheme .transmit {
    width: 0.86667rem;
    height: 0.86667rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a .scheme time {
    font-size: 0.30667rem;
    left: 0.10667rem;
    top: 0.10667rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a .scheme time.tense {
    right: 0.10667rem;
    bottom: 0.10667rem;
  }

  .exchange .unified .oblique .sovereignty .site_video ul li a p {
    font-size: 0.30667rem;
  }
}

@media screen and (max-width: 1000px) {
  .exchange {
    padding: 45px 10px;
  }
}

@media screen and (max-width: 768px) {
  .exchange {
    padding: 0.73333rem 0.2rem;
  }

  .exchange .crumb {
    gap: 0.16rem;
    margin-bottom: 0.21333rem;
  }

  .exchange .crumb::before {
    width: 0.10667rem;
    height: 0.29333rem;
    border-radius: 0.13333rem;
  }

  .exchange .crumb ul li::after {
    margin: 0 0.08rem;
  }

  .exchange .crumb ul li a {
    font-size: 0.30667rem;
  }
}

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

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

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

.pages .pagination li:hover {
  background: #0c8de7;
  border-color: transparent;
}

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

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

.pages .pagination .active {
  background: #0c8de7;
  border-color: transparent;
}

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

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

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

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

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

  .pages .pagination {
    gap: 0.13333rem;
  }

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

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

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

.apiece {
  width: 100%;
  overflow: hidden;
  padding: 10px 15px;
  box-sizing: border-box;
  user-select: none;
  background: #f3f3f3;
}

.apiece ol {
  width: 100%;
  overflow-x: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 10px;
}

.apiece ol li {
  background: #fff;
  border: 1px solid #e8e8e8;
}

.apiece ol li a {
  display: block;
  padding: 3px 13px;
  box-sizing: border-box;
  white-space: nowrap;
  font-size: 13px;
  color: #262626;
  font-weight: bold;
}

.apiece ol li.active,
.apiece ol li:hover {
  background: #0c8de7;
}

.apiece ol li.active a,
.apiece ol li:hover a {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .apiece {
    padding: 0.13333rem 0.2rem;
  }

  .apiece ol {
    gap: 0.29333rem;
  }

  .apiece ol li a {
    padding: 0.04rem 0.17333rem;
    font-size: 0.30667rem;
  }
}

.start {
  display: flex;
  justify-content: center;
  align-items: center;
  --color: #004576;
  --animation: 2s ease-in-out infinite;
}

.start .circle {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 10px;
  height: 10px;
  border: solid 2px var(--color);
  border-radius: 50%;
  margin: 0 5px;
  background-color: transparent;
  animation: circle-keys var(--animation);
}

.start .circle .dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color);
  animation: dot-keys var(--animation);
}

.start .circle .outline {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: outline-keys var(--animation);
}

.circle:nth-child(2) {
  animation-delay: 0.3s;
}

.circle:nth-child(3) {
  animation-delay: 0.6s;
}

.circle:nth-child(4) {
  animation-delay: 0.9s;
}

.circle:nth-child(5) {
  animation-delay: 1.2s;
}

.circle:nth-child(2) .dot {
  animation-delay: 0.3s;
}

.circle:nth-child(3) .dot {
  animation-delay: 0.6s;
}

.circle:nth-child(4) .dot {
  animation-delay: 0.9s;
}

.circle:nth-child(5) .dot {
  animation-delay: 1.2s;
}

.circle:nth-child(1) .outline {
  animation-delay: 0.9s;
}

.circle:nth-child(2) .outline {
  animation-delay: 1.2s;
}

.circle:nth-child(3) .outline {
  animation-delay: 1.5s;
}

.circle:nth-child(4) .outline {
  animation-delay: 1.8s;
}

.circle:nth-child(5) .outline {
  animation-delay: 2.1s;
}

@keyframes circle-keys {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes dot-keys {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes outline-keys {
  0% {
    transform: scale(0);
    outline: solid 10px var(--color);
    outline-offset: 0;
    opacity: 1;
  }

  100% {
    transform: scale(1);
    outline: solid 0 transparent;
    outline-offset: 10px;
    opacity: 0;
  }
}

.center-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #262626;
}

.loader-circle-9 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: transparent;
  border: 3px solid #3c3c3c;
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-family: sans-serif;
  font-size: 12px;
  color: #00eaff;
  text-transform: uppercase;
}

.loader-circle-9:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 100%;
  height: 100%;
  border: 3px solid transparent;
  border-top: 3px solid #00eaff;
  border-right: 3px solid #00eaff;
  border-radius: 50%;
  animation: animateC 2s linear infinite;
}

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

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

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

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

.card {
  width: 100%;
  height: 130px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(51, 102, 255, 0.24);
}

.card .text_info {
  border-radius: 8px;
  background: #fff;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 1;
  padding: 10px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .card {
    height: 3.46667rem;
  }

  .card .text_info {
    padding: 0.13333rem;
  }
}

.card:hover .text_info::before {
  opacity: 1;
}

.card::before {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 100%;
  transform: rotate(0deg) translateY(50%);
  background: linear-gradient(90deg, #ff2288, transparent);
  transition: opacity 300ms;
  animation: rotation_9018 2000ms infinite linear forwards;
  animation-play-state: paused;
}

.card::after {
  opacity: 1;
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 100%;
  transform: rotate(0deg) translateY(-50%);
  background: linear-gradient(90deg, transparent, #2268ff);
  transition: opacity 300ms;
  animation: rotation_9019 2000ms infinite linear forwards;
  animation-play-state: paused;
}

.card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

.card:hover .glass {
  opacity: 0;
}

.glass {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  backdrop-filter: blur(50px);
  z-index: 1;
  transition-duration: 0.5s;
}

@keyframes rotation_9018 {
  0% {
    transform: rotate(0deg) translateY(50%);
  }

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

@keyframes rotation_9019 {
  0% {
    transform: rotate(0deg) translateY(-50%);
  }

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

.rocket-wrapper {
  position: fixed;
  z-index: 9;
  bottom: 20%;
  right: 10%;
  height: 160px;
  width: 100px;
  opacity: 0;
  transition: all 0.5s ease-in 0.5s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .rocket-wrapper {
    right: 6%;
    transform: scale(0.7) !important;
  }
}

.rocket-wrapper .active-rocket {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  font-size: 0;
  background: url(../quiescent/photo/rocket.svg) no-repeat -240px 0;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.rocket-wrapper .hover-rocket {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  font-size: 0;
  background: url(../quiescent/photo/rocket.svg) no-repeat -120px 0;
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

.contain {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 13px 0;
  gap: 5px;
}

.contain li {
  position: relative;
  padding: 0 10px;
  cursor: pointer;
}

.contain li::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 100%);
  bottom: 0;
  height: 2px;
  width: 0;
  background: rgba(49, 167, 222, 0.7);
  transition: all 0.3s;
}

.contain li.is_active::after {
  width: 100%;
}

.contain li.is_active span {
  color: #31a7de !important;
}

.contain li:hover::after {
  width: 100%;
}

.contain li:hover span {
  color: #31a7de !important;
}

.contain li span {
  font-size: 14px;
  font-weight: bold;
  color: #323a48;
}

@media screen and (max-width: 768px) {
  .contain {
    margin: 12px 0;
    gap: 5px;
  }

  .contain li {
    padding: 0 5px;
  }

  .contain li span {
    font-size: 12px;
  }
}

.baskLive {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px;
  display: none;
}

.baskLive .period {
  display: flex;
  flex-direction: column;
}

.baskLive .period time {
  padding: 0 3px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #323a48;
}

.baskLive .deliver {
  width: 100%;
  border: 1px solid #ebebeb;
}

.baskLive .deliver li {
  display: grid;
  align-items: center;
  gap: 7px;
  height: 48px;
  box-sizing: border-box;
  grid-template-columns: auto 5fr 1fr;
  padding: 10px;
  border-top: 1px solid #ebebeb;
}

.baskLive .deliver li .plump {
  width: 30px;
  height: fit-content;
}

.baskLive .deliver li .plump img {
  width: 100%;
  height: auto;
}

.baskLive .deliver li p {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  color: #323a48;
}

.baskLive .deliver li .condition {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  user-select: none;
}

.baskLive .deliver li .condition img {
  width: 24px;
  height: auto;
}

.baskLive .deliver li .condition span {
  font-size: 14px;
  letter-spacing: 3px;
  white-space: nowrap;
  text-align: center;
  color: #323a48;
}


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

.text_foot_live .quantum {
  width: fit-content;
}

.text_foot_live .quantum ul {
  display: flex;
  flex-direction: column;
}

.text_foot_live .quantum ul li {
  padding: 0 3px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text_foot_live .quantum ul li span {
  font-size: 14px;
  color: #323a48;
}

.text_foot_live .describe {
  width: 100%;
  border: 1px solid #ebebeb;
}

.text_foot_live .describe ul {
  width: 100%;
}

.text_foot_live .describe ul li {
  display: grid;
  align-items: center;
  gap: 7px;
  height: 48px;
  box-sizing: border-box;
  grid-template-columns: auto 1fr auto;
  padding: 10px;
  border-top: 1px solid #ebebeb;
}

.text_foot_live .describe ul li:first-child {
  border-top: none;
}

.text_foot_live .describe ul li .icon_live {
  width: 18px;
  height: 18px;
}

.text_foot_live .describe ul li p {
  width: 100%;
  font-size: 14px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #323a48;
}

.text_foot_live .describe ul li .plump {
  width: 22px;
  height: auto;
}

.schedule-columnn {
  --theme--color: #0c8de7;
  --theme--deputy--color: #fff;
  width: 100%;
  height: fit-content;
  display: grid;
  background: var(--theme--deputy--color);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.schedule-columnn li {
  height: 58px;
  cursor: pointer;
}

.schedule-columnn li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

.schedule-columnn li span {
  font-size: 16px;
  font-weight: bold;
}

.schedule-columnn li img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
}

.schedule-columnn li.active,
.schedule-columnn li:hover {
  background: var(--theme--color);
  color: var(--theme--deputy--color);
}

.schedule-columnn {
  --theme--color: #0c8de7;
  --theme--deputy--color: #fff;
  width: 100%;
  height: fit-content;
  display: grid;
  background: var(--theme--deputy--color);
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 20px;
}

.schedule-columnn li {
  height: 58px;
  cursor: pointer;
}

.schedule-columnn li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

}

.schedule-columnn li span {
  font-size: 16px;
  font-weight: bold;
}

.schedule-columnn li img {
  height: 28px;
  width: 28px;
  border-radius: 50%;
}

.schedule-columnn li.active,
.schedule-columnn li:hover {
  background: var(--theme--color);
  color: var(--theme--deputy--color);
}

.schedule-nav {
  width: 100%;
  overflow-x: auto;
}

.schedule-nav ul {
  --theme--color: #0c8de7;
  --theme--deputy--color: #fff;
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.schedule-nav ul li {
  min-width: 138px;
  height: 60px;
  background: var(--theme--deputy--color);
}

.schedule-nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  color: #010b12;
  font-weight: bold;
  cursor: pointer;
}

.schedule-nav ul li span {
  font-size: 14px;
  font-weight: bold;
}

.schedule-nav ul li.active,
.schedule-nav ul li:hover {
  background: var(--theme--color);
}

.schedule-nav ul li.active a,
.schedule-nav ul li:hover a {
  color: var(--theme--deputy--color);

}

@media screen and (max-width: 768px) {
  .match_outer {
    padding: 0 1.333vw;
    box-sizing: border-box;
  }

  .match_outer .schedule-columnn {
    margin-bottom: 2.667vw;
  }

  .match_outer .schedule-columnn li {
    height: 7.733vw;
  }

  .match_outer .schedule-columnn li a {
    gap: 1.333vw;
  }

  .match_outer .schedule-columnn li span {
    font-size: 2.133vw;
  }

  .match_outer .schedule-columnn li img {
    height: 3.733vw;
    width: 3.733vw;
  }

  .match_outer .schedule-nav {
    overflow-x: auto;
    margin-bottom: 1.333vw;
  }

  .match_outer .schedule-nav ul {
    width: fit-content;
    gap: 1.067vw;
    margin-bottom: 1.333vw;
  }

  .match_outer .schedule-nav li {
    min-width: 26.8vw;
    height: 8vw;
  }

  .match_outer .schedule-nav li time,
  .match_outer .schedule-nav li span {
    font-size: 2.2vw;
  }
}