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

body {
  background: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.9);
  font-family: "微软雅黑", "PingFang SC", "Trebuchet MS", Tahoma, Arial, sans-serif;
}

.body-index .post-page {
  margin-top: 20px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #1c81ff;
}

.container {
  padding: 0 100px;
}

.fade-container {
  width: 1150px;
  margin: 0 auto;
}

.right {
  float: right;
}

[role=button] {
  cursor: pointer;
}

.iconfont {
  font-size: inherit;
}

#divNavBar {
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 0 20px;
  z-index: 999;
  height: 54px;
  line-height: 54px;
}
#divNavBar .icon-search {
  padding: 7px;
  margin-right: 15px;
}
#divNavBar h1 {
  font-size: 20px;
  padding-top: 10px;
  color: #333;
  line-height: 1;
}
#divNavBar .logo {
  align-items: center;
  min-width: 200px;
  float: left;
  padding-top: 8px;
  height: 54px;
  text-align: center;
  padding-right: 20px;
}
#divNavBar .logo img {
  height: 36px;
}
#divNavBar ul {
  display: inline-block;
}
#divNavBar li {
  display: inline-block;
  position: relative;
}
#divNavBar li a {
  padding: 8px 15px;
  transition: all 0.2s;
  border-radius: 8px;
}
#divNavBar li a.active, #divNavBar li a:hover {
  background: #047bef;
  color: #fff;
}
#divNavBar li ul {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  display: none;
  border-radius: 8px;
  z-index: 9999;
}
#divNavBar li ul li {
  white-space: nowrap;
  line-height: 1;
  display: block;
  padding: 5px;
}
#divNavBar li ul li a {
  display: block;
  padding-top: 8px;
  padding-bottom: 8px;
}
#divNavBar li:hover ul {
  display: block;
}
#divNavBar #navbar-toggle {
  display: none;
}

#divSearch {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.28);
  z-index: 9999;
  padding-top: 200px;
  display: none;
}
#divSearch.show {
  display: block;
}
#divSearch .search-box {
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
  padding: 35px;
  background: #fff;
  border-radius: 10px;
}
#divSearch .input-group {
  display: flex;
}
#divSearch .input-group .input {
  flex: 1;
  padding: 15px 30px;
  background: #fff;
  border: 1px solid #1c81ff;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
#divSearch .input-group .input:focus {
  outline: none;
}
#divSearch .input-group button {
  width: 100px;
  height: 47px;
  background: #1c81ff;
  border: 1px solid #1c81ff;
  color: #fff;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
#divSearch .hot_tags li {
  display: inline-block;
  margin: 5px;
  cursor: pointer;
}

.tags {
  display: flex;
}
.tags .tag {
  background: #eee;
  padding: 6px 10px;
  line-height: 1;
  border-radius: 4px;
  color: #000;
  transition: all 0.2s;
  margin-right: 5px;
}
.tags .tag:hover {
  background: #1c81ff;
  color: #fff;
}

.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.article-list-item {
  width: calc(25% - 12px);
  list-style-type: none;
}
.article-list-item .link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 20px #F4F8FD;
}
.article-list-item .title h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1em;
  font-weight: bold;
}
.article-list-item .icon {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article-list-item .icon img {
  max-width: 100%;
  min-width: 50%;
  aspect-ratio: 16/10;
  display: block;
  object-fit: cover;
  filter: brightness(0.95);
  transition: all 0.3s;
}
.article-list-item .link-content {
  padding: 10px 15px;
  line-height: 2;
}
.article-list-item .intro {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #aaa;
  line-height: 1.5;
  box-sizing: border-box;
  margin-top: 10px;
}
.article-list-item .intro, .article-list-item .meta {
  color: #999;
  font-size: 14px;
}
.article-list-item .meta {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}
.article-list-item .meta span {
  margin-right: 10px;
}
.article-list-item:hover .icon img {
  transform: scale(1.1);
}

.nav-category-title {
  font-size: 22px;
  margin-bottom: 1em;
}

.left-bar {
  position: fixed;
  top: 54px;
  left: 0;
  width: 220px;
}

.category-list {
  padding-top: 15px;
  z-index: 999;
  text-align: center;
  width: 100%;
}
.category-list li {
  display: block;
  list-style: none;
  padding: 10px 10px;
}
.category-list li:hover {
  cursor: pointer;
  font-weight: bold;
  color: #1c81ff;
}
.category-list li .title {
  color: #aaa;
  font-weight: 200;
  margin-bottom: 15px;
}

.empty {
  background: #fff;
  padding: 2em 0;
  text-align: center;
  color: #aaa;
}

.footer {
  padding: 2em 0;
  text-align: center;
}
.footer .links {
  margin-bottom: 1em;
}
.footer .links li {
  display: inline-block;
  list-style: none;
  margin: 0 10px;
}

.post-page {
  width: 100%;
}
.post-page:after {
  content: "";
  clear: both;
  display: block;
}
.post-page .sidebar {
  float: right;
}

.card {
  background: #fff;
  padding: 15px 30px;
}

.post-wrapper {
  float: left;
  width: 805px;
}
.post-wrapper .card {
  margin-bottom: 15px;
}
.post-wrapper .info {
  border-bottom: 1px solid #f3f3f3;
  padding-bottom: 10px;
  margin-bottom: 1em;
  text-align: center;
}
.post-wrapper .info img {
  max-width: 100%;
}
.post-wrapper .info p {
  font-size: 13px;
  color: #aaa;
}
.post-wrapper .info p span {
  margin: 0 5px;
}
.post-wrapper .info h3 {
  font-size: 28px;
  line-height: 2.4;
}
.post-wrapper .content {
  line-height: 1.8;
}

.sidebar {
  width: 330px;
}
.sidebar .function {
  margin-bottom: 15px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.sidebar .function_t {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding: 10px 15px;
  color: #323232;
  line-height: 2;
}
.sidebar .function_c {
  padding: 15px;
  word-break: break-all;
}

#divSearchPanel .function_t {
  display: none;
}
#divSearchPanel form {
  display: flex;
}
#divSearchPanel input[type=text] {
  width: 100%;
  outline: none;
  border: 1px solid #eee;
  padding: 10px 15px;
  flex: 1;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
