
/**新列表**/
.new_list_tit{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom:2rem;
}
.act_list {
    background: #FFFAE7;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 30px;
    padding: 2rem;
}

.act_list li::before {
    display: none;
}

.act_list li {
    padding-left: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EA5504;
    position: relative;
}

.act_list li .act_date {
    background: #FEB101 0% 0% no-repeat padding-box;
    border-radius: 10px 0px;
    color: #fff;
    display: inline-block;
    padding: 0.2rem 1rem;
}

.act_list li .act_tit {
    padding-left: 1rem;
    color: #000000;
}

.act_list li .act_tit:hover {
    color: #FEB101;
}

.act_list li .act_icon {
    width: 48px;
    height: 48px;
    background: #9E1730 0% 0% no-repeat padding-box;
    border-radius: 32px;
    display: inline-block;
    position: absolute;
    right: 0;
    text-align: center;
    line-height: 45px;
}

.act_list li .act_icon:hover {
    background: #FEB101;
    color: #ffffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1500.98px) {
    .act_list li .act_icon{
        width: 40px;
        height: 40px;
        line-height: 36px;
    }
}