body,ul,li,a,p{
    margin: 0px;
    text-decoration: none;
    padding: 0px;
    list-style: none;
}
body{
    background: #f4f4f4;
}
/* 导航样式 */
header{
    width: 100%;
    height: 80px;
    background: #fff;
    margin-bottom: 40px;
    box-shadow: 0px 0px 5px 5px #ccc;
}
.nav{
    height: 80px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
/* 左侧logo */
.nav-left{
    flex-grow: 9.5;
    display: flex;
    align-items: center;
}
.nav-left>ul,.nav-right>ul{
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-left>ul>li>a{
    font-size: 20px;
    color: #000;
    line-height: 80px;
}
/* 右侧导航 */
.nav-right{
    flex-grow: .6;
}
.nav-right>ul{
    justify-content: space-between;
}
.nav-right>ul>li>a{
    color: rgba(31, 45, 61, 0.5);
}
.nav-right>ul>li>a:hover{
    color: #000;
}
.nav-right ul li .active{
    color: #000;
}
/* 隐藏导航 */
.pad{
    display: none;
}
/* 备案号样式 */
footer{
    width: 100%;
    height: auto;
    background: #111;
    margin-top: 40px;
}
.footer{
    width: 100%;
}
.footer a{
    display: block;
    color: #fff;
    font-size: 14px;
    text-align: center;
    line-height: 6.25em;
}

/* 内容样式(平面/网页) */
#content{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.content{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.content>section{
    width: 49.5%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.content>section>a{
    z-index: 1;
}
.content>section>a>img{
    width: 100%;
}
.content>section>section{
    position: absolute;
    font-size: 3rem;
    width: 100%;
}
.content>section>section>article{
    text-align: center;
}

.content>section>a>:hover{
    transition: .5s;
	opacity: 0;
}

/* 内容样式(关于) */
.about>section{
    width: 80%;
    margin: 0px auto;
}
.about>section>div>h1{
    font-size: 28px;
}
.about>section>div>ul>li>a{
    color: #000;
    line-height: 24px;
}
.work a{
    font-size: 18px;
    word-spacing: 100px;
    font-weight: bold;
    padding: 10px 0px;
    display: flex;
}

/* blue rock/迅景科技/丰井科技/青天河/臻藏/花甲先生 界面 */
.blue-rock{
    width: 60%;
    margin: 0 auto;
}
.blue-rock li p{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.blue-rock li img{
    width: 100%;
    margin-bottom: 20px;
}
.poster{
    width: 60%;
    margin: 0 auto;
}
#content ul{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.Roll{
    width: 40%;
    margin: 0 auto;
}
.artist{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
#active-img{
    width: 24%;
}


/* pc端样式 */
@media screen and (min-width:960px){
    #content{
        min-width: 960px;
    }
    .nav{
        min-width: 960px;
    }
    footer{
        min-width: 960px;  
    }
}

/* pad端样式 */
@media screen and (max-width:960px) and (min-width:750px){
    #content{
        min-width: 750px;
    }
    .content{
        margin-bottom: 8px;
    }
    .nav{
        min-width: 750px;
    }
    footer{
        min-width: 750px;  
    }
}
/* 手机端样式 */
@media screen and (max-width:750px) and (min-width:320px){
    .nav-right{
        display: none;
    }
    .pad{
        display: block;
        line-height: 80px;
        color: #000;
    }
    .pad>ul{
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        z-index: 2;
        background: rgba(0, 0, 0, 0.8);
        display: none;
    }
    .pad>ul>li>a{
        display: block;
        color: #ffff;
        text-align: center;
        margin: 0px auto;
    }
    .pad:hover>ul{
        display: block;
    }

    .nav{
        min-width: 320px;
    }
    #content{
        min-width: 320px;
    }
    .content{
        min-width: 320px;
        flex-wrap: wrap;
        margin-bottom: 4px;
    }
    .content>section{
        width: 100%;
        margin-bottom: 10px;
     }
    footer{
        min-width: 320px;
        flex-direction: column;
        height: auto;
        margin-top: 0px;
    }
}