#divSearchPanel input[type=text]:focus {
  border: 1px solid #1c81ff;
}
#divSearchPanel input[type=submit] {
  width: 80px;
  background: #1c81ff;
  color: #fff;
  border: none;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

#divContorPanel .function_c {
  text-align: center;
  padding-bottom: 30px;
}
#divContorPanel .cp-hello {
  display: inline-block;
  margin-bottom: 1em;
}
#divContorPanel a {
  border: 1px solid #1c81ff;
  color: #1c81ff;
}
#divContorPanel a:hover {
  background: #1c81ff;
  color: #fff;
}

#divContorPanel a,
.btn {
  min-width: 80px;
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 13px;
  transition: all 0.2s;
}
#divContorPanel a:hover,
.btn:hover {
  opacity: 0.8;
}
#divContorPanel a.btn-plain,
.btn.btn-plain {
  border: 1px solid #1c81ff;
  color: #1c81ff;
}
#divContorPanel a.btn-primary, #divContorPanel a.btn-plain:hover,
.btn.btn-primary,
.btn.btn-plain:hover {
  background: #1c81ff;
  color: #fff;
}

#divCatalog ul, #divArchives ul, #divStatistics ul, #divFavorites ul, #divAuthors ul, #divTags ul {
  font-size: 0;
}
#divCatalog li, #divArchives li, #divStatistics li, #divFavorites li, #divAuthors li, #divTags li {
  font-size: 15px;
  width: 50%;
  display: inline-block;
  line-height: 2;
  padding: 3px;
}
#divCatalog li a, #divArchives li a, #divStatistics li a, #divFavorites li a, #divAuthors li a, #divTags li a {
  background: #fafafa;
  display: block;
  text-align: center;
  padding: 3px 0;
  transition: all 0.2s;
}
#divCatalog li a:hover, #divArchives li a:hover, #divStatistics li a:hover, #divFavorites li a:hover, #divAuthors li a:hover, #divTags li a:hover {
  background: #1c81ff;
  color: #fff;
}

#divComments li, #divPrevious li {
  list-style: none;
  border-bottom: 1px dashed #eee;
  padding: 10px 0;
  position: relative;
}
#divComments li:last-of-type, #divPrevious li:last-of-type {
  border-bottom: none;
}

.sidebar #divNavBar {
  padding: 0;
  height: auto;
  position: relative;
}
.sidebar #divNavBar ul {
  width: 100%;
}
.sidebar #divNavBar .navbar-item {
  display: block;
  line-height: 2.2;
}
.sidebar #divNavBar .navbar-item a {
  display: block;
}

#tbCalendar {
  width: 100%;
  line-height: 2;
}
#tbCalendar tbody a {
  background: #1c81ff;
  color: #fff;
  display: block;
}
#tbCalendar td {
  background: #fafafa;
  text-align: center;
  color: #676767;
  padding: 5px 0;
}

.widget-comment-item a {
  display: flex;
}
.widget-comment-item a .cmt-content {
  flex: 1;
  min-width: 0;
  padding-left: 15px;
}
.widget-comment-item a .icon img {
  width: 40px;
  height: 40px;
}

#divLinkage li {
  list-style-type: none;
  display: block;
  line-height: 2;
}

#divMisc li {
  display: inline-block;
  margin-right: 10px;
}

