@import url(./normalize.css);

:root {
  --mainColor: #aa01bd;
  --subColor: #5328a5;
  --darkSubColor: #e10662;
  --fontColor: #293c77;
  --maxWidth: 1140px;
  --subMaxWidth: 950px;
  --infoColor: #dae2ff;
  --sucColor: #e3fdf7;
  --warnColor: #ff5722;
  --dangerColor: #ffdde9;
}

* {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1.35;
}
a {
  text-decoration: none;
}
img {
  vertical-align: bottom;
}
*::-webkit-scrollbar {
  width: 5px;
}
*::-webkit-scrollbar-track {
  background-color: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #b9b9b9;
}

.page {
  max-width: var(--maxWidth);
  margin: 0 auto;
  padding-top: 1px;
  min-height: calc(100vh - 120px);
}

.common-btn,
.common-btn2 {
  background-color: var(--fontColor);
  font-size: 30px;
  color: #fff;
  outline: none;
  border-radius: 999px;
  padding: 10px 30px;
  border: none;
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.common-btn a,
.common-btn2 a {
  color: #fff;
  text-decoration: none;
}
.common-btn:hover {
  background-color: var(--mainColor);
}
.common-btn2 {
  background-color: #7105ff;
}
.common-btn2:hover {
  background-color: #ff8900;
}
/* .common-btn:disabled {
  background-color: #b20040;
  cursor: not-allowed;
}
.common-btn:disabled:hover {
  background-color: #b20040;
  text-decoration: unset;
} */

.advert-wrap .advert p {
  font-size: 12px;
  text-align: center;
  color: #686868;
}
@media screen and (max-width: 640px) {
  .advert-wrap .advert p {
    margin: 5px 0;
  }
}
.advert-wrap .advert .ads-ins-wrap {
  height: 90px;
  min-height: 90px;
  background-color: #f2f2f2;
}
@media screen and (max-width: 640px) {
  .advert-wrap .advert .ads-ins-wrap {
    height: 280px;
    min-height: 280px;
  }
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle {
  width: 100%;
  display: inline-block;
  text-align: center;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle a {
  display: none !important;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] {
  height: 100%;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] a {
  display: block !important;
}

.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] a img {
  max-width: 728px;
}
.advert-wrap .advert .ads-ins-wrap .adsbygoogle[data-ad-status='unfilled'] > div {
  display: none !important;
}

.hide {
  display: none !important;
}

.footer-bar .link-list {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
}
.footer-bar a {
  color: #fff;
  text-decoration: none;
  &:hover {
    text-decoration: underline;
  }
}
.footer-bar span {
  margin: 0 10px;
}

.col-1 {
  width: 4.16667%;
}
.col-2 {
  width: 8.33333%;
}
.col-3 {
  width: 12.5%;
}
.col-4 {
  width: 16.66667%;
}
.col-5 {
  width: 20.83333%;
}
.col-6 {
  width: 25%;
}
.col-7 {
  width: 29.16667%;
}
.col-8 {
  width: 33.33333%;
}
.col-9 {
  width: 37.5%;
}
.col-10 {
  width: 41.66667%;
}
.col-11 {
  width: 45.83333%;
}
.col-12 {
  width: 50%;
}
.col-13 {
  width: 54.16667%;
}
.col-14 {
  width: 58.33333%;
}
.col-15 {
  width: 62.5%;
}
.col-16 {
  width: 66.66667%;
}
.col-17 {
  width: 70.83333%;
}
.col-18 {
  width: 75%;
}
.col-19 {
  width: 79.16667%;
}
.col-20 {
  width: 83.33333%;
}
.col-21 {
  width: 87.5%;
}
.col-22 {
  width: 91.66667%;
}
.col-23 {
  width: 95.83333%;
}
.col-24 {
  width: 100%;
}

.rotate {
  animation: rotate 2s linear infinite; /* 2秒完成一次旋转, 线性速度, 无限次重复 */
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 640px) {
  .hide-on-mob {
    display: none !important;
  }
  .page {
    min-height: calc(100vh - 86px);
  }
  .you-may-like {
    max-width: 100vw;
    overflow: hidden;
  }
}
@media screen and (min-width: calc(640px + 1px)) {
  .hide-on-pc {
    display: none !important;
  }
}
