*{
    padding: 0;
    margin:0;
}
a{
    text-decoration: none;
    color:#fff;
}
ul,li{
    list-style: none;
}
body{
    min-width: 1220px;
}
.w1200{
    width: 1200px;
    margin:0 auto;
}
::selection {
    background:none;
    color:#C8A176;
}
/*Mozilla Firefox*/
::-moz-selection {
    background:none;
    color:#C8A176;
}
/* 顶部导航 */
header{
    height: 80px;
    background: #000;
    position: sticky;
    position: -webkit-sticky;
    top:0;
    z-index: 1000;
}
.nav{
    display: flex;
    align-items: center;
    height: 100%;
}
.logo{
    margin-right: 60px;
}
.logo img{
    display: block;
    width: 60px;
}
nav{
    height: 100%;
    display: flex;
}
nav .li{
    width: 180px;
    height: 100%;
    line-height: 80px;
    font-size: 18px;

}
nav .li:first-child{
    width: 150px;
}
nav .li a{
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: all 0.3s;
}
nav .li a:hover{
    color:#C8A176;
}
nav .li.active{
    background: #C8A176;
    font-weight: 600;
}
nav .li.active a:hover{
    color:#fff;
}
footer{
    background: #000;
    height: 150px;
    color:#fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
footer a{
    text-decoration: underline;
}
/* banner */
.banner{
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner.index{
    background:#000 url(../images/home_top_banner.png) no-repeat center center;
    background-size:cover;
}
.banner.publish{
    background:#000 url(../images/Products_top_banner.png) no-repeat center center;
    background-size:cover;
    height: 442px;
}
.banner.tools{
    background:#000 url(../images/issue_top_banner.png) no-repeat center center;
    background-size:cover;
    height: 442px;
}
.banner.future{
    background:#000 url(../images/future_top_banner.png) no-repeat center center;
    background-size:cover;
    height: 442px;
}
.banner .menu{
    width: 980px;
    margin:260px auto 0;
    display: flex;
    justify-content: space-between;
}
.banner .menu .item{
    width: 285px;
    height: 152px;
    border:1px solid #fff;
    box-sizing: border-box;
    text-align: center;
    color:#fff;
    font-size: 30px;
    text-transform: uppercase;
    padding-top: 28px;
    position: relative;
}
.banner .menu .item span{
    font-size: 40px;
    color:#FFD52B;
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}
.banner .menu .item::before{
    content: "";
    position: absolute;
    /* box-sizing: border-box; */
    border: 1px solid transparent;
    width: 0;
    height: 0;
    bottom: -1px;
    right: -1px;
    -webkit-transition: border-color 0s ease-in 0.4s,width 0.2s ease-in 0.2s,height 0.2s ease-in;
    transition: border-color 0s ease-in 0.4s,width 0.2s ease-in 0.2s,height 0.2s ease-in;
}
.banner .menu .item:hover::before{
    width: 100%;
    height: 100%;
    border-bottom-color: #FFD52B;
    border-left-color: #FFD52B;
    -webkit-transition: border-color 0s ease-out 0.4s,width 0.2s ease-out 0.4s,height 0.2s ease-out 0.6s;
    transition: border-color 0s ease-out 0.4s,width 0.2s ease-out 0.4s,height 0.2s ease-out 0.6s;
}
.banner .menu .item::after{
    content: "";
    position: absolute;
    /* box-sizing: border-box; */
    border: 1px solid transparent;
    width: 0;
    height: 0;
    top: -1px;
    left: -1px;
    -webkit-transition: border-color 0s ease-in 0.8s,width 0.2s ease-in 0.6s,height 0.2s ease-in 0.4s;
    transition: border-color 0s ease-in 0.8s,width 0.2s ease-in 0.6s,height 0.2s ease-in 0.4s;
}
.banner .menu .item:hover::after{
    width: 100%;
    height: 100%;
    border-top-color: #FFD52B;
    border-right-color: #FFD52B;
    -webkit-transition: width 0.2s ease-out,height 0.2s ease-out 0.2s;
    transition: width 0.2s ease-out,height 0.2s ease-out 0.2s;
}
/* 首页 */
.menuTit{
    margin-top: 160px;
    padding-left: 44px;
}
.menuTit .zh{
    position: relative;
    font-size: 48px;
    color:#C8A176;
    line-height: 1;
    font-weight: 600;
}
.menuTit .zh::before{
    content:"";
    position: absolute;
    width: 32px;
    height: 32px;
    background: #C8A176;
    left: -44px;
    top: 9px;
}
.menuTit .en{
    font-size: 34px;
    color:#C8A176;
    text-transform: uppercase;
}
.about{
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}
.about .item{
    width: 370px;
    height: 550px;
    background: #fff;
    box-shadow: 0px 0px 32px 0px rgba(82, 82, 146, 0.16);
}
.about .item img{
    width: 370px;
    height: 160px;
    object-fit: cover;
    display: block;
}
.about .item .tit{
    font-size: 28px;
    color:#C8A176;
    padding:20px 25px 10px;
    display: flex;
    justify-content: space-between;
}
.about .item .tit span{
    font-size: 20px;
    color:#333;
    display: flex;
    align-items: flex-end;
}
.about .item .txt{
    padding: 0 25px;
    font-size: 18px;
    color:#333;
    line-height: 36px;
}
.about .item .txt p{
    margin-bottom: 5px;
}
.about .item .txt .li{
    display: flex;
}
.about .item .txt .li .l{
    width: 60px;
}
.about .item .txt .li .r{
    flex: 1;
}
.series{
    margin-top: 60px;
}
.series h1{
    text-align: center;
    font-size: 46px;
    margin-bottom: 80px;
    letter-spacing: 5px;
}
.series .lt_img{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 80px;
}
.series .lt_txt{
    font-size: 22px;
    color:#333;
    line-height: 42px;
    letter-spacing: 5px;
    text-indent: 50px;
}
.series .item{
    margin-top: 180px;
    position: relative;
    display: flex;
    align-items: center;
}
.series .item .tag{
    position: absolute;
    left:0;
    top:-80px;
    background: #FFD52B;
    width: 120px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius:40px;
    font-weight: 600;
    color:#000;
    font-size: 32px;
}
.series .item img{
    margin-right: 60px;
}
.series .item p{
    letter-spacing: 5px;
    line-height: 42px;
    font-size: 22px;
    color:#333;
    flex: 1;
}
.series .item.odd{
    flex-direction: row-reverse;
}
.series .item.odd img{
    margin-right: 0;
    margin-left: 60px;
}
.series .item.odd .tag{
    left:auto;
    right: 0;
}
.culture{
    margin-top: 60px;
}
.culture .content{
    background: #FF4F4E;
    margin-bottom: 80px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
    padding:20px 30px 60px;
}
.culture .content .li{
    color:#fff;
    width: 45%;
}
.culture .content .li .tit{
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    margin-top: 40px;
}
.culture .content .li .txt{
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 40px;
}
.culture .expression{
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}
.culture .photo{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}
.culture .photo img{
    margin-bottom: 20px;
}
/* 出品发行 */
.pubCon{
    padding:76px 0 40px;
}
.pubCon .block{
    display: flex;
    justify-content: space-between;
}
.pubCon .item{
    margin-bottom: 40px;
    display: flex;
    width: 46%;
}
.pubCon .item img{
    width: 238px;
    height: 344px;
    margin-right: 40px;
}
.pubCon .item .mess{
    flex: 1;
}
.pubCon .item .mess .title{
    color:#C8A176;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-top: 8px;
}
.pubCon .item .mess .title span{
    color:#333;
    font-size: 16px;
}
.pubCon .item .mess .lis{
    display: flex;
    color:#333;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 26px;
    margin-top: 20px;
}
.pubCon .item .mess .lis .r{
    flex: 1;
}
/* 发行工具 */
.toolsCon .cinema{
    margin-top: 140px;
}
.toolsCon .cinema .tit_logo{
    display: block;
    margin:0 auto 60px;
}
.toolsCon .cinema .imglist{
    display: flex;
    justify-content: space-between;
    margin:0 auto;
    width: 600px;
}
.toolsCon .cinema .imglist .li{
    text-align: center;
    font-size: 18px;
    color:#333;
}
.toolsCon .cinema .imglist .li span{
    display: block;
    margin-top: 10px;
}
.toolsCon .cinema p{
    font-size: 24px;
    color:#333;
    line-height: 42px;
    letter-spacing: 4px;
    margin-top: 56px;
}
.toolsCon .cinema h1{
    font-size: 52px;
    color:#333;
    margin-bottom: 60px;
    text-align: center;
}
.toolsCon .cinema.pub{
    margin-bottom: 160px;
}
.toolsCon .cinema.pub .imglist{
    width: 860px;
}
/* 影视未来 */
.futureCon{
    padding:120px 0 280px;
}
.futureCon .content h1{
    text-align: center;
    font-size: 50px;
    color:#333;
    letter-spacing: 4px;
    line-height: 1;
    margin-bottom: 20px;
}
.futureCon .content .desc{
    width: 444px;
    height: 66px;
    line-height: 66px;
    text-align: center;
    border-radius:30px;
    font-size: 24px;
    color:#424241;
    background: #FFD52B;
    margin:0 auto 70px;
    letter-spacing: 2px;
}
.futureCon .content .lis{
    display: flex;
    flex-wrap: wrap;
}
.futureCon .content .lis .li{
    width: 272px;
    height: 112px;
    background: #3E3A39;
    border-radius:8px;
    line-height: 112px;
    text-align: center;
    font-size: 30px;
    color:#FFD52B;
    margin-right: 190px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}
.futureCon .content .lis .li:nth-child(3n){
    margin-right: 0;
}
.futureCon .address{
    margin-top: 30px;
    margin-bottom: 100px;
}
.futureCon .address img{
    margin-bottom: 80px;
}
.futureCon .address p{
    font-size: 26px;
    color:#333;
    letter-spacing: 2px;
    line-height: 42px;
}
.futureCon .qrcode{
    display: flex;
    justify-content: space-between;
}
.futureCon .qrcode .li{
    text-align: center;
    font-size: 26px;
    color:#333;
}
.futureCon .qrcode .li img{
    display: block;
    margin:0 auto;
}