@charset "utf-8";
/* CSS Document */
/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Microsoft YaHei", Arial, sans-serif;
  background-color: #f5f5f5; /* 浅灰色背景 */
  color: #333;
  line-height: 1.6;
}
ul, li {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

a:hover {
  color: #0063B1; /* 主色调蓝色 */
}
.page-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
.clear{clear:both; float:none;}

/* 头部样式 */
header {
  background-color: white;
  border-bottom: 1px solid #e1e5e8;
}

.header-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  max-height: 50px;
}

.main-nav ul {
  display: flex;
}

.main-nav li {
  margin-left: 30px;
}

.main-nav a {
  color: #333;
  font-size: 16px;
  font-weight: 500;
}

.main-nav a:hover {
  color: #0063B1;
}

/* 主要内容区域 */
.content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}

.main-content {
  width: 72%;
  background-color: white;
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.article-header h1 {
  color: #0063B1;
  margin-bottom: 15px;
  font-size: 24px;
}

.article-meta {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.article-meta span {
  margin-right: 15px;
}

.article-content {
  margin-bottom: 30px;
}

.article-content p {
  margin-bottom: 15px;
  font-size: 16px;
}

/* 表格样式tabel */
.ke-zeroborder,
.table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  width: 100%;
  border-left: 1px solid #d1e4f0;
  border-top: 1px solid #d1e4f0;
  background: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ke-zeroborder td,
.table td,
.ke-zeroborder th,
.table th {
  border-bottom: 1px solid #d1e4f0;
  border-right: 1px solid #d1e4f0;
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}

.ke-zeroborder .thead,
.table .thead,
.ke-zeroborder thead tr,
.table thead tr {
  background: #f0f7ff;
  color: #0063B1;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  height: 40px;
  text-align: center;
}

.ke-zeroborder td a,
.table td a {
  color: #0063B1;
  padding: 2px 4px;
  border-radius: 3px;
  transition: all 0.2s ease;
}

.ke-zeroborder td a:hover,
.table td a:hover {
  color: #fff;
  background-color: #0063B1;
  text-decoration: none;
}

.ke-zeroborder td a:visited,
.table td a:visited {
  color: #6699cc;
  background: transparent;
  border: none;
}

.ke-zeroborder .blue a,
.ke-zeroborder .blue,
.table .blue a,
.table .blue {
  color: #0063B1;
  font-weight: 500;
}

.ke-zeroborder tr:hover,
.table tr:hover {
  background-color: #f8fbff;
  box-shadow: 0 1px 3px rgba(0, 99, 177, 0.08);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}



/* 相关文章样式 */
.related-posts {
  margin: 30px 0;
  padding-top: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #f0f2f5;
}

.related-posts h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.related-posts ul {
  list-style: none;
  padding-left: 20px;
}

.related-posts li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 15px;
  color:#CCC;
}

.related-posts li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #b6d2f9;
  border-radius: 2px;
}

.related-posts a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.related-posts a:hover {
  color: #0063B1;
  font-weight:bold;
}

/* 标签区域 */
.tags-section {
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.tags-section a {
  display: inline-block;
  color: #0063B1;
  text-decoration: none;
  margin-right: 20px;
  padding: 5px 10px;
  border: 1px solid #0063B1;
  border-radius: 3px;
  transition: all 0.3s;
}

.tags-section a:hover {
  background-color: #0063B1;
  color: white;
}

.tags-section .product-link {
  float: right;
  background-color: #0063B1;
  color: white;
}

/* 作者区域 */
.author-section {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 5px;
}

.author-section h3 {
  color: #0063B1;
  margin-bottom: 15px;
  font-size: 18px;
}

.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-details {
  line-height: 1.8;
}

.author-name {
  font-weight: bold;
  font-size: 16px;
}

.author-date {
  color: #666;
  font-size: 14px;
}

.product-info p {
  margin-bottom: 10px;
  font-size: 15px;
}


/* 列表容器样式 */
.list {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  overflow: hidden;
}

/* 列表内容样式 */
.list_content {
  padding: 25px;
}

.list_content ul {
  padding-left: 15px;
}

.list_content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 14px;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list_content li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #b6d2f9;
  border-radius: 2px;
}

.list_content a {
  color: #333;
  flex: 1;
  transition: color 0.3s;
}

.list_content a:hover {
  color: #0063B1;
}

.list_content span {
  color: #86909c;
  margin-left: 15px;
  white-space: nowrap;
  font-size: 14px;
}

/* 分页样式 */
.list_page {
  padding: 15px 25px;
  background-color: #f8fafc;
  text-align: center;
  border-top: 1px solid #f0f2f5;
}

.list_page a, .list_page b {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px;
  border-radius: 4px;
  font-size: 14px;
}

.list_page a {
  color: #333;
  background-color: #fff;
  border: 1px solid #e1e5e8;
  transition: all 0.3s;
}

.list_page a:hover {
  color: #fff;
  background-color: #0063B1;
  border-color: #0063B1;
}

.list_page b {
  color: #fff;
  background-color: #0063B1;
  border: 1px solid #0063B1;
  font-weight: 500;
}


/* 侧边栏样式 */
.sidebar {
  width: 26%;
}

.sidebar-section {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-section h3 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #0063B1;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f2f5;
}

.sidebar-section h3 a {
  color: #0063B1;
}

.sidebar-links {
  list-style: none;
  padding-left: 15px;
}

.sidebar-links ul {
  list-style: none;
}
.sidebar-links li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-links a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.sidebar-links a:hover {
  color: #0063B1;
}
.sidebar-links li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: #b6d2f9;
  border-radius: 2px;
}

/*gg 通栏区域*/
#footer-gg{margin:0px auto;width:100%;}
.tonglan_gg_div{margin:0px auto;text-align:center;height:auto; overflow:hidden; background:#FEFEFE}
.tonglan_gg_div img{width:100%;height:auto;object-fit:cover;}

/* 底部样式 */
footer {
  background-color: #016aae;
  color: white;
  margin-top: 50px;
}

.footer-inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0 20px;
}

.fanhuitop {
  text-align: center;
  margin-bottom: 30px;
}

.friend-links {
  margin-bottom: 30px;
}

.friend-links h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 500;
}

.friend-links ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 25px;
}

.friend-links li {
  margin-right: 20px;
  margin-bottom: 10px;
}

.friend-links a {
  color: #c9e0f2;
  font-size: 14px;
  text-decoration: none;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #c9e0f2;
  line-height: 1.8;
}

.copyright a {
  color: #c9e0f2;
}
.stats {
  font-size: 13px;
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stats a {
  color: white;
  text-decoration: none;
}
/*返回Top*/
.fanhuitop{position:fixed;right:90px;bottom:40px;}
.fanhuitop img{width:60px;height:60px;}