@charset "utf-8";

/* ==================== 基础重置 ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body, button, input, select, textarea {
  font-family: 'Microsoft YaHei', '微软雅黑', sans-serif;
  font-size: 14px;
  background: #f0f2f5;
  color: #333;
}
ul, ol, li { list-style: none; }
a:link, a:visited, a:hover, a:active { text-decoration: none; color: #333; }
img { border: none; max-width: 100%; }
.clear { clear: both; }
.fl { float: left; }
.fr { float: right; }
.wid1200 { width: 1200px; margin: 0 auto; }

/* ==================== 顶部条 ==================== */
.top {
  width: 100%;
  height: 35px;
  background: #424242;
  color: #e3e3e3;
  font-size: 12px;
  line-height: 35px;
}
.top a { padding: 0 10px; color: #e3e3e3; }
.top a:hover { color: #f0522f; }

/* ==================== Logo 区 ==================== */
.top-1 {
  width: 100%;
  height: 130px;
  background: #fff;
  border-bottom: 1px solid #dedede;
}
.top-1 .wid1200 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 130px;
}
.logo-link {
  display: block;
}
.logo-link img {
  display: block;
  height: 108px;
}
/* 搜索框 */
.search {
  display: flex;
  align-items: center;
  border: 2px solid #f0522f;
  border-radius: 4px;
  overflow: hidden;
}
.search input {
  width: 220px;
  height: 36px;
  border: none;
  outline: none;
  padding: 0 12px;
  font-size: 14px;
  color: #666;
}
.search button {
  width: 70px;
  height: 36px;
  background: #f0522f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}
.search button:hover { background: #d8451f; }

/* ==================== 导航栏 ==================== */
.menu-nav {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, #f0522f 0%, #e46c01 100%);
  box-shadow: 0 2px 8px rgba(240, 82, 47, 0.3);
}
.menu-nav ul {
  width: 1200px;
  margin: 0 auto;
  display: flex;
}
.menu-nav li {
  position: relative;
}
.menu-nav li a {
  display: block;
  padding: 0 28px;
  line-height: 50px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transition: all 0.25s ease;
}
.menu-nav li a:hover {
  background: rgba(255, 255, 255, 0.18);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.menu-nav li a.current {
  background: rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.menu-nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: #fff;
  transition: all 0.25s ease;
  transform: translateX(-50%);
}
.menu-nav li a:hover::after {
  width: 60%;
}

/* ==================== 内页 Banner ==================== */
.inner-banner {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.inner-banner .banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  align-items: center;
  padding-left: 60px;
}
.inner-banner h2 {
  color: #fff;
  font-size: 38px;
  letter-spacing: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
}
.inner-banner .banner-en {
  position: absolute;
  bottom: 18px;
  right: 40px;
  color: rgba(255,255,255,0.35);
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 0;
}

/* ==================== 主体区域 ==================== */
.mainWrap {
  width: 100%;
  padding: 30px 0 50px;
}
.main {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* --- 左侧栏 --- */
.left {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.lmcc {
  background: linear-gradient(135deg, #f0522f 0%, #e46c01 100%);
  height: 90px;
  line-height: 90px;
  color: #fff;
  padding-left: 30px;
  font-size: 24px;
  letter-spacing: 2px;
}
.left-list {
  padding: 15px 0 20px;
}
.left-list ul li { width: 100%; }
.left-list ul li a {
  display: block;
  width: 100%;
  padding: 0 30px;
  line-height: 44px;
  font-size: 15px;
  color: #555;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
.left-list ul li a:hover,
.left-list ul li a.left-current {
  background: #fff8f5;
  color: #f0522f;
  border-left-color: #f0522f;
  font-weight: 500;
}

/* 左侧文章列表（详情页用） */
.article-list {
  padding: 8px 0 15px;
}
.article-list ul li {
  width: 100%;
  float: none;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}
.article-list ul li:last-child {
  border-bottom: none;
}
.article-list ul li a {
  display: block;
  width: 100%;
  padding: 0 12px 0 20px;
  line-height: 22px;
  font-size: 13px;
  color: #666;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
  position: relative;
}
.article-list ul li a::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  left: 8px;
  top: 9px;
  transition: all 0.2s ease;
}
.article-list ul li a:hover,
.article-list ul li a.article-current {
  background: #fff8f5;
  color: #f0522f;
  border-left-color: #f0522f;
  font-weight: 500;
}
.article-list ul li a:hover::before,
.article-list ul li a.article-current::before {
  background: #f0522f;
  width: 6px;
  height: 6px;
  left: 7px;
}
/* 左侧统计卡片 */
.left-stats {
  margin: 20px 15px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
}
.left-stats .stat-item {
  text-align: center;
  margin-bottom: 22px;
}
.left-stats .stat-item:last-child { margin-bottom: 0; }
.left-stats .stat-num {
  font-size: 34px;
  color: #f0522f;
  font-weight: bold;
  line-height: 1;
}
.left-stats .stat-label {
  font-size: 13px;
  color: #999;
  margin-top: 6px;
}

/* --- 右侧内容区 --- */
.right {
  flex: 1;
  min-width: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* 面包屑 */
.breadcrumb {
  padding: 18px 30px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  color: #999;
}
.breadcrumb a { color: #888; }
.breadcrumb a:hover { color: #f0522f; }
.breadcrumb .sep { margin: 0 6px; color: #ccc; }
.breadcrumb .current { color: #f0522f; }

/* ==================== 列表页样式 ==================== */

/* 列表 */
.list-wrap {
  padding: 10px 30px 30px;
}
.list-title {
  font-size: 20px;
  color: #333;
  padding: 15px 0 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.list-title::before {
  content: '';
  width: 4px;
  height: 20px;
  background: #f0522f;
  border-radius: 2px;
}
.list li {
  width: 100%;
  height: 48px;
  line-height: 48px;
  border-bottom: 1px dashed #e8e8e8;
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
  padding-left: 4px;
}
.list li:hover {
  background: #fff8f5;
  padding-left: 14px;
}
.list li a {
  flex: 1;
  padding-left: 16px;
  font-size: 15px;
  color: #444;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6' viewBox='0 0 6 6'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23f0522f'/%3E%3C/svg%3E") left center no-repeat;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.list li a:hover { color: #f0522f; }
.list li .date {
  width: 90px;
  text-align: right;
  font-size: 13px;
  color: #bbb;
  flex-shrink: 0;
}

/* 分页 */
.pagination {
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.pagination a, .pagination span {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 3px;
  font-size: 14px;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.pagination a:hover {
  background: #f0522f;
  color: #fff;
  border-color: #f0522f;
}
.pagination .current {
  background: #f0522f;
  color: #fff;
  border-color: #f0522f;
}

/* ==================== 详情页样式 ==================== */

/* 文章头部 */
.article-header {
  padding: 30px 40px 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.article-header h1 {
  font-size: 26px;
  color: #333;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: #999;
}
.article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.article-meta .meta-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
}

/* 企业信息卡片 */
.info-cards {
  display: flex;
  gap: 0;
  margin: 0 40px 25px;
  background: #fafafa;
  border-radius: 6px;
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.info-card {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid #f0f0f0;
}
.info-card:last-child { border-right: none; }
.info-card .ic-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 6px;
}
.info-card .ic-value {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}
.info-card .ic-value.highlight {
  color: #f0522f;
  font-weight: bold;
}

/* 文章正文 */
.article-body {
  padding: 25px 40px 30px;
}
.content-con {
  float: none !important;
}
.article-body p {
  font-size: 15px;
  line-height: 2;
  color: #444;
  margin-bottom: 18px;
  text-indent: 2em;
  text-align: justify;
}
.article-body .article-images {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.article-body .article-images img {
  max-width: 48%;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.article-body .img-caption {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 8px;
  margin-bottom: 20px;
  text-indent: 0;
}

/* 正文中的小标题 */
.article-body h3 {
  font-size: 17px;
  color: #333;
  font-weight: bold;
  margin: 25px 0 12px;
  padding-left: 12px;
  border-left: 4px solid #f0522f;
  line-height: 1.4;
}

/* 多页文章 - 页码下拉选择器 */
.article-pageselect {
  padding: 15px 40px 0;
  text-align: right;
}
.article-pageselect select {
  padding: 6px 12px;
  font-size: 13px;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fafafa url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E") right 10px center no-repeat;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 30px;
}
.article-pageselect select:hover {
  border-color: #f0522f;
  color: #f0522f;
}

/* 附件下载区 */
.article-attach {
  margin: 0 40px 20px;
  padding: 20px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
}
.article-attach .attach-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #f0522f;
}
.article-attach ul {
  list-style: none;
}
.article-attach li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #e8e8e8;
}
.article-attach li:last-child {
  border-bottom: none;
}
.article-attach .attach-icon {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f0522f;
  color: #fff;
  border-radius: 3px;
  font-size: 10px;
  font-weight: bold;
  flex-shrink: 0;
}
.article-attach .attach-link {
  flex: 1;
  font-size: 14px;
  color: #555;
  transition: color 0.2s ease;
}
.article-attach .attach-link:hover {
  color: #f0522f;
}
.article-attach .attach-count {
  font-size: 12px;
  color: #aaa;
  flex-shrink: 0;
}

/* 多页文章 - 底部分页导航 */
.article-pagenav {
  padding: 20px 40px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.article-pagenav a,
.article-pagenav span {
  display: inline-block;
  padding: 6px 14px;
  margin: 0 3px;
  font-size: 14px;
  color: #666;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.article-pagenav a:hover {
  background: #f0522f;
  color: #fff;
  border-color: #f0522f;
}
.article-pagenav .current {
  background: #f0522f;
  color: #fff;
  border-color: #f0522f;
  font-weight: bold;
}

/* 上一条/下一条导航 */
.article-nav {
  margin: 0 40px;
  padding: 20px 0;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  clear: both;
  overflow: hidden;
}
.article-nav .nav-prev,
.article-nav .nav-next {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px;
  background: #f8f8f8;
  border-radius: 6px;
  transition: all 0.2s ease;
  max-width: 48%;
}
.article-nav .nav-next {
  text-align: right;
  margin-left: auto;
}
.article-nav .nav-prev:hover,
.article-nav .nav-next:hover {
  background: #fff8f5;
}
.article-nav .nav-label {
  font-size: 12px;
  color: #bbb;
}
.article-nav .nav-title {
  font-size: 14px;
  color: #555;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.article-nav .nav-prev:hover .nav-title,
.article-nav .nav-next:hover .nav-title {
  color: #f0522f;
}

/* 返回列表按钮 */
.back-to-list {
  text-align: center;
  padding: 20px 40px 30px;
}
.back-to-list a {
  display: inline-block;
  padding: 10px 30px;
  font-size: 14px;
  color: #f0522f;
  border: 1px solid #f0522f;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.back-to-list a:hover {
  background: #f0522f;
  color: #fff;
}

/* ==================== 页脚 ==================== */
.foot {
  width: 100%;
  background: #2d2d2d;
  padding: 36px 0;
  text-align: center;
}
.foot p {
  font-size: 13px;
  color: #999;
  line-height: 2;
}
.foot .foot-links {
  margin-bottom: 12px;
}
.foot .foot-links a {
  color: #bbb;
  font-size: 13px;
  margin: 0 10px;
}
.foot .foot-links a:hover { color: #f0522f; }
.foot .copyright {
  color: #777;
  font-size: 12px;
}