@charset "UTF-8";

.withstand {
  width: 100%;
  background: #b4030d;
}

.withstand .assemble {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 12px 8px;
  box-sizing: border-box;
}

.withstand .assemble .logo {
  width: 158px;
  height: fit-content;
}

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

.withstand .assemble .logo a img {
  width: 100%;
  height: fit-content;
}

.withstand .assemble .navigate {
  flex: 1;
  overflow: hidden;
}

.withstand .assemble .navigate ul {
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
  overflow-x: auto;
  padding-bottom: 6px;
}

.withstand .assemble .navigate ul li {
  position: relative;
  white-space: nowrap;
}

.withstand .assemble .navigate ul li:hover,
.withstand .assemble .navigate ul li.active {
  color: #1e1e2b;
  transition-delay: 0.5s;
}

.withstand .assemble .navigate ul li:hover::before,
.withstand .assemble .navigate ul li.active::before {
  width: 100%;
}

.withstand .assemble .navigate ul li:hover::after,
.withstand .assemble .navigate ul li.active::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

.withstand .assemble .navigate ul li a {
  position: relative;
  padding: 5px 10px;
  box-sizing: border-box;
  display: block;
  color: #fff;
  z-index: 1;
  white-space: nowrap;
  font-size: 13px;
}

.withstand .assemble .navigate ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #afa15a;
  transition: 0.5s ease;
}

.withstand .assemble .navigate ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #afa15a;
  transition: 0.4s ease;
}

.withstand .assemble .more {
  width: 32px;
  display: none;
}

.withstand .assemble .more img {
  width: 100%;
  height: fit-content;
}

@media screen and (max-width: 768px) {
  .withstand .assemble {
    position: relative;
    justify-content: space-between;
  }

  .withstand .assemble .navigate {
    position: absolute;
    right: 2%;
    bottom: 0;
    background: #b4030d;
    box-sizing: border-box;
    z-index: 9;
    transition: all 0.2s;
    transform: translateY(100%) scaleY(0);
    transform-origin: top;
  }

  .withstand .assemble .navigate ul {
    flex-direction: column;
    gap: 0.26667rem;
    padding-bottom: 0;
  }

  .withstand .assemble .navigate ul li {
    width: 100%;
  }

  .withstand .assemble .navigate ul li a {
    padding: 0.13333rem 0.26667rem;
    font-size: 0.32rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .withstand .assemble .more {
    display: block;
  }

  .withstand .assemble .more img {
    width: 0.56rem;
  }
}

@media screen and (min-width: 768px) {
  .withstand .assemble .navigate {
    transform: translateY(0) !important;
  }
}

.major {
  width: 100%;
  padding: 72px 0;
  box-sizing: border-box;
}

.major.shoulder {
  padding: 127px 0;
  background: url("/template/thirty-six/images/shoulder.png") no-repeat;
  background-size: 100%;
  background-position: top;
}

.major .title {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
}

.major .title .indicate {
  width: 152px;
}

.major .title .indicate img {
  width: 100%;
}

.major .title ul {
  display: flex;
  align-items: center;
  gap: 22px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.major .title ul li {
  position: relative;
  white-space: nowrap;
}

.major .title ul li:hover,
.major .title ul li.active {
  color: #1e1e2b;
  transition-delay: 0.5s;
}

.major .title ul li:hover::before,
.major .title ul li.active::before {
  width: 100%;
}

.major .title ul li:hover::after,
.major .title ul li.active::after {
  height: 100%;
  transition-delay: 0.4s;
  color: aliceblue;
}

.major .title ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #afa15a;
  transition: 0.5s ease;
}

.major .title ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #afa15a;
  transition: 0.4s ease;
}

.major .title ul li a {
  position: relative;
  display: block;
  padding: 3px 12px;
  color: #fff;
  z-index: 2;
  font-weight: bold;
  font-size: 14px;
}

.major .debate {
  white-space: nowrap;
  user-select: none;
}

.major .contend {
  width: 100%;
}

.major .contend ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.major .contend ul li {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: center;
  gap: 22px;
  border-radius: 6px;
  box-shadow: rgba(17, 18, 19, 0.2) 0px 4px 8px 0px, rgba(17, 18, 19, 0.2) 0px 8px 16px 0px;
  transition: all 0.2s;
}

.major .contend ul li:hover {
  background: #afa15a;
  transform: scale(1.05);
}

.major .contend ul li:hover time,
.major .contend ul li:hover span,
.major .contend ul li:hover strong {
  color: #fff;
}

.major .contend ul li time,
.major .contend ul li span,
.major .contend ul li strong {
  color: #150f0f;
}

.major .contend ul li .contest {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 8px;
}

.major .contend ul li .contest .genus {
  width: 100%;
  overflow: hidden;
}

.major .contend ul li .contest .genus a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .contend ul li .contest .genus a img {
  width: 32px;
  height: fit-content;
}

.major .contend ul li .contest .genus a strong {
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
  font-size: 13px;
}

.major .contend ul li .contest .period {
  width: 100%;
  overflow: hidden;
}

.major .contend ul li .contest .period a {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.major .contend ul li .contest .period a time {
  text-align: center;
  font-weight: bold;
  font-size: 13px;
}

.major .contend ul li .contest .condition {
  padding: 0 8px;
}

.major .contend ul li .contest .condition a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .contend ul li .contest .condition a span {
  font-size: 17px;
}

.major .contend ul li .contest .condition a strong {
  font-weight: bold;
  font-size: 13px;
}

.major .contend ul li .contest .condition.await a strong,
.major .contend ul li .contest .condition.await a span {
  color: #f9c128;
}

.major .contend ul li .contest .condition.start a strong,
.major .contend ul li .contest .condition.start a span {
  color: #f66960;
}

.major .contend ul li .organization {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 12px;
}

.major .contend ul li .organization .parcel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
}

.major .contend ul li .organization .parcel .emerge {
  width: 100%;
  overflow: hidden;
}

.major .contend ul li .organization .parcel .emerge a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.major .contend ul li .organization .parcel .emerge a img {
  width: 32px;
}

.major .contend ul li .organization .parcel .emerge a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  font-size: 13px;
}

.major .contend ul li .organization .achievement {
  width: 100%;
  overflow: hidden;
}

.major .contend ul li .organization .achievement a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.major .contend ul li .organization .achievement a img {
  width: 36px;
}

.major .contend ul li .organization .achievement a span {
  font-size: 18px;
  font-weight: bold;
  color: #f55e55;
}

.major .contend ul li .moving {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
}

.major .contend ul li .moving .trumpet {
  width: 100%;
  overflow: hidden;
}

