@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #cccccc;
}

::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555555;
}

@font-face {
  font-family: "HarmonyOS_Sans";
  src: url("../font/HarmonyOS_Sans_SC_Regular.woff2") format("woff2"), url("../font/HarmonyOS_Sans_SC_Regular.woff") format("woff");
}
@font-face {
  font-family: "iconfont";
  src: url("./font-icon/iconfont.woff2") format("woff2"), url("./font-icon/iconfont.woff") format("woff");
}
body {
  font-size: 14px;
  font-family: "Helvetica", "Arial", "PingFangSC-Regular", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", "Microsoft JhengHei";
  margin-top: 70px;
  color: #1d2129;
  font-weight: 400;
}

a {
  color: #1d2129;
  text-decoration: none;
}
a:hover {
  color: #165dff;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

button,
input,
textarea {
  outline: none;
  border: 1px solid #f2f3f5;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 70px;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .wrap .logo {
  margin-left: -5px;
}
.header .wrap .logo .links {
  display: block;
  width: 100%;
  height: 100%;
}
.header .wrap .logo .links .picture {
  width: auto;
  height: 35px;
}
.header .wrap .menu .list {
  display: flex;
}
.header .wrap .menu .list .item .link {
  display: block;
  font-size: 15px;
  height: 70px;
  line-height: 70px;
  padding: 0 12px;
  text-align: center;
  color: #272e3b;
  transition: color 0.3s;
  font-weight: 500;
}
.header .wrap .menu .list .item i {
  margin-right: 3px;
}
.header .wrap .menu .list .item:nth-child(7n+1) i {
  color: #4080ff;
}
.header .wrap .menu .list .item:nth-child(7n+1):hover .link {
  color: #4080ff;
}
.header .wrap .menu .list .item:nth-child(7n+2) i {
  color: #ff7d00;
}
.header .wrap .menu .list .item:nth-child(7n+2):hover .link {
  color: #ff7d00;
}
.header .wrap .menu .list .item:nth-child(7n+3) i {
  color: #4cd263;
}
.header .wrap .menu .list .item:nth-child(7n+3):hover .link {
  color: #4cd263;
}
.header .wrap .menu .list .item:nth-child(7n+4) i {
  color: #a871e3;
}
.header .wrap .menu .list .item:nth-child(7n+4):hover .link {
  color: #a871e3;
}
.header .wrap .menu .list .item:nth-child(7n+5) i {
  color: #f7ba1e;
}
.header .wrap .menu .list .item:nth-child(7n+5):hover .link {
  color: #f7ba1e;
}
.header .wrap .menu .list .item:nth-child(7n+6) i {
  color: #14c9c9;
}
.header .wrap .menu .list .item:nth-child(7n+6):hover .link {
  color: #14c9c9;
}
.header .wrap .menu .list .item:nth-child(7n+7) i {
  color: #f979b7;
}
.header .wrap .menu .list .item:nth-child(7n+7):hover .link {
  color: #f979b7;
}
.header .wrap .menu .list .multistage {
  position: relative;
}
.header .wrap .menu .list .multistage .link::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  position: relative;
  display: inline-block;
  left: 5px;
  font-size: 10px;
  font-weight: bold;
}
.header .wrap .menu .list .multistage:hover .link::after {
  transform: rotateY(180deg);
}
.header .wrap .menu .list .multistage:last-child {
  margin-right: 0;
}
.header .wrap .menu .list .multistage .wrap {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: translateX(-50%);
  display: block;
  max-width: 125px;
  padding: 10px;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #165dff;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
}
.header .wrap .menu .list .multistage .wrap::before {
  content: "";
  display: block;
  border-bottom: 8px solid #165dff;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 0%);
}
.header .wrap .menu .list .multistage .wrap a {
  color: #4e5969;
  display: block;
  width: 105px;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 5px;
  font-size: 13px;
}
.header .wrap .menu .list .multistage .wrap a:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.header .wrap .menu .list .multistage:hover .wrap {
  opacity: 1;
  top: 68px;
  visibility: inherit;
  transition: 0.3s;
}
.header .wrap .menu .list .multistage:hover .wrap a:hover {
  color: #ffffff;
  background-color: #165dff;
}
.header .wrap .right {
  display: flex;
  align-items: center;
  margin-right: 3px;
  height: 70px;
}
.header .wrap .right .search button {
  position: relative;
  display: flex;
  width: 80px;
  height: 32px;
  border-radius: 50px;
  text-align: center;
  color: #165dff;
  background-color: rgba(22, 92, 255, 0.05);
  border: 1px solid rgba(22, 92, 255, 0.1);
  justify-content: center;
  align-items: center;
  transition: 0.1s;
}
.header .wrap .right .search button::before {
  content: "\e663";
  font-family: "iconfont";
  margin-right: 3px;
  font-size: 12px;
}
.header .wrap .right .search button:hover {
  color: #FFFFFF;
  background-color: #165dff;
  border: 1px solid #165dff;
  transition: 0.3s;
}
.header .wrap .right .m-btn {
  display: none;
  margin-left: 15px;
}

