.home-title {
    padding-top: 20px;
    margin-bottom: 50px;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 1px;
}

.event-box {
    padding-top: 7px;
}

.event-item {
    padding: 21px 23px 32px 24px;
    /*margin: 0 -24px;*/
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 30px !important;
}

.event-item:hover {
    background: #f9fafb;
}

.event-item:after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    border-bottom: 1px solid #eaeeef;
}

.event-item-main {
    position: relative;
    justify-content: space-between;
    align-items: stretch;
    height: 137px;
    display: flex;
}

.item-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    order: 0;
    flex-shrink: 0;
    width: 244px;
    height: 137px;
}

.item-image img {
    width: 244px;
    height: 137px;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    cursor: pointer;
    transition: all .3s ease;
}

.item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin-top: -3px;
    overflow: hidden;
}

.event-title {
    font-size: 18px;
    font-weight: 500;
    /*隐藏多余行数*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /*规定显示几行，其余行数用小数点代替*/
    -webkit-line-clamp: 2;
    /*规定为垂直方向排列*/
    -webkit-box-orient: vertical;
    /*文字正常换行*/
    white-space: normal;
}

.event-footer {
    margin-top: auto;
    /*display: flex;
    justify-content: space-between;*/
}

.footer-date {
    height: 20px;
    flex: none !important;
    /*margin-right: 24px;
    width: 110px;*/
    color: #828a92;
    line-height: 20px;
    font-size: 12px;
    font-weight: 400;
}

.footer-location {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    color: #828a92;
}

.footer-button {
    margin-right: 10px;
}

.page_nation {
    width: 100%;
    text-align: center;
}
@media screen and (max-width: 768px) {
    .event-item {
        padding: 16px 20px;
        margin: 0 -20px;
    }

    .event-item-main {
        justify-content: space-between;
        height: auto;
        padding-bottom: 0;
    }

    .item-image {
        width: 117px;
        height: 66px;
        margin-left: 10px;
    }

    .item-image img {
        width: 117px;
        height: 66px;
    }

    .item-info {
        justify-content: space-between;
    }

    .event-title {
        height: 42px;
        margin-top: 0;
        line-height: 21px;
        font-size: 15px;
        font-weight: 500;
    }
}