html{
    background-color: #000000;
    min-width: 1440px;
}
body{
    background-color: #000000;    
    min-width: 1440px;
    overflow-x: auto;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
.container{
    position: relative;
}
.kvBox{
    width: 100%;
    padding-top: 56.25%;
    position: relative;
}
.kvBox .kv-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./../images/kv-bg-break.jpg');
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    z-index: 1;
    pointer-events: none;
}
.kvBox .kv-women{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./../images/kv-women.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    animation: leftIn 1.2s ease;
    -webkit-animation: leftIn 1.2s ease;
    animation-fill-mode: forwards;
}
.kvBox .kv-men{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./../images/kv-men.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    z-index: 4;
    pointer-events: none;
    opacity: 0;
    animation: leftIn 1.2s ease;
    -webkit-animation: leftIn 1.2s ease;
    animation-delay: .5s;
    animation-fill-mode: forwards;
}
.kvBox .kv-bolang-left{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./../images/kv-bolang-left.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    z-index: 5;
    pointer-events: none;
}
.kvBox .kv-bolang-right{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./../images/kv-bolang-right.png);
    background-repeat: no-repeat;
    background-size: 100.03% 100%;
    background-position: right center;
    z-index: 2;
    pointer-events: none;
}
.kvBox .kv-title{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./../images/kv-title.png);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
    z-index: 4;
    pointer-events: none;
}
.kvBox .btnBox{
    position: absolute;
    left: 26.09375%;
    top: 47.5186%;
    width: 47.8125%;
    display: flex;
    align-items: start;
    justify-content: space-between;
    z-index: 2;
}
.kvBox .btnBox .btn{
    position: relative;
    width: 15.4684%;
    padding-top: 47.93028%;
    cursor: pointer;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
    transition: all 0.3s linear;
	animation: flow 3.5s linear infinite both;
	-webkit-animation: flow 3.5s linear infinite both;
}
.kvBox .btnBox .btn::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
    transition: all .3s linear;
}
.kvBox .btnBox .btn:nth-child(1){
    background-image: url('./../images/btn-one.png');
	animation-duration: 3s;
	-webkit-animation-duration: 3s;
}
.kvBox .btnBox .btn:nth-child(2){
    margin-top: 5%;
    background-image: url('./../images/btn-two.png');
	animation-duration: 4s;
	-webkit-animation-duration: 4s;
}
.kvBox .btnBox .btn:nth-child(3){
    background-image: url('./../images/btn-three.png');
	animation-duration: 4s;
	-webkit-animation-duration: 4s;
}
.kvBox .btnBox .btn:nth-child(4){
    margin-top: 5%;
    background-image: url('./../images/btn-four.png');
	animation-duration: 3.2s;
	-webkit-animation-duration: 3.2s;
}
.kvBox .btnBox .btn:nth-child(5){
    background-image: url('./../images/btn-five.png');
	animation-duration: 2.2s;
	-webkit-animation-duration: 2.2s;
}

@-webkit-keyframes flow {
	0% {
		-webkit-transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(10px);
	}
	100% {
		-webkit-transform: translateY(0);
	}
}

@keyframes flow {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(10px);
	}
	100% {
		transform: translateY(0);
	}
}

