body {
    background-color: #f5f5f7;
}

.page{
    overflow: hidden;
}
.page01 {
    padding: 10% 0;
}

p span {
    display: block;
}

.headerBar {
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    color: #fff;
    padding: 2rem 0;
    position: absolute;
    z-index: 1;
    width: 100%;
}


.headerBar .title h1 {
    display: inline-block;
    line-height: 1;
}

.headerBar .title h1:before {
    content: '\F231';
    font-family: bootstrap-icons !important;
    color: #fff;
    background-color: #db0a15;
    border-radius: 50%;
    font-size: 24px;
    padding: 7px;
    line-height: 2;
    margin-right: 10px;

}

.headerBar .title h1:after {
    content: '最新抽獎實況';
    font-size: 14px;
    top: 5px;
    position: absolute;
    left: 102%;
    width: 100%;
    font-weight: 100;
}

.page02 .Img .innerImg {
    padding-top: 0;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 2rem;
}

.page02 .Img .innerImg .image:before {
    content: '';
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 30%;
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);


}

.videoTitle .date:before {
    content: ' \F62B';
    font-family: bootstrap-icons !important;
    background-color: #db0a15;
    border-radius: 50%;
    font-size: 10px;
    padding: 5px;
    margin-right: 5px;
}

/* videoSwiper */
.videoSwiper .swiper-slide {
    background: linear-gradient(45deg, #e2acb8 0%, #2c96d3 100%);
    border-radius: 10px;
    height: 20vh;
}



.page03 {
    padding: 5% 0 10%;
    margin: 0;
}

.newsList a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    background-color: #fff;
}

.newsList a .Txt {
    padding: 5%;
    color: #000;
}

.newsList a .Txt:after {
    content: 'View';
    color: #2c96d3;
}

.newsTitle {
    margin-bottom: 2rem;
}


.newsList.swiper {
    padding-bottom: 50px;
}

.newsList .swiper-button-next:after,
.newsList .swiper-button-prev:after {
    font-size: 1rem;
    color: #333;
}

.newsList .swiper-button-next {
    width: 30px;
    height: 30px;
    left: auto;
    right: 40%;
    bottom: 0;
    top: auto;
    border: 1px solid #333;
    border-radius: 50%;
}

.newsList .swiper-button-prev {
    width: 30px;
    height: 30px;
    right: auto;
    left: 40%;
    bottom: 0;
    top: auto;
    border: 1px solid #333;
    border-radius: 50%;


}

@media (max-width:991px) {
    .page01 {
        padding: 7rem 0 12%;
    }

    .headerBar .title h1:after {
        position: relative;
        top: auto;
        left: auto;
        display: block;
        margin-left: 46px;
    }

    .page02 .Img .innerImg .image:before {
        padding-top: 80%;
    }
}



/* videoSwiper */
.VideoList .item {
    color: #fff;
    font-size: 0.9rem;
    padding: 10px;
    display: block;
  }
  .VideoList .slick-dots li button:before{
  color: #fff;
  }
  
  .VideoList .item .Txt{
    padding: 10px 0;
  }
  .VideoList .item .innerImg .image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
    transition: all 0.5s;
  }
  
  .VideoList .item:hover .innerImg .image::after {
    opacity: 0;
    transition: all 0.5s;
  }
  
  .VideoList .item .innerImg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15%;
    padding-top: 15%;
    background-image: url(../images/F/icon-play.svg);
    background-size: contain;
    opacity: 0.8;
    transition: all 0.5s;
  }
  
  .VideoList .item:hover .innerImg::after {
    opacity: 0;
    transition: all 0.5s;
  }