.my_display_none{
    display: none;
}
.link_wrap{
    text-align: center;
    padding: 50px 0;
}
.link_text{
    display: inline-block;
    color: #000;
    font-size: 17px;
    margin-right: 10px;
    position: relative;
}
.link_text:after{
    position: absolute;
    bottom: -2px;
    left: 0;
    content: '';
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #f5004b;
}
.link_text:last-child{
    margin-right: 0;
}
.link_text.active,
.link_text:hover{
    color: #f5004b;
}
.awards_wrap{
    padding: 0 40px 50px;
}
.awards_tit{
    font-size: 25px;
    padding-bottom: 50px;
    text-align: center;
}
.awards_list{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.awards_item{
    width: 16.7%;
    overflow: hidden;
    position: relative;
    padding: 10px;
}
.awards_item:first-child{
    width: calc(16.7% * 2);
}
.awards_item_inner{
    display: block;
    width: 100%;
    height: 100%;
}
.awards_item_litpic_wrap{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}
.awards_item_litpic_back{
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    position: absolute;
    top: 0;
    left: 0;
}
.awards_item:nth-child(1) .awards_item_litpic_back,
.awards_item:nth-child(2) .awards_item_litpic_back{
    background: #f5004b;
}
.awards_item_inner:hover .awards_item_litpic_back{
    background: rgba(245, 0, 75, 0.8);
}
.awards_item:nth-child(1):hover .awards_item_litpic_back,
.awards_item:nth-child(2):hover .awards_item_litpic_back{
    background: #f5004b;
}
.awards_item_litpic{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.awards_item_typename{
    width: 100%;
    text-align: center;
    padding: 50px 0;
    font-size: 30px;
    color: #fff;
    position: relative;
}
@media (max-width: 1024px) {
    .awards_item,
    .awards_item:first-child{
        width: 100%;
    }
}