/* color palette from <https://github.com/vuejs/theme> */
@font-face {
  font-family: Campton;
  font-weight: 300;
  src: url(/font/Campton-Light-1b86c8b0.woff2) format("woff2"), url(/font/Campton-Light-347d3ecd.woff) format("woff")
}

@font-face {
  font-family: Campton;
  font-weight: 400;
  src: url(/font/Campton-Book-f72bd1dd.woff2) format("woff2"), url(/font/Campton-Book-9f682535.woff) format("woff")
}

@font-face {
  font-family: Campton;
  font-weight: 500;
  src: url(/font/Campton-Medium-0128d1a6.woff2) format("woff2"), url(/font/Campton-Medium-bb200fe7.woff) format("woff")
}

:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;
  --color-link: #3974c6;
  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}

/* semantic color variables for this project */
:root {
  --color-background: var(--vt-c-white);
  --color-background-soft: var(--vt-c-white-soft);
  --color-background-mute: var(--vt-c-white-mute);

  --color-border: var(--vt-c-divider-light-2);
  --color-border-hover: var(--vt-c-divider-light-1);

  --color-heading: var(--vt-c-text-light-1);
  --color-text: var(--vt-c-text-light-1);

  --section-gap: 160px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-background: var(--vt-c-black);
    --color-background-soft: var(--vt-c-black-soft);
    --color-background-mute: var(--vt-c-black-mute);

    --color-border: var(--vt-c-divider-dark-2);
    --color-border-hover: var(--vt-c-divider-dark-1);

    --color-heading: var(--vt-c-text-dark-1);
    --color-text: var(--vt-c-text-dark-2);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: inherit;
}


video {
  object-fit: cover;
}

ul,
ol {
  list-style: none;
}

input,
button {
  font-family: inherit;
}

button {
  color: inherit;
  font: inherit;
  margin: 0;
  border: none;
  text-transform: none;
  -webkit-appearance: button;
}

input[type='button'],
input[type='submit'],
input[type='reset'] {
  -webkit-appearance: none;
}

textarea {
  -webkit-appearance: none;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  transition:
    color 0.5s,
    background-color 0.5s;
  line-height: 1.5;
  font-family: "Campton", "Arial";
  font-size: 14px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
address,
caption,
cite,
code,
em,
th,
p,
a,
li,
td,
b,
i,
div {
  font-family: "Campton", "Lucida Grande", "Lucida Sans Unicode", "Arial";
  font-size: inherit;
}

video {
  object-fit: contain;
  overflow-clip-margin: content-box;
  overflow: clip;
}

video::-webkit-media-controls-fullscreen-button {
  display: none;
}

iframe {
  border: none;
  padding: 0;
  margin: 0;
}

#login-iframe {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
}


.boxshadow {
  box-shadow: 0px 0px 10px #cccccc;
}

h1 {
  color: #333333;
  font-size: 32px;
  font-weight: bold;
}

h2 {
  font-size: 24px;
  font-weight: bold;
}

h3 {
  font-size: 18px;
  font-weight: bold;
}

h4 {
  font-size: 14px;
  font-weight: bold;
}

h5 {
  font-size: 12px;
  font-weight: bold;
}

div.btn-container {
  display: none !important;
}

.Vue-Toastification__toast--default {
  background-color: #ffffff !important;
  color: #333333 !important;
}

.Vue-Toastification__close-button {
  box-shadow: none !important;
}

.Vue-Toastification__close-button:hover {
  background-color: transparent;
}

.my-toast {
  top: 80px !important;
}



.pos {
  height: 70px;
  width: 100%;
}

.nav-header {
  padding: 0 24px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  z-index: 200;
}

.nav-header .mobile-menu-icon {
  display: none;
}

.nav-header .logo {
  color: var(--color-link);
  font-size: 24px;
  font-weight: bold;
  width: 45px;
  cursor: pointer;
}

.nav-header .menu ul {
  display: flex;
  align-items: center;
  height: 70px;
}

.mobile-h1 {
  display: none;
}

.nav-header .menu {
  position: relative;
}

.nav-header .menu ul li {
  line-height: 70px;
  align-items: center;
  background-color: #ffffff;
  padding: 0 24px;
  font-size: 14px;
  cursor: pointer;
}

