/* 全局样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Microsoft YaHei", sans-serif;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.wps_ai_link[data-v-5122f198]{font-family:BlinkMacSystemFont,Microsoft YaHei,-apple-system,Source Han Sans CN,Inter,Helvetica Neue,Helvetica,Arial,sans-serif;padding:0;min-width:unset;min-height:unset;position:fixed;left:-100px;top:-100px;cursor:pointer;display:inline-flex;justify-content:center;align-items:center;width:0;height:26px;border:1px solid #dae4e0;background:#fff;overflow:hidden;margin-left:12px;transition:translateX(100%) .5s ease;z-index:2147483647}.wps_ai_link .wps_ai_link_title[data-v-5122f198]{margin-left:4px;color:#5f6368;text-align:center;font-size:14px;font-style:normal;font-weight:400;line-height:16px}.wps_ai_link[data-v-5122f198]:hover{background:#f0f0f0}.wps_ai_link[data-v-5122f198]:active{background:#dadada}.dark_skin[data-v-5122f198]{border:1px solid hsla(0,0%,100%,.5);background:#3a3b3e}.dark_skin .wps_ai_link_title[data-v-5122f198]{color:#fff}.dark_skin[data-v-5122f198]:hover{background:#2d2e31}.dark_skin[data-v-5122f198]:active{background:#353639}
/* 浅色主题 */
:root {
  --body-bg: #f7f8fa;
  --card-bg: #ffffff;
  --text: #333333;
  --text-secondary: #666666;
  --border: #eeeeee;
  --theme: #409eff;
  --light-bg: #f5f7fa;
}

/* 深色主题 */
[data-theme="dark"] {
  --body-bg: #121212;
  --card-bg: #1e1e1e;
  --text: #e0e0e0;
  --text-secondary: #a0a0a0;
  --border: #333333;
  --theme: #409eff;
  --light-bg: #2a2a2a;
}

body {
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  border-radius: 6px;
  object-fit: cover;
}
.clear{clear: both;}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* 顶部导航 */
.header {
  background: var(--card-bg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--theme);
}

.nav-menu {
  display: flex;
  gap: 25px;
}
.nav-menu li{float: left;}
.nav-menu a {
  font-size: 16px;
  padding: 6px 0;
}

.nav-menu a.active,
.nav-menu a:hover {
  color: var(--theme);
  border-bottom: 2px solid var(--theme);
}

