@charset "utf-8";

/* ==========================================================================
   新闻动态 & 通知公告 区域 - 完全复刻 jist.jitri.com 样式
   前缀: nz- (南智) 避免与其他样式冲突
   ========================================================================== */

/* 滚动动画基础类 */
.nz-animate-item {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.8s;
    transition-fill: both;
}
.nz-animate-item.nz-visible {
    opacity: 1;
}

/* 动画效果 */
.nz-animate-fadeUp {
    transform: translateY(40px);
}
.nz-animate-fadeUp.nz-visible {
    transform: translateY(0);
}

.nz-animate-fadeLeft {
    transform: translateX(-40px);
}
.nz-animate-fadeLeft.nz-visible {
    transform: translateX(0);
}

.nz-animate-fadeRight {
    transform: translateX(40px);
}
.nz-animate-fadeRight.nz-visible {
    transform: translateX(0);
}

.nz-animate-scaleIn {
    transform: scale(0.95);
}
.nz-animate-scaleIn.nz-visible {
    transform: scale(1);
}

/* 主容器 */
.nz-news-notice-wrapper {
    width: 100%;
    background: #f8f9fa;
    padding: 30px 0 30px;
}

.nz-news-notice-container {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* 主标题 */
.nz-main-title {
    text-align: center;
    margin-bottom: 50px;
}

.nz-main-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #003198;
    margin: 0 0 10px;
    letter-spacing: 2px;
}

.nz-main-title p {
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

/* 左右两栏布局 */
.nz-content-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

/* 左侧：新闻动态 */
.nz-news-section {
    flex: 0 0 840px;
    max-width: 840px;
}

.nz-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #003198;
    margin: 0 0 20px;
    padding-bottom: 2px;
    border-bottom: 3px solid #003198;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1;
}

.nz-title-left {
    display: flex;
    align-items: baseline;
    gap: 15px;
}

.nz-title-main {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #003198 !important;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1;
    white-space: nowrap;
}

.nz-title-main.nz-tab-link-all {
    cursor: pointer !important;
    transition: color 0.3s;
}

.nz-title-main.nz-tab-link-all:hover {
    color: #0056ff !important;
}

.nz-title-tabs {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.nz-tab-link {
    font-size: 14px;
    color: #003198;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    cursor: pointer;
}

.nz-tab-link:hover,
.nz-tab-link.active {
    color: #0056ff;
    font-weight: 600;
}

.nz-tab-sep {
    font-size: 14px;
    color: #ccc;
}

.nz-section-title span {
    font-size: 14px;
    color: #003198;
    font-weight: 400;
}

.nz-section-title a {
    font-size: 14px;
    color: #003198;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
    font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
    padding-bottom: 2px;
}

.nz-section-title a:hover {
    color: #003198;
}

/* 新闻卡片列表 */
.nz-news-cards {
    display: flex;
    flex-direction: column;
}

/* 第一条新闻 - 大图样式 */
.nz-news-card-featured {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    min-height: 200px;
}

.nz-news-card-featured:hover {
    background: rgba(0, 49, 152, 0.03);
}

.nz-news-card-featured:hover .nz-featured-title,
.nz-news-card-featured:hover .nz-featured-excerpt,
.nz-news-card-featured:hover .nz-featured-date {
    color: #003198;
}

.nz-featured-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nz-featured-body {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.nz-featured-image {
    flex: 0 0 267px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
}

.nz-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.nz-news-card-featured:hover .nz-featured-image img {
    transform: scale(1.05);
}

.nz-featured-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nz-featured-excerpt {
    font-size: 14px;
    color: #666;
    margin: 10px 0 15px;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    transition: color 0.3s ease;
}

.nz-featured-date {
    font-size: 13px;
    color: #999;
    transition: color 0.3s ease;
}

/* 第2-5条新闻 - 简洁列表样式 */
.nz-news-card-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #d0d0d0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 12px;
}

.nz-news-card-simple::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #003198;
    border-radius: 50%;
}

.nz-news-card-simple:last-child {
    border-bottom: 1px solid #d0d0d0;
}