.nav-header .menu ul li.active {
  color: var(--color-link);
}

.nav-header .menu ul li:hover {
  color: var(--color-link);
}





.nav-header .menu .user-menu {
  position: absolute;
  top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  right: -2px;
  background: #ffffff;
  box-shadow: 0px 0px 10px #cccccc;
  border-radius: 6px;
  transition: all;
  padding: 6px 0;
  font-size: 14px;
}


.nav-header .menu .user-menu .m-item {
  padding: 6px 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.footer {
  padding: 50px;
  background-color: #f5f5f5;

}

.footer .ft-box {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 14px;

}

.footer .ft-box .logo {
  width: 40px;
}

.footer .ft-box .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer .ft-box .rm {
  margin: 24px 0;
  font-weight: 500;
}

.footer .ft-box>div {
  width: 380px;
}

.footer .ft-box .fm-menu li {
  margin-bottom: 12px;
  font-weight: 500;
}

.footer .ft-box .fm-menu li a:hover {
  color: var(--color-link);
}

.footer .ft-box .links .link a {
  cursor: pointer;
}

.footer .ft-box .links .link a:hover {
  color: var(--color-link);
}

.content .article .crumbs {
  margin: 50px auto;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
  font-size: 16px;
}

.content .article .crumbs a {
  color: #999999;
}

.content .article .crumbs a:hover {
  color: var(--color-link);
}

.content .article .crumbs span {
  color: #999999;
}

.content {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.content .article {
  flex: 0.8;
  font-size: 18px;
  text-align: justify;
}

.content .article .ul1 {
  list-style: disc;
  padding-left: 36px
}

.content .article .ul2 {
  list-style: decimal;
  padding-left: 36px
}

.content .article h1 {
  margin: 24px 0;
  text-align: left;
}

.content .article h2 {
  margin: 24px 0;
  text-align: left;
}

.content .article h3 {
  margin: 24px 0;
  text-align: left;
}

.content .article p {
  margin: 24px 0;
  font-size: 16px;
}

.content .article a {
  color: var(--color-link);
}

.content .article .ti {
  padding-left: 36px;
}

.content .article-tabs {
  align-self: self-start;
  margin-top: 1.2rem;
  -ms-flex-item-align: start;
  max-width: 310px;
  float: right;
  position: sticky;
  top: 160px;
  width: 24%;
  box-sizing: border-box;
  border: 1px solid #E6E6E6;
  border-radius: 10px;
  padding-bottom: 10px;
}

.content .article-tabs .title {
  color: #000000;
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  padding: 18px 0;
  background-color: #F8F8F8;
  border-radius: 5px;
  margin: 10px 10px 15px;
}

.content .article-tabs ul li {
  margin-top: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #7b7b7b;
  padding: 10px;
  overflow: hidden;
  /* 防止文本溢出容器 */
  white-space: nowrap;
  /* 防止文本自动换行 */
  text-overflow: ellipsis;
  /* 将溢出的文本显示为省略符号 */
  cursor: pointer;
}

.content .article-tabs ul li a:hover {
  color: var(--color-link);
}

.content .article-tabs ul li a.active {
  color: var(--color-link);
}


.blogs {
  width: 1200px;
  margin: 50px auto;
}

.blogs h1 {
  text-align: center;
  margin: 50px 0;
}

.blogs .title {
  text-align: center;
  margin: 50px 0;
}

.blogs .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.blogs .list::after {
  content: '';
  width: 380px;
  text-align: justify;
  /* padding: 12px; */
  border-radius: 6px;
  margin-bottom: 24px;
}

.blogs .list li {
  width: 380px;
  text-align: justify;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.blogs .list li a:hover {
  text-decoration: underline;
}

.blogs .list li a h1 {
  font-size: 16px;
  font-weight: 500;
}

.blogs .list li a .desc {
  color: #999999;
  word-break: break-all;
}

.blogs .list li .header {
  text-align: left;
  margin: 12px 0;
}

.share {
  position: fixed;
  right: 30px;
  bottom: 300px;
  transition: all;
}

.share.show {
  right: 30px;
}

.share ul li {
  width: 50px;
  height: 43px;
  margin-bottom: 15px;
  background: url("./img/share_background.png") no-repeat center 0;
  background-size: 100% auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share ul li:hover {
  color: var(--color-link);
}

.share ul li .iconfont {
  font-size: 30px;
}

@media (max-width: 980px) and (orientation: portrait) {

  .share {
    display: none;
  }

  .mobile-h1 {
    display: block;
  }

  .pos {
    height: 1.4rem;
    width: 100%;
  }

  .nav-header {
    padding: 0 0;
    height: 1.4rem;
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: #ffffff;
    z-index: 200;
  }

  .nav-header .logo {
    color: var(--color-link);
    font-size: 0.48rem;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-header .logo a {
    width: 0.9rem;
    display: block;
  }

  .nav-header .mobile-menu-icon {
    display: flex;
    position: absolute;
    top: 0;
    left: 0.24rem;
    z-index: 200;
    font-size: 0.5rem;
    color: #333333;
    height: 100%;
    align-items: center;
  }

  .nav-header .mobile-menu-icon span {
    font-size: 0.6rem;
  }

  .nav-header .mobile-menu-icon .open-menu {
    display: block;
  }

  .nav-header .mobile-menu-icon .close-menu {
    display: none;
  }

  .nav-header .menu {
    display: none;
    position: fixed;
    top: 1.44rem;
    height: 100%;
    transition: all;
    background-color: #ffffff;
    left: 0;
    width: 100%;
    z-index: 200;
  }

  .nav-header .menu ul {
    display: flex;
    align-items: center;
    height: auto;
    flex-wrap: wrap;
  }

  .nav-header .menu ul li {
    line-height: normal;
    align-items: center;
    background-color: #ffffff;
    padding: 0;
    font-size: 0.28rem;
    cursor: pointer;
    border-bottom: 1px solid #cccccc;
    width: 100%;
  }

  .nav-header .menu ul li a {
    padding: 0.24rem;
    display: block;
  }

  .nav-header .menu ul li.active {
    color: var(--color-link);
  }

  .nav-header .menu ul li:hover {
    color: var(--color-link);
  }

  .blogs {
    width: 100%;
    margin: 1rem auto;
    padding: 0 0.24rem;
  }

  .blogs h1 {
    margin: 1rem 0;
  }

  .blogs .title {
    margin: 0.8rem auto;
    font-size: 0.5rem;
  }

  .blogs .list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }

  .blogs .list li {
    width: 100%;
    text-align: justify;
    padding: 0.24rem;
    border-radius: 0.12rem;
    margin-bottom: 0.5rem;
  }

  .footer {
    padding: 0.24rem 0.24rem 1rem;
  }

  .footer .ft-box {
    width: 100%;
    font-size: 0.28rem;
    flex-wrap: wrap;
  }

  .footer .ft-box>div {
    width: 50%;
  }

  .footer .ft-box .fl {
    width: 100%;
    margin-bottom: 0.48rem;

  }

  .footer .ft-box .logo {
    width: 0.8rem;
  }

  .footer .ft-box .rm {
    margin: 0.28rem 0;
  }

  .content .article-tabs {
    display: none;
  }

  .content {
    width: 100%;
  }

  .content .article {
    flex: 1;
    font-size: 0.36rem;
    padding: 0 0.24rem;
    word-break: break-all;
  }

  .content .article .ul1 {
    list-style: disc;
    padding: 0 0.24rem;
    font-size: 0.28rem;
  }

  .content .article .ul2 {
    list-style: decimal;
    padding: 0 0.24rem;
    font-size: 0.28rem;
  }

  .content .article .crumbs {
    margin: 0.5rem auto;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 0.2rem;
    font-size: 0.32rem;
  }

  .content .article h1 {
    font-size: 0.4rem;
    margin: 0.48rem 0;
    word-break: break-all;
    text-align: left;
  }

  .content .article h2 {
    font-size: 0.32rem;
    margin: 0.48rem 0;
    word-break: break-all;
    text-align: left;
  }

  .content .article h3 {
    font-size: 0.32rem;
    margin: 0.48rem 0;
    word-break: break-all;
    text-align: left;
  }

  .content .article p {
    margin: 0.48rem 0;
    word-break: break-all;
    font-size: 0.28rem;
  }
}