.comment li {
  list-style: none;
}
.comment .msg.msghead {
  padding-top: 0;
}
.comment .tbname {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}
.comment .msg {
  border-bottom: 1px solid #eee;
  padding: 15px 0 0;
  word-break: break-all;
}
.comment .msg .msg {
  padding-bottom: 0;
  border-bottom: none;
}
.comment .msgarticle {
  padding: 15px 15px 15px 65px;
}
.comment .msgarticle .msgarticle {
  padding-bottom: 0;
}
.comment .msgname {
  overflow: hidden;
}
.comment .msgname small {
  font-size: 13px;
  color: #aaa;
}
.comment .avatar {
  float: left;
  margin-right: 15px;
  width: 45px;
}

.post {
  margin-top: 20px;
}
.post .posttop {
  font-size: 20px;
  margin-bottom: 1em;
}

#frmSumbit p {
  margin-bottom: 10px;
}

.postbottom {
  text-align: center;
  line-height: 3;
}

input.text, textarea.text {
  border: 1px solid #ddd;
  border-radius: 3px;
  line-height: 34px;
  padding: 0 10px;
}

textarea.text {
  width: 100%;
}

.button {
  background: #1c81ff;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 15px;
  letter-spacing: 5px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  box-shadow: 0 3px 5px #ccc;
}
.button:hover {
  box-shadow: 0 5px 10px #ccc;
}

.breadthumb {
  padding: 15px 0;
}
.breadthumb a:after {
  content: "/";
  margin-left: 10px;
  margin-right: 10px;
  color: #aaa;
}

.pagebar {
  text-align: center;
  padding: 15px 0;
}
.pagebar .page {
  padding: 6px 10px;
  min-width: 36px;
  display: inline-block;
  background: #fff;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  transition: all 0.2s;
}
.pagebar .page:not(.now-page):hover {
  background: #eee;
  color: #000;
}
.pagebar .now-page {
  background: #1c81ff;
  color: #fff;
}

.content .intro {
  padding: 15px;
  background: #f8f8f8;
  margin-bottom: 1em;
  border-radius: 6px;
}
.content h1 {
  text-align: center;
  margin-bottom: 0.5em;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  margin: 1em 0;
  border-bottom: 1px solid #eee;
  line-height: 2;
}
.content h1, .content h2 {
  font-size: 28px;
}
.content h3 {
  font-size: 26px;
}
.content h4 {
  font-size: 22px;
}
.content h5 {
  font-size: 18px;
}
.content h6 {
  font-size: 16px;
}
.content img {
  max-width: 100%;
}
.content ul,
.content ol {
  padding-left: 1em;
  margin: 1em 0;
}
.content ul li,
.content ol li {
  border-bottom: 1px dashed #ccc;
  line-height: 2.4;
  list-style: none;
}

.lt-index-ad-link {
  box-sizing: border-box;
  width: 100%;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #eee;
  height: 200px;
}
.lt-index-ad-link img {
  height: 100%;
  display: block;
  margin: 0 auto;
}

.index-category {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.index-category li {
  padding: 10px;
  background: #fff;
  list-style: none;
}
.index-category a {
  display: block;
  text-align: center;
}

@media all and (max-width: 960px) {
  .container, .fade-container {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  #divNavBar {
    padding-left: 10px;
    padding-right: 10px;
  }
  #divNavBar .logo {
    margin-right: 0;
  }
  #divNavBar .logo h1 {
    font-size: 18px;
  }
  #divNavBar .logo img {
    height: 40px;
  }
  #divNavBar ul {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    width: 61.8%;
    background: #fff;
    border-top: 1px solid #eee;
    display: none;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
    line-height: 2;
  }
  #divNavBar ul.show {
    display: block;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 4px;
  }
  #divNavBar ul li {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #f3f3f3;
  }
  #divNavBar ul li a {
    display: block;
    padding: 10px;
    white-space: nowrap;
  }
  #divNavBar ul li ul {
    display: block;
    box-shadow: none;
    background: #fff;
    position: relative;
    width: 100%;
  }
  #divNavBar ul li:last-of-type {
    border-bottom: none;
  }
  #divNavBar .right {
    padding-top: 0;
  }
  #divNavBar #navbar-toggle, #divNavBar .icon-search {
    display: block;
    float: right;
    font-size: 22px;
    padding: 5px 10px;
    line-height: 1;
    margin-top: 12px;
  }
  #divNavBar #navbar-toggle:hover, #divNavBar .icon-search:hover {
    background: #eee;
  }
  #divNavBar .icon-search {
    margin-right: 0;
    font-size: 22px;
    margin-top: 12px;
  }
  #divSearch {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  #divSearch .title {
    font-size: 30px;
  }
  .left-bar {
    display: none;
  }
  .article-list-item {
    width: 100%;
  }
  .article-list-item .icon img {
    aspect-ratio: auto;
  }
  .article-list .icon {
    height: auto;
  }
  .sidebar, .post-wrapper {
    float: none;
    width: 100%;
  }
  .post-wrapper .info p .date {
    display: block;
  }
  .card {
    padding: 10px 15px;
  }
  .post-wrapper .info h3 {
    line-height: 1.5;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5em;
  }
  .post-wrapper .content img {
    max-width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
