.eventHeader{
    width: 100%;
    position: relative;
    min-height: 480px;
    display: flex;
    overflow: hidden;
}
.eventHeader-bg{
    position: relative;
    width: 100%;
    padding-bottom:38.2%;
    background-size: cover;
    background-position: center center;
    flex: 1;
}
.eventHeader-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    bottom:0;
    left:0;
    content:'';
    width: 100%;
    background: linear-gradient(to bottom,transparent,#f6f6f6);
    color: #464646;
}
.eventHeader-content-center{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    max-width: 1400px;
    padding:100px 0 40px 0;
    background: radial-gradient(farthest-side at 50% 100%,#f6f6f6, transparent);
}
.eventPics-list{
    margin:0 15px;
}
.eventHeader-content-title{
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 5px;
    color: #28292b;
}
.eventHeader-content-sub{
    font-size: 16px;
    letter-spacing: 1.5px;
}

.eventHeader-content-qrs {
    display: flex;
    justify-content: center;
    width: 100%;
    padding:40px 15px 0 15px;
}

.needQr {
    display: flex;
    flex-direction: column-reverse;

}

.needQr+.needQr {
    margin-left: 20px;
}

.needQr .label {
    content: attr(data-remark);
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 5px;
    font-weight: 400;
    white-space: nowrap;
}

.needQr canvas {
    display: block;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    max-width: 150px;
}


.eventPics-item{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom:25%;
    background-position: center center;
    background-size: cover;
    transition: all 0.5s;

    box-shadow: 0 5px 30px 0 rgb(0 0 0 / 6%);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}
.eventPics-item-button{
    position: absolute;
    right:0;
    top:0;
    padding:40px;
    font-size: 16px;
    color:#ffffff;
    transition: all 0.5s;
}
.eventPics-item-button a{
    background-color: rgba(0,0,0,0.25);
    padding:10px;
    border-radius: 5px;
    backdrop-filter: blur(5px);
    display: block;
    opacity: 0;
    transition: opacity 0.5s;
    visibility: hidden;
    pointer-events: none;
}
.eventPics-item-button a:hover{
    filter: brightness(1.1);
}
.eventPics-item-button i{
    margin-right:7px;
}
.eventPics-item-content{
    position: absolute;
    bottom:0;
    left:0;
    padding:40px;
    width: 100%;
    background-image: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.618) 100%);
    pointer-events: none;
    text-shadow:0 0 10px rgba(0,0,0,1);
}
.eventPics-item-content-label{
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color:#ffffff;
    margin-bottom:0px;
    width: fit-content;
    padding:7px;
    letter-spacing: 2px;
    background: rgba(0,0,0,0.382);
    border-left:solid 3px #ffffff;
    border-right:solid 3px #ffffff;
    padding-left:10px;
    border-radius: 5px;
    margin-bottom:5px;
}
.eventPics-item-content-title{
    font-size: 36px;
    line-height: 36px;
    color:#ffffff;
    margin-bottom:0px;
    letter-spacing: 2px;
    font-weight: 300;
    transition: all 0.5s;
    white-space: nowrap;
}

.eventPics-item-content-time{
    font-weight: 300;
    font-size: 24px;
    line-height: 24px;
    color:#ffffff;
    margin-bottom:0px;
    letter-spacing: 2px;
    height: 0;
    opacity: 0;
    transition: all 0.5s;
    white-space: nowrap;
}
.eventPics-item-content-location{
    font-size: 18px;
    line-height: 18px;
    color:#ffffff;
    letter-spacing: 2px;
    font-weight: 300;
    height: 0;
    opacity: 0;
    transition: all 0.5s;
    white-space: nowrap;
}
.eventPics-item:hover,.eventPics-item:first-of-type{
    padding-bottom:38.2%;
}
.eventPics-item:hover .eventPics-item-button a,.eventPics-item:first-of-type .eventPics-item-button a{
    opacity: 1;
    visibility: visible;
    pointer-events: unset;
}
.eventPics-item:hover .eventPics-item-content-title,.eventPics-item:first-of-type .eventPics-item-content-title{
    margin-bottom: 5px;
    font-size: 32px;
    line-height: 32px;
}
.eventPics-item:hover .eventPics-item-content-time,.eventPics-item:first-of-type .eventPics-item-content-time{
    height: 24px;
    opacity: 1;
    margin-bottom:5px;
}
.eventPics-item:hover .eventPics-item-content-location,.eventPics-item:first-of-type .eventPics-item-content-location{
    height: 18px;
    opacity: 1;
}
@media (max-width:860px){
    .eventHeader{
        min-height: 320px;
    }
    .eventHeader-content-center{
        padding:40px 0 20px 0;
    }
    .eventHeader-content-title{
        font-size: 26px;
        letter-spacing: normal;
    }
    .eventHeader-content-sub{
        font-size: 14px;
    }
    .eventHeader-content-qrs{
        padding-top:10px;
    }
    .needQr canvas{
        padding:5px
    }
    .needQr .label{
        font-size: 10px;
    }
    .needQr+.needQr{
        margin-left:5px
    }
    .eventPics-item-button{
        top:-100px;
    }
    .eventPics-item{
        padding-bottom:50%;
    }
    .eventPics-item:hover,.eventPics-item:first-of-type{
        padding-bottom:100%;
    }
    .eventPics-item:hover .eventPics-item-button,.eventPics-item:first-of-type .eventPics-item-button{
        top:0;
    }
    .eventPics-item-content,.eventPics-item-button{
        padding:15px;
    }
    .eventPics-item-content-title{
        font-size: 18px;
        line-height: 18px;
    }
    .eventPics-item:hover .eventPics-item-content-title,.eventPics-item:first-of-type .eventPics-item-content-title{
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 0;
    }
    .eventPics-item-content-time{
        font-size: 14px;
        line-height: 14px;
    }
    .eventPics-item:hover .eventPics-item-content-time,.eventPics-item:first-of-type .eventPics-item-content-time{
        height: 14px;
        opacity: 1;
        margin-bottom:0px;
    }
    .eventPics-item-content-location{
        font-size: 12px;
        line-height: 12px;
    }
    .eventPics-item:hover .eventPics-item-content-location,.eventPics-item:first-of-type .eventPics-item-content-location{
        height: 12px;
    }
}