.major .contend ul li .moving .trumpet a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.major .contend ul li .moving .trumpet a img {
  width: 22px;
}

.major .contend ul li .moving .trumpet a span {
  font-weight: bold;
  font-size: 13px;
}

.major .contend ul li .moving .motion {
  width: 100%;
  display: flex;
  justify-content: center;
}

.major .contend ul li .moving .motion img {
  width: 26px;
}

.major .channel {
  margin: 52px auto;
}

.major .comity {
  margin-bottom: 68px;
}

.major .comity .contingent {
  width: 100%;
  white-space: nowrap;
  user-select: none;
}

.major .comity .contingent ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.major .comity .contingent ul li {
  width: 100%;
  overflow: hidden;
  height: 212px;
  background: #c2202b;
  clip-path: polygon(100% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 0%);
  transition: all 0.2s;
}

.major .comity .contingent ul li:hover {
  transform: scale(1.05);
}

.major .comity .contingent ul li:hover a .insignia {
  background: #afa15a;
}

.major .comity .contingent ul li a {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 14px;
}

.major .comity .contingent ul li a .insignia {
  width: 100%;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.major .comity .contingent ul li a .insignia img {
  width: fit-content;
  height: 79px;
}

.major .comity .contingent ul li a p {
  width: 100%;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
}

.major .patrol {
  width: 100%;
}

.major .patrol.subtract ul {
  grid-template-columns: repeat(2, 1fr);
}

.major .patrol ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}

.major .patrol ul li {
  width: 100%;
  height: fit-content;
  overflow: hidden;
  transition: all 0.2s;
}

.major .patrol ul li:hover {
  transform: scale(1.06);
  box-shadow: rgba(0, 0, 0, 0.04) 0px 1px 3px 0px, rgba(0, 0, 0, 0.1) 0px 6px 16px 0px;
}

.major .patrol ul li:hover a .painstaking {
  background: #afa15a;
}

.major .patrol ul li:hover a .painstaking strong {
  color: #fff;
}

.major .patrol ul li a {
  width: 100%;
  height: fit-content;
}

.major .patrol ul li a .reputation {
  position: relative;
  width: 100%;
  height: 188px;
  overflow: hidden;
}

.major .patrol ul li a .reputation .pursue {
  width: 100%;
  height: 100%;
}

.major .patrol ul li a .reputation .pursue img {
  width: 100%;
  height: 100%;
}

