@charset "UTF-8";
:root {
  --kan-font-color: #76818c;
  --kan-h1-color: #001737;
  --kan-header-color: hsl(214.74deg 19.19% 19.41%);
  --kan-bg-color: #f3f1f5;
  --kan-app-color: #f3f8fb;
  --kan-article-p-color: #001737;
  --kan-article-p-size: 16px;
  --kan-font-a-active-color: #76818c;
  --kan-font-a-hover-color: #001737;
  --kan-font-a-visited-color: #ffffff;
  --kan-font-a-color: #ffffff;
  --kan-line-color: #e6e5e5;
  --kan-font-desc-color: #878787;
}

@font-face {
  font-family: "KanLai";
  src: url("font/font.ttf") format("ttf");
}
* {
  font-family: KanLai, sans-serif;
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: var(--kan-font-a-color);
}
a:active {
  color: var(--kan-font-a-active-color);
  text-decoration: none;
}
a:hover {
  color: var(--kan-font-a-hover-color);
  text-decoration: none;
}
a:visited {
  color: var(--kan-font-a-visited-color);
  text-decoration: none;
}

ul, ul li {
  list-style: none;
  display: flex;
}

html, body, #app {
  width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

::-webkit-scrollbar {
  width: 5px; /* 设置滚动条宽度 */
}

/* 自定义滚动条滑块样式 */
::-webkit-scrollbar-thumb {
  background-color: rgba(255, 0, 0, 0.74); /* 设置滑块背景颜色 */
  border-radius: 5px; /* 设置滑块的圆角 */
}

/* 自定义滚动条滑道样式 */
::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* 设置滑道背景颜色 */
}

