@charset "utf-8";
.event-wrap{
    background: white url('/static/images/event/event-box-bg.png');
    border-bottom: 1px solid #f5f5f5;
    overflow: hidden;
    min-height: 1200px;
}
.event-header{
    position: relative;
    display: block;
    height: 525px;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    background: url('/static/images/banner/banner-collect.jpg') no-repeat center;
    background-size: cover;
    cursor: pointer;
}
@keyframes breathA {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.btn-upload{
    position: absolute;
    top: 380px;
    left: 50%;
    margin-left: -90px;
    width: 180px;
    height: 62px;
    color: #fff;
    font-size: 40px;
    animation: breathA 2s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/static/images/event/uploadBtn.png') no-repeat center;
    background-size: 100%;
}
.event-content{
    margin: 20px auto;
    width: 1200px;
}
.event-title{
    width: 165px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 24px;
    color: #626262;
    margin-bottom: 10px;
    background-repeat: no-repeat;
    background-size: 100%;
}
.title-1{
    background: url("/static/images/event/title-1.png");
}
.title-2{
    background: url("/static/images/event/title-2.png");
}
.title-3{
    background: url("/static/images/event/title-3.png");
}
.title-4{
    background: url("/static/images/event/title-4.png");
}
.event-info{
    color: #828283;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 40px;
    padding-left: 10px;
}
.event-info .img{
    text-align: center;
    margin: 0 auto;
}
.btn-fixed-box{
    width: 166px;
    height: 315px;
    background: url('/static/images/event/btn-fixed-bg.png') no-repeat;
    background-size: auto 315px;
    position: fixed;
    left: 0;
    top: 50%;
    margin-top: -157px;
    z-index: 200;
    transform: scale(0);
    transform-origin: left center;
    transition: ease all 0.3s;
}
.btn-fixed-box.fixed{
    transform: scale(1);
}
.btn-fixed-box .day {
    height: 150px;
    position: absolute;
    left: 0;
    top: 85px;
    right: 0;
    line-height: 100px;
    color: #fff;
    text-align: center;
    font-size: 100px;
    font-weight: bold;
}
.btn-fixed{
    display: inline-block;
    background: url('/static/images/event/uploadBtn-fixed.png') no-repeat center center;
    height: 48px;
    width: 140px;
    left: 14px;
    bottom: 30px;
    position: absolute;
}
.info-other{
    margin: 20px auto 60px;
    padding: 20px;
    width: 860px;
    border-radius: 12px;
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 18px;
    text-align: center;
}
.info-other a{
    text-decoration: underline;
    color: #16ffff;;
}