﻿.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: 40px;
            bottom: 0px;
            background-color: #EEE;
        }
        .fzlccss .lcgroup:hover .gpitem {
            border-color: #d77e8d;
            background-color: #ad1e37;
            color:#FFF;
        }
.fzlccss .gpitem {
    border: 6px solid #ad1e37;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    background-color: #FFF;
    color: #ad1e37;
}
    .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: -43px;
        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;
        }
        .fzlccss .lcnr img {
            display:block;
            width:300px;
            border-radius:4px;
        }
        /****/
        .fzlccss .lcitem:hover .lcyear {
            color: #ad1e37;
        }
    .fzlccss .lcitem:hover .lcln {
        border-color: #ad1e37;
    }
    .fzlccss .lcitem:hover .lcnr {
        color: #ad1e37;
    }
    .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 #ad1e37;
    }
}
/****/
.fzlccss .future {
    margin-top: 20px;
}
    .fzlccss .future .ftstr {
        font-size: 18px;
        font-weight: bold;
        color: #ad1e37;
    }
    .fzlccss .future .ftico {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ad1e37;
        margin-top: 10px;
        margin-left: 40px;
    }