@-webkit-keyframes leftIn {
    from{
        transform: translate3d(-50%,0,0);
        opacity: 0;
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
@keyframes leftIn {
    from{
        transform: translate3d(-50%,0,0);
        opacity: 0;
    }
    to{
        transform: translate3d(0,0,0);
        opacity: 1;
    }
}
.contentBox{
    width: 100%;
    min-height: 1000px;
    background-color: #993c27;
    background-image: url('./../images/content-kv.jpg'),url('./../images/content-bottom.jpg');
    background-repeat: no-repeat, no-repeat;
    background-position: center top,center bottom;
    background-size: 100% auto,100% auto;
}
.contentBox .articleBox{
    position: relative;
    width: 64%;
    margin: 0 auto;
    padding-top: 38.5%;
    padding-bottom: 100px;
}
.contentBox .articleBox .content{
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.contentBox .articleBox .content .border-top-center{
    position: absolute;
    width: 180px;
    height: 60px;
    background-image: url('./../images/border-top-center.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
}
.contentBox .articleBox .content::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: solid 100px transparent;
    border-image: url('./../images/content-border-bg.png') 100 stretch;
    box-sizing: border-box;
    pointer-events: none;
    z-index: 1;
}
.contentBox .articleBox .content::before{
    position: absolute;
    content: "";
    width: calc(100% - 180px);
    height: calc(100% - 180px);
    top: 90px;
    left: 90px;
    background-color: #ffe8d9;
    pointer-events: none;
    z-index: 1;
}
.contentBox .content .title{
    position: relative;
    text-align: center;
    padding: 45px 0;
    height: 74px;
    font-size: 48px;
    background-image: url('./../images/title-bg.jpg');
    background-position: center center;
    background-size: auto 74px;
    background-repeat: no-repeat;
    z-index: 2;
}
.contentBox .content .title .innertitle{
    height: 74px;
    padding: 0 20px;
    line-height: 74px;
    background: linear-gradient(to bottom,#fef5cb,#f1d486);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}
.contentBox .content .articleContent{
    position: relative;
    padding: 20px 30px 5.3615%;
    color: #784935;
    font-size: 14px;
    z-index: 3;
}
.contentBox .content .articleContent table{
    font-size: 12px;
    max-width: 100%;
}
.contentBox .content .articleContent table tr td{
    padding: 10px 15px;
    white-space: normal;
    border: solid 1px #784935;
    color: #784935;
}
.contentBox .content .articleContent table tr td p{
    margin: 0;
    padding: 0;
}
.contentBox .content .articleContent .articleDetail{
    padding: 0 3.4453%;
    min-height: 1000px;
}
.contentBox .content .articleContent .articleDetail img{
    max-width: 100%;
}
.contentBox .content .articleContent .articleNav{
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
}
.articleNav{
    margin-bottom: 50px;
    background-color: #ffe8d9;
}
.articleNav ul{
    padding: 6px 0;
}
.articleNav ul li{
    width: 15%;
    height: 34px;
    font-size: 16px;
    color: #784935;
    background-image: url('./../images/nav-bg.jpg');
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 6px 5px;
    transition: all 0.3s linear;
}
.articleNav ul li:hover{
    background-image: url('./../images/nav-bg-hover.jpg');
    color: #fff5d2;
}
.articleNav ul li.on{
    background-image: url('./../images/nav-bg-hover.jpg');
    color: #fff5d2;
}
.slideBox{
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate3d(0,-50%,0);
    width: 352px;
    height: 888px;
    background-image: url('./../images/slide-bg-open.png');
    background-size: contain;
    background-repeat: no-repeat;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s linear;
    z-index: 999;
}
.slideBox.show{
    visibility: visible;
    opacity: 1;
    pointer-events: visible;
}
.slideBox.shrink{
    height: 358px;
    background-image: url('./../images/slide-bg-close.png');
}
.slideBox .close{
    width: 69px;
    height: 69px;
    margin: 23px auto 0;
    cursor: pointer;
}
.slidenav{
    margin: 45px auto 10px;
}
.slideBox.shrink .slidenav{
    display: none;
}

.slidenav .item{
    position: relative;
    height: 87px;
    font-size: 24px;
    font-family: FZYANS_ZHONGJW;
    margin-bottom: 2px;
    color: #8b330a;
    cursor: pointer;
    z-index: 1;
    transition: all .3s linear;
}
.slidenav .item span{
    position: relative;
    z-index: 2;
}
.slidenav .item:hover,.slidenav .item.active{
    color:#ffea6d;
    text-shadow: 
    2px 2px 0 #8b330a,
    -2px -2px 0 #8b330a,
    -2px 2px 0 #8b330a,
    2px -2px 0 #8b330a,
    0 2px 0 #8b330a,
    0 -2px 0 #8b330a,
    -2px 0 0 #8b330a,
    2px 0 0 #8b330a;
}
.slidenav .item:hover::after{
    position: absolute;
    content:"";
    width: 100%;
    height: 100%;
    top: 10px;
    left: 0;
    background-image: url('./../images/slide-selected-bg.png');
    background-position: center center;
    background-size: 100% 100%;
    color: #c53c15;
    z-index: 1;
}
.slidenav .item.active::after{
    position: absolute;
    content:"";
    width: 100%;
    height: 100%;
    top: 10px;
    left: 0;
    background-image: url('./../images/slide-selected-bg.png');
    background-position: center center;
    background-size: 100% 100%;
    color: #c53c15;
}
.slidenav .line{
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #a2baf5;
    z-index: 2;
}
.slidenav .line::after{
    position: absolute;
    content: "";
    width: 3px;
    height: 3px;
    border: solid 2px #84abec;
    background-color: #bac6fc;
    top: 100%;
    left: 50%;
    border-radius: 10px;
    transform: translate3d(-50%,-50%,0);
}
.slidenav .item.on{
    background-color: #acc8f7;
    color: #313d87;
}
.backtop{
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.backhome{
    width: 100%;
    height: 50px;
    cursor: pointer;
}
.logoBox{
    position: absolute;
    width: 26.04167%;
    top: 30px;
    left: 30px;
    z-index: 9;
}
.logoBox .logo{
    position: relative;
    width: 50%;
    padding-top: 20%;
    background-image: url('./../images/logo.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.logoBox .logo a{
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.logoBox .logo.two{
    background-image: url('./../images/logo1.png');
}

.hide{
    display: none;
}