/* 搜索 & 主题切换 */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search { background: #ed4040; position: relative; border: #ed4040 2px solid; border-radius: 5px; overflow: hidden;  width: 300px;}
.search input.input_submit { border: 0; color: #fff; outline: none; position: absolute; top: 0; right: 0; width: 25%; display: block; font-size: 15px; height: 36px; line-height: 36px; text-indent: 1em; cursor: pointer; background: url(../images/search.png) no-repeat left 10px center; background-size: 21px; }
.search input.input_text { border: 0; line-height: 36px; height: 36px; font-size: 14px; width: 75%; outline: none; text-indent: 1em; }


.theme-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--light-bg);
  border: none;
  color: var(--text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 主体布局 */
.main {
  display: flex;
  justify-content: space-between;
  margin: 30px auto;
  gap: 25px;
}

.main-left {
  width: 70%;
}

.main-right {
  width: 30%;
}

/* 卡片公共样式 */
.card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* 轮播图 */
.swiper {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.swiper-item {
  display: none;
  width: 100%;
  height: 100%;
}

.swiper-item.active {
  display: block;
}

.swiper-item img {
  width: 100%;
  height: 100%;
}

.swiper-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 16px 22px;
  font-size: 18px;
}

.swiper-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 15px; }
.next { right: 15px; }

.swiper-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 8px;
}
/*pagelist*/
.pagelist { text-align: center; color: #666; width: 100%; clear: both; margin: 20px 0 10px; }
.pagelist a { color: #666; margin: 0 5px 10px; padding: 5px 10px; background: #F7F7F7; display: inline-block; }
.pagelist a:nth-child(1) { display: none }
.pagelist a:hover, .pagelist > b { color: #3690cf; color: #FFF; background: #1C2327; }
.pagelist > b { padding: 5px 10px; }
a.curPage { color: #ffffff; font-weight: bold; background: #000; }

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* 文章图文列表 */
.article-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
}

.article-item:last-child {
  border-bottom: none;
}

.article-img {
  width: 180px;
  height: 125px;
  flex-shrink: 0;
  position: relative;
  top: 10px;
}
.article-img .img{display: block; width: 100%; height: 100%;}
.article-cate {
  position: absolute;
  top: 6px;
  left: 6px;
  background: var(--theme);
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
}

.article-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-title {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 8px;
}

.article-title:hover {
  color: var(--theme);
}

.article-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 10px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-meta {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  gap: 14px;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 文章内容页 */
.article-content {
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.9;
}

.article-content p {
  margin-bottom: 18px;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: var(--light-bg);
  border-radius: 8px;
  margin: 20px 0;
}

.article-nav a {
  color: var(--theme);
}

/* 右侧侧边栏 */
.avatar {
  text-align: center;
  margin-bottom: 16px;
}

.avatar img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--light-bg);
}

.name {
  font-weight: bold;
  margin: 10px 0;
}

.desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags a {
  padding: 5px 10px;
  background: var(--light-bg);
  border-radius: 4px;
  font-size: 13px;
}

.tags a:hover {
  background: var(--theme);
  color: #fff;
}

.web-info li {
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.web-info li:last-child {
  border-bottom: none;
}

/* 底部 */
.footer {
  background: #1e1e1e;
  color: #fff;
  padding: 32px 0;
  text-align: center;
}

.footer-nav {
  margin-bottom: 14px;
}

.footer-nav a {
  margin: 0 14px;
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--theme);
}

.copyright {
  font-size: 13px;
  color: #aaa;
}

/* 自适应适配 */
@media (max-width: 992px) {
  .main {flex-direction: column;}
  .main-left, .main-right { width: 100%;}
  .nav-menu {gap: 15px;}
  .nav-right .search { display:none;}
  .theme-toggle{position: relative; top: 0px; right: 10px;}
  .logo{text-align: center;}
}

@media (max-width: 768px) {
  .nav { flex-wrap: wrap; height: auto; padding: 10px 0;}
  .nav-menu { width: 100%;justify-content: center; margin-top: 10px;}
  .article-item {flex-direction: column;}
  .article-img { width: 100%; height: 200px;}
  .swiper { height: 240px; }
  .nav-right .search { display:none;}
  .logo{text-align: center;}
}


.sitemaplist{padding:0 20px;}
.sitemaplist li{padding:0 10px;}
.sitemaplist li a{font-size:15px;}

.box, article { width: 1170px; margin: auto; overflow: hidden }
/*news-title*/
.news-title {border-bottom: #e4e3e3 1px solid;margin: 20px;padding-bottom: 10px;overflow: hidden;}
.news-title h2 {color: #1487f4;font-size: 16px;font-weight: normal;position: relative;float: left;/* width: 84px; */text-align: center;}
.news-title h2 a { color: #1487f4; }
.news-title h2:after {content: "";background: #1487f4;background: linear-gradient(to right, #0062ff 0%, #00a0ec 100%);width: 100%;height: 2px;position: absolute;bottom: -10px;left: 0;}
/*tag*/
.tag { position: relative; overflow: hidden; }
.tag .listtag{width: 1170px; height: auto; margin-bottom: 100px;
}
.tag .listtag a{display: block; float: left; font-size:12px; width:10%; text-align:center; color: #615f5f; padding: 10px 0; position: relative; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}





.tag .listtag a:after, .tag .listtag a:before { content: ""; background: #fff; top: 0; width: 2px; height: 100%; position: absolute; }
.tag .listtag a:after { right: 0; }
.tag .listtag a:before { left: 0 }
.tag .listtag a:hover { background: #1487f4; color: #fff; }




.article-content table { margin: auto !important }
.article-content table { min-width: 100%; border-width: 1px; border-color: #666; border-collapse: collapse; font-size: 15px; line-height: 26px; }
.article-content table th { border-width: 1px; padding: 4px 8px; border-style: solid; border-color: #666; }
.article-content table td { border-width: 1px; padding: 4px 8px; border-style: solid; border-color: #666; }

.article-content blockquote {padding: 4px 4px 4px 10px; margin: 0px auto 10px auto;border-left: #74cde6 3px solid;}
.article-content blockquote p {padding: 0px 4px;font-size: 14px;margin: 0px;line-height: 26px;}




























