* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.head {
    width: 100%;
}

.head img {
    width: 100%;
}

.lb {
    width: 100%;
    display: flex;
    justify-content: center;
}

.lb ul {
    width: 1200px;
}

.lb ul li {
    width: 100%;
    height: 200px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.lb ul li a {
    width: 100%;
    height: 200px;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}

.lb ul li:hover {
    box-shadow: 5px 10px 15px 2px rgba(0, 0, 0, 0.1);
}

.lb ul li .time {
    width: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.lb ul li .time .day {
    transition: 0.6s all;
    width: 76px;
    height: 76px;
    padding-top: 22px;
    font-size: 34px;
    color: #999999;
    text-align: center;
    line-height: 53px;
    margin-bottom: 6px;
    background: url(../images/t1.png) no-repeat center;
    background-size: 100% 100%;
}

.lb ul li:hover .day {
    background: url(../images/t2.png) no-repeat center;
    color: #962221;
    background-size: 100% 100%;
}


.lb ul li .time .year {
    font-size: 16px;
    color: #999999;
    text-align: center;
    transition: 0.6s all;
}

.lb ul li:hover .year {
    color: #962221;
}

.lb ul li a {
    text-decoration: none;
    color: #333;

}

.lb ul li .title {
    width: 70%;
    height: 100%;
    margin-right: 50px;
}

.lb ul li .title1 {
    font-size: 20px;
    color: #333;
}

.lb ul li .title2 {
    font-size: 14px;
    color: #666;
    margin-top: 20px;

}

.lb ul li .img {
    width: 20%;
    height: 100%;
    overflow: hidden;
    margin-right: 20px;
}

.lb ul li .img img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}

.lb ul li :hover .img img {
    transform: scale(1.1);
}

.bottom {
    width: 100%;
    margin-top: 50px;
    background: #962221;
}

.bottom a {
    text-decoration: none;
}

.bottom .bottom1 {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0px;
    box-sizing: border-box;
}

.bottom1 p {
    text-align: center;
    line-height: 24px;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.bottom1 p a {
    color: #fff;
}

@media screen and (max-width: 640px) {

    .bottom .bottom1 {
        width: 100%;
    }


    .lb ul li .time {
        display: none;
    }

    .lb ul li {
        height: 110px;
    }

    .lb ul li a {
        height: 110px;
        flex-direction: row-reverse;
        padding: 10px 0;
    }

    .lb ul li .img {
        width: 40%;
        margin-right: 0;
        margin-left: 20px;
        border-radius: 8px;
    }

    .lb ul li .title {
        width: 50%;
        margin-left: 20px;
        display: flex;
        align-items: center;
        margin-right: 10px;
    }

    .lb ul li .title1 {
        font-size: 16px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;

    }

    .lb ul li .title2 {
        display: none;
    }

    .bottom1 p {
        font-size: 12px;
    }

}