﻿/****/
.abusintro{

}
    .abusintro p {
        margin-bottom: 20px;
        font-size: 16px;
        line-height:30px;
        text-indent:2em;
    }
    .abusintro .lnnm, .abusintro h3 {
        color: var(--primary-blue);
        margin: 30px 0 15px;
        font-size: 1.5rem;
        font-weight: bold;
    }
    .abusintro .timeline {
        margin: 30px 0;
        padding-left: 20px;
        border-left: 3px solid var(--accent-orange);
    }
    .abusintro .timeline-item {
        margin-bottom: 30px;
        position: relative;
    }

        .abusintro .timeline-item:before {
            content: '';
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: var(--accent-orange);
            border-radius: 50%;
            left: -29px;
            top: 5px;
        }

    .abusintro .timeline-year {
        font-weight: bold;
        color: var(--accent-orange);
        font-size: 1.1rem;
    }

    .abusintro .timeline-content {
        margin-top: 5px;
    }
    .abusintro .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }

    .abusintro .stat-card {
        text-align: center;
        padding: 20px;
        background-color: rgba(10, 36, 99, 0.05);
        border-radius: 8px;
        transition: transform 0.3s;
    }

        .abusintro .stat-card:hover {
            transform: translateY(-5px);
        }

    .abusintro .stat-number {
        font-size: 17px;
        font-weight: bold;
        color: var(--primary-blue);
        margin-bottom: 10px;
    }

    .abusintro .stat-text {
        color: var(--medium-gray);
    }
/****/
.abuspage{

}
/* 瀑布流容器（包裹ListView） */
    .abuspage .waterfall-container {
        position: relative;
        width: 100%;
        margin: 0 auto;
    }
/* 图片项：33.33%宽度 + 4:3宽高比核心样式 */
    .abuspage .albumitem {
        position: absolute;
        width: 33.33%; /* 强制33.33%宽度（3列） */
        padding: 0 7.5px; /* 左右间距7.5px，总列间距15px */
        padding-top:7.5px;
        margin-bottom: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        background: #fff;
        border-radius:6px;
        box-sizing:border-box;
        transition: transform 0.3s ease;
    }
    /* 宽高比容器：核心实现4:3 */
        .abuspage .albumitem .ratio-box {
            width: 100%;
            /* 计算方式：3/4 * 100% = 75% */
            padding-top: 75%;
            position: relative;
        }
    /* 图片容器：绝对定位填充ratio-box */
        .abuspage .albumitem .img-wrap {
            display:block;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden; /* 隐藏超出容器的部分 */
        }
    /* 图片：自适应填充，保持4:3 */
        .abuspage .albumitem img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover; /* 关键属性：覆盖容器，裁剪多余部分 */
            object-position: top; /* 图片居中显示 */
            border-radius: 6px 6px 0 0;
        }
    /* 标题样式 */
        .abuspage .albumitem .abt {
            height: 50px;
            line-height: 25px;
            color: #333;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .abuspage .albumitem:hover {
            transform: translateY(-5px);
        }
/****/
.aboutcontent{

}
.aboutcontent img{
    display:block;
    width:100%;
}
.aboutcontent p{
    margin:0px;
    padding:0px;
    text-indent:2em;
    margin-bottom:20px;
}
.aboutcontent table{
    border-collapse:collapse;
    width:100%;
}
    .aboutcontent table td {
        padding:0 5px;
        line-height:30px;
        border:1px solid #CCC;
    }