﻿@charset "utf-8";
/******基础样式开始******/
.page04 .box3 {
    /*margin: 40px auto 0;*/
    width: 1200px;
}

.page04 .box3 .list_box {
    margin-top: 28px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.page04 .box3 .list_box .list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.page04 .box3 .list_box .list .tit {
    text-align: center;
    line-height: 48px;
    flex-shrink: 0;
    position: relative;
}

.page04 .box3 .list_box .list .tit .more-link {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s;
}

.page04 .box3 .list_box .list .tit .more-link:hover {
    color: #409eff;
}

/* 三栏标题样式 */
.page04 .box3 .list_box .list:nth-child(1) .tit,
.page04 .box3 .list_box .list:nth-child(2) .tit,
.page04 .box3 .list_box .list:nth-child(3) .tit {
    width: 100%;
    height: 48px;
    background-size: 100% 100%;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 前三栏标题背景色（可自定义） */
.page04 .box3 .list_box .list:nth-child(1) .tit {
    background-image: url(../../yibazhan/images/page04_1.png);
    color: #002e93;
}

.page04 .box3 .list_box .list:nth-child(2) .tit {
    background-image: url(../../yibazhan/images/page04_2.png);
    color: #014c32;
}

.page04 .box3 .list_box .list:nth-child(3) .tit {
    background-image: url(../../yibazhan/images/page04_3.png);
    color: #725000;
}

/* 内容区域 */
.page04 .box3 .list_box .list:nth-child(1) ul,
.page04 .box3 .list_box .list:nth-child(2) ul,
.page04 .box3 .list_box .list:nth-child(3) ul {
    width: 100% !important;
    flex: 1;
    min-height: 380px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 0 0 10px 10px;
    padding: 8px 16px 0 !important;
    margin: 0 !important;
    list-style: none !important;
    box-sizing: border-box !important;
}

/* 列表项样式 */
.page04 .box3 .list_box .list ul li {
    margin-top: 12px !important;
    list-style: none !important;
    width: 100%;
}

.page04 .box3 .list_box .list ul li a {
    display: flex;
    align-items: center;
    height: 32px;
    text-decoration: none;
    width: 100%;
    gap: 8px;
}

.page04 .box3 .list_box .list ul li a .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    color: #999999;
    text-align: center;
    line-height: 20px;
}

.page04 .box3 .list_box .list ul li a .icon img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.page04 .box3 .list_box .list ul li a .zi {
    font-weight: 400;
    font-size: 14px;
    color: #333333;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
}

.page04 .box3 .list_box .list ul li a .date {
    flex-shrink: 0;
    font-size: 13px;
    color: #999999;
    font-weight: 400;
    white-space: nowrap;
}

.page04 .box3 .list_box .list ul li:hover a .zi {
    color: #409eff;
}

/* 互动图标悬停效果 */
.hudongicon a:hover {
    background: #e8f4fd !important;
    border-color: #409eff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(64, 158, 255, 0.2);
}

.hudongicon a:hover span {
    color: #409eff !important;
}

/* 响应式 */
@media (max-width: 1200px) {
    .page04 .box3 {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
}

@media (max-width: 768px) {
    .page04 .box3 .list_box {
        flex-direction: column;
        gap: 30px;
    }
    
    .page04 .box3 .list_box .list .tit .more-link {
        right: 10px;
        font-size: 13px;
    }
    
    .page04 .box3 .list_box .list ul li a .date {
        font-size: 12px;
    }
    
    .hudongicon a {
        width: 60px !important;
        padding: 8px 4px !important;
    }
    
    .hudongicon a img {
        width: 30px !important;
        height: 30px !important;
    }
    
    .hudongicon a span {
        font-size: 12px !important;
    }
}