/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: sourcehansansCN,-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 页面容器 */
.page-wrapper {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 头部横幅 */
.page-header {
    width: 100%;
}

.banner {
    width: 100%;
    padding:  0;
    text-align: center;
    position: relative;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
}
.banner-btn {
    width: 40vw;
    height: auto;
    margin-left: -20vw;
    position: absolute;
    left: 50%;
    bottom: .8rem;
}

/* 主内容区 */
.main-content {
    padding: 20px 15px;
    background: url(../images/bg.jpg) no-repeat;
    background-size: cover;
}
 
/* 人气 */
.hot-info {
    height: 5rem;
    background: url(../images/hotBg.png) no-repeat;
    background-size: contain;
    padding: 15px;
    margin-bottom: 20px;
}

.view-count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fbdf17;
    font-weight: bold;
}
.view-count em{
    font-style: normal;
}

.view-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background: url(../images/hot.png) no-repeat center;
    background-size: contain;
}


/* 规则区域 */
.intro-section {
margin: 0 auto;
}
.intro-section img{
    width: 100%;
    margin: 0 auto;
}
.intro-section p{    
    margin: 1rem auto;
    font-size: 1.4rem;
    color: #ccdfee;
    line-height: 2rem;
    text-align: center;
}
/* 中奖名单 */
.winner-list {
    height: 5rem;
    background: url(../images/hotBg.png) no-repeat;
    background-size: contain;
    padding: 15px;
   display: flex; 
   justify-content: center;
}
.winner-list .tit {
   font-size: 1.5rem;
   font-weight: bold;
   color: #fbdf17;
   display: inline-block;
   line-height: 2rem;
   margin-right: 1rem;
}
.winner-list .con {
       display: inline-block;
       width: 10rem;
       height: 2.5rem;
       overflow: hidden;
}
.winner-list .con p {
   font-size: 1.0rem;
   color: #fbdf17;
   line-height: 1.3rem;
}




/* 页脚 */
.page-footer {
    text-align: center;
    padding: 20px;
}

.copyright {
    font-size:1rem;
    color: #ccdfee;
}

/* 响应式设计 */
@media screen and (min-width: 321px) and (max-width: 375px) {
    .video-title { font-size: 16px; }
    .intro-content { font-size: 13px; }
}

@media screen and (min-width: 376px) and (max-width: 414px) {
    .video-title { font-size: 17px; }
    .intro-content { font-size: 14px; }
}

@media screen and (min-width: 640px) {
    .page-wrapper {
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }
}
