 :root {
      --primary-color: #1d47be;
      --accent-color: #00d4ff;
      --light-bg: #f8fafc;
      --card-bg: #ffffff;
      --text-primary: #1e293b;
      --text-secondary: #64748b;
      --border-color: #e2e8f0;
    }
/* =========================================
   MAIN CARD
========================================= */
#processInfo{    
  padding-top: 10vh;
}
.hero-card{
    position:relative;
    z-index:2;
    background:
    linear-gradient(135deg,#ffffff 0%,#f8fbff 100%);
    border:1px solid #dbeafe;
    border-radius:32px;
    overflow:hidden;
    padding:50px;
    box-shadow:0 22px 60px rgba(15, 37, 95, 0.08);
}

.hero-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(135deg,rgba(158,197,254,.18),transparent 40%);
    pointer-events:none;
}

/* =========================================
   LEFT CONTENT
========================================= */

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 20px;
    border-radius:50px;
    background:#edf5ff;
    color:#0a58ca;
    font-weight:600;
    margin-bottom:28px;
}

.hero-tag span{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#0a58ca;
}

.hero-title{
    font-weight:bold;
    line-height:1.15;
    color:#0f172a;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.hero-title .gradient{
    background:linear-gradient(90deg,#0a58ca,#3d8bfd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-desc{
    font-size:18px;
    line-height:2;
    color:var(--desc);
    max-width:760px;
    margin-bottom:42px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-btn-group{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn-primary-custom{
    height:58px;
    padding:0 34px;
    border:none;
    border-radius:18px;
    background:
    linear-gradient(135deg,#0a58ca,#3d8bfd);
    color:#fff;
    font-weight:700;
    box-shadow:
    0 10px 30px rgba(10,88,202,.18);
    transition:.35s;
}

.btn-primary-custom:hover{
    transform:translateY(-3px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.visual-side{
    position:relative;
    height:100%;
    min-height:350px;
    line-height:350px;
}

/* =========================================
   TAGS
========================================= */

.tags-area{
    position:relative;
    z-index:2;
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

.tag-item{
    padding:5px 20px;
    border-radius:50px;
    background:#eff6ff;
    color:#3b82f6;
    transition:.3s;
    cursor:pointer;
    font-weight:500;
}



    /* Hero Banner */
    .cust-banner-head {
      background: linear-gradient(135deg, #0a1628 0%, #1d47be 50%, #00d4ff 100%);
      padding: 60px 0;
      position: relative;
      overflow: hidden;
    }

    .cust-banner-head::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cust-banner-head h3 {
      color: white !important;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .cust-banner-head p {
      color: rgba(255, 255, 255, 0.8) !important;
      font-size: 1.1rem;
      max-width: 800px;
    }

    /* Section Title */
    .comm-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 40px;
    }

    .comm-title .text-primary-blue {
      color: var(--primary-color);
    }

    /* Horizontal News Cards */
    .zxInfo-hoz-list {
      margin-bottom: 50px;
    }
    .zxInfo-hoz-item-container{
        position: relative;
    }
    .zxInfo-hoz-item {
      display: block;
      background: var(--card-bg);
      /* border-radius: 16px; */
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      margin-bottom: 24px;
      text-decoration: none;
      color: inherit;
    }

    .zxInfo-hoz-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(29, 71, 190, 0.15);
      text-decoration: none;
    }

    .zxInfo-hoz-item-img {
      overflow: hidden;
    }

    .zxInfo-hoz-item-img img {
      width: 100%;
      height: auto;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

   
   .hot-badge {
     position: absolute;
    top: -15px;
    right: 12px;
    z-index: 100;
    }
    .hot-badge img{
        width: 30px;
        height: auto;
    }
    .zxInfo-hoz-item-content {
      padding: 20px;
    }

    .zxInfo-hoz-item-content .category-tag {
      display: inline-block;
      background: rgba(29, 71, 190, 0.1);
      color: var(--primary-color);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      margin-bottom: 10px;
    }

    .zxInfo-hoz-item-title {
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      line-height: 1.4;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .zxInfo-hoz-item-summary {
      font-size: 0.9rem;
      color: var(--text-secondary);
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 15px;
    }

    .zxInfo-hoz-item-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    /* Vertical News List */
    .zxInfo-ver-list {
      margin-bottom: 40px;
    }

    .zixun-item {
      display: flex;
      align-items: stretch;
      background: var(--card-bg);
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 16px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
      border-left: 4px solid transparent;
    }

    .zixun-item:hover {
      transform: translateX(5px);
      box-shadow: 0 4px 20px rgba(29, 71, 190, 0.1);
      border-left-color: var(--primary-color);
      text-decoration: none;
    }

    .zixun-item-time {
      flex-shrink: 0;
      width: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-right: 20px;
      border-right: 1px solid var(--border-color);
      margin-right: 20px;
    }

    .zixun-item-time .date-day {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary-color);
      line-height: 1;
    }

    .zixun-item-time .date-month {
      font-size: 0.85rem;
      color: var(--text-secondary);
    }

    .zixun-item-content {
      width: calc(100% - 100px);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .zixun-item-title {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 10px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .zxInfo-item-title {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 8px;
    }

    .zxInfo-item-title h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      margin: 0;
      flex: 1;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      transition: color 0.3s ease;
    }

    .zxInfo-item-title h3:hover {
      color: var(--primary-color);
    }

    .zxInfo-item-title .category-badge {
      flex-shrink: 0;
      margin-left: 12px;
      background: var(--light-bg);
      color: var(--text-secondary);
      padding: 2px 8px;
      border-radius: 4px;
      font-size: 0.75rem;
    }

    .zxInfo-item-desc {
      font-size: 0.85rem;
      color: var(--text-secondary);
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      margin: 0;
    }

    /* Pagination */
    .article-pagination {
      margin-top: 30px;
      margin-bottom: 20px;
    }

    .pagination.cust-page {
      justify-content: center;
      margin-top: 30px;
    }

    .pagination.cust-page .page-item {
      margin: 0 4px;
    }

    .pagination.cust-page .page-link {
      min-width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      color: var(--text-secondary);
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .pagination.cust-page .page-link:hover {
      background: rgba(29, 71, 190, 0.1);
      border-color: var(--primary-color);
      color: var(--primary-color);
    }

    .pagination.cust-page .page-item.active .page-link {
      background: linear-gradient(135deg, var(--bs-link-hover-color), var(--bs-primary-border-subtle));
      color: white;
      border-color: transparent;
    }

    .pagination.cust-page .page-item.disabled .page-link {
      opacity: 0.4;
      pointer-events: none;
      cursor: not-allowed;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .hero-banner{
        margin-top: 10vh;
      }
      .cust-banner-head {
        padding: 40px 0;
      }

      .cust-banner-head h3 {
        font-size: 1.5rem;
      }

      .zxInfo-hoz-item-img img {
        height: auto;
      }

      .zixun-item {
        flex-direction: column;
        padding: 16px;
      }

      .zixun-item-time {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        margin-right: 0;
        margin-bottom: 12px;
        gap: 10px;
      }

      .zixun-item-time .date-day {
        font-size: 1.5rem;
      }

      .zxInfo-item-title {
        flex-direction: column;
      }

      .zxInfo-item-title .category-badge {
        margin-left: 0;
        margin-top: 8px;
        align-self: flex-start;
      }
    }
    #zxInfo{
      position: relative;
      min-height: 350px;
    }
    #loading{
      position: absolute;
      top: 100px;
      left: 0px;
      width: 100%;
      z-index: 9999;
      /* background: rgba(207, 226, 255, 0.6); */
      color: #0d6efd;
      text-align: center;
      line-height: 200px;
    }