.nz-news-card-simple:hover .nz-simple-title,
.nz-news-card-simple:hover .nz-simple-date {
    color: #003198;
}

.nz-simple-title {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nz-simple-date {
    font-size: 13px;
    color: #999;
    flex-shrink: 0;
    margin-left: 20px;
    transition: color 0.3s ease;
}

/* 右侧：通知公告 */
.nz-notice-section {
    flex: 0 0 440px;
    max-width: 440px;
    display: flex;
    flex-direction: column;
}

.nz-notice-list-wrap {
    background: #E8E8E8;
    border-radius: 8px;
    padding: 25px 30px;
    flex: 1;
}

.nz-notice-list-item {
    display: flex;
    align-items: center;
    padding: 2px 0;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nz-notice-list-item:last-child {
    border-bottom: none;
}

.nz-notice-list-item:hover .nz-notice-link-title {
    color: #003198;
}

.nz-notice-date-wrap {
    width: 80px;
    height: 60px;
    min-height: 60px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    margin-right: 15px;
    flex-shrink: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.nz-notice-month-day {
    background: #003198;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    padding: 6px 0 4px;
}

.nz-notice-year {
    background: #fff;
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    padding: 4px 0 6px;
}

.nz-notice-info {
    flex: 1;
    overflow: hidden;
}

.nz-notice-link-title {
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0 0 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

/* 通知公告图片广告 */
.nz-notice-ad {
    margin-top: 15px;
    width: 440px;
}

.nz-notice-ad img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* 查看更多链接 */
.nz-view-more {
    display: block;
    text-align: right;
    padding-top: 20px;
    font-size: 14px;
    color: #003198;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nz-view-more:hover {
    color: #002060;
    text-decoration: underline;
}

.nz-view-more::after {
    content: ' →';
}

/* 响应式 */
@media screen and (max-width: 992px) {
    .nz-content-row {
        flex-direction: column;
    }
    
    .nz-news-section,
    .nz-notice-section {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .nz-main-title h2 {
        font-size: 32px;
    }
    
    .nz-featured-image {
        flex: 0 0 200px;
        height: 120px;
    }
}

@media screen and (max-width: 600px) {
    .nz-news-notice-wrapper {
        padding: 40px 0 50px;
    }
    
    .nz-main-title h2 {
        font-size: 26px;
    }
    
    .nz-featured-body {
        flex-direction: column;
    }
    
    .nz-featured-image {
        flex: 0 0 auto;
        width: 100%;
        height: 180px;
    }
    
    .nz-featured-title {
        font-size: 18px;
    }
    
    .nz-notice-list-wrap {
        padding: 20px;
    }
}

/* ==========================================================================
   关于我们 区域
   ========================================================================== */

.nz-about-wrapper {
    width: 100%;
    height: 550px;
    background: #053A95;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.nz-about-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 383px;
    height: 400px;
    background: url(/static/home/public/css_ny/images/mofang/nice1.png) no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
}

.nz-about-container {
    width: 1300px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

.nz-about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.nz-about-text {
    flex: 1;
}

.nz-about-title {
    margin-bottom: 30px;
}

.nz-about-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    letter-spacing: 2px;
}

.nz-about-title p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.nz-about-desc {
    margin-bottom: 40px;
}

.nz-about-desc p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0 0 15px;
    text-align: justify;
}

.nz-about-more {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 40px;
    transition: all 0.3s ease;
}

.nz-about-more:hover {
    background: #fff;
    color: #053A95;
    border-color: #fff;
}

.nz-about-image {
    margin-left: auto;
}

.nz-about-image img {
    height: 400px;
    width: auto;
    display: block;
}

/* 关于我们 响应式 */
@media screen and (max-width: 992px) {
    .nz-about-content {
        flex-direction: column;
    }
    
    .nz-about-image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .nz-about-title h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 600px) {
    .nz-about-wrapper {
        padding: 50px 0;
    }
    
    .nz-about-title h2 {
        font-size: 24px;
    }
    
    .nz-about-desc p {
        font-size: 14px;
    }
}
