@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body,
html {
  width: 100%;
  height: 100%;
}

li {
  list-style: none;
}

body {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #008dcc;
  overflow-y: scroll;
}

/************************************************************ 列表页 ****************************************************/
.header-wrap {
  overflow: hidden;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background: #008dcc;
  color: #ffffff;
}

.search-main {
  float: right;
  background-color: #ffffff;
  width: 300px;
  height: 40px;
  border: 1px solid #008dcc;
  margin: 30px 30px 20px 0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.search-main .search-input {
  width: 200px;
  height: 30px;
  line-height: 30px;
  float: left;
  margin: 4px 10px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-main .search-btn {
  background-color: #0075a9;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
}

.search-main .search-btn:hover {
  background-color: #005f8a;
}

.tag-wrap {
  width: calc(100% - 330px - 60px);
  height: 60px;
  float: left;
  margin: 20px 30px 10px 30px;
  overflow-y: hidden;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.tag-wrap::-webkit-scrollbar {
  display: none;
}

.tag-wrap .tag-main {
  height: 60px;
  width: max-content;
}

.tag-wrap .item {
  width: 120px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
  transition: all 0.3s;
}

.tag-wrap .item:nth-of-type(1) {
  margin-left: 0;
}

.tag-wrap .item:nth-last-of-type(1) {
  margin-right: 0;
}

.tag-wrap .item:not(.active):hover {
  transform: translateY(-2px);
}

.tag-wrap .item.active {
  background: #ffffff;
  color: #008dcc;
}

.glass {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.1) 50%, transparent 50%, transparent 100%);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset, 0 2px 6px rgba(0, 0, 0, 0.5), 0 -4px 8px -1px rgba(255, 255, 255, 0.4) inset;
  border-color: rgba(255, 255, 255, 0.4);
  border-image: none;
  border-style: inset;
  border-width: 1px;
}

.glass:not(.active):hover {
  text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.99), 0px 0px 4px rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 5px 2px rgba(255, 255, 255, 0.75), 0 0 10px 2px rgba(255, 255, 255, 0.75) inset;
}

.main-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 90px;
}

.list-wrap {
  padding: 20px 30px;
  width: 100%;
  height: auto;
  min-height: calc(100% - 60px);
}

.list-wrap .list {
  overflow: hidden;
  width: 100%;
  transform: rotateX(90deg);
  opacity: 0;
  position: relative;
  margin-bottom: 15px;
  color: #0f86bb;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 3px 3px 3px #00a6e7;
  cursor: pointer;
}

.list-wrap .list.active {
  box-shadow: none;
}

.list-wrap .list.active .title {
  background-color: #0075a9;
  color: #fff;
}

.list-wrap .list.show {
  transform: rotateX(0deg);
  opacity: 1;
}

.list-wrap .list .title {
  width: 100%;
  height: 48px;
  text-indent: 15px;
  line-height: 48px;
  font-size: 18px;
  font-weight: normal;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  background-color: #e2f3fb;
  cursor: pointer;
  transition: all 0.5s;
}

.list-wrap .list .title:hover {
  padding-left: 10px;
  background-color: #bce7fa;
}

.list-wrap .list .type,
.list-wrap .list .open {
  height: 40px;
  width: 50%;
  line-height: 40px;
  font-size: 12px;
  float: left;
  border-top: 1px dashed #00a6e7;
  text-align: center;
  transition: all 0.3s;
}

.list-wrap .list .type {
  border-left: 1px dashed #00a6e7;
}

.list-wrap .list .type:hover {
  font-size: 14px;
  background-color: #bce7fa;
}

.list-wrap .list .open {
  color: #a07f00;
}

.list-wrap .list .open:hover {
  font-size: 14px;
  background-color: #bce7fa;
}

.footer-wrap {
  width: 100%;
  height: 60px;
  line-height: 40px;
  text-align: center;
}

.footer-wrap a {
  color: #fff;
}

.footer-wrap a:hover {
  color: #bce7fa;
}

.goTop {
  position: fixed;
  bottom: 80px;
  right: 20px;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 117, 169, 0.8);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  z-index: 3;
}

.goTop:hover {
  background-color: rgba(0, 95, 138, 0.8);
}