body {
  background: linear-gradient(to right, #f0f2f5 50%, #383838 50%);
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr30 {
  margin-right: 30px;
}

header {
  width: 100%;
  background-color: var(--kan-header-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
header .webNav {
  width: 1200px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .webNav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
header .webNav .logo .logo-title {
  font-family: "Fontdiner Swanky", cursive;
  font-size: 20px;
  margin: 5px 10px 0 5px;
  color: rgb(22, 224, 194);
  user-select: none;
}
header .webNav .logo span > sup, header .webNav .logo span > sub {
  margin-left: 5px;
  border-radius: 50%;
  font-size: 12px;
  background-color: #001737;
  padding: 5px;
}
header .webNav ul li {
  height: 60px !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
header .webNav ul li a {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  color: #d49090;
}
header .webNav ul li a samp {
  margin-left: 3px;
}
header .webNav ul li .sub {
  width: 0;
  position: absolute;
  top: 57px;
  border-bottom: 3px solid #1c91ac;
  transition: width 0.5s;
}
header .webNav ul li.active .sub {
  width: 100%;
}
header .webNav ul li:hover .sub {
  width: 100%;
}

.container {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  min-height: calc(100vh - 60px);
}

.content {
  width: 1200px;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  min-height: calc(100vh - 60px);
}

.iconfont {
  cursor: pointer;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.content .grid-item {
  display: inline-block;
  width: 220px;
  margin: 10px;
  box-sizing: border-box;
  background-color: #f0f0f0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 5px;
}
.content .grid-item .item-tools {
  display: flex;
  height: 40px;
  border-top: 1px solid #e6e5e5;
  background-color: #001737;
  border-radius: 0 0 5px 5px;
  padding: 10px 0;
}
.content .grid-item .item-tools div {
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.content .grid-item .item-tools div span:last-child {
  font-size: 12px;
  color: #f0f2f5;
}
.content .grid-item .item-tools div span:last-child a {
  font-size: 12px;
  color: #f0f2f5;
}
.content .grid-item .item-tools div:nth-child(2) {
  position: relative;
}
.content .grid-item .item-tools div:nth-child(2):after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #8e8a8a;
  top: 5px;
  right: 0;
}
.content .grid-item .item-tools div:first-child {
  flex: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.content .grid-item .item-tools div:first-child:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #8e8a8a;
  top: 5px;
  right: 0;
}
.content .grid-item .item-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.content .grid-item .item-img img {
  border-radius: 5px 5px 0 0;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.content .grid-item .item-img img:hover {
  transform: scale(1.1);
}
.content .grid-item div.datetime {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .grid-item div.datetime p {
  display: flex;
  align-items: center;
  padding: 3px;
}
.content .grid-item div.datetime p span a {
  margin-left: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #79bbff;
}
.content .grid-item div.datetime p span a em {
  color: #529b2e;
  font-weight: bold;
}
.content .grid-item p, .content .grid-item h3 {
  padding: 5px 20px;
}
.content .grid-item p a, .content .grid-item h3 a {
  font-size: 16px;
  font-weight: bold;
  color: #191919;
  text-align: center;
  word-break: break-all;
}
.content .grid-item p.desc a, .content .grid-item h3.desc a {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  color: #7a7a7a;
  text-align: center;
}

.content .article {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: calc(100vh - 60px);
  margin-top: 10px;
  box-sizing: border-box;
}
.content .article article {
  display: flex;
  flex-direction: column;
  background-color: white;
  flex: 1;
  margin: 0 0 0 20px;
  box-sizing: border-box;
  padding: 10px 40px;
  border-radius: 5px 0 0 0;
  border-right: 1px dashed #cfcfcf;
}
.content .article article img {
  width: 100%;
  object-fit: contain;
}
.content .article article h1 {
  font-size: 28px;
  padding: 20px 0 15px 0;
}
.content .article .article-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  margin: 20px 0;
}
.content .article .article-img img {
  border-radius: 5px;
  width: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
.content .article .article-datetime {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e5e5;
}
.content .article .article-datetime p {
  display: flex;
  align-items: center;
  padding: 5px 0;
  margin-right: 20px;
}
.content .article .article-datetime p span {
  margin-left: 5px;
  font-size: 12px;
  font-weight: bold;
  color: #79bbff;
}
.content .article .article-datetime p span em {
  color: #529b2e;
  font-weight: bold;
}
.content .article .article-left, .content .article .article-right {
  flex-shrink: 0;
  flex-basis: 300px;
  background-color: #f0f2f5;
  box-sizing: border-box;
  border-radius: 5px 5px 0 0;
}
.content .article .article-left {
  background-color: white;
}
.content .article .article-right {
  flex-basis: 130px;
  flex-shrink: 0;
  box-sizing: border-box;
  border-radius: 0 5px 0 0;
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.content .article .article-right ul {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.content .article .article-right li {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  align-items: center;
}
.content .article .article-right li.datetime p {
  position: relative;
}
.content .article .article-right li.datetime p:before {
  position: absolute;
  content: "";
  right: 45px;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #001737;
}
.content .article .article-right li.datetime p:after {
  position: absolute;
  content: "";
  right: -15px;
  top: 50%;
  width: 10px;
  height: 1px;
  background-color: #001737;
}
.content .article .article-right li img {
  padding: 3px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #b6e6f3;
}
.content .article .article-right li.btn {
  width: 100%;
  height: 30px;
  background-color: #1980bc;
  border-radius: 5px;
  display: flex;
  padding: 3px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.content .article .article-right li.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content .article .article-right li.btn a span {
  margin-left: 5px;
}
.content .article .article-right li.btn a:hover {
  color: #a713e2;
}
.content .article .article-right li.line p {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #001737;
  width: 100%;
  padding-bottom: 5px;
}
.content .article .article-right li.link {
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  justify-content: center;
  padding: 3px;
}
.content .article .article-right li.link a {
  font-size: 12px;
  color: #001737;
}

.content404 {
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.html404 {
  width: 1000px;
  min-height: calc(100vh - 60px);
  cursor: url(images/404/cursors-edge.png), auto;
  display: flex;
}
.html404 * {
  user-select: none;
}
.html404 h1 {
  font-family: "Fontdiner Swanky", cursive;
  font-size: 4rem;
  color: #c5dc50;
  margin-bottom: 1rem;
}
.html404 p {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #fff;
  margin-bottom: 1rem;
}
.html404 p:last-child {
  margin-bottom: 2.5rem;
}
.html404 p em {
  font-style: italic;
  color: #c5dc50;
}
.html404 aside, .html404 main {
  background-image: url(images/404/right-edges.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 25px 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 60px);
  max-width: 500px;
  box-sizing: border-box;
  width: 100%;
  padding: 2.5rem;
}
.html404 aside img, .html404 main img {
  width: 100%;
}
.html404 main {
  background: #383838;
}
.html404 main button {
  width: 230px;
  height: 60px;
  font-family: "Fontdiner Swanky", cursive;
  font-size: 1rem;
  color: #383838;
  border: none;
  background-color: #f36a6f;
  transform: skew(-5deg);
  transition: all 0.1s ease;
  cursor: url(images/404/cursors-eye.png), auto;
  box-sizing: border-box;
}
.html404 main button:hover {
  background-color: #c5dc50;
  transform: scale(1.15);
  box-sizing: border-box;
}

.footer-line {
  width: 100vw;
  height: 10px;
  background-color: #e6e5e5;
}

.footer {
  width: 100vw;
  height: 100px;
  background-color: #383838;
}

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