/* =============================================
   人行专区页面 - 统一项目风格（全宽布局）
   ============================================= */

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Microsoft Yahei", "微软雅黑", Tahoma, Arial, Helvetica, STHeiti;
}

#app {
  width: 100%;
  margin: 0 auto;
}

/* =============================================
   Header
   ============================================= */
.header-top {
  margin-bottom: 0;
}

/* =============================================
   Banner 区域
   ============================================= */
.banner_wrapper {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #1a56db 0%, #0a78e5 30%, #3b82f6 60%, #06b6d4 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner_wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.banner_wrapper::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.banner_decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 60px 60px;
}

.banner_wrapper .banner_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 10;
}

.banner_wrapper .banner_main {
  text-align: center;
}

.banner_wrapper .banner_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.banner_wrapper .logo_icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  padding: 8px;
}

.banner_wrapper .logo_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner_wrapper .logo_text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.banner_wrapper .jinshui_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.banner_wrapper .jinshui_icon .icon_wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.85), rgba(252, 126, 12, 0.7));
  border-radius: 50%;
}

.banner_wrapper .jinshui_icon .icon_wrapper::before {
  content: '穗';
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  line-height: 80px;
}

.banner_wrapper .banner_title {
  font-size: 42px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.banner_wrapper .banner_subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

/* =============================================
   分类筛选区域
   ============================================= */
.category_wrapper {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ebebeb;
}

.category_wrapper .category_inner {
  width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.category_wrapper .category_title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.category_wrapper .title_icon {
  width: 6px;
  height: 18px;
  background: #0a78e5;
  margin-right: 10px;
  border-radius: 3px;
}

.category_wrapper .category_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category_wrapper .category_item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: #f7f8fb;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category_wrapper .category_item:hover {
  background: #eff6ff;
  border-color: #0a78e5;
}

.category_wrapper .category_item.active {
  background: #0a78e5;
  color: #fff;
}

.category_wrapper .category_item.active .item_icon {
  background: rgba(255, 255, 255, 0.2);
}

.category_wrapper .category_item .item_icon {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  font-weight: bold;
  margin-right: 8px;
}

.category_wrapper .category_item .item_name {
  font-size: 14px;
  color: inherit;
}

.category_wrapper .category_item.active .item_name {
  color: #fff;
}

/* =============================================
   政策列表区域
   ============================================= */
.policy_list_wrapper {
  width: 100%;
  background: #f8f9fc;
  padding: 20px 0 40px;
}

.policy_list_wrapper .policy_list_inner {
  width: 1200px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  padding: 20px;
}

.policy_list_wrapper .policy_list_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 2px solid #0a78e5;
  margin-bottom: 15px;
}

.policy_list_wrapper .list_title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}

.policy_list_wrapper .list_count {
  font-size: 14px;
  color: #666;
}

.policy_list_wrapper .list_count em {
  color: #0a78e5;
  font-weight: bold;
}

/* 政策项 */
.policy_list_wrapper .policy_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px;
  border-bottom: 1px dashed #ebebeb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.policy_list_wrapper .policy_item:last-child {
  border-bottom: none;
}

.policy_list_wrapper .policy_item:hover {
  background: #f7f8fb;
}

.policy_list_wrapper .policy_item:hover .item_title {
  color: #0a78e5;
}

.policy_list_wrapper .item_left {
  flex: 1;
}

.policy_list_wrapper .item_category {
  display: inline-block;
  font-size: 12px;
  color: #0a78e5;
  background: #eff6ff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.policy_list_wrapper .item_title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  line-height: 1.4;
}

.policy_list_wrapper .item_summary {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 800px;
}

.policy_list_wrapper .item_right {
  text-align: right;
  padding-left: 20px;
}

.policy_list_wrapper .item_source {
  font-size: 12px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}

.policy_list_wrapper .item_date {
  font-size: 12px;
  color: #999;
  display: block;
}

/* 暂无数据 */
.policy_list_wrapper .no_data {
  text-align: center;
  padding: 60px 0;
}

.policy_list_wrapper .no_data img {
  width: 100px;
  margin-bottom: 20px;
}

.policy_list_wrapper .no_data p {
  font-size: 16px;
  color: #666;
}

/* 分页 */
.policy_list_wrapper .pagination_wrapper {
  margin-top: 20px;
  text-align: center;
}

/* =============================================
   Footer
   ============================================= */
#app > footer,
#app > .foot {
  margin-top: 0;
}

/* =============================================
   响应式适配
   ============================================= */
@media (max-width: 1200px) {
  .banner_wrapper .banner_inner,
  .category_wrapper .category_inner,
  .policy_list_wrapper .policy_list_inner {
    width: 100%;
    padding: 0 15px;
  }

  .banner_wrapper .banner_title {
    font-size: 32px;
  }

  .policy_list_wrapper .item_summary {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .banner_wrapper {
    min-height: 220px;
  }

  .banner_wrapper .banner_title {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .banner_wrapper .jinshui_icon .icon_wrapper {
    width: 60px;
    height: 60px;
  }

  .banner_wrapper .jinshui_icon .icon_wrapper::before {
    font-size: 28px;
    line-height: 60px;
  }

  .category_wrapper .category_grid {
    gap: 8px;
  }

  .category_wrapper .category_item {
    padding: 6px 12px;
  }

  .category_wrapper .category_item .item_icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }

  .policy_list_wrapper .policy_item {
    flex-direction: column;
  }

  .policy_list_wrapper .item_right {
    padding-left: 0;
    text-align: left;
    margin-top: 10px;
  }

  .policy_list_wrapper .list_title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .banner_wrapper .banner_title {
    font-size: 20px;
  }

  .banner_wrapper .logo_text {
    font-size: 16px;
  }

  .policy_list_wrapper .item_title {
    font-size: 14px;
  }

  .policy_list_wrapper .item_summary {
    font-size: 12px;
  }
}