.major .patrol ul li a .reputation time {
  position: absolute;
  left: 6px;
  top: 6px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.major .patrol ul li a .reputation time.tense {
  left: auto;
  top: auto;
  right: 6px;
  bottom: 6px;
}

.major .patrol ul li a .painstaking {
  width: 100%;
  height: 126px;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.major .patrol ul li a .painstaking strong {
  font-weight: bold;
  color: #150f0f;
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  overflow: hidden;
}

.major .patrol ul li a .painstaking .careful {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}

.major .patrol ul li a .painstaking .careful .sole {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .patrol ul li a .painstaking .careful .sole .icon-huoreremen {
  color: #cb0504;
}

.major .patrol ul li a .painstaking .careful .sole .icon-shijian {
  color: #214dc9;
}

.major .patrol ul li a .painstaking .careful .sole em {
  color: #504c4c;
  font-weight: bold;
  font-size: 13px;
}

.major .bulletin {
  width: 100%;
}

.major .notice {
  width: 100%;
}

.major .notice ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.major .notice ul li {
  background-color: #fff;
  transition: all 0.2s;
}

.major .notice ul li:hover {
  background: #afa15a;
  transform: translateY(-8px);
}

.major .notice ul li a {
  padding: 10px;
  width: 100%;
  height: fit-content;
  display: block;
  box-sizing: border-box;
}

.major .notice ul li a figure {
  height: 213px;
  display: flex;
  gap: 22px;
}

.major .notice ul li a figure img {
  width: 33%;
  height: 100%;
}

.major .notice ul li a figure figcaption {
  flex: 1;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.major .notice ul li a figure figcaption article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.major .notice ul li a figure figcaption article strong {
  color: #150f0f;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.major .notice ul li a figure figcaption article p {
  font-size: 13px;
  line-height: 28px;
  color: #150f0f;
  text-indent: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
}

.major .notice ul li a figure figcaption .speech {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.major .notice ul li a figure figcaption .speech .full {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .notice ul li a figure figcaption .speech .full .icon-huoreremen {
  color: #cb0504;
}

.major .notice ul li a figure figcaption .speech .full .icon-shijian {
  color: #214dc9;
}

.major .notice ul li a figure figcaption .speech .full em {
  color: #504c4c;
  font-weight: bold;
  font-size: 13px;
}

.major .crumbs {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.major .crumbs span {
  color: #fff;
  font-size: 18px;
}

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

.major .crumbs ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.major .crumbs ul li::after {
  content: '>';
  font-size: 13px;
  color: #fff;
  margin: 0 6px;
}

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

.major .crumbs ul li:last-child a {
  color: #afa15a;
}

.major .crumbs ul li:last-child::after {
  content: '';
}

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

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

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

.major .pages .pagination li:hover {
  background: #afa15a;
  border-color: transparent;
}

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

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

.major .pages .pagination .active {
  background: #afa15a;
  border-color: transparent;
}

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

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

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

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

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

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

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

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

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

.major .controversy {
  width: 100%;
  overflow: hidden;
  margin-bottom: 12px;
}

.major .controversy ul {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.major .controversy ul li {
  border: 1px solid #fff;
  font-size: 13px;
  user-select: none;
}

.major .controversy ul li:hover,
.major .controversy ul li.active {
  background: #afa15a;
  border-color: transparent;
}

.major .controversy ul li a {
  padding: 3px 14px;
  display: block;
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
}

.major .compilation {
  display: flex;
  gap: 18px;
}

.major .compilation .stress {
  flex: 1;
  width: 0;
}

.major .compilation .stress .procession {
  width: 100%;
}

.major .compilation .stress .tolerate {
  width: 100%;
  background: #fff;
  padding: 10px;
  box-sizing: border-box;
}

.major .compilation .stress .tolerate h1 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

.major .compilation .stress .tolerate .believe {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
  gap: 10px;
}

.major .compilation .stress .tolerate .believe .unlined {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .stress .tolerate .believe .unlined .icon-shijian {
  color: #214dc9;
  font-size: 16px;
}

.major .compilation .stress .tolerate .believe .unlined .icon-huoreremen {
  color: #b4030d;
  font-size: 16px;
}

.major .compilation .stress .tolerate .believe .unlined time,
.major .compilation .stress .tolerate .believe .unlined span {
  font-size: 13px;
}

.major .compilation .stress .tolerate .tractate {
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.major .compilation .stress .tolerate .tractate article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.major .compilation .stress .tolerate .tractate article p {
  font-size: 14px;
  color: #150f0f;
  line-height: 26px;
  text-indent: 20px;
}

.major .compilation .stress .tolerate .tractate 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;
}

.major .compilation .stress .tolerate .promote {
  margin-top: 52px;
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .tolerate .promote ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.major .compilation .stress .tolerate .promote ul li {
  width: 100%;
  overflow: hidden;
  border: 1px solid #150f0f;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: 10px;
}

.major .compilation .stress .tolerate .promote ul li a {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.major .compilation .stress .tolerate .promote ul li a span {
  font-weight: bold;
  font-size: 13px;
}

.major .compilation .stress .tolerate .promote ul li a p {
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
}

.major .compilation .stress .tolerate .fluorescent {
  position: relative;
  width: 100%;
  height: 332px;
  margin-bottom: 22px;
}

.major .compilation .stress .tolerate .fluorescent .outcrop {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .tolerate .fluorescent .outcrop img {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .tolerate .fluorescent .play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 75px;
  height: 75px;
  transform: translate(-50%, -50%);
}

.major .compilation .stress .tolerate .fluorescent .play img {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .tolerate .fluorescent time {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
}

.major .compilation .stress .tolerate .fluorescent time.lasting {
  top: auto;
  bottom: 42px;
}

.major .compilation .stress .tolerate .fluorescent p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 6px 12px;
  box-sizing: border-box;
  background: rgba(225, 225, 225, 0.6);
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.major .compilation .stress .tolerate .bewrite {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.major .compilation .stress .tolerate .bewrite ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.major .compilation .stress .tolerate .bewrite ul li {
  white-space: nowrap;
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #150f0f;
  font-weight: bold;
  flex-wrap: wrap;
}

.major .compilation .stress .tolerate .bewrite ul li span,
.major .compilation .stress .tolerate .bewrite ul li a {
  color: #150f0f;
  font-weight: bold;
}

.major .compilation .stress .tolerate .bewrite>strong,
.major .compilation .stress .tolerate .bewrite p {
  font-size: 12px;
  color: #150f0f;
  line-height: 24px;
  font-weight: bold;
  text-indent: 8px;
}

.major .compilation .stress .regarding {
  margin-top: 18px;
  background: #fff;
  padding: 15px;
  width: 100%;
  box-sizing: border-box;
}

.major .compilation .stress .regarding .headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.major .compilation .stress .regarding .headline .tender {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .stress .regarding .headline .tender img {
  width: 28px;
  height: auto;
}

.major .compilation .stress .regarding .headline .tender strong {
  font-weight: bold;
  white-space: nowrap;
  color: #150f0f;
  font-size: 15px;
}

.major .compilation .stress .regarding .headline .much {
  white-space: nowrap;
  user-select: none;
}

.major .compilation .stress .regarding .headline .much a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .stress .regarding .headline .much a span {
  font-size: 12px;
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .stress .regarding .headline .much a img {
  width: 18px;
}

.major .compilation .stress .regarding ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.major .compilation .stress .regarding ul li {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .regarding ul li a {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .regarding ul li a .sheaf {
  position: relative;
  width: 100%;
  height: 172px;
}

.major .compilation .stress .regarding ul li a .sheaf .graphics {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .regarding ul li a .sheaf .graphics img {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .regarding ul li a .sheaf .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
}

.major .compilation .stress .regarding ul li a .sheaf .play img {
  width: 100%;
  height: 100%;
}

.major .compilation .stress .regarding ul li a .sheaf time {
  position: absolute;
  right: 6px;
  bottom: 6px;
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  font-weight: bold;
}

.major .compilation .stress .regarding ul li a p {
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
  color: #150f0f;
  font-weight: bold;
  overflow: hidden;
}

.major .compilation .stress p {
  font-size: 13px;
  font-weight: bold;
  line-height: 26px;
  text-indent: 8px;
}

.major .compilation .stress .vessel {
  position: relative;
  width: 100%;
  height: 327px;
  background: url("/template/thirty-six/images/match_bask.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
}

.major .compilation .stress .vessel.opposite {
  background: url("/template/thirty-six/images/match_foot.png") no-repeat;
  background-size: 100% 100%;
  background-position: center;
}

.major .compilation .stress .vessel .employ {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 5px 10px;
  background: rgba(225, 225, 225, 0.7);
}

.major .compilation .stress .vessel .employ a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  user-select: none;
}

.major .compilation .stress .vessel .employ a span {
  font-size: 14px;
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .stress .vessel .employ a p {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.major .compilation .stress .vessel .medium {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  align-items: center;
  gap: 12px;
}

.major .compilation .stress .vessel .medium .squad {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .vessel .medium .squad a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.major .compilation .stress .vessel .medium .squad a img {
  width: fit-content;
  height: 82px;
}

.major .compilation .stress .vessel .medium .squad a strong {
  width: 100%;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.major .compilation .stress .vessel .medium .remainder {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.major .compilation .stress .vessel .medium .remainder time {
  text-align: center;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.major .compilation .stress .vessel .medium .remainder .rivalry {
  display: flex;
  align-items: center;
  gap: 10px;
}

.major .compilation .stress .vessel .medium .remainder .rivalry img {
  width: 32px;
}

.major .compilation .stress .vessel .medium .remainder .rivalry span {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.major .compilation .stress .vessel .medium .remainder .species {
  text-align: center;
  font-size: 16px;
}

.major .compilation .stress .vessel .medium .remainder .species a {
  color: #d20602;
  font-weight: bold;
}

.major .compilation .stress .section {
  background: #fff;
  width: 100%;
  margin-top: 16px;
  padding: 15px 10px;
  box-sizing: border-box;
}

.major .compilation .stress .section .tangency {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.major .compilation .stress .section .tangency ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.major .compilation .stress .section .tangency ul li {
  font-size: 13px;
}

.major .compilation .stress .section .tangency ul li:hover,
.major .compilation .stress .section .tangency ul li.active {
  background: #afa15a;
}

.major .compilation .stress .section .tangency ul li:hover a,
.major .compilation .stress .section .tangency ul li.active a {
  color: #fff;
  border-color: transparent;
}

.major .compilation .stress .section .tangency ul li a {
  font-weight: bold;
  color: #150f0f;
  padding: 3px 10px;
  display: block;
  border: 1px solid #e10603;
}

.major .compilation .stress .section .encircle {
  width: 100%;
  margin-top: 16px;
  user-select: none;
}

.major .compilation .stress .section .encircle .enclose {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .section .encircle .enclose .inscribe {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
}

.major .compilation .stress .section .encircle .enclose .inscribe::before,
.major .compilation .stress .section .encircle .enclose .inscribe::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0088d2;
}

.major .compilation .stress .section .encircle .enclose .inscribe strong {
  font-size: 13px;
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .stress .section .encircle .enclose .knowledge {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.major .compilation .stress .section .encircle .enclose .knowledge.indivual {
  grid-template-columns: auto;
}

.major .compilation .stress .section .encircle .enclose .knowledge.indivual ul {
  width: 50%;
  margin: auto;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul {
  width: 100%;
  overflow: hidden;
  padding-right: 15px;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul:last-child {
  padding-left: 15px;
  padding-right: 0;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li {
  position: relative;
  width: 100%;
  background: #0088d2;
  margin-top: 18px;
  padding: 5px;
  box-sizing: border-box;
  box-shadow: 0 4px 16.1638px 0 rgba(0, 0, 0, 0.14), 0 2px 7.83618px 0 rgba(0, 0, 0, 0.06);
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-1 {
  background: #71a172;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-1::after {
  background: #71a172;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-2 {
  background: #70a5e9;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-2::after {
  background: #70a5e9;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-3 {
  background: #bc67d8;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-3::after {
  background: #bc67d8;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-4 {
  background: #eb7913;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-4::after {
  background: #eb7913;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-5 {
  background: #fb3530;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li.qb-status-5::after {
  background: #fb3530;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(100%);
  width: 15px;
  height: 15px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 5%, 0% 100%, 0% 0%, 0% 0%);
  background: #0088d2;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul li p {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
}

.major .compilation .stress .section .encircle .enclose .knowledge ul:last-child li::after {
  left: 0;
  transform: translate(-96%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 15%, 0% 0%, 0% 0%);
}

.major .compilation .stress .section .encircle .enclose .accommodate {
  width: 100%;
  overflow: hidden;
  margin-bottom: 22px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .subject {
  width: 100%;
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.major .compilation .stress .section .encircle .enclose .accommodate .subject strong {
  font-weight: bold;
  font-size: 16px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence {
  width: 100%;
  margin-top: 22px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #c70603;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li {
  display: grid;
  grid-template-columns: 1fr 3fr auto;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #c70603;
  padding: 8px 12px;
  box-sizing: border-box;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li:last-child {
  border-bottom: none;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li:hover {
  background: rgba(203, 6, 3, 0.6);
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li:hover a {
  color: #fff;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li:hover .circumstance a {
  color: #fff;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li:hover .squadron .emblem a strong {
  color: #fff;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li time {
  font-size: 13px;
  white-space: nowrap;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li time a {
  color: #150f0f;
  font-weight: bold;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron {
  display: grid;
  grid-template-columns: 3fr 1fr 3fr;
  align-items: center;
  gap: 10px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a img {
  width: 26px;
  max-height: 36px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a strong {
  flex: 1;
  font-weight: bold;
  font-size: 13px;
  color: #150f0f;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem:first-child a strong {
  text-align: right;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect {
  white-space: nowrap;
  user-select: none;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a img {
  width: 26px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a span {
  font-weight: bold;
  font-size: 16px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .circumstance {
  font-size: 13px;
  white-space: nowrap;
}

.major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .circumstance a {
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .stress .section .encircle .enclose .accommodate .admit {
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle {
  margin-top: 22px;
  width: 100%;
  overflow: hidden;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li {
  border: 1px solid #c80603;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li:hover,
.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li.active {
  background: #af0503;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li:hover a,
.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li.active a {
  color: #fff;
}

.major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li a {
  padding: 3px 10px;
  box-sizing: border-box;
  display: block;
  font-size: 13px;
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .stress .section .encircle .construe {
  display: flex;
  flex-direction: column;
  gap: 8px;
  white-space: nowrap;
  user-select: none;
}

.major .compilation .stress .section .encircle .construe p {
  font-size: 13px;
  color: #150f0f;
  line-height: 22px;
  white-space: wrap;
}

.major .compilation .stress .section .encircle .construe p span {
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.major .compilation .stress .section .encircle .construe p a {
  color: #150f0f;
}

.major .compilation .stress .section .encircle .construe .waft {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.major .compilation .stress .section .encircle .construe .waft span {
  font-size: 14px;
  font-weight: bold;
  color: #150f0f;
  white-space: nowrap;
}

.major .compilation .stress .section .encircle .construe .waft ul {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.major .compilation .stress .section .encircle .construe .waft ul li {
  font-size: 16px;
}

.major .compilation .stress .section .encircle .construe .waft ul li a {
  color: #fff;
  background: linear-gradient(to right, #ca0603 0, #fff 40%, #ca0603 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;
}

.major .compilation .lateral {
  width: 32%;
  overflow: hidden;
}

.major .compilation .lateral .celibatarian {
  margin-bottom: 22px;
  padding: 10px;
  box-sizing: border-box;
  background: #fff;
}

.major .compilation .lateral .celibatarian .problem {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.major .compilation .lateral .celibatarian .problem .mark_icon {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .lateral .celibatarian .problem .mark_icon img {
  width: 24px;
}

.major .compilation .lateral .celibatarian .problem .mark_icon strong {
  font-size: 16px;
  font-weight: bold;
}

.major .compilation .lateral .celibatarian .problem .better {
  white-space: nowrap;
  user-select: none;
}

.major .compilation .lateral .celibatarian .problem .better a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .compilation .lateral .celibatarian .problem .better a span {
  font-size: 13px;
  font-weight: bold;
}

.major .compilation .lateral .celibatarian .problem .better a img {
  width: 18px;
}

.major .compilation .lateral .celibatarian .regard {
  width: 100%;
  overflow: hidden;
}

.major .compilation .lateral .celibatarian .regard ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.major .compilation .lateral .celibatarian .regard ul li {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.major .compilation .lateral .celibatarian .regard ul li a {
  width: 100%;
  display: block;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit {
  position: relative;
  width: 100%;
  height: 156px;
  margin-bottom: 6px;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit .seek {
  width: 100%;
  height: 100%;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit .seek img {
  width: 100%;
  height: 100%;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit .play img {
  width: 100%;
  height: 100%;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit time {
  position: absolute;
  right: 6px;
  top: 6px;
  color: #fff;
  font-size: 13px;
}

.major .compilation .lateral .celibatarian .regard ul li a .exhibit time.duration {
  top: auto;
  bottom: 6px;
}

.major .compilation .lateral .celibatarian .regard ul li a p {
  font-size: 13px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  overflow: hidden;
  font-weight: bold;
  color: #150f0f;
}

.major .compilation .lateral .celibatarian .famous {
  width: 100%;
  overflow: hidden;
}

.major .compilation .lateral .celibatarian .famous ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.major .compilation .lateral .celibatarian .famous ul li {
  width: 100%;
  overflow: hidden;
}

.major .compilation .lateral .celibatarian .famous ul li a {
  display: flex;
  align-items: center;
  white-space: nowrap;
  user-select: none;
  gap: 6px;
}

.major .compilation .lateral .celibatarian .famous ul li a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
}

.major .compilation .lateral .celibatarian .famous ul li a time {
  font-size: 12px;
  color: #afa15a;
}

@media screen and (max-width: 768px) {
  .major .compilation {
    flex-direction: column;
    gap: 0.29333rem;
  }

  .major .compilation .stress {
    width: 100%;
    flex: auto;
  }

  .major .compilation .stress .tolerate {
    padding: 0.13333rem;
  }

  .major .compilation .stress .tolerate h1 {
    font-size: 0.34667rem;
  }

  .major .compilation .stress .tolerate .believe {
    margin: 0.10667rem 0;
    gap: 0.13333rem;
  }

  .major .compilation .stress .tolerate .believe .unlined {
    gap: 0.10667rem;
  }

  .major .compilation .stress .tolerate .believe .unlined .icon-shijian,
  .major .compilation .stress .tolerate .believe .unlined .icon-huoreremen {
    font-size: 0.34667rem;
  }

  .major .compilation .stress .tolerate .believe .unlined time,
  .major .compilation .stress .tolerate .believe .unlined span {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .tractate article {
    gap: 0.16rem;
  }

  .major .compilation .stress .tolerate .tractate article p {
    font-size: 0.32rem;
    line-height: 0.49333rem;
    text-indent: 0.26667rem;
  }

  .major .compilation .stress .tolerate .tractate article img {
    width: 100% !important;
    margin-bottom: 0.26667rem;
    border-radius: 0.2rem;
  }

  .major .compilation .stress .tolerate .promote {
    margin-top: 0.69333rem;
  }

  .major .compilation .stress .tolerate .promote ul {
    gap: 0.29333rem;
    grid-template-columns: auto;
  }

  .major .compilation .stress .tolerate .promote ul li {
    padding: 0.06667rem 0.13333rem;
    border-radius: 0.06667rem;
  }

  .major .compilation .stress .tolerate .promote ul li a {
    gap: 0.08rem;
  }

  .major .compilation .stress .tolerate .promote ul li a span {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .promote ul li a p {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .fluorescent {
    height: 5.76rem;
    margin-bottom: 0.29333rem;
  }

  .major .compilation .stress .tolerate .fluorescent .play {
    width: 1.26667rem;
    height: 1.26667rem;
  }

  .major .compilation .stress .tolerate .fluorescent time {
    top: 0.16rem;
    right: 0.16rem;
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .fluorescent time.lasting {
    bottom: 0.82667rem;
  }

  .major .compilation .stress .tolerate .fluorescent p {
    padding: 0.08rem 0.16rem;
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .bewrite {
    gap: 0.06667rem;
  }

  .major .compilation .stress .tolerate .bewrite ul {
    gap: 0.10667rem;
  }

  .major .compilation .stress .tolerate .bewrite ul li {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .tolerate .bewrite>strong,
  .major .compilation .stress .tolerate .bewrite p {
    font-size: 0.30667rem;
    line-height: 0.42667rem;
    text-indent: 0.10667rem;
  }

  .major .compilation .stress .regarding {
    padding: 0.2rem;
    margin-top: 0.24rem;
  }

  .major .compilation .stress .regarding .headline {
    margin-bottom: 0.21333rem;
  }

  .major .compilation .stress .regarding .headline .tender {
    gap: 0.08rem;
  }

  .major .compilation .stress .regarding .headline .tender img {
    width: 0.48rem;
  }

  .major .compilation .stress .regarding .headline .tender strong {
    font-size: 0.33333rem;
  }

  .major .compilation .stress .regarding .headline .much a {
    gap: 0.08rem;
  }

  .major .compilation .stress .regarding .headline .much a span {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .regarding .headline .much a img {
    width: 0.34667rem;
  }

  .major .compilation .stress .regarding ul {
    gap: 0.26667rem;
  }

  .major .compilation .stress .regarding ul li a .sheaf {
    height: 3.02667rem;
  }

  .major .compilation .stress .regarding ul li a .sheaf .play {
    width: 1rem;
    height: 1rem;
  }

  .major .compilation .stress .regarding ul li a .sheaf time {
    right: 0.08rem;
    bottom: 0.08rem;
    font-size: 0.30667rem;
  }

  .major .compilation .stress .regarding ul li a p {
    font-size: 0.30667rem;
  }

  .major .compilation .stress p {
    font-size: 0.30667rem;
    line-height: 0.45333rem;
    text-indent: 0.10667rem;
  }

  .major .compilation .stress .vessel {
    height: 5.62667rem;
    margin-top: 0.21333rem;
  }

  .major .compilation .stress .vessel .employ {
    padding: 0.06667rem 0.13333rem;
  }

  .major .compilation .stress .vessel .employ a span {
    font-size: 0.32rem;
  }

  .major .compilation .stress .vessel .employ a p {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .vessel .medium {
    padding: 0 0.2rem;
    gap: 0.16rem;
  }

  .major .compilation .stress .vessel .medium .squad a {
    gap: 0.21333rem;
  }

  .major .compilation .stress .vessel .medium .squad a img {
    height: 1.49333rem;
  }

  .major .compilation .stress .vessel .medium .squad a strong {
    font-size: 0.32rem;
  }

  .major .compilation .stress .vessel .medium .remainder {
    gap: 0.10667rem;
  }

  .major .compilation .stress .vessel .medium .remainder time {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .vessel .medium .remainder .rivalry {
    gap: 0.13333rem;
  }

  .major .compilation .stress .vessel .medium .remainder .rivalry img {
    width: 0.56rem;
  }

  .major .compilation .stress .vessel .medium .remainder .rivalry span {
    font-size: 0.37333rem;
  }

  .major .compilation .stress .vessel .medium .remainder .species {
    font-size: 0.34667rem;
  }

  .major .compilation .stress .section {
    padding: 0.2rem 0.13333rem;
    margin-top: 0.34667rem;
  }

  .major .compilation .stress .section .tangency ul {
    gap: 0.42667rem;
  }

  .major .compilation .stress .section .tangency ul li {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .section .tangency ul li a {
    padding: 0.04rem 0.13333rem;
  }

  .major .compilation .stress .section .encircle {
    margin-top: 0.34667rem;
  }

  .major .compilation .stress .section .encircle .enclose {
    gap: 0.08rem;
    margin-top: 0.29333rem;
  }

  .major .compilation .stress .section .encircle .enclose .inscribe::before,
  .major .compilation .stress .section .encircle .enclose .inscribe::after {
    width: 0.13333rem;
    height: 0.13333rem;
  }

  .major .compilation .stress .section .encircle .enclose .inscribe strong {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge {
    gap: 0.13333rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge ul {
    padding-right: 0.2rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge ul:last-child {
    padding-left: 0.2rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge ul li {
    padding: 0.06667rem;
    margin-top: 0.24rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge ul li::after {
    width: 0.2rem;
    height: 0.2rem;
  }

  .major .compilation .stress .section .encircle .enclose .knowledge ul li p {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate {
    margin-bottom: 0.29333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .subject strong {
    font-size: 0.34667rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence {
    margin-top: 0.29333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul {
    gap: 0.08rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li {
    gap: 0.29333rem;
    padding: 0.10667rem 0.13333rem;
    grid-template-columns: auto;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li time {
    font-size: 0.30667rem;
    text-align: center;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron {
    gap: 0.13333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a {
    gap: 0.10667rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a img {
    width: 0.42667rem;
    max-height: 0.61333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .emblem a strong {
    font-size: 0.30667rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a {
    gap: 0.08rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a img {
    width: 0.45333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .squadron .effect a span {
    font-size: 0.34667rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .essence ul li .circumstance {
    font-size: 0.30667rem;
    text-align: center;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .receptacle {
    margin-top: 0.29333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover {
    margin-top: 0.16rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul {
    gap: 0.13333rem;
  }

  .major .compilation .stress .section .encircle .enclose .accommodate .receptacle .cutover ul li a {
    padding: 0.04rem 0.13333rem;
    font-size: 0.30667rem;
  }

  .major .compilation .stress .section .encircle .construe {
    gap: 0.10667rem;
  }

  .major .compilation .stress .section .encircle .construe p {
    font-size: 0.30667rem;
    line-height: 0.42667rem;
  }

  .major .compilation .stress .section .encircle .construe p span {
    font-size: 0.32rem;
  }

  .major .compilation .stress .section .encircle .construe .waft {
    padding-left: 0.13333rem;
  }

  .major .compilation .stress .section .encircle .construe .waft span {
    font-size: 0.32rem;
  }

  .major .compilation .stress .section .encircle .construe .waft ul {
    gap: 0.16rem;
  }

  .major .compilation .stress .section .encircle .construe .waft ul li {
    font-size: 0.34667rem;
  }

  .major .compilation .lateral {
    width: 100%;
  }

  .major .compilation .lateral .celibatarian {
    margin-bottom: 0.29333rem;
    padding: 0.13333rem;
  }

  .major .compilation .lateral .celibatarian .problem {
    margin-bottom: 0.18667rem;
  }

  .major .compilation .lateral .celibatarian .problem .mark_icon {
    gap: 0.08rem;
  }

  .major .compilation .lateral .celibatarian .problem .mark_icon img {
    width: 0.42667rem;
  }

  .major .compilation .lateral .celibatarian .problem .mark_icon strong {
    font-size: 0.34667rem;
  }

  .major .compilation .lateral .celibatarian .problem .better a {
    gap: 0.10667rem;
  }

  .major .compilation .lateral .celibatarian .problem .better a span {
    font-size: 0.30667rem;
  }

  .major .compilation .lateral .celibatarian .problem .better a img {
    width: 0.37333rem;
  }

  .major .compilation .lateral .celibatarian .regard ul {
    gap: 0.13333rem;
  }

  .major .compilation .lateral .celibatarian .regard ul li a .exhibit {
    height: 3.14667rem;
    margin-bottom: 0.08rem;
  }

  .major .compilation .lateral .celibatarian .regard ul li a .exhibit .play {
    width: 0.86667rem;
    height: 0.86667rem;
  }

  .major .compilation .lateral .celibatarian .regard ul li a .exhibit time {
    right: 0.13333rem;
    top: 0.13333rem;
    font-size: 0.30667rem;
  }

  .major .compilation .lateral .celibatarian .regard ul li a .exhibit time.duration {
    bottom: 0.13333rem;
  }

  .major .compilation .lateral .celibatarian .regard ul li a p {
    font-size: 0.30667rem;
  }

  .major .compilation .lateral .celibatarian .famous ul {
    gap: 0.10667rem;
  }

  .major .compilation .lateral .celibatarian .famous ul li a {
    gap: 0.10667rem;
  }

  .major .compilation .lateral .celibatarian .famous ul li a strong {
    font-size: 0.30667rem;
  }

  .major .compilation .lateral .celibatarian .famous ul li a time {
    font-size: 0.30667rem;
  }
}

.major .harbor {
  width: 100%;
  overflow: hidden;
}

.major .harbor .lonely {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
  background: #fff;
  padding: 15px 10px;
  box-sizing: border-box;
}

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

.major .harbor .lonely ul li {
  border: 1px solid #e30602;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
  box-sizing: border-box;
}

.major .harbor .lonely ul li time {
  font-size: 13px;
  white-space: nowrap;
}

.major .harbor .lonely ul li time a {
  color: #150f0f;
  font-weight: bold;
}

.major .harbor .lonely ul li .crew {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.major .harbor .lonely ul li .crew .brigade {
  width: 100%;
  overflow: hidden;
}

.major .harbor .lonely ul li .crew .brigade a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.major .harbor .lonely ul li .crew .brigade a img {
  width: 30px;
}

.major .harbor .lonely ul li .crew .brigade a strong {
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
  color: #150f0f;
}

.major .harbor .lonely ul li .crew .brigade:first-child a strong {
  text-align: right;
}

.major .harbor .lonely ul li .crew .vs {
  width: 28px;
  height: fit-content;
}

.major .harbor .lonely ul li .crew .vs a {
  width: 100%;
  height: fit-content;
}

.major .harbor .lonely ul li .crew .vs a img {
  width: 100%;
  height: fit-content;
  vertical-align: bottom;
}

.major .harbor .lonely ul li .status {
  font-size: 13px;
}

.major .harbor .lonely ul li .status a {
  color: #150f0f;
  font-weight: bold;
}

.major .fervour {
  width: 100%;
  box-sizing: border-box;
  padding: 15px 10px;
  background: #fff;
  margin-top: 26px;
}

.major .fervour .appellation {
  display: flex;
  align-items: center;
  gap: 12px;
}

.major .fervour .appellation img {
  width: 36px;
  height: fit-content;
}

.major .fervour .appellation strong {
  font-size: 18px;
  font-weight: bold;
  color: #150f0f;
}

.major .fervour ul {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.major .fervour ul li {
  white-space: nowrap;
  user-select: none;
}

.major .fervour ul li a {
  font-size: 13px;
  font-weight: bold;
  color: #150f0f;
}

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

@media screen and (max-width: 1000px) {
  .major.shoulder {
    padding: 172px 10px;
  }
}

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

  .major.shoulder {
    padding: 2.29333rem 0.2rem;
  }

  .major .title {
    gap: 0.29333rem;
    margin-bottom: 0.29333rem;
    flex-direction: column;
  }

  .major .title .indicate {
    width: 3.50667rem;
  }

  .major .title ul {
    gap: 0.29333rem;
    padding-bottom: 0.13333rem;
    flex: auto;
    width: 100%;
  }

  .major .title ul li a {
    padding: 0.08rem 0.29333rem;
    font-size: 0.32rem;
  }

  .major .contend ul {
    gap: 0.10667rem;
  }

  .major .contend ul li {
    padding: 0.13333rem;
    gap: 0.42667rem;
    border-radius: 0.08rem;
    grid-template-columns: auto;
  }

  .major .contend ul li .contest {
    grid-template-columns: 1fr 2fr auto;
    gap: 0.10667rem;
  }

  .major .contend ul li .contest .genus a {
    gap: 0.10667rem;
  }

  .major .contend ul li .contest .genus a img {
    width: 0.56rem;
  }

  .major .contend ul li .contest .genus a strong {
    font-size: 0.30667rem;
  }

  .major .contend ul li .contest .period a {
    gap: 0.10667rem;
  }

  .major .contend ul li .contest .period a time {
    font-size: 0.30667rem;
  }

  .major .contend ul li .contest .condition {
    padding: 0 0.13333rem;
  }

  .major .contend ul li .contest .condition a {
    gap: 0.10667rem;
  }

  .major .contend ul li .contest .condition a span {
    font-size: 0.36rem;
  }

  .major .contend ul li .contest .condition a strong {
    font-size: 0.30667rem;
  }

  .major .contend ul li .organization {
    gap: 0.16rem;
  }

  .major .contend ul li .organization .parcel {
    gap: 0.29333rem;
  }

  .major .contend ul li .organization .parcel .emerge a {
    gap: 0.13333rem;
  }

  .major .contend ul li .organization .parcel .emerge a img {
    width: 0.61333rem;
  }

  .major .contend ul li .organization .parcel .emerge a strong {
    font-size: 0.30667rem;
  }

  .major .contend ul li .organization .achievement a {
    gap: 0.16rem;
  }

  .major .contend ul li .organization .achievement a img {
    width: 0.64rem;
  }

  .major .contend ul li .organization .achievement a span {
    font-size: 0.37333rem;
  }

  .major .contend ul li .moving {
    gap: 0.13333rem;
  }

  .major .contend ul li .moving .trumpet a {
    gap: 0.13333rem;
  }

  .major .contend ul li .moving .trumpet a img {
    width: 0.42667rem;
  }

  .major .contend ul li .moving .trumpet a span {
    font-size: 0.30667rem;
  }

  .major .contend ul li .moving .motion {
    transform: scale(0.8);
    justify-content: flex-end;
  }

  .major .channel {
    margin: 0.82667rem 0;
  }

  .major .comity {
    margin-bottom: 1.04rem;
  }

  .major .comity .contingent ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.29333rem;
  }

  .major .comity .contingent ul li {
    height: 3.76rem;
  }

  .major .comity .contingent ul li a {
    gap: 0.18667rem;
  }

  .major .comity .contingent ul li a .insignia {
    height: 2.2rem;
  }

  .major .comity .contingent ul li a .insignia img {
    height: 1.22667rem;
  }

  .major .comity .contingent ul li a p {
    font-size: 0.33333rem;
  }

  .major .patrol ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem;
  }

  .major .patrol ul li a .reputation {
    height: 3.04rem;
  }

  .major .patrol ul li a .reputation time {
    left: 0.10667rem;
    top: 0.10667rem;
    font-size: 0.30667rem;
  }

  .major .patrol ul li a .reputation time.tense {
    right: 0.10667rem;
    bottom: 0.10667rem;
  }

  .major .patrol ul li a .painstaking {
    height: 2.48rem;
    padding: 0.13333rem;
  }

  .major .patrol ul li a .painstaking strong {
    font-size: 0.30667rem;
  }

  .major .patrol ul li a .painstaking .careful {
    gap: 0.16rem;
  }

  .major .patrol ul li a .painstaking .careful .sole {
    gap: 0.08rem;
  }

  .major .patrol ul li a .painstaking .careful .sole em {
    font-size: 0.30667rem;
  }

  .major .patrol ul li a .painstaking .careful .sole span {
    font-size: 0.37333rem;
  }

  .major .notice ul {
    gap: 0.21333rem;
  }

  .major .notice ul li a {
    padding: 0.13333rem;
  }

  .major .notice ul li a figure {
    height: fit-content;
    flex-direction: column;
    gap: 0.29333rem;
  }

  .major .notice ul li a figure img {
    width: 100%;
    height: 4.29333rem;
  }

  .major .notice ul li a figure figcaption {
    flex: auto;
    width: 100%;
    height: 3.01333rem;
  }

  .major .notice ul li a figure figcaption article {
    gap: 0.16rem;
  }

  .major .notice ul li a figure figcaption article strong {
    font-size: 0.32rem;
  }

  .major .notice ul li a figure figcaption article p {
    font-size: 0.30667rem;
    line-height: 0.48rem;
    font-size: 0.30667rem;
    text-indent: 0.13333rem;
  }

  .major .notice ul li a figure figcaption .speech .full {
    gap: 0.08rem;
  }

  .major .notice ul li a figure figcaption .speech .full em {
    font-size: 0.30667rem;
  }

  .major .notice ul li a figure figcaption .speech .full span {
    font-size: 0.36rem;
  }

  .major .crumbs {
    gap: 0.13333rem;
    margin-bottom: 0.29333rem;
  }

  .major .crumbs span {
    font-size: 0.34667rem;
  }

  .major .crumbs ul li a {
    font-size: 0.30667rem;
  }

  .major .crumbs ul li::after {
    font-size: 0.30667rem;
    margin: 0 0.10667rem;
  }

  .major .controversy {
    margin-bottom: 0.16rem;
  }

  .major .controversy ul {
    gap: 0.16rem;
    padding-bottom: 0.10667rem;
  }

  .major .controversy ul li {
    font-size: 0.30667rem;
  }

  .major .controversy ul li a {
    padding: 0.04rem 0.24rem;
  }

  .major .harbor .lonely {
    padding: 0.2rem 0.13333rem;
  }

  .major .harbor .lonely ul {
    grid-template-columns: auto;
    gap: 0.29333rem;
  }

  .major .harbor .lonely ul li {
    gap: 0.16rem;
    padding: 0.08rem 0.13333rem;
  }

  .major .harbor .lonely ul li time {
    font-size: 0.30667rem;
  }

  .major .harbor .lonely ul li .crew {
    gap: 0.13333rem;
  }

  .major .harbor .lonely ul li .crew .brigade a {
    gap: 0.10667rem;
  }

  .major .harbor .lonely ul li .crew .brigade a img {
    width: 0.50667rem;
  }

  .major .harbor .lonely ul li .crew .brigade a strong {
    font-size: 0.30667rem;
  }

  .major .harbor .lonely ul li .crew .vs {
    width: 0.45333rem;
  }

  .major .harbor .lonely ul li .status {
    font-size: 0.30667rem;
  }

  .major .fervour {
    padding: 0.2rem 0.13333rem;
    margin-top: 0.34667rem;
  }

  .major .fervour .appellation {
    gap: 0.16rem;
  }

  .major .fervour .appellation img {
    width: 0.6rem;
  }

  .major .fervour .appellation strong {
    font-size: 0.34667rem;
  }

  .major .fervour ul {
    gap: 0.16rem;
    margin-top: 0.21333rem;
  }

  .major .fervour ul li a {
    font-size: 0.30667rem;
  }
}

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

.pedestal .ground {
  width: 100%;
  padding: 57px 0;
  box-sizing: border-box;
  background: url(/template/thirty-six/images/ground.png);
  box-sizing: border-box;
  user-select: none;
}

.pedestal .ground dl {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  box-sizing: border-box;
}

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

.pedestal .ground dl dd {
  font-size: 13px;
}

.pedestal .ground dl dd a {
  color: #fff;
  font-weight: bold;
}

.pedestal .ground p {
  text-align: center;
  margin-top: 16px;
  line-height: 30px;
  font-size: 13px;
  color: #fff;
  font-weight: bold;
}

.pedestal .ground p a {
  font-weight: bold;
  color: #fff;
}

.pedestal .base {
  padding: 22px 0;
  box-sizing: border-box;
  background: #b4030d;
}

.pedestal .base .unite {
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  user-select: none;
}

.pedestal .base .unite .logo {
  width: 102px;
  height: fit-content;
}

.pedestal .base .unite .logo a {
  display: flex;
  align-items: center;
  width: 100%;
  height: fit-content;
}

.pedestal .base .unite .logo a img {
  width: 100%;
  height: fit-content;
}

.pedestal .base .unite ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pedestal .base .unite ul li {
  height: fit-content;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.pedestal .base .unite ul li::after {
  content: '|';
  color: #fff;
  font-size: 13px;
}

.pedestal .base .unite ul li a {
  padding: 0 8px;
  display: block;
  font-size: 14px;
  color: #fff;
}

.pedestal .base .unite ul li:last-child::after {
  content: '';
}

@media screen and (max-width: 768px) {
  .pedestal .ground {
    padding: 0.89333rem 0;
  }

  .pedestal .ground dl {
    gap: 0.13333rem;
  }

  .pedestal .ground dl dt {
    font-size: 0.32rem;
  }

  .pedestal .ground dl dd {
    font-size: 0.30667rem;
  }

  .pedestal .ground p {
    margin-top: 0.24rem;
    line-height: 0.48rem;
    font-size: 0.30667rem;
  }

  .pedestal .base {
    padding: 0.29333rem 0;
  }

  .pedestal .base .unite {
    padding: 0 0.13333rem;
    gap: 0.29333rem;
    flex-direction: column;
  }

  .pedestal .base .unite .logo {
    width: 1.93333rem;
  }

  .pedestal .base .unite ul {
    gap: 0.10667rem;
  }

  .pedestal .base .unite ul li a {
    padding: 0 0.13333rem;
    font-size: 0.32rem;
  }
}

/* 赛事状态*/
.dot-spinner {
  --uib-size: 20px;
  --uib-speed: .9s;
  --uib-color: #183153;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: var(--uib-size);
  width: var(--uib-size);
}

.dot-spinner__dot {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.dot-spinner__dot::before {
  content: '';
  height: 20%;
  width: 20%;
  border-radius: 50%;
  background-color: var(--uib-color);
  transform: scale(0);
  opacity: 0.5;
  animation: pulse0112 calc(var(--uib-speed) * 1.111) ease-in-out infinite;
  box-shadow: 0 0 20px rgba(18, 31, 53, 0.3);
}

.dot-spinner__dot:nth-child(2) {
  transform: rotate(45deg);
}

.dot-spinner__dot:nth-child(2)::before {
  animation-delay: calc(var(--uib-speed) * -0.875);
}

.dot-spinner__dot:nth-child(3) {
  transform: rotate(90deg);
}

.dot-spinner__dot:nth-child(3)::before {
  animation-delay: calc(var(--uib-speed) * -0.75);
}

.dot-spinner__dot:nth-child(4) {
  transform: rotate(135deg);
}

.dot-spinner__dot:nth-child(4)::before {
  animation-delay: calc(var(--uib-speed) * -0.625);
}

.dot-spinner__dot:nth-child(5) {
  transform: rotate(180deg);
}

.dot-spinner__dot:nth-child(5)::before {
  animation-delay: calc(var(--uib-speed) * -0.5);
}

.dot-spinner__dot:nth-child(6) {
  transform: rotate(225deg);
}

.dot-spinner__dot:nth-child(6)::before {
  animation-delay: calc(var(--uib-speed) * -0.375);
}

.dot-spinner__dot:nth-child(7) {
  transform: rotate(270deg);
}

.dot-spinner__dot:nth-child(7)::before {
  animation-delay: calc(var(--uib-speed) * -0.25);
}

.dot-spinner__dot:nth-child(8) {
  transform: rotate(315deg);
}

.dot-spinner__dot:nth-child(8)::before {
  animation-delay: calc(var(--uib-speed) * -0.125);
}

@keyframes pulse0112 {

  0%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

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

/* 最先状态 */
.starting {
  width: 18px;
  height: 18px;
  border: 4px double;
  border-color: #43cec7 transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spin13213 2s linear infinite;
}

.starting div {
  width: 50%;
  height: 50%;
  background-color: #43cec7;
  border-radius: 50%;
}

@keyframes spin13213 {
  to {
    transform: rotate(360deg);
  }
}

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

  60% {
    background-position: 90px;
  }

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

: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);
}<!--耗时1764245935.2667秒-->