.main {
    background-color: #f5f5f5;
}

.container>.main{
    overflow: visible;
}

.search-bar {
    background: #ffffff;
    height: 60px;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.search-bar .left {
    display: flex;
}

.search-bar .select{
    cursor: pointer;
    margin-right: 30px;
    z-index: 280;
}

.search-bar .select.year{
    position: relative;
}

.search-bar .value {
    padding-left: 15px;
    padding-right: 15px;
}

.options {
    position: absolute;
    display: none;
}

.search-bar .left .select.expanded .options {
    display: block;
}

.search-bar .value::after {
    content: "";
    width: 10px;
    height: 6px;
    display: inline-block;
    margin-left: 10px;
    margin-top: -3px;
    vertical-align: middle;
    background: url("../images/icons/angle_down.svg") center/contain no-repeat;
    padding-top: 16px;
    padding-bottom: 16px;
}

.options {
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    text-align: center;
    border-bottom: 2px solid #ff0000;
}

.options .item {
    line-height: 32px;
    display: block;
    padding-top: 6px;
    padding-bottom: 6px;
}

.area .options{
    padding-top: 18px;
    padding-bottom: 18px;
    text-align: left;
}

.area .options .item{
    padding-left: 30px;
}

.options .select-hint{
    font-size: 14px;
    color: #666;
    line-height: 30px;
    padding-left: 30px;
}

.options .item:hover {
    background-color: #ee4e5b;
    color: #fff;
}

.search-bar .left.expanded .options {
    display: block;
}

.search-bar .value::after {
    content: "";
    width: 10px;
    height: 6px;
    display: inline-block;
    margin-left: 10px;
    margin-top: -3px;
    vertical-align: middle;
    background: url("../images/icons/angle_down.svg") center/contain no-repeat;
    padding-top: 16px;
    padding-bottom: 16px;
}

.search-bar .right {
    width: 260px;
    flex: 0 0 auto;
    position: relative;
}

.search-bar .right input {
    height: 30px;
    line-height: 30px;
    padding-left: 10px;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    width: 100%;
}

.search-bar .right .btn-search {
    width: 22px;
    height: 22px;
    top: 2px;
    right: 9px;
    position: absolute;
    background: url("../images/icons/search.svg") center/18px no-repeat;
    cursor: pointer;
    border: none;
}

.activity-main .wrapper {
    padding-bottom: 50px;
}

.activity-list{
    margin-top: 30px;
}

.activity{
    height: 360px;
    position: relative;
    display: block;
    margin-bottom: 30px;
    overflow: hidden;
}

.activity.hot::before,
.activity.expired::before{
    content: "";
    width: 67px;
    height: 67px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 270;
    background: url("../images/news/hot1.png") right top/contain no-repeat;
}

.activity:nth-child(2n).hot::before{
    right: auto;
    left: 0;
    background: url("../images/news/hot2.png") left top/contain no-repeat;
}

.activity.expired::before{
    background-image: url("../images/news/exp1.png");
}

.activity:nth-child(2n).expired::before{
    right: auto;
    left: 0;
    background-image: url("../images/news/exp2.png");
}

.activity-cover{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
}
.activity-info{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 580px;
    background: url("../images/news/mask1.png") left center/cover no-repeat;
    text-align: left;
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 0 30px 40px;
    font-size: 14px;
}

.activity-info .part1 .line2{
    font-size: 24px;
}

.activity-info .part2 .line1{
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
}

.activity-info .part2 .line2{
    line-height: 24px;
}
.activity-info .part2 .line3{
    margin-top: 10px;
}

.activity-info .time{
    background: url("../images/icons/clock.svg") center/contain no-repeat;
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.activity-info .location{
    background: url("../images/icons/location.svg") center/contain no-repeat;
    width: 16px;
    height: 21px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
}

.activity-info .part3 .line1{
    margin-bottom: 8px;
    display: flex;
}

.activity-info .part3 .line2{
    display: flex;
}

@media (min-width: 751px) {


    .activity-info .part1{
        width: 55%;
    }
    .activity-info .part2{
        width: 70%;
    }
    .activity-info .part3{
        width: 90%;
    }

    .activity:nth-of-type(2n) .activity-cover{
        left: 0;
        right: auto;
    }

    .activity:nth-of-type(2n) .activity-info{
        align-items: flex-end;
        left: auto;
        right: 0;
        text-align: right;
        padding: 24px 40px 30px 0;
        background: url("../images/news/mask2.png") right center/cover no-repeat;
    }

    .activity:nth-of-type(2n) .activity-info .part3 .line1,
    .activity:nth-of-type(2n) .activity-info .part3 .line2{
        flex-direction: row-reverse;
    }

    .activity:nth-of-type(2n) .activity-info .location,
    .activity:nth-of-type(2n) .activity-info .time{
        margin-right: 0;
        margin-left: 6px;
    }

    .activity:nth-of-type(2n).expired .activity-info{
        background: url("../images/news/mask2_expired.png") left center/cover no-repeat;
    }
}

.activity.expired .activity-info{
    background: url("../images/news/mask1_expired.png") right center/cover no-repeat;
}

@media (max-width: 960px) {
    .activity-info{
        position: relative;
        width: 100%;
        background-color: #ee4e5b;
        height: 360px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .activity-cover{
        position: relative;
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
    }
    .activity{
        height: auto;
    }
    .activity.expired{
        background-color: #d0d0d0;
    }
}

@media (max-width: 750px) {
    .search-bar{
        flex-wrap: wrap;
        height: auto;
        padding: 20px;
    }
    .search-bar .left{
        width: 100%;
        flex: 0 0 auto;
        margin-bottom: 12px;
    }
    .search-bar .left .select.year{
        margin-left: -5px;
    }
    .search-bar .right{
        width: 100%;
        flex: 0 0 auto;
    }
    .activity-cover{
        /*height: 56.25vw;*/
        height: auto;
    }
    .activity-info{
        height: auto;
    }
    .activity-info .part1{
        margin-bottom: 20px;
    }
    .activity-info .part2{
        margin-bottom: 20px;
    }
    .activity-list{
        margin: auto;
    }
}

@media (max-width: 640px) {
    .activity-info{
        padding: 15px;
    }

    .activity-info .part1,
    .activity-info .part2{
        margin-bottom: 12px;
    }

/*
    .activity-info .part1:not(.show){
        display: none;
    }*/

    .activity-info .part1 .line1{
        font-size: 14px;
        margin-bottom: 6px;
    }

    .activity-info .part1 .line2{
        font-size: 16px;
    }

    .activity-info .part2 .line1{
        font-size: 14px;
    }
}
