﻿.fzlccss
{
    width:700px;
    margin:50px auto;
}
    .fzlccss .lclist {
    }
    .fzlccss .lcgroup {
        position: relative;
    }
        .fzlccss .lcgroup::after {
            content: "";
            display: block;
            position: absolute;
            z-index: -1;
            width: 10px;
            top: 0px;
            left: 45px;
            bottom: 0px;
            background-color: #EEE;
            
        }
        .fzlccss .lcgroup:hover .gpitem {
            border-color: #01215e;
            background-color: #002b80;
            color: #FFF;
        }
    .fzlccss .gpitem {
        border: 6px solid #01215e;
        border-radius: 50%;
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        font-size: 14px;
        font-weight: bold;
        background-color: #FFF;
        color: #01215e;
    }
    .fzlccss .gplist {
    }
    .fzlccss .lcitem {
        display: flex;
        padding: 30px 0px;
        cursor: pointer;
    }
    .fzlccss .lcdate {
        width: 98px;
        height: 30px;
        position: relative;
    }
    .fzlccss .lcdtpos {
        display: flex;
        position: absolute;
        z-index: 1;
        left: -39px;
        top: 0px;
        width: 98px;
        height: 30px;
    }
    .fzlccss .lcyear {
        width: 60px;
        font-size: 20px;
        font-weight: bold;
        color: #999;
        height: 30px;
        line-height: 30px;
    }
    .fzlccss .lcln {
        width: 20px;
        border-top: 2px solid #CCC;
        margin-top: 14px;
    }
    .fzlccss .lccir {
        width: 20px;
        height: 20px;
        box-sizing: border-box;
        border-radius: 50%;
        border: 2px solid #CCC;
        margin-top: 4px;
        background-color: #FFF;
        position: relative;
    }
    .fzlccss .circ {
        position: absolute;
        z-index: 1;
        left: -2px;
        top: -2px;
        right: -2px;
        bottom: -2px;
        border: 2px solid #CCC;
        border-radius: 50%;
        box-sizing: border-box;
    }
    .fzlccss .lccont {
        width: 600px;
    }
    .fzlccss .lcimg {
    }
        .fzlccss .lcimg img {
            display: block;
           max-width: 950px;
            max-height:200px;
            margin-bottom: 10px;
            border-radius: 4px;
        }
    .fzlccss .lcnr {
        font-size: 17px;
        line-height: 26px;
        color: #333;
    }
        .fzlccss .lcnr p {
            margin: 5px 0;
            display: list-item; /* 让p表现为列表项 */
            list-style-type: disc; /* 实心圆点 */
            list-style-position: outside; /* 圆点在内容外部（关键） */
            padding-left: 0; /* 取消内部padding，避免偏移 */
            margin-left: 20px; /* 左侧留空间放圆点（可根据需要调整） */
        }
        .fzlccss .lcnr img {
            display:block;
            width:300px;
            border-radius:4px;
        }
        /****/
    .fzlccss .lcitem:hover .lcyear {
        color: #01215e;
    }
    .fzlccss .lcitem:hover .lcln {
        border-color: #01215e;
    }
    .fzlccss .lcitem:hover .lcnr {
        color: #01215e;
    }
    .fzlccss .lcitem:hover .circ {
        /* 以中心点为基准放大 */
        animation: lconfra 100ms linear forwards;
    }
@keyframes lconfra {
    0% {
        left: -2px;
        top: -2px;
        right: -2px;
        bottom: -2px;
        border: 2px solid #CCC;
    }

    100% {
        left: -4px;
        top: -4px;
        right: -4px;
        bottom: -4px;
        border: 4px solid #01215e;
    }
}
/****/
.fzlccss .future {
    margin-top: 20px;
}
    .fzlccss .future .ftstr {
        font-size: 18px;
        font-weight: bold;
        color: #01215e;
    }
    .fzlccss .future .ftico {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #002b80;
        margin-top: 10px;
        margin-left: 40px;
    }