/* row文字列表页面样式 */
.wd_list {
    display: flex;
    flex-wrap: wrap;
}

.wd_item {
    display: block;
    width: calc(33.3% - (60px / 3));
    margin-right: 30px;

    padding: 40px 0;
    border-bottom: 1px solid #E0E1E5;
    position: relative;
}

.wd_item:nth-child(3n){
    margin-right: 0;
}

.wd_item::after {
    content: "";
    width: 100%;
    height: 3px;
    background: #1f3694;

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.2s ease-out 0s;
    transform: scaleX(0);
}

.wd_i_t {
    display: flex;
    align-items: center;
}

.wd_i_date {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: #EDEEF2;
    transition: all .5s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wd_i_date h3 {
    font-size: 32px;
    color: #414141;
}

.wd_i_date p {
    font-size: 14px;
    color: #ADADAD;
    font-family: SOURCEHANSANSSC-MEDIUM;
    margin-top: 5px;
}

.wd_i_title {
    font-size: 20px;
    color: #414141;
    line-height: 35px;
    margin-left: 10px;
}

.wd_i_con {
    font-size: 16px;
    color: #989898;
    line-height: 28px;
    margin-top: 17px;
}

.wd_item:hover::after {
    transform: none;
}

.wd_item:hover .wd_i_date {
    background: #1F3694;
}

.wd_item:hover .wd_i_date h3 {
    color: #ffffff;
}

.wd_item:hover .wd_i_date p {
    color: #C4D4FF;
}

.wd_item:hover .wd_i_title {
    color: #1F3694;
}

.wd_item:hover .wd_i_con {
    color: #333333;
}

@media screen and (max-width: 1400px) {
    .wd_item {
        width: calc(50% - (15px / 2));
        margin-right: 15px;
        padding: 30px 0;
    }

    .wd_item:nth-child(3n){
        margin-right: 15px;
    }

    .wd_item:nth-child(2n){
        margin-right: 0;
    }

    .wd_i_date {
        width: 65px;
        height: 65px;
    }

    .wd_i_date h3 {
        font-size: 28px;
    }

    .wd_i_date p {
        font-size: 13px;
    }

    .wd_i_title {
        font-size: 18px;
        line-height: 28px;
    }

    .wd_i_con {
        font-size: 15px;
        line-height: 22px;
        margin-top: 10px;
    }

    .wd_item::after {
        height: 2px;
    }
}

@media screen and (max-width: 998px) {
    .wd_item{
        width: 100%;
        margin-right: 0;
        padding: 15px 0;
    }

     .wd_item:nth-child(3n){
            margin-right: 0;
     }

    .wd_i_date{
        width: 61px;
        height: 43px;
    }

    .wd_i_title{
        font-size: 16px;
        line-height: 25px;
    }

    .wd_i_date h3{
        font-size: 16px;
        font-weight: 400;
    }

    .wd_i_date p{
        font-size: 11px;
        margin-top: 2px;
    }

    .wd_i_con{
        font-size: 13px;
        line-height: 23px;
    }
}