/*hero*/
.press_hero {
    position: relative;
    margin-bottom: 100px;
    padding-top: 154px;
}

.press_hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 570px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 56.05%, #000000 95.97%), url('../assets/img/events/bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: 0;
}

.press_more {
    margin: 60px 0 170px 0;
}

.press_more_btn {
    width: 220px;
    height: 57px;
    border: 1px solid #FFFFFF;
    border-radius: 999px;
    text-align: center;
    line-height: 57px;
    margin: 0 auto;
    cursor: pointer;
}

.press_list {
   width: 100%;
   height: auto;
   overflow: hidden;
}



.press_list .list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    width: 100%;
}

.press_list .list .item {
    width: calc(50% - 15px);
    border-radius: 20px;
    color: #fff;
    overflow: hidden;
    margin-bottom: 30px;
    z-index: 2;
}

.press_list .list .item img {
    display: flex;
    width: 100%;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
    height: 300px;
    object-fit: cover;
}

.press_list .list .item:hover img {
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    -ms-transition: .3s;
    transition: .3s;
}

.press_list .list .item .text-block {
    /* height: 100%; */
    padding: 20px 30px;
    background: rgba(173, 184, 239, 0.1);
    transition: .3s;
    min-height: 118px;
}

.press_list .list .item:hover .text-block {
    background: rgba(173, 184, 239, 0.4);
    transition: .3s;
}

.press_list .list .text-block .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.press_list .list .text-block .top .date {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    opacity: 0.5;
}

.press_list .list .text-block .top .company {
    display: flex;
}

.press_list .list .text-block .top .sina {
    display: flex;
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* .press_list .list .text-block .top .company i.sina {
    background: url('../assets/img/about/icons/icon-sina.svg') no-repeat 0 0;
    background-size: contain;
} */

.press_list .list .text-block .top .company p {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    opacity: 1;
}

.press_list .list .text-block .bottom {
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.press_list .link {
    display: flex;
    justify-content: center;
}

.press_list .link .learn-more {
    max-width: 280px;
}

@media (max-width: 480px) {
    .press_hero {
        margin-bottom: 50px;
    }
    .press_list .list .item{
        width: 100%;
    }
    .press_list .list .item img{
        height: 206px;
    }
}