.content-wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}

.content-wrap .content-cover {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.content-wrap .content {
  width: 90%;
  height: 90%;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%) translateY(-50%);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.75);
  padding: 20px;
}

.content-wrap .content .title-wrap {
  width: 100%;
  height: 70px;
  border-bottom: 1px dashed #008dcc;
  margin-bottom: 20px;
  position: relative;
}

.content-wrap .content .title-wrap .title {
  width: 100%;
  max-height: 50px;
  line-height: 25px;
  font-size: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-top: -10px;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-wrap .content .closed {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #008dcc;
  border: 1px solid #008dcc;
  border-radius: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: transform 0.3s;
  font-size: 18px;
}

.content-wrap .content .closed:hover {
  transform: rotate(90deg);
}

.content-wrap .content .intro {
  width: 100%;
  height: calc(100% - 90px - 50px);
  overflow: auto;
}

.content-wrap .content .intro .hljs-left {
  text-align: left;
}

.content-wrap .content .intro .hljs-center {
  text-align: center;
}

.content-wrap .content .intro .hljs-right {
  text-align: right;
}

.content-wrap .content .intro ol li,
.content-wrap .content .intro ul li {
  list-style: inherit;
}

.content-wrap .content .intro img {
  max-width: 100%;
}

.content-wrap .content .content-closedbtn {
  display: none;
  width: 100%;
  height: 40px;
  background-color: #b97c00;
  margin: 20px auto 0;
  color: #fff;
  text-align: center;
  line-height: 40px;
  border-radius: 10px;
  cursor: pointer;
}

.content-wrap .content .content-closedbtn:hover {
  background-color: #9e6b02;
}

.content-wrap .content .go-detailbtn {
  width: 300px;
  height: 40px;
  line-height: 40px;
  margin: 10px auto 0;
  background-color: #008dcc;
  color: #ffffff;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
}

.content-wrap .content .go-detailbtn:hover {
  background-color: #0075a9;
}

/************************************************************ 详情页 ****************************************************/
.detail-content-wrap {
  display: block;
  color: #000000;
  position: relative;
  min-height: calc(100% - 60px - 15px);
  height: auto;
  width: 90%;
  margin: 0 auto 15px;
  background-color: #ffffff;
}

.detail-content-wrap .content {
  width: 100%;
  position: relative;
  height: auto;
  top: 0;
  left: 0;
  transform: none;
  box-shadow: none;
  border-radius: 0px;
}

.detail-content-wrap .go-home {
  position: absolute;
  left: -10px;
  top: -10px;
  width: 80px;
  height: 30px;
  background-color: #0075a9;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.detail-content-wrap .go-home a {
  display: block;
  color: #ffffff;
  text-decoration: none;
}

.detail-content-wrap .go-home:hover {
  background-color: #005f8a;
}

.detail-loading .loading span {
  background: #008dcc;
}

.detail-goTop {
  position: fixed;
  right: 0;
  top: 60%;
  width: 60px;
  height: 30px;
  background-color: #0075a9;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
  border-radius: 5px 0 0 5px;
  z-index: 10;
}

.detail-goTop:hover {
  background-color: #005f8a;
}

/************************************************************ loading ****************************************************/
.loading-wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background-color: transparent;
}

.loading {
  width: 150px;
  height: 15px;
  position: absolute;
  top: 40%;
  left: 50%;
  margin-left: -75px;
}

.loading span {
  display: inline-block;
  width: 15px;
  height: 100%;
  margin-right: 5px;
  border-radius: 50%;
  background: #ffffff;
  animation: load 1.04s ease infinite;
}

.loading span:last-child {
  margin-right: 0px;
}

@keyframes load {
  0% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 0.2;
    transform: scale(0.3);
  }
}

.loading span:nth-child(1) {
  animation-delay: 0.13s;
}

.loading span:nth-child(2) {
  animation-delay: 0.26s;
}

.loading span:nth-child(3) {
  animation-delay: 0.39s;
}

.loading span:nth-child(4) {
  animation-delay: 0.52s;
}

.loading span:nth-child(5) {
  animation-delay: 0.65s;
}

/************************************************************ 媒体查询 ****************************************************/