.menu-m {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 199;
  display: flex;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
          backdrop-filter: saturate(180%) blur(10px);
}
.menu-m.open {
  opacity: 1;
  visibility: inherit;
}
.menu-m.open .close {
  transform: translate(-1px, 0px);
}
.menu-m.open .wrap {
  transform: translate(0%, 0%);
}
.menu-m .close {
  position: absolute;
  top: 20px;
  left: 275px;
  z-index: 998;
  transform: translate(-500px, 0px);
  transition: 0.3s;
}
.menu-m .close button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  color: #c0c4cc;
  background-color: #ffffff;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 0 5px 5px 0;
}
.menu-m .close button::before {
  content: "\e6af";
  font-family: "iconfont";
  font-size: 22px;
}
.menu-m .close img {
  width: 38px;
  height: 36px;
}
.menu-m .wrap {
  position: absolute;
  width: 275px;
  height: 100%;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  transition: 0.3s;
  transform: translate(-100%, 0%);
}
.menu-m .wrap .list {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-radius: 4px;
}
.menu-m .wrap .list .item {
  list-style-type: none;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.menu-m .wrap .list .item i {
  font-style: normal;
  font-family: "bootstrap-icons";
  margin-right: 3px;
  font-size: 95%;
}
.menu-m .wrap .list .item:nth-child(6n+1) i {
  color: #f47983;
}
.menu-m .wrap .list .item:nth-child(6n+2) i {
  color: #00bc12;
}
.menu-m .wrap .list .item:nth-child(6n+3) i {
  color: #44cef6;
}
.menu-m .wrap .list .item:nth-child(6n+4) i {
  color: #e9bb1d;
}
.menu-m .wrap .list .item:nth-child(6n+5) i {
  color: #cca4e3;
}
.menu-m .wrap .list .item:nth-child(6) i {
  color: #bddd22;
}
.menu-m .wrap .list .item .link {
  display: block;
  color: #4e5969;
  font-size: 15px;
  line-height: 50px;
  padding-left: 15px;
  letter-spacing: 2px;
  border-bottom: 1px solid #eeeeee;
}
.menu-m .wrap .list .item .link:focus {
  color: #165dff;
}
.menu-m .wrap .list .multistage {
  position: relative;
}
.menu-m .wrap .list .multistage::before {
  content: "\f282";
  font-family: "bootstrap-icons";
  position: absolute;
  color: #c0c4cc;
  top: 25px;
  right: 0;
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  font-weight: bold;
  transform: translate(0%, -50%);
  border-left: 1px solid #eeeeee;
}
.menu-m .wrap .list .body {
  display: none;
  padding: 10px;
  background-color: #f2f3f5;
}
.menu-m .wrap .list .body a {
  display: block;
  color: #555555;
  width: 100%;
  height: 38px;
  line-height: 38px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 4px;
}
.menu-m .wrap .list .body a:last-child {
  margin-bottom: 0px;
}
.menu-m .wrap.multistage.active .body {
  display: block;
}

.banner {
  padding: 24px 0;
  position: relative;
  background-color: #165dff;
  background-image: url("../img/head-bg.png");
  background-repeat: repeat-x;
  background-size: auto 550px;
  animation: scrollBackground 10s linear infinite;
}
.banner .wrap {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
}
.banner .wrap img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .wrap li:nth-child(1) a {
  left: 20px;
  background: url(../img/banner_arrow.png) no-repeat left top;
}
.banner .wrap li:nth-child(2) a {
  right: 20px;
  background: url(../img/banner_arrow.png) no-repeat right bottom;
}
.banner .wrap li a {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  top: 50%;
  background-size: cover !important;
  transform: translate(0%, -50%);
  z-index: 9;
}
.banner .wrap .carousel-inner .carousel-item {
  position: relative;
  --bs-aspect-ratio: 36.5%;
}
.banner .wrap .carousel-indicators {
  z-index: 9;
}
.banner .wrap .carousel-indicators [data-bs-target] {
  width: 15px;
  height: 15px;
  margin-right: 10px;
  transform: rotate(45deg);
}

@keyframes scrollBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.website-notice {
  padding: 16px 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(22, 92, 255, 0.1);
}
.website-notice .wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.website-notice .wrap .icon {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.website-notice .wrap .icon img {
  width: 100%;
  height: 100%;
  background: #ffffff url(../svg/notice.svg) no-repeat center/cover;
}
.website-notice .wrap .content {
  width: calc(100% - 150px);
}
.website-notice .wrap .content a {
  color: #ff7d00;
  font-size: 14px;
  padding: 0 15px;
  height: 40px;
  line-height: 40px;
  border-radius: 5px 0 0 5px;
  font-weight: 500;
  background: linear-gradient(90deg, #fff7e8 30%, #ffffff 100%);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
}
.website-notice .wrap .button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.website-notice .wrap .button a {
  display: block;
  width: 100px;
  height: 35px;
  line-height: 33px;
  text-align: center;
  border: 1px solid #ff7d00;
  color: #ff7d00;
  border-radius: 4px;
  transition: 0.3s;
}
.website-notice .wrap .button a:hover {
  color: #ffffff;
  background-color: #ff7d00;
}

.rssy-layout {
  padding-top: 30px;
  position: relative;
}

.boutique {
  margin-bottom: 30px;
}
.boutique .head {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.boutique .head .title {
  margin-right: 25px;
}
.boutique .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.boutique .head .title h5::before, .boutique .head .title h5::after {
  font-family: "bootstrap-icons";
  font-size: 75%;
}
.boutique .head .title h5::before {
  content: "\f284";
  margin-right: 8px;
}
.boutique .head .title h5::after {
  content: "\f285";
  margin-left: 8px;
}
.boutique .head .sort {
  display: flex;
}
.boutique .head .sort .active {
  color: #ffffff;
  background-color: #165dff;
}
.boutique .head .sort button {
  display: block;
  padding: 4px 10px;
  text-align: center;
  border-radius: 4px;
  margin-right: 10px;
  background-color: #e4e9f8;
  transition: 0.1s;
}
.boutique .head .sort button:hover {
  color: #ffffff;
  background-color: #165dff;
  transition: 0.3s;
}
.boutique .head .sort button:last-child {
  margin-right: 0;
}
.boutique .wrap .item {
  padding: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.boutique .wrap .item::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  -webkit-backdrop-filter: saturate(200%) blur(30px);
          backdrop-filter: saturate(200%) blur(30px);
  background-color: rgba(255, 255, 255, 0.5);
}
.boutique .wrap .item .thumbnail {
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  --bs-aspect-ratio: 65%;
  background-color: #f2f3f5;
}
.boutique .wrap .item .thumbnail::after {
  content: "\f42b";
  font-family: "bootstrap-icons";
  opacity: 0.1;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.boutique .wrap .item .thumbnail:hover::before {
  font-size: 68px;
}
.boutique .wrap .item .thumbnail a {
  z-index: 1;
}
.boutique .wrap .item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s;
}
.boutique .wrap .item:hover .thumbnail img {
  width: calc(100% + 15px);
  height: calc(100% + 15px);
  transition: 0.3s;
}
.boutique .wrap .item .body {
  position: relative;
  background-color: #ffffff;
  padding: 12px;
  border-radius: 4px;
}
.boutique .wrap .item .body .title {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}
.boutique .wrap .item .body .title a {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.3s;
}
.boutique .wrap .item .body .title::before {
  content: "\f7f6";
  display: inline-block;
  font-family: "bootstrap-icons";
  font-style: normal;
  color: #ff4b3f;
  font-size: 110%;
  margin-right: 3px;
}
.boutique .wrap .item .body .data {
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.boutique .wrap .item .body .data span {
  background-color: #e4e9f8;
  padding: 4px 8px;
  border-radius: 3px;
  display: flex;
  font-size: 12px;
  margin-right: 5px;
}
.boutique .wrap .item .body .data span:nth-child(1) {
  background-color: #e8f3ff;
  color: #165dff;
}
.boutique .wrap .item .body .data span:nth-child(1)::before {
  content: "\f293";
}
.boutique .wrap .item .body .data span:nth-child(2) {
  background-color: #fff7e8;
  color: #ff7d00;
}
.boutique .wrap .item .body .data span:nth-child(2)::before {
  content: "\f341";
}
.boutique .wrap .item .body .data span:nth-child(3) {
  background-color: #e8ffea;
  color: #00b42a;
}
.boutique .wrap .item .body .data span:nth-child(3)::before {
  content: "\f24a";
}
.boutique .wrap .item .body .data span:nth-child(4) {
  background-color: #FFECE8;
  color: #F53F3F;
}
.boutique .wrap .item .body .data span:nth-child(4)::before {
  content: "\f407";
}
.boutique .wrap .item .body .data span::before {
  content: "";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 3px;
}
.boutique .wrap .item .body .data span:last-child {
  margin-right: 0px;
}
.boutique .wrap .item .body .synopsis p {
  color: #86909c;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}

.hot-columns {
  margin-bottom: 30px;
}
.hot-columns .head {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.hot-columns .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.hot-columns .head .title h5::before, .hot-columns .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.hot-columns .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.hot-columns .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.hot-columns .wrap .item {
  background-color: #fafafc;
  border-radius: 4px;
  transition: transform 0.3s;
}
.hot-columns .wrap .item:hover {
  transform: translateY(-3px);
}
.hot-columns .wrap .item .icon {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background-color: #165dff;
  border-radius: 4px;
  margin-top: 5px;
}
.hot-columns .wrap .item .icon i {
  font-size: 24px;
  color: #ffffff;
}
.hot-columns .wrap .item .icon i::before {
  line-height: inherit;
}
.hot-columns .wrap .item .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  transition: 0.3s;
}
.hot-columns .wrap .item .title {
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 2px;
  transition: 0.3s;
}
.hot-columns .wrap .item .data {
  color: #86909c;
  font-size: 13px;
}
.hot-columns .wrap .item .data em {
  font-style: normal;
  margin-left: 8px;
}
.hot-columns .wrap :nth-child(1) .item {
  background-color: rgba(22, 92, 255, 0.1);
}
.hot-columns .wrap :nth-child(1) .item .icon {
  background-color: #165dff;
}
.hot-columns .wrap :nth-child(1) .item:hover .title {
  color: #165dff;
}
.hot-columns .wrap :nth-child(2) .item {
  background-color: rgba(255, 123, 0, 0.1);
}
.hot-columns .wrap :nth-child(2) .item .icon {
  background-color: #ff7d00;
}
.hot-columns .wrap :nth-child(2) .item:hover .title {
  color: #ff7d00;
}
.hot-columns .wrap :nth-child(3) .item {
  background-color: rgba(76, 210, 98, 0.1);
}
.hot-columns .wrap :nth-child(3) .item .icon {
  background-color: #4cd263;
}
.hot-columns .wrap :nth-child(3) .item:hover .title {
  color: #4cd263;
}
.hot-columns .wrap :nth-child(4) .item {
  background-color: rgba(141, 78, 218, 0.1);
}
.hot-columns .wrap :nth-child(4) .item .icon {
  background-color: #8d4eda;
}
.hot-columns .wrap :nth-child(4) .item:hover .title {
  color: #8d4eda;
}
.hot-columns .wrap :nth-child(5) .item {
  background-color: rgba(20, 201, 201, 0.1);
}
.hot-columns .wrap :nth-child(5) .item .icon {
  background-color: #14c9c9;
}
.hot-columns .wrap :nth-child(5) .item:hover .title {
  color: #14c9c9;
}
.hot-columns .wrap :nth-child(6) .item {
  background-color: rgba(247, 186, 30, 0.1);
}
.hot-columns .wrap :nth-child(6) .item .icon {
  background-color: #f7ba1e;
}
.hot-columns .wrap :nth-child(6) .item:hover .title {
  color: #f7ba1e;
}
.hot-columns .wrap :nth-child(n+7) .item {
  display: none !important;
}

.article-list {
  margin-bottom: 30px;
}
.article-list .head {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.article-list .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.article-list .head .title h5::before, .article-list .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.article-list .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.article-list .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.article-list .wrap .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 4px;
  margin: -15px 0 10px -15px;
  padding: 15px;
  transition: 0.3s;
  position: relative;
}
.article-list .wrap .item:hover {
  background-color: #f7f8fa;
}
.article-list .wrap .item:hover .one .thumbnail img {
  transform: scale(1.05);
}
.article-list .wrap .item:hover .two .title a {
  color: #165dff;
}
.article-list .wrap .item:hover .two .data span {
  background-color: #e5e6eb;
}
.article-list .wrap .item .one .thumbnail {
  width: 225px;
  height: 155px;
  overflow: hidden;
  border-radius: 4px;
  margin-right: 15px;
  background-color: #f2f3f5;
  position: relative;
}
.article-list .wrap .item .one .thumbnail::before {
  content: "\f42b";
  font-family: "bootstrap-icons";
  opacity: 0.1;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.article-list .wrap .item .one .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
  position: inherit;
}
.article-list .wrap .item .two .title {
  margin-bottom: 12px;
  display: flex;
}
.article-list .wrap .item .two .title .title-badge {
  position: relative;
  top: -2px;
  font-size: 80%;
  border-radius: 4px;
  color: #ffffff;
  margin-right: 5px;
  padding: 3px 8px;
  font-weight: normal;
  background-color: #f53f3f;
  font-size: 12px;
}
.article-list .wrap .item .two .title a {
  font-size: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: 0.3s;
  font-weight: 500;
}
.article-list .wrap .item .two .data {
  display: flex;
  margin-bottom: 15px;
}
.article-list .wrap .item .two .data span {
  display: flex;
  padding: 4px 10px;
  font-size: 12px;
  color: #86909c;
  background-color: #f2f3f5;
  margin-right: 8px;
  border-radius: 3px;
  transition: 0.3s;
}
.article-list .wrap .item .two .data span a {
  color: inherit;
  z-index: 9;
}
.article-list .wrap .item .two .data span::before {
  content: "";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.article-list .wrap .item .two .data span:nth-child(1) {
  background-color: rgba(22, 92, 255, 0.1);
  color: #165dff;
}
.article-list .wrap .item .two .data span:nth-child(1)::before {
  content: "\f865";
}
.article-list .wrap .item .two .data span:nth-child(1):hover {
  background-color: #165dff;
  color: #ffffff;
}
.article-list .wrap .item .two .data span:nth-child(2)::before {
  content: "\f293";
}
.article-list .wrap .item .two .data span:nth-child(3)::before {
  content: "\f341";
}
.article-list .wrap .item .two .data span:nth-child(4)::before {
  content: "\f25f";
}
.article-list .wrap .item .two .synopsis {
  margin-bottom: 12px;
}
.article-list .wrap .item .two .synopsis p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0;
  color: #86909c;
  height: 42px;
}
.article-list .wrap .item .two .tag ul {
  display: flex;
}
.article-list .wrap .item .two .tag ul li {
  margin-right: 15px;
}
.article-list .wrap .item .two .tag ul li a {
  color: #4e5969;
  position: relative;
  z-index: 9;
}
.article-list .wrap .item .two .tag ul li a:hover {
  color: #165dff;
}
.article-list .wrap .item .two .tag ul li a::before {
  content: "#";
  margin-right: 3px;
}
.article-list .loading {
  padding-top: 10px;
}
.article-list .loading .animloader {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  cursor: wait;
  overflow: hidden;
  animation: animloader 1s linear infinite;
}
.article-list .loading .animloader .left span {
  display: block;
  width: 225px;
  height: 155px;
  background-color: #f2f3f5;
  border-radius: 4px;
  position: relative;
}
.article-list .loading .animloader .left span::before {
  content: "\f42b";
  font-family: "bootstrap-icons";
  opacity: 0.1;
  font-size: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.article-list .loading .animloader .right {
  width: calc(100% - 240px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article-list .loading .animloader .right span {
  display: block;
  width: 100%;
  height: 25px;
  background-color: #f2f3f5;
  border-radius: 4px;
}
.article-list .loading .animloader .right span:nth-child(1) {
  width: 75%;
}
.article-list .loading .animloader .right span:nth-child(2) {
  width: 35%;
}
.article-list .loading .animloader .right span:nth-child(3) {
  width: 100%;
}
.article-list .loading .animloader .right span:nth-child(4) {
  width: 50%;
}
.article-list .loading .button {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.article-list .loading .button button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  background-color: rgba(22, 92, 255, 0.1);
  color: #165dff;
  border-radius: 4px;
  transition: 0.3s;
}
.article-list .loading .button button:hover {
  background-color: #165dff;
  color: #ffffff;
}
.article-list .loading .button button::before {
  content: "\f57c";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.article-list .loading .button button::after {
  content: "\f57c";
  font-family: "bootstrap-icons";
  margin-left: 5px;
}

@keyframes animloader {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.list-position {
  padding: 15px 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(22, 92, 255, 0.1);
}
.list-position .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-position .wrap .left {
  display: flex;
  align-items: center;
}
.list-position .wrap .left .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 5px;
}
.list-position .wrap .left .icon img {
  width: 100%;
  height: 100%;
}
.list-position .wrap .left .list {
  display: flex;
}
.list-position .wrap .left .list li {
  font-size: 15px;
  color: #86909c;
}
.list-position .wrap .left .list li a {
  color: #4e5969;
  margin-right: 20px;
  transition: 0.3s;
}
.list-position .wrap .left .list li a:hover {
  color: #165dff;
}
.list-position .wrap .left .list li a::after {
  content: "\f285";
  font-family: "bootstrap-icons";
  font-size: 80%;
  margin-left: 3px;
  margin-right: 5px;
}
.list-position .wrap .left .list li a:last-child {
  margin-right: 0;
}
.list-position .wrap .left .list li em {
  color: #f53f3f;
  font-style: normal;
  margin: 0 5px;
  font-weight: 600;
}
.list-position .wrap .left .list li.active a {
  color: #165dff;
}
.list-position .wrap .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-position .wrap .right .icon {
  display: block;
  width: 30px;
  height: 25px;
  margin-right: 5px;
}
.list-position .wrap .right .icon img {
  width: 100%;
  height: 100%;
}
.list-position .wrap .right .popularity {
  color: #4e5969;
}
.list-position .wrap .right .popularity em {
  margin-left: 5px;
  font-style: normal;
  color: #ff7d00;
  font-weight: bold;
}

.pagination-nav {
  margin: 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-nav .list {
  display: flex;
  align-items: center;
}
.pagination-nav .list li {
  margin-right: 8px;
}
.pagination-nav .list li:last-child {
  margin-right: 0;
}
.pagination-nav .list li:hover a {
  background-color: rgba(22, 92, 255, 0.1);
  color: #165dff;
  border: 1px solid #165dff;
}
.pagination-nav .list li a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  border-radius: 4px;
  background-color: #f2f3f5;
  border: 1px solid #f2f3f5;
  transition: 0.3s;
}
.pagination-nav .list li a i {
  font-family: "bootstrap-icons";
  font-style: normal;
  font-weight: bold;
}
.pagination-nav .list .active a,
.pagination-nav .list .active a:hover {
  background-color: #165dff !important;
  border: 1px solid #165dff !important;
  color: #ffffff !important;
  pointer-events: none !important;
}
.pagination-nav .list .disabled {
  display: none;
}
.pagination-nav .list .prohibit a,
.pagination-nav .list .prohibit a:hover,
.pagination-nav .list .more a,
.pagination-nav .list .more a:hover {
  pointer-events: none !important;
  background-color: #e5e6eb !important;
  border: 1px solid #e5e6eb !important;
  color: #86909c !important;
}

.hot-label {
  margin-bottom: 30px;
}
.hot-label .head {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
}
.hot-label .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.hot-label .head .title h5::before, .hot-label .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.hot-label .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.hot-label .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.hot-label .wrap .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f7f8fa;
  padding: 25px 10px;
  border-radius: 4px;
  transition: 0.3s;
}
.hot-label .wrap .item:hover {
  background-color: #f2f3f5;
  transform: translateY(-2px);
}
.hot-label .wrap .item .left {
  margin-right: 10px;
}
.hot-label .wrap .item .left span {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 43px;
  text-align: center;
  background-color: #165dff;
  border-radius: 4px;
  color: #ffffff;
}
.hot-label .wrap .item .left span:nth-child(1) i::before {
  content: "\f254";
  font-family: "bootstrap-icons";
  font-style: normal;
  font-size: 24px;
}
.hot-label .wrap .item .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hot-label .wrap .item .right span:nth-child(1) {
  margin-bottom: 3px;
}
.hot-label .wrap .item .right span:nth-child(1) a {
  font-size: 16px;
  transition: 0.3s;
}
.hot-label .wrap .item .right span:nth-child(2) {
  font-size: 12px;
  color: #86909c;
}
.hot-label .wrap .item .right span:nth-child(2) em {
  font-style: normal;
  margin: 0 3px;
}
.hot-label .wrap :nth-child(7n+1) .item .left span {
  background-color: #3491fa;
}
.hot-label .wrap :nth-child(7n+1) .item:hover .right a {
  color: #3491fa;
}
.hot-label .wrap :nth-child(7n+2) .item .left span {
  background-color: #f7ba1e;
}
.hot-label .wrap :nth-child(7n+2) .item:hover .right a {
  color: #f7ba1e;
}
.hot-label .wrap :nth-child(7n+3) .item .left span {
  background-color: #f76560;
}
.hot-label .wrap :nth-child(7n+3) .item:hover .right a {
  color: #f76560;
}
.hot-label .wrap :nth-child(7n+4) .item .left span {
  background-color: #23c343;
}
.hot-label .wrap :nth-child(7n+4) .item:hover .right a {
  color: #23c343;
}
.hot-label .wrap :nth-child(7n+5) .item .left span {
  background-color: #a871e3;
}
.hot-label .wrap :nth-child(7n+5) .item:hover .right a {
  color: #a871e3;
}
.hot-label .wrap :nth-child(7n+6) .item .left span {
  background-color: #14c9c9;
}
.hot-label .wrap :nth-child(7n+6) .item:hover .right a {
  color: #14c9c9;
}
.hot-label .wrap :nth-child(7n+7) .item .left span {
  background-color: #e865df;
}
.hot-label .wrap :nth-child(7n+7) .item:hover .right a {
  color: #e865df;
}

.sidebar .sidebar-box {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.sidebar .sidebar-box .title {
  padding-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-box .title::before {
  content: "";
  font-family: "iconfont";
  font-size: 16px;
  margin-right: 5px;
  width: 20px;
  color: #4e5969;
}
.sidebar .sidebar-box .title h5 {
  font-size: 16px;
  color: #272e3b;
  margin-bottom: 0;
  font-weight: 600;
}
.sidebar .sidebar-box .title h5::before, .sidebar .sidebar-box .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.sidebar .sidebar-box .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.sidebar .sidebar-box .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.sidebar .sidebar-box .body {
  position: relative;
  border-left: 2px solid #f2f3f5;
  padding-left: 12px;
}
.sidebar .sidebar-about .title {
  display: none !important;
}
.sidebar .sidebar-about .body {
  padding: 0;
  overflow: hidden;
  border-radius: 5px;
  background-color: #f7f8fa;
  border-left: none;
}
.sidebar .sidebar-about .body .information {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
}
.sidebar .sidebar-about .body .information .bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 200px;
}
.sidebar .sidebar-about .body .information .bg::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -5px;
  bottom: -5px;
  right: -5px;
  -webkit-backdrop-filter: saturate(150%) blur(2px);
          backdrop-filter: saturate(150%) blur(2px);
  background-image: linear-gradient(to bottom, transparent 0%, #f7f8fa 95%);
}
.sidebar .sidebar-about .body .information .portrait {
  margin-top: -150px;
  position: relative;
}
.sidebar .sidebar-about .body .information .portrait img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  border: 5px solid #ffffff;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar .sidebar-about .body .information .portrait::after {
  content: "\f66a";
  display: inline-block;
  font-family: "bootstrap-icons";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  line-height: 1.7;
  font-size: 16px;
  text-align: center;
  z-index: 1;
  color: #ffffff;
  font-weight: normal;
  border-radius: 100%;
  border: 3px solid #ffffff;
  background-image: -webkit-linear-gradient(0deg, #f7ba1e 0%, #f53f3f 100%);
}
.sidebar .sidebar-about .body .information .content {
  margin: 25px 20px 10px 20px;
  text-align: center;
  position: relative;
}
.sidebar .sidebar-about .body .information .content h6 {
  font-size: 18px;
  color: #4e5969;
  font-weight: 600;
}
.sidebar .sidebar-about .body .information .content span {
  color: #86909c;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.sidebar .sidebar-about .body .medium {
  padding: 10px 15px 0px 15px;
}
.sidebar .sidebar-about .body .medium ul {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.sidebar .sidebar-about .body .medium ul li {
  display: flex;
  justify-content: center;
  width: calc(20% - 3px);
  margin-bottom: 10px;
}
.sidebar .sidebar-about .body .medium ul li a {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  opacity: 0.75;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.sidebar .sidebar-about .body .medium ul li a:hover {
  opacity: 1;
}
.sidebar .sidebar-about .body .medium ul li a:hover span {
  opacity: 1;
  visibility: inherit;
  top: 45px;
  transition: 0.3s;
}
.sidebar .sidebar-about .body .medium ul li span {
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  display: block;
  width: 155px;
  padding: 10px;
  border-radius: 4px;
  background-color: #272e3b;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #c9cdd4;
  opacity: 0;
  visibility: hidden;
  transition: 0.1s;
  z-index: 9;
}
.sidebar .sidebar-about .body .medium ul li span::before {
  content: "";
  display: block;
  border-bottom: 12px solid transparent;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
}
.sidebar .sidebar-about .body .medium ul li span em {
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}
.sidebar .sidebar-about .body .medium ul li span img {
  width: 100%;
  border-radius: 4px;
  border: 3px solid #ffffff;
}
.sidebar .sidebar-about .body .medium ul li:nth-child(1) span, .sidebar .sidebar-about .body .medium ul li:nth-child(6) span {
  left: 0;
  transform: translateX(0);
}
.sidebar .sidebar-about .body .medium ul li:nth-child(5) span, .sidebar .sidebar-about .body .medium ul li:last-child span {
  left: 0;
  transform: translateX(-113px);
}
.sidebar .sidebar-about .body .medium ul li .icon-txqq {
  background-image: url(../img/icon/icon-qq.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-weixin {
  background-image: url(../img/icon/icon-weixin.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-douyin {
  background-image: url(../img/icon/icon-douyin.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-weibo {
  background-image: url(../img/icon/icon-weibo.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-bili {
  background-image: url(../img/icon/icon-bili.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-gitee {
  background-image: url(../img/icon/icon-gitee.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-zhihu {
  background-image: url(../img/icon/icon-zhihu.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-wxggh {
  background-image: url(../img/icon/icon-wxggh.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-mail {
  background-image: url(../img/icon/icon-mail.png);
}
.sidebar .sidebar-about .body .medium ul li .icon-github {
  background-image: url(../img/icon/icon-github.png);
}
.sidebar .sidebar-about .body .data {
  padding: 10px 15px 15px 15px;
}
.sidebar .sidebar-about .body .data ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: -10px;
}
.sidebar .sidebar-about .body .data ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #f2f3f5;
  width: calc(50% - 5px);
  border-radius: 4px;
  margin-bottom: 10px;
  padding: 15px 0;
}
.sidebar .sidebar-about .body .data ul li span {
  color: #86909c;
  margin-bottom: 5px;
}
.sidebar .sidebar-about .body .data ul li em {
  font-style: normal;
  font-size: 18px;
  color: #4e5969;
}
.sidebar .sidebar-search .title {
  display: none;
}
.sidebar .sidebar-search .title::before {
  content: "\e82e";
  color: #165dff;
}
.sidebar .sidebar-search .body {
  padding: 0;
  border-left: none;
}
.sidebar .sidebar-search .body form {
  display: flex;
  padding-top: 1px;
}
.sidebar .sidebar-search .body form input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  width: calc(100% - 40px);
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #165dff;
  padding-left: 10px;
  border-radius: 5px 0 0 5px;
}
.sidebar .sidebar-search .body form input::-moz-placeholder {
  color: #c9cdd4;
}
.sidebar .sidebar-search .body form input::placeholder {
  color: #c9cdd4;
}
.sidebar .sidebar-search .body form input:focus-visible::-moz-placeholder {
  opacity: 0;
}
.sidebar .sidebar-search .body form input:focus-visible::placeholder {
  opacity: 0;
}
.sidebar .sidebar-search .body form button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: #165dff;
  border: 1px solid #165dff;
  color: #ffffff;
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border-radius: 0 5px 5px 0;
}
.sidebar .sidebar-search .body form button::before {
  content: "\e82e";
  font-family: "iconfont";
}
.sidebar .sidebar-column .title::before {
  content: "\e811";
  color: #ff7d00;
}
.sidebar .sidebar-column .body .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -10px;
}
.sidebar .sidebar-column .body .list li {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
.sidebar .sidebar-column .body .list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #f7f8fa;
  padding: 15px 10px;
  border-radius: 4px;
  color: #6b7785;
  transition: 0.3s;
}
.sidebar .sidebar-column .body .list li a:hover {
  background-color: #f2f3f5;
  color: #165dff;
}
.sidebar .sidebar-column .body .list li a span:nth-child(2) {
  color: #a9aeb8;
  font-size: 12px;
  margin-top: 2px;
}
.sidebar .sidebar-tag .title::before {
  content: "\e7f0";
  color: #8d4eda;
}
.sidebar .sidebar-tag .body .list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: -10px;
}
.sidebar .sidebar-tag .body .list .item {
  margin-bottom: 10px;
}
.sidebar .sidebar-tag .body .list .item a {
  display: block;
  padding: 5px 15px;
  border-radius: 4px;
  color: #6b7785;
  transition: 0.3s;
}
.sidebar .sidebar-tag .body .list .item a:hover {
  color: #ffffff !important;
  background-color: #165dff;
}
.sidebar .sidebar-hot .title::before {
  content: "\e6fa";
  color: #f53f3f;
}
.sidebar .sidebar-hot .body .list {
  margin-bottom: -10px;
}
.sidebar .sidebar-hot .body .list .item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  position: relative;
}
.sidebar .sidebar-hot .body .list .item:hover .left .thumbnail img {
  transform: scale(1.2) rotate(5deg);
}
.sidebar .sidebar-hot .body .list .item:hover .right h6 a {
  color: #165dff;
}
.sidebar .sidebar-hot .body .list .item .left {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.sidebar .sidebar-hot .body .list .item .left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
  background-color: #000000;
  border-radius: 0 0 4px 0;
}
.sidebar .sidebar-hot .body .list .item .left .thumbnail {
  width: 85px;
  height: 60px;
  overflow: hidden;
  border-radius: 3px;
}
.sidebar .sidebar-hot .body .list .item .left .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.sidebar .sidebar-hot .body .list .item:nth-child(1) .left::before {
  content: "1";
  background-color: #f53f3f;
}
.sidebar .sidebar-hot .body .list .item:nth-child(2) .left::before {
  content: "2";
  background-color: #cfaf0f;
}
.sidebar .sidebar-hot .body .list .item:nth-child(3) .left::before {
  content: "3";
  background-color: #00b42a;
}
.sidebar .sidebar-hot .body .list .item:nth-child(4) .left::before {
  content: "4";
  background-color: #14c9c9;
}
.sidebar .sidebar-hot .body .list .item:nth-child(5) .left::before {
  content: "5";
  background-color: #702dcd;
}
.sidebar .sidebar-hot .body .list .item:nth-child(n+6) .left::before {
  display: none;
}
.sidebar .sidebar-hot .body .list .item .right {
  margin-left: 10px;
  width: calc(100% - 85px);
}
.sidebar .sidebar-hot .body .list .item .right h6 {
  margin-bottom: 5px;
}
.sidebar .sidebar-hot .body .list .item .right h6 a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  transition: 0.3s;
  color: #4e5969;
  font-size: 14px;
}
.sidebar .sidebar-hot .body .list .item .right .data {
  color: #a9aeb8;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-hot .body .list .item .right .data span::before {
  content: "\f293";
  line-height: 1;
  margin-right: 5px;
  font-size: 80%;
  font-family: "bootstrap-icons";
}
.sidebar .sidebar-new .title::before {
  content: "\eb2e";
  color: #3491fa;
}
.sidebar .sidebar-new .body .list .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.sidebar .sidebar-new .body .list .item:last-child {
  margin-bottom: 0;
}
.sidebar .sidebar-new .body .list .item a {
  display: inline-block;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  position: relative;
  padding-left: 25px;
  transition: 0.3s;
  color: #4e5969;
}
.sidebar .sidebar-new .body .list .item a:hover {
  color: #165dff;
}
.sidebar .sidebar-new .body .list .item a:hover::before {
  color: #165dff;
}
.sidebar .sidebar-new .body .list .item a::before {
  content: "";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 5px;
  position: absolute;
  top: 50%;
  left: 1px;
  font-size: 125%;
  transform: translateY(-50%);
  color: #aaaaaa;
  transition: 0.3s;
}
.sidebar .sidebar-new .body .list .item span {
  display: none;
  width: 55px;
  color: #808080;
}
.sidebar .sidebar-new .body .list .item span::before {
  content: "\f341";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.sidebar .sidebar-new .body .list .item:nth-child(1) a::before {
  content: "\f796";
  color: #e58686;
}
.sidebar .sidebar-new .body .list .item:nth-child(2) a::before {
  content: "\f79c";
  color: #cab55b;
}
.sidebar .sidebar-new .body .list .item:nth-child(3) a::before {
  content: "\f7a2";
  color: #55b858;
}
.sidebar .sidebar-new .body .list .item:nth-child(n+4) a::before {
  content: "\f231";
}
.sidebar .sidebar-comment .title::before {
  content: "\e7ea";
  color: #00b42a;
}
.sidebar .sidebar-comment .body .list .item {
  margin-bottom: 15px;
}
.sidebar .sidebar-comment .body .list .item:last-child {
  margin-bottom: 0;
}
.sidebar .sidebar-comment .body .list .item .head {
  display: flex;
  align-items: center;
}
.sidebar .sidebar-comment .body .list .item .head .portrait {
  margin-right: 8px;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
          clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
  background-color: #f7f8fa;
  padding: 3px;
}
.sidebar .sidebar-comment .body .list .item .head .portrait img {
  width: 40px;
  height: 40px;
  -webkit-clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
          clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
}
.sidebar .sidebar-comment .body .list .item .head .name {
  display: flex;
  flex-direction: column;
}
.sidebar .sidebar-comment .body .list .item .head .name span {
  margin-bottom: 3px;
}
.sidebar .sidebar-comment .body .list .item .head .name em {
  font-size: 12px;
  color: #a9aeb8;
  font-style: normal;
  display: flex;
  align-items: center;
}
.sidebar .sidebar-comment .body .list .item .head .name em::before {
  content: "\f293";
  display: inline-block;
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.sidebar .sidebar-comment .body .list .item .content {
  padding: 0;
}
.sidebar .sidebar-comment .body .list .item .content a {
  display: block;
  padding: 10px;
  margin-top: 10px;
  position: relative;
  border-radius: 4px;
  color: #6b7785;
  background-color: #f7f8fa;
  font-size: 13px;
  transition: 0.3s;
}
.sidebar .sidebar-comment .body .list .item .content a::before {
  content: "";
  display: block;
  border-bottom: 8px solid #f7f8fa;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  left: 16px;
  bottom: 100%;
  transition: 0.3s;
}
.sidebar .sidebar-comment .body .list .item .content a:hover {
  color: #165dff;
  background-color: #e8f3ff;
}
.sidebar .sidebar-comment .body .list .item .content:hover a::before {
  border-bottom: 8px solid #e8f3ff;
}
.sidebar .sidebar-links .title::before {
  content: "\e7eb";
  color: #cfaf0f;
}
.sidebar .sidebar-links .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -10px;
}
.sidebar .sidebar-links .list .item {
  width: calc(50% - 5px);
  margin-bottom: 10px;
}
.sidebar .sidebar-links .list .item a {
  color: #4e5969;
  transition: 0.3s;
}
.sidebar .sidebar-links .list .item a:hover {
  color: #165dff;
}
.sidebar .sidebar-links .list .item img {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  margin-right: 10px;
}
.sidebar .sidebar-file .title::before {
  content: "\eb29";
  color: #0da5aa;
}
.sidebar .sidebar-file .body .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sidebar .sidebar-file .body .list li {
  width: calc(50% - 5px);
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #f7f8fa;
  transition: 0.3s;
}
.sidebar .sidebar-file .body .list li:hover {
  background-color: #f2f3f5;
}
.sidebar .sidebar-file .body .list li:hover span:nth-child(2) b {
  color: #165dff;
}
.sidebar .sidebar-file .body .list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 10px 10px 15px;
}
.sidebar .sidebar-file .body .list li span:nth-child(1) {
  color: #86909c;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.sidebar .sidebar-file .body .list li span:nth-child(2) {
  font-size: 15px;
  color: #86909c;
}
.sidebar .sidebar-file .body .list li span b {
  margin-right: 8px;
  font-style: oblique;
  color: #4e5969;
}
.sidebar .sidebar-file .body .file-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
  border-radius: 4px;
  background-color: #f7f8fa;
  color: #4e5969;
  transition: 0.3s;
}
.sidebar .sidebar-file .body .file-btn a::before {
  content: "\f5f9";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.sidebar .sidebar-file .body .file-btn a:hover {
  color: #165dff;
  background-color: #f2f3f5;
}

.list-header {
  background-color: #165dff;
  background-image: url("../img/head-bg.png");
  background-repeat: repeat-x;
  background-size: auto 550px;
  animation: scrollBackground 10s linear infinite;
}
.list-header .wrap {
  border-radius: 4px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.list-header .wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: url(../img/head-icon.png) no-repeat bottom center/100% auto;
}
.list-header .wrap .content {
  width: calc(100% - 400px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.list-header .wrap .content .icon {
  display: block;
  width: 125px;
  height: 125px;
  border-radius: 4px;
  padding: 5px;
  background-color: #ffffff;
  overflow: hidden;
}
.list-header .wrap .content .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}
.list-header .wrap .content .information {
  width: calc(100% - 150px);
}
.list-header .wrap .content .information h3 {
  color: #ffffff;
  letter-spacing: 2px;
  margin-bottom: 13px;
  display: flex;
  align-items: center;
}
.list-header .wrap .content .information h3 span {
  font-weight: normal;
  font-size: 15px;
  display: flex;
  align-items: center;
}
.list-header .wrap .content .information h3 span::before {
  content: "\f57c";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  font-size: 150%;
}
.list-header .wrap .content .information h3 em {
  font-style: normal;
  margin: 0 5px;
  font-weight: bold;
}
.list-header .wrap .content .information b {
  margin-right: 15px;
}
.list-header .wrap .content .information p {
  margin-bottom: 13px;
  color: #bedaff;
  height: 42px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-header .wrap .content .information .tag a {
  color: #ffffff;
  opacity: 0.8;
  margin-right: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5px 12px;
  transition: 0.3s;
  border-radius: 4px;
}
.list-header .wrap .content .information .tag a:hover {
  opacity: 1;
  background-color: #4080ff;
}
.list-header .wrap .content .information .tag a::before {
  content: "#";
  margin-right: 3px;
}
.list-header .tag-search-content {
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.list-header .tag-search-content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 15px;
}
.list-header .tag-search-content .icon img {
  width: 65px;
  height: 65px;
}
.list-header .tag-search-content .information {
  opacity: 1;
}
.list-header .tag-search-content .information .title h3 {
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 3px;
}
.list-header .tag-search-content .information .data {
  color: #bedaff;
  display: flex;
  align-items: center;
  font-size: 15px;
}
.list-header .tag-search-content .information .data::before {
  content: "\f57c";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  font-size: 150%;
}
.list-header .tag-search-content .information .data em {
  margin: 0 5px;
  font-style: normal;
}

.article-list-empty {
  padding: 250px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 30px;
  background-image: linear-gradient(to bottom, #f7f8fa, transparent);
}
.article-list-empty .body {
  text-align: center;
}
.article-list-empty .body img {
  max-width: 250px;
  margin-bottom: 30px;
}
.article-list-empty .body p {
  color: #a9aeb8;
  margin-bottom: 0;
}
.article-list-empty .body a {
  margin: 0 5px;
  color: #165dff;
  border-bottom: 1px dotted;
}
.article-list-empty .body a::before {
  content: "\f6b9";
  font-family: "bootstrap-icons";
  margin-right: 3px;
  font-size: 90%;
}

.article-header {
  padding: 100px 0;
  overflow: hidden;
  position: relative;
  background-color: #165dff;
}
.article-header .bg {
  position: absolute;
  top: -50px;
  bottom: -50px;
  left: -50px;
  right: -50px;
  filter: blur(30px) brightness(80%);
}
.article-header .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: article-header-img 10s linear infinite;
}
.article-header .content {
  position: relative;
  color: #ffffff !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article-header .content .title {
  font-weight: 600;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
}
.article-header .content .data {
  display: flex;
}
.article-header .content .data span {
  display: flex;
  align-items: center;
  margin-right: 15px;
  font-size: 17px;
}
.article-header .content .data span::after {
  content: "|";
  margin-left: 15px;
}
.article-header .content .data span:last-child {
  margin-right: 0;
}
.article-header .content .data span:last-child::after {
  display: none;
}
.article-header .content .data span::before {
  content: "";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.article-header .content .data span a {
  color: inherit;
}
.article-header .content .data span a:hover {
  color: #ffffff;
}
.article-header .content .data span.time::before {
  content: "\f293";
}
.article-header .content .data span.classify::before {
  content: "\f45b";
}
.article-header .content .data span.number u {
  margin: 0 3px;
}
.article-header .content .data span.number::before {
  content: "\f5cb";
}
.article-header .content .data span.demand u {
  margin: 0 3px;
}

@keyframes article-header-img {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.article-top {
  padding: 15px 0;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(22, 92, 255, 0.1);
}
.article-top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-top .wrap .left {
  width: calc(100% - 350px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-top .wrap .left span {
  display: block;
  width: 30px;
  height: 30px;
}
.article-top .wrap .left span img {
  width: 100%;
  height: 100%;
}
.article-top .wrap .left p {
  width: calc(100% - 40px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 0;
  color: #86909c;
  font-size: 16px;
}
.article-top .wrap .left p em {
  font-style: normal;
  color: #F77234;
  margin: 0 5px;
  font-weight: bold;
}
.article-top .wrap .right {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-top .wrap .right span {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.article-top .wrap .right span::before {
  content: "";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.article-top .wrap .right span:nth-child(1) {
  color: #f53f3f;
}
.article-top .wrap .right span:nth-child(1)::before {
  content: "\f7f6";
  color: #f53f3f;
  font-size: 22px;
}
.article-top .wrap .right span:nth-child(2) {
  color: #00b42a;
}
.article-top .wrap .right span:nth-child(2)::before {
  content: "\f261";
  margin-right: 10px;
  color: #00b42a;
  font-size: 20px;
}
.article-top .wrap .right span:nth-child(3) {
  color: #ff7d00;
}
.article-top .wrap .right span:nth-child(3)::before {
  content: "\f406";
  margin-right: 8px;
  color: #ff7d00;
  font-size: 22px;
}
.article-top .wrap .right span:nth-child(4) {
  color: #14c9c9;
}
.article-top .wrap .right span:nth-child(4)::before {
  content: "\f586";
  margin-right: 8px;
  color: #14c9c9;
  font-size: 22px;
}

.article-qiafan-top {
  width: 100%;
  aspect-ratio: 6;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  opacity: 0.75;
  transition: 0.3s;
}
.article-qiafan-top::before {
  content: "广告";
  position: absolute;
  z-index: 9;
  bottom: 0;
  right: -5px;
  display: block;
  width: 75px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px 0 0 0;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
.article-qiafan-top a {
  display: block;
  width: 100%;
  height: 100%;
}
.article-qiafan-top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.article-qiafan-top:hover {
  opacity: 1;
}
.article-qiafan-top:hover::before {
  right: -80px;
}
.article-qiafan-top:hover img {
  transform: scale(1.05);
}

.article-interact {
  margin: 50px 0;
}
.article-interact .wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-interact .wrap .list {
  display: flex;
}
.article-interact .wrap .list li {
  margin: 0 10px;
}
.article-interact .wrap .list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 75px;
  aspect-ratio: 1/1;
  color: #FFFFFF;
  background-color: #F2F3F5;
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}
.article-interact .wrap .list li a:hover i {
  font-size: 32px;
  transform: translateY(12px);
}
.article-interact .wrap .list li a:hover em {
  transform: translateY(100px);
}
.article-interact .wrap .list li:nth-child(1) a {
  color: #F53F3F;
  background-color: #FFECE8;
}
.article-interact .wrap .list li:nth-child(2) a {
  color: #3491FA;
  background-color: #E8F7FF;
}
.article-interact .wrap .list li:nth-child(3) a {
  color: #00B42A;
  background-color: #E8FFEA;
}
.article-interact .wrap .list li:nth-child(4) a {
  color: #F7BA1E;
  background-color: #FFFCE8;
}
.article-interact .wrap .list li i {
  font-style: normal;
  transition: 0.3s;
  font-size: 22px;
}
.article-interact .wrap .list li i::before {
  content: "";
  font-family: "bootstrap-icons";
}
.article-interact .wrap .list li em {
  font-style: normal;
  transition: 0.3s;
}
.article-interact .wrap .list li #rssy-dz::before {
  content: "\f406";
}
.article-interact .wrap .list li #rssy-hb::before {
  content: "\f219";
}
.article-interact .wrap .list li #rssy-fx::before {
  content: "\f6b9";
}
.article-interact .wrap .list li #rssy-ds::before {
  content: "\f7ea";
}

.article-start-end {
  padding: 20px 0;
  position: relative;
  text-align: center;
}
.article-start-end::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #f2f3f5;
}
.article-start-end span {
  position: relative;
  background-color: #ffffff;
  padding: 0 30px;
  color: #86909c;
}

.article-tags {
  margin-bottom: 30px;
}
.article-tags .list {
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.article-tags .list li {
  margin-right: 15px;
}
.article-tags .list li:nth-child(5) {
  margin-right: 0;
}
.article-tags .list li:nth-child(n+6) {
  display: none;
}
.article-tags .list li a {
  display: flex;
  align-items: center;
  padding: 12px 25px;
  color: #86909c;
  background-color: #f7f8fa;
  border-radius: 4px;
  font-size: 14px;
  transition: 0.3s;
}
.article-tags .list li a::before {
  content: "\f254";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  color: #6b7785;
  opacity: 0.8;
}
.article-tags .list li a:hover {
  color: #eeeeee;
  background-color: #165dff;
}
.article-tags .list li a:hover::before {
  color: #ffffff;
  opacity: 1;
}

.article-associatioo {
  margin-bottom: 30px;
}
.article-associatioo .wrap {
  display: flex;
  margin: 0 -10px;
}
.article-associatioo .wrap .item {
  flex: 1 0 0%;
  position: relative;
  overflow: hidden;
  margin: 0 10px;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.article-associatioo .wrap .item .bg {
  position: absolute;
  filter: blur(20px);
  width: 100%;
  height: 100%;
  z-index: -3;
}
.article-associatioo .wrap .item .bg::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -20px;
  right: -20px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: -2;
}
.article-associatioo .wrap .item .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-associatioo .wrap .item .title {
  color: #ffffff;
  margin-bottom: 0;
  transform: translateY(0px);
  transition: 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 18px;
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  text-align: center;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.2);
}
.article-associatioo .wrap .item .link {
  position: absolute;
  transition: 0.3s;
  transform: translateY(200px);
  z-index: 9;
}
.article-associatioo .wrap .item .link a {
  display: block;
  width: 125px;
  padding: 10px 0;
  text-align: center;
  border-radius: 4px;
  color: #6b7785;
  background-color: rgba(255, 255, 255, 0.75);
  transition: 0.3s;
}
.article-associatioo .wrap .item .link a:hover {
  color: #272e3b;
  background-color: #ffffff;
}
.article-associatioo .wrap .item:hover .title {
  transform: translateY(-200px);
}
.article-associatioo .wrap .item:hover .link {
  transform: translateY(0px);
}

.article-more {
  margin-bottom: 30px;
}
.article-more .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.article-more .head .title {
  margin-right: 35px;
}
.article-more .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.article-more .head .title h5::before, .article-more .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.article-more .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.article-more .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.article-more .wrap .item {
  position: relative;
}
.article-more .wrap .item .thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 4px;
}
.article-more .wrap .item .thumbnail img {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.article-more .wrap .item .title {
  overflow: hidden;
}
.article-more .wrap .item .title a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  transition: 0.3s;
  color: #4e5969;
}
.article-more .wrap .item:hover .thumbnail img {
  transform: scale(1.05);
}
.article-more .wrap .item:hover .title a {
  color: #165dff;
}

.article-content {
  overflow-wrap: break-word;
  text-align: justify;
}
.article-content > * {
  line-height: 2.2;
  margin-bottom: 10px;
  color: #4e5969;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  font-weight: bold;
  display: flex;
  align-items: center;
  color: #272e3b;
}
.article-content h1::before,
.article-content h2::before,
.article-content h3::before,
.article-content h4::before,
.article-content h5::before,
.article-content h6::before {
  content: "\f589";
  font-family: "bootstrap-icons";
  margin-right: 8px;
  color: #165dff;
}
.article-content kbd {
  color: #f53f3f;
  background-color: #ffece8;
  margin: 0 3px;
  border-radius: 3px;
}
.article-content blockquote {
  padding-left: 10px;
  border-left: 5px solid #e5e6eb;
  background-color: #f2f3f5;
  margin-bottom: 20px;
  color: #272e3b;
}
.article-content blockquote p {
  padding: 20px 20px 20px 10px;
  margin-bottom: 0;
}
.article-content p {
  margin-bottom: 20px;
  font-size: 16px;
}
.article-content p video {
  margin-bottom: 0;
}
.article-content p del {
  color: #86909c;
}
.article-content a {
  margin: 0 8px;
  color: #165dff;
  border-bottom: 1px dotted #165dff;
  transition: 0.3s;
}
.article-content a::before {
  content: "\f6b9";
  font-family: "bootstrap-icons";
  margin-right: 3px;
  font-size: 80%;
}
.article-content a:hover {
  border-bottom: 1px solid transparent;
  background-color: rgba(22, 92, 255, 0.1);
}
.article-content strong {
  font-weight: bold;
}
.article-content img {
  max-width: 100%;
  border-radius: 4px;
}
.article-content img:hover {
  cursor: pointer;
}
.article-content video {
  width: 100%;
  aspect-ratio: 1.8;
  background-color: #000000;
  margin-bottom: 20px;
}
.article-content hr {
  color: #c9cdd4;
  margin: 1rem 0;
}
.article-content pre {
  padding: 10px;
  border-radius: 4px;
  color: #c9cdd4;
  background-color: #4e5969;
  overflow: auto;
  margin-bottom: 20px;
}
.article-content code:not(pre > code) {
  border-radius: 3px;
  font-size: 16px;
  color: #165dff;
  background-color: #e8f3ff;
  padding: 3px 5px;
  margin: 0 3px;
}
.article-content ol {
  margin-bottom: 20px;
}
.article-content ol li {
  list-style-type: decimal;
  margin-top: 10px;
  font-size: 16px;
}
.article-content ol li blockquote {
  margin-top: 10px;
}
.article-content ol li blockquote p {
  padding: 10px 10px 10px 5px;
}
.article-content ol li p {
  margin-bottom: 0;
}
.article-content ul {
  padding-left: 2rem;
}
.article-content ul li {
  list-style-type: square;
  margin-top: 10px;
  font-size: 16px;
}
.article-content ul li blockquote {
  margin-top: 10px;
}
.article-content ul li blockquote p {
  padding: 10px 10px 10px 5px;
}
.article-content ul li p {
  margin-bottom: 0;
}
.article-content ul li li {
  list-style-type: disc;
}
.article-content ul li li blockquote {
  margin-top: 10px;
}
.article-content ul li li blockquote p {
  padding: 10px 10px 10px 5px;
}
.article-content ul li li p {
  margin-bottom: 0;
}
.article-content ul li li li {
  list-style-type: circle;
}
.article-content ul li li li blockquote {
  margin-top: 10px;
}
.article-content ul li li li blockquote p {
  padding: 10px 10px 10px 5px;
}
.article-content ul li li li p {
  margin-bottom: 0;
}
.article-content table {
  width: 100%;
  border: 1px solid #f2f3f5;
  margin-bottom: 20px;
}
.article-content table thead {
  background-color: #f7f8fa;
}
.article-content table thead tr {
  border-bottom: 1px solid #f2f3f5;
}
.article-content table thead tr th {
  border-right: 1px solid #f2f3f5;
  font-weight: normal;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 600;
}
.article-content table thead tr th:last-child {
  border-right: 0;
}
.article-content table tbody {
  font-size: 13px;
}
.article-content table tbody tr {
  border-bottom: 1px solid #f2f3f5;
}
.article-content table tbody tr:nth-child(2n) {
  background-color: #f7f8fa;
}
.article-content table tbody tr td {
  border-right: 1px solid #f2f3f5;
  font-weight: normal;
  padding: 10px 15px;
}
.article-content table tbody tr td:last-child {
  border-right: 0;
}

.single-head {
  padding: 30px 0 50px 0;
  position: relative;
  overflow: hidden;
}
.single-head .wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff url(../img/sginle-head.jpg) no-repeat center/cover;
  padding: 100px 0;
  border-radius: 15px;
  overflow: hidden;
}
.single-head .wrap .title {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 45px;
}
.single-head .wrap .title::before, .single-head .wrap .title::after {
  content: "";
  position: inherit;
  display: block;
  width: 45px;
  height: 45px;
  top: 0;
}
.single-head .wrap .title::before {
  left: -20px;
  background: url(../svg/title.svg) no-repeat top center/cover;
}
.single-head .wrap .title::after {
  right: -20px;
  background: url(../svg/title2.svg) no-repeat top center/cover;
}

.single-page {
  position: relative;
}
.single-page .single-wrap .article-content {
  margin-bottom: 30px;
}
.single-page .file-wrap {
  padding: 50px 0 20px 0;
  border-left: 3px solid #f2f3f5;
}
.single-page .file-wrap .item {
  margin-bottom: 20px;
  position: relative;
  margin-left: 30px;
}
.single-page .file-wrap .item:last-child {
  margin-bottom: 0;
}
.single-page .file-wrap .item::before {
  content: "";
  position: absolute;
  display: block;
  top: 5px;
  left: -42px;
  height: 20px;
  width: 20px;
  border-radius: 100%;
  background-color: #165dff;
  border: 5px solid #F2F3F5;
  z-index: 2;
}
.single-page .file-wrap .item .time {
  border: none;
  background-color: transparent;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #272e3b;
  position: relative;
  margin-left: 40px;
}
.single-page .file-wrap .item .time em {
  font-style: normal;
  margin: 0 5px;
  color: #ff7d00;
}
.single-page .file-wrap .item .time::before {
  content: "\f589";
  font-family: "bootstrap-icons";
  color: #165dff;
}
.single-page .file-wrap .item .time::after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: -75px;
  height: 3px;
  width: 70px;
  background-color: #F2F3F5;
  z-index: 1;
}
.single-page .file-wrap .item .list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: -10px;
}
.single-page .file-wrap .item .list li {
  width: 50%;
  margin-bottom: 15px;
  padding: 0px 25px 0px 0px;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 4px;
  transition: 0.2s;
}
.single-page .file-wrap .item .list li:hover span {
  color: #165dff;
}
.single-page .file-wrap .item .list li:hover a {
  color: #165dff;
}
.single-page .file-wrap .item .list li a {
  width: calc(100% - 40px);
  font-size: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: color 0.3s;
  padding-left: 5px;
  color: #4e5969;
}
.single-page .file-wrap .item .list li a::before {
  content: "\f285";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  font-size: 75%;
  font-weight: bold;
}
.single-page .file-wrap .item .list li span {
  color: #86909c;
  background-color: #f2f3f5;
  text-align: center;
  border-radius: 3px;
  position: relative;
  font-size: 13px;
  width: 40px;
  padding: 2px 0;
}
.single-page .error-wrap {
  min-height: calc(100vh - 312.5px);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: column;
}
.single-page .error-wrap img {
  width: 50%;
}
.single-page .error-wrap p {
  color: #86909c;
}
.single-page .error-wrap p a {
  color: #165dff;
  margin: 0 10px;
  border-bottom: 1px dotted;
}
.single-page .error-wrap p a::before {
  content: "\f6b9";
  font-family: "bootstrap-icons";
  margin-right: 3px;
  font-size: 80%;
}

.file-head {
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
  background-color: #165dff;
  background-image: url(../img/head-bg.png);
  background-repeat: repeat-x;
  background-size: auto 550px;
  animation: scrollBackground 10s linear infinite;
  font-weight: bold;
}
.file-head h3 {
  margin-bottom: 0;
  font-weight: 600;
}

.comment-box {
  padding: 20px;
  background-color: #f7f8fa;
  border-radius: 4px;
  margin-bottom: 30px;
  width: 100%;
}
.comment-box .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.comment-box .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.comment-box .head .title h5::before, .comment-box .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.comment-box .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.comment-box .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.comment-box .head .data p {
  margin-bottom: 0;
  color: #86909c;
}
.comment-box .head .data p span {
  margin: 0 5px;
  color: #f53f3f;
}
.comment-box .head .expression button {
  background-color: transparent;
  border: none;
  color: #165dff;
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.comment-box .head .expression button::before {
  content: "\f327";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.comment-box .head .expression button:hover {
  color: #ff7d00;
}
.comment-box .wrap .lock {
  padding: 50px 20px;
  border: 1px solid #f2f3f5;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  background: repeating-linear-gradient(45deg, #f7f8fa, #f7f8fa 20px, #ffffff 0, #ffffff 40px);
}
.comment-box .wrap .lock p {
  display: flex;
  color: #86909c;
  font-size: 16px;
}
.comment-box .wrap .lock p:last-child {
  margin-bottom: 0;
}
.comment-box .wrap .lock p a {
  display: flex;
  padding: 6px 15px;
  color: #ffffff;
  background-color: #165dff;
  border-radius: 4px;
  opacity: 0.75;
  transition: 0.3s;
  font-size: 12px;
}
.comment-box .wrap .lock p a:hover {
  opacity: 1;
}
.comment-box .wrap .lock p a:nth-child(1) {
  margin-right: 8px;
  background-color: #165dff;
}
.comment-box .wrap .lock p a:nth-child(2) {
  background-color: #00b42a;
}
.comment-box .wrap form .emoji {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -3px;
}
.comment-box .wrap form .emoji span {
  cursor: pointer;
  padding: 8px;
  background-color: #ffffff;
  border: 1px solid #f2f3f5;
  font-size: 20px;
  margin: 0 3px;
  border-radius: 4px;
  transition: 0.3s;
  margin-bottom: 10px;
}
.comment-box .wrap form .emoji span:hover {
  transform: translateY(-2px);
}
.comment-box .wrap form label {
  color: #86909c;
}
.comment-box .wrap form label small {
  margin-left: 3px;
  color: #f53f3f;
}
.comment-box .wrap form input,
.comment-box .wrap form textarea {
  border-radius: 3px;
  border: 1px solid #f2f3f5;
  height: 42px;
}
.comment-box .wrap form input:focus,
.comment-box .wrap form textarea:focus {
  box-shadow: none;
  border: 1px solid #165dff;
  background-color: #ffffff;
}
.comment-box .wrap form input:focus::-moz-placeholder, .comment-box .wrap form textarea:focus::-moz-placeholder {
  opacity: 0;
}
.comment-box .wrap form input:focus::placeholder,
.comment-box .wrap form textarea:focus::placeholder {
  opacity: 0;
}
.comment-box .wrap form input::-moz-placeholder, .comment-box .wrap form textarea::-moz-placeholder {
  color: #c9cdd4;
  font-size: 80%;
}
.comment-box .wrap form input::placeholder,
.comment-box .wrap form textarea::placeholder {
  color: #c9cdd4;
  font-size: 80%;
}
.comment-box .wrap form textarea {
  height: 150px;
}
.comment-box .wrap form button {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #ffffff;
  border-radius: 4px;
  background-color: #165dff;
  border: none;
  width: 100%;
  height: 100%;
  padding: 8px;
  transition: 0.3s;
}
.comment-box .wrap form button:active {
  color: #ffffff;
  background-color: #165dff;
}
.comment-box .wrap form button:hover {
  opacity: 0.85;
}
.comment-box .wrap form .form-control:focus {
  box-shadow: none;
}
.comment-box .wrap form .checking {
  position: relative;
}
.comment-box .wrap form .checking .image {
  position: absolute;
  right: 9px;
  bottom: 5px;
}
.comment-box .wrap form .checking .image img {
  height: 32px;
  border-radius: 4px;
}

.comment-lsit {
  margin-bottom: 50px;
}
.comment-lsit .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.comment-lsit .head .title {
  margin-right: 35px;
}
.comment-lsit .head .title h5 {
  margin-bottom: 0;
  font-weight: 600;
}
.comment-lsit .head .title h5::before, .comment-lsit .head .title h5::after {
  font-size: 75%;
  font-family: "bootstrap-icons";
  font-weight: bold;
}
.comment-lsit .head .title h5::before {
  content: "\f284";
  margin-right: 5px;
}
.comment-lsit .head .title h5::after {
  content: "\f285";
  margin-left: 5px;
}
.comment-lsit .comment-empty {
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.comment-lsit .comment-empty img {
  max-width: 200px;
  margin-bottom: 20px;
}
.comment-lsit .comment-empty p {
  color: #86909c;
}
.comment-lsit .wrap .item {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.comment-lsit .wrap .item .picture {
  width: 50px;
}
.comment-lsit .wrap .item .picture img {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  border-radius: 100% 100% 0% 100%;
}
.comment-lsit .wrap .item .body {
  width: calc(100% - 55px);
}
.comment-lsit .wrap .item .body .name {
  margin-bottom: 5px;
}
.comment-lsit .wrap .item .body .name span {
  color: #4e5969;
  font-weight: 600;
}
.comment-lsit .wrap .item .body .name em {
  font-style: normal;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
}
.comment-lsit .wrap .item .body .name .fk {
  color: #86909c;
  background-color: #f2f3f5;
}
.comment-lsit .wrap .item .body .name .zc {
  color: #ffffff;
  background-color: #23c343;
}
.comment-lsit .wrap .item .body .name .gl {
  color: #ffffff;
  background-color: #f53f3f;
}
.comment-lsit .wrap .item .body .time {
  color: #a9aeb8;
  font-size: 13px;
}
.comment-lsit .wrap .item .body .content {
  margin: 15px 0;
}
.comment-lsit .wrap .item .body .content p {
  margin-bottom: 0;
  font-size: 15px;
  color: #272e3b;
}
.comment-lsit .wrap .item .body .operate {
  color: #86909c;
}
.comment-lsit .wrap .item .body .operate span {
  margin-right: 10px;
}
.comment-lsit .wrap .item .body .operate span:last-child {
  margin-right: 0;
}
.comment-lsit .wrap .item .body .operate span:hover::before {
  opacity: 1;
}
.comment-lsit .wrap .item .body .operate .address a,
.comment-lsit .wrap .item .body .operate .browser-edge a,
.comment-lsit .wrap .item .body .operate .browser-chrome a,
.comment-lsit .wrap .item .body .operate .browser-android a,
.comment-lsit .wrap .item .body .operate .browser-ios a,
.comment-lsit .wrap .item .body .operate .browser-firefox a,
.comment-lsit .wrap .item .body .operate .reply a,
.comment-lsit .wrap .item .body .operate .support a,
.comment-lsit .wrap .item .body .operate .oppose a {
  opacity: 0.75;
  color: inherit;
}
.comment-lsit .wrap .item .body .operate .address a:hover,
.comment-lsit .wrap .item .body .operate .browser-edge a:hover,
.comment-lsit .wrap .item .body .operate .browser-chrome a:hover,
.comment-lsit .wrap .item .body .operate .browser-android a:hover,
.comment-lsit .wrap .item .body .operate .browser-ios a:hover,
.comment-lsit .wrap .item .body .operate .browser-firefox a:hover,
.comment-lsit .wrap .item .body .operate .reply a:hover,
.comment-lsit .wrap .item .body .operate .support a:hover,
.comment-lsit .wrap .item .body .operate .oppose a:hover {
  opacity: 1;
}
.comment-lsit .wrap .item .body .operate .address::before,
.comment-lsit .wrap .item .body .operate .browser-edge::before,
.comment-lsit .wrap .item .body .operate .browser-chrome::before,
.comment-lsit .wrap .item .body .operate .browser-android::before,
.comment-lsit .wrap .item .body .operate .browser-ios::before,
.comment-lsit .wrap .item .body .operate .browser-firefox::before,
.comment-lsit .wrap .item .body .operate .reply::before,
.comment-lsit .wrap .item .body .operate .support::before,
.comment-lsit .wrap .item .body .operate .oppose::before {
  content: "";
  font-family: "bootstrap-icons";
  font-size: 80%;
  margin-right: 3px;
  opacity: 0.7;
}
.comment-lsit .wrap .item .body .operate .address::before {
  content: "\f3e7";
}
.comment-lsit .wrap .item .body .operate .browser-edge::before {
  content: "\f7d5";
}
.comment-lsit .wrap .item .body .operate .browser-chrome::before {
  content: "\f7d4";
}
.comment-lsit .wrap .item .body .operate .browser-android::before {
  content: "\f7d1";
}
.comment-lsit .wrap .item .body .operate .browser-ios::before {
  content: "\f65b";
}
.comment-lsit .wrap .item .body .operate .browser-firefox::before {
  content: "\f7d6";
}
.comment-lsit .wrap .item .body .operate .reply {
  color: #165dff;
}
.comment-lsit .wrap .item .body .operate .reply::before {
  content: "\f249";
}
.comment-lsit .wrap .item .body .operate .support {
  color: #f53f3f;
}
.comment-lsit .wrap .item .body .operate .support::before {
  content: "\f406";
}
.comment-lsit .wrap .item .body .operate .oppose::before {
  content: "\f404";
}
.comment-lsit .wrap .item .reply-lsit {
  width: 100%;
  margin-top: 30px;
  margin-left: 50px;
}
.comment-lsit .wrap .item .reply-lsit .item:last-child {
  margin-bottom: 0;
}
.comment-lsit .wrap .comment-box {
  margin: 20px 0 0 0;
}

.bottom {
  padding: 30px 0;
  background-color: #272e3b;
  position: relative;
}
.bottom:before {
  background: #272e3b linear-gradient(to left, #3491fa, #722ed1, #d91ad9, #165dff, #f5319d, #00b42a);
  content: "";
  height: 4px;
  position: absolute;
  top: -2px;
  width: 100%;
}
.bottom .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bottom .wrap .left .nav {
  margin-bottom: 15px;
}
.bottom .wrap .left .nav a {
  color: #c9cdd4;
  margin-right: 10px;
  transition: 0.3s;
  font-size: 16px;
}
.bottom .wrap .left .nav a:hover {
  color: #ffffff;
}
.bottom .wrap .left .nav a:last-child {
  margin-right: 0;
}
.bottom .wrap .left .copyright {
  background-color: #1d2129;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.bottom .wrap .left .copyright .list {
  margin-bottom: 0;
  font-size: 16px;
}
.bottom .wrap .left .copyright .list span {
  margin-right: 3px;
  font-style: normal;
  color: #86909c;
}
.bottom .wrap .left .copyright .list span:last-child {
  margin-right: 0;
}
.bottom .wrap .left .copyright .list span:nth-child(n+6) {
  display: none;
}
.bottom .wrap .left .copyright .list i {
  margin: 0 3px;
}
.bottom .wrap .left .copyright .list a {
  color: #c9cdd4;
  margin: 0 3px;
  transition: 0.3s;
}
.bottom .wrap .left .copyright .list a:hover {
  color: #ffffff;
}
.bottom .wrap .left .filings {
  margin-bottom: 15px;
  display: flex;
}
.bottom .wrap .left .filings span:nth-child(1) {
  margin-right: 10px;
}
.bottom .wrap .left .filings a {
  color: #c9cdd4;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.bottom .wrap .left .filings a:hover {
  color: #ffffff;
}
.bottom .wrap .left .filings img {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}
.bottom .wrap .left .frimg {
  display: flex;
}
.bottom .wrap .left .frimg span {
  margin-right: 8px;
}
.bottom .wrap .left .frimg span:last-child {
  margin-right: 0;
}
.bottom .wrap .left .frimg a {
  display: block;
  width: 100%;
  height: 100%;
}
.bottom .wrap .left .frimg img {
  width: auto;
  height: 30px;
}
.bottom .wrap .right {
  background-color: #1d2129;
  border-radius: 4px;
  padding: 10px;
}
.bottom .wrap .right .title {
  margin-bottom: 5px;
  text-align: center;
}
.bottom .wrap .right .title span {
  font-size: 15px;
  color: #86909c;
}
.bottom .wrap .right .qrcode-img {
  background-color: #272e3b;
  border-radius: 4px;
  padding: 5px;
}
.bottom .wrap .right .qrcode-img img {
  width: 125px;
  height: 125px;
  border-radius: 4px;
}

#scrollUp {
  right: 30px;
  bottom: 30px;
  display: block;
  width: 50px;
  height: 50px;
  overflow: hidden;
  animation: float-up 2s linear 0.1s infinite alternate;
}
#scrollUp::before {
  position: relative;
  content: "";
  background: url(../svg/back-top.svg) no-repeat center;
  background-size: cover;
  display: block;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float-up {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.toast-container {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  padding: 20px !important;
}
.toast-container .toast {
  overflow: hidden;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.85);
  border: 1px solid #333333;
  box-shadow: none;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  max-width: 300px;
}
.toast-container .toast p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.toast-container .toast p::before {
  content: "";
  font-family: "bootstrap-icons";
  margin-right: 10px;
  font-size: 150%;
}
.toast-container .toast#ToastSuccess {
  background-color: #e1fff1;
  color: #0a3622;
  border: 1px solid #ace2ca;
}
.toast-container .toast#ToastSuccess p::before {
  content: "\f735";
}
.toast-container .toast#ToastWarning {
  background-color: #fff3cd;
  color: #664d03;
  border: 1px solid #ffe69c;
}
.toast-container .toast#ToastWarning p::before {
  content: "\f31b";
}
.toast-container .toast#ToastError {
  background-color: #f8d7da;
  color: #58151c;
  border: 1px solid #f1aeb5;
}
.toast-container .toast#ToastError p::before {
  content: "\f319";
}

.offcanvas.search {
  height: calc(100vh + 10px) !important;
  display: flex !important;
  justify-content: center !important;
}
.offcanvas.search .title {
  padding: 20px 0;
}
.offcanvas.search .title h5 {
  font-size: 28px;
  margin-bottom: 0;
  color: #272e3b;
  font-weight: bold;
}
.offcanvas.search .body {
  padding: 20px 0;
}
.offcanvas.search .body form {
  display: flex;
  align-items: center;
}
.offcanvas.search .body form input {
  outline: none;
  border: 1px solid #165dff;
  font-size: 16px;
  padding: 0 20px;
  width: calc(100% - 150px);
  height: 60px;
  border-radius: 5px 0 0 5px;
  background-color: #f7f8fa;
}
.offcanvas.search .body form input:focus-visible {
  background-color: #ffffff;
}
.offcanvas.search .body form input::-moz-placeholder {
  color: #a9aeb8;
  opacity: 0.5;
}
.offcanvas.search .body form input::placeholder {
  color: #a9aeb8;
  opacity: 0.5;
}
.offcanvas.search .body form input:focus-visible::-moz-placeholder {
  opacity: 0;
}
.offcanvas.search .body form input:focus-visible::placeholder {
  opacity: 0;
}
.offcanvas.search .body form button {
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 60px;
  font-size: 18px;
  border: 1px solid #165dff;
  background-color: #165dff;
  color: #ffffff;
  border-radius: 0 5px 5px 0;
}
.offcanvas.search .body form button::before {
  content: "\f52a";
  font-family: "bootstrap-icons";
  margin-right: 5px;
}
.offcanvas.search .body .list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-bottom: -15px;
}
.offcanvas.search .body .list li {
  margin-right: 15px;
  margin-bottom: 15px;
}
.offcanvas.search .body .list li a {
  display: block;
  padding: 10px 25px;
  color: #4e5969;
  background-color: #f2f3f5;
  border-radius: 4px;
  transition: 0.3s;
}
.offcanvas.search .body .list li a:hover {
  background-color: #165dff;
  color: #ffffff;
}
.offcanvas.search .body .list li:nth-child(1) a, .offcanvas.search .body .list li:nth-child(2) a, .offcanvas.search .body .list li:nth-child(3) a {
  background-color: #ffece8;
  color: #f53f3f;
}
.offcanvas.search .body .list li:nth-child(1) a:hover, .offcanvas.search .body .list li:nth-child(2) a:hover, .offcanvas.search .body .list li:nth-child(3) a:hover {
  background-color: #f53f3f;
  color: #ffffff;
}
.offcanvas.search .body .list li:nth-child(1) a::before, .offcanvas.search .body .list li:nth-child(2) a::before, .offcanvas.search .body .list li:nth-child(3) a::before {
  content: "\f7f6";
  font-family: "bootstrap-icons";
  margin-right: 3px;
  font-size: 75%;
}
.offcanvas.search .offcanvas-close {
  padding: 100px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offcanvas.search .offcanvas-close button {
  outline: none;
  border: none;
  background-color: #ffffff;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 0 0 5px 5px;
  font-size: 35px;
  color: #86909c;
}
.offcanvas.search .offcanvas-close button:hover {
  color: #f53f3f;
}
.offcanvas.search .offcanvas-close button::before {
  content: "\f627";
  display: inline-block;
  font-family: "bootstrap-icons";
  font-style: normal;
}
.offcanvas.search .offcanvas-close button span {
  display: none;
}

.modal {
  -webkit-backdrop-filter: saturate(150%) blur(15px);
          backdrop-filter: saturate(150%) blur(15px);
  background-color: rgba(0, 0, 0, 0.75);
}
.modal .modal-content {
  border: none;
}
.modal.modal-bounty .modal-dialog {
  max-width: 350px;
  margin: 0 auto;
}
.modal.modal-bounty .modal-content .modal-header {
  padding: 25px 20px 35px 20px;
  background: linear-gradient(145deg, #f53f3f, #fadc19);
  color: #ffffff;
  display: block;
  position: relative;
  overflow: hidden;
}
.modal.modal-bounty .modal-content .modal-header::after {
  content: "\f638";
  font-family: "bootstrap-icons";
  position: absolute;
  display: block;
  width: 93px;
  height: 93px;
  line-height: 93px;
  text-align: center;
  top: 0;
  right: 10px;
  font-size: 80px;
  filter: blur(2px);
  transition: 0.3s;
  transform: rotate(150deg) scale(2);
}
.modal.modal-bounty .modal-content .modal-header h5 {
  font-size: 20px;
  position: relative;
  font-weight: 600;
}
.modal.modal-bounty .modal-content .modal-header h5::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -10px;
  width: 35px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
}
.modal.modal-bounty .modal-content:hover .modal-header::after {
  filter: blur(0px);
  transform: rotate(0deg) scale(1);
}
.modal.modal-bounty .modal-content .modal-body {
  padding: 25px 20px 10px 20px;
  border-radius: 0 0 5px 5px;
  background-color: #ffffff;
  text-align: center;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav button {
  width: calc(33.333333% - 5px);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  line-height: 35px;
  border-radius: 4px;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav button::before {
  content: "";
  font-family: "bootstrap-icons";
  margin-right: 5px;
  font-size: 115%;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .wx-pay {
  color: #009a29;
  background-color: #aff0b5;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .wx-pay::before {
  content: "\f829";
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .wx-pay.active {
  background-color: #009a29;
  color: #ffffff;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .ali-pay {
  color: #3491fa;
  background-color: #c3e7fe;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .ali-pay::before {
  content: "\f7cf";
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .ali-pay.active {
  background-color: #3491fa;
  color: #ffffff;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .qq-pay {
  color: #ff7d00;
  background-color: #ffe4ba;
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .qq-pay::before {
  content: "\f8cb";
}
.modal.modal-bounty .modal-content .modal-body .bounty-nav .qq-pay.active {
  background-color: #ff7d00;
  color: #ffffff;
}
.modal.modal-bounty .modal-content .modal-body .tab-content {
  background-color: #e9eaec;
  padding: 20px;
  margin-bottom: 25px;
  border-radius: 4px;
}
.modal.modal-bounty .modal-content .modal-body .tab-content img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  margin: 0;
}
.modal.modal-bounty .modal-content .modal-body .modal-tips p {
  margin-bottom: 10px;
  color: #4e5969;
}
.modal.modal-bounty .modal-content .modal-body .modal-tips em {
  font-style: normal;
  color: #f53f3f;
  margin: 0 5px;
}
.modal.modal-share .modal-dialog {
  max-width: 350px;
  margin: 0 auto;
}
.modal.modal-share .modal-content .modal-header {
  padding: 25px 20px 35px 20px;
  background: linear-gradient(145deg, #37d4cf, #9fdb1d);
  color: #ffffff;
  display: block;
  position: relative;
  overflow: hidden;
}
.modal.modal-share .modal-content .modal-header::after {
  content: "\f6ad";
  font-family: "bootstrap-icons";
  position: absolute;
  display: block;
  width: 93px;
  height: 93px;
  line-height: 93px;
  text-align: center;
  top: 0;
  right: 0px;
  font-size: 60px;
  filter: blur(2px);
  transition: 0.3s;
  transform: rotate(150deg) scale(2);
  font-weight: normal;
}
.modal.modal-share .modal-content .modal-header h5 {
  font-size: 20px;
  position: relative;
  font-weight: 600;
}
.modal.modal-share .modal-content .modal-header h5::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -10px;
  width: 35px;
  height: 3px;
  border-radius: 3px;
  background-color: #ffffff;
}
.modal.modal-share .modal-content:hover .modal-header::after {
  filter: blur(0px);
  transform: rotate(0deg) scale(1);
}
.modal.modal-share .modal-content .modal-body {
  padding: 30px 30px 10px 30px;
  border-radius: 0 0 5px 5px;
  background-color: #ffffff;
  text-align: center;
}
.modal.modal-share .modal-content .modal-body .modal-tips p {
  color: #272e3b;
}
.modal.modal-share .modal-content .modal-body .modal-tips span {
  margin: 0 5px;
  padding: 5px 15px;
  border-radius: 4px;
}
.modal.modal-share .modal-content .modal-body .modal-tips span::before {
  content: "";
  font-family: "bootstrap-icons";
  margin-right: 3px;
}
.modal.modal-share .modal-content .modal-body .modal-tips #wx {
  color: #00b42a;
  background-color: #e8ffea;
}
.modal.modal-share .modal-content .modal-body .modal-tips #wx::before {
  content: "\f829";
}
.modal.modal-share .modal-content .modal-body .modal-tips #wb {
  color: #f53f3f;
  background-color: #ffece8;
}
.modal.modal-share .modal-content .modal-body .modal-tips #wb::before {
  content: "\f8ca";
}
.modal.modal-share .modal-content .modal-body .modal-tips #qq {
  color: #14c9c9;
  background-color: #e8fffb;
}
.modal.modal-share .modal-content .modal-body .modal-tips #qq::before {
  content: "\f8cb";
}
.modal.modal-share .modal-content .modal-body .modal-tips #llq {
  color: #cc9213;
  background-color: #fffce8;
}
.modal.modal-share .modal-content .modal-body .modal-tips #llq::before {
  content: "\f7d4";
}
.modal.modal-share .modal-content .modal-qrcode {
  margin: 30px 0;
  padding: 20px;
  background-color: #f2f3f5;
  border-radius: 4px;
}
.modal.modal-share .modal-content .modal-qrcode img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.modal.modal-poster .modal-dialog {
  max-width: 350px;
  margin: 0 auto;
}
.modal.modal-poster .modal-content .modal-body {
  padding: 15px;
  position: relative;
}
.modal.modal-poster .modal-content .modal-body .image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 15px;
}
.modal.modal-poster .modal-content .modal-body .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal.modal-poster .modal-content .modal-body .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  text-overflow: ellipsis;
  overflow: hidden;
}
.modal.modal-poster .modal-content .modal-body .title::before {
  content: "\f7f6";
  font-family: "bootstrap-icons";
  color: #ff4b3f;
  margin-right: 5px;
}
.modal.modal-poster .modal-content .modal-body .synopsis {
  color: #86909c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 15px;
}
.modal.modal-poster .modal-content .modal-body .scan-code {
  border: 1px solid #F2F3F5;
  background-color: #F7F8FA;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 15px;
}
.modal.modal-poster .modal-content .modal-body .scan-code .information img {
  height: 35px;
  margin-top: 5px;
  margin-bottom: 10px;
}
.modal.modal-poster .modal-content .modal-body .scan-code p {
  margin-bottom: 0;
  color: #86909c;
}
.modal.modal-poster .modal-content .modal-body .scan-code #poster-qrcode img {
  width: 70px;
  height: 70px;
}
.modal.modal-poster .modal-content .modal-body .down a {
  display: block;
  width: 100%;
  height: 35px;
  text-align: center;
  line-height: 35px;
  color: #FFFFFF;
  border-radius: 4px;
  background-color: #165dff;
}
.modal.modal-poster .modal-content .modal-qrcode {
  margin: 30px 0;
  padding: 20px;
  background-color: #f2f3f5;
  border-radius: 4px;
}
.modal.modal-poster .modal-content .modal-qrcode img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.modal .modal-close {
  position: absolute;
  display: block;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.modal .modal-close button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background-color: #ffffff;
  opacity: 0.75;
  transition: 0.3s;
}
.modal .modal-close button:hover {
  opacity: 1;
  color: #f53f3f;
}
.modal .modal-close button::before {
  content: "\f62a";
  font-family: "bootstrap-icons";
  font-size: 40px;
}
.modal .modal-close button span {
  display: none;
  opacity: 0;
}/*# sourceMappingURL=rssy-plus.css.map */