.index {
    width: 100vw;
    height: 100vh;
    font-family: Songti SC, Songti SC;
    overflow: hidden;
    display: none;
}

.index-container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.index-container-visit {
    width: 4.8rem;
    height: 100%;
    background-image: url('../img/index/visitBg.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left bottom;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.index-container-visit-title {
    width: 2.27rem;
    height: .64rem;
    background-image: url('../img/index/visitTitle.png');
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: .56rem;
    margin-left: .16rem;
    position: relative;
}

.index-container-visit-title-decoration {
    width: .29rem;
    height: .29rem;
    background-image: url('../img/index/decoration.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: .03rem;
    right: .03rem;
    display: none;
}

.index-container-visit-describe {
    padding: 0 .16rem;
    font-weight: 400;
    font-size: .2rem;
    color: #FFFFFF;
    line-height: .4rem;
    margin-top: .16rem;
}

.index-container-visit-videoBtn {
    width: 3.52rem;
    height: .72rem;
    background-image: url('../img/index/videoBtn.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    bottom: .32rem;
    left: .64rem;
}

.index-container-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.index-container-content-bg {
    width: 100%;
    height: 100%;
    background-image: url('../img/index/contentBg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 8;
}

.index-container-content-list {
    width: 100%;
    height: 100%;
    display: flex;
}

.index-container-content-list-items {
    flex: 1;
    min-width: 0;
    background-color: #92ACAE;
    background-image: url('../img/index/itemsBg.png');
    background-repeat: no-repeat;
    background-position: left top;
    margin-left: .02rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    top: -100%;
}

.index-container-content-list-items:hover {
    transition: all;
    transition-duration: 0.3s;
    transition-timing-function: ease-out;
}

.index-container-content-list-items-titleBox {
    width: auto;
    height: 1.28rem;
    margin-top: .56rem;
    position: relative;
}

.index-container-content-list-items-titleBox-left {
    position: absolute;
    left: .16rem;
    top: 0;
}

.index-container-content-list-items-titleBox-left-titleLeft {
    height: .64rem;
}

.index-container-content-list-items-titleBox-left-decoration {
    width: .29rem;
    height: .29rem;
    display: block;
    position: absolute;
    top: .06rem;
    right: 0;
    display: none;
}

.index-container-content-list-items-titleBox-right {
    position: absolute;
    right: .16rem;
    top: .64rem;
}

.index-container-content-list-items-titleBox-right-titleRight {
    height: .64rem;
}

.index-container-content-list-items-describe {
    width: 3.08rem;
    padding: 0 .16rem;
    margin-top: .16rem;
    font-weight: 400;
    font-size: .16rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: .32rem;
    display: none;
}

.index-container-content-list-items-describe-txt {
    /* margin-top: .16rem; */
    text-indent: .32rem;
}

.index-container-content-list-items-seal {
    width: .76rem;
    height: .72rem;
    display: block;
    position: absolute;
    bottom: .36rem;
    left: 1.35rem;
    /* left: 50%;
    transform: translateX(-50%); */
    display: none;
}


/* 视频弹窗 */
.index-videoMask {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    display: none;
}

.index-videoMask-container {
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index-videoMask-container-video {
    width: 100%;
    height: 100%;
}

.index-videoMask-container-close {
    width: .5rem;
    height: .5rem;
    position: absolute;
    top:0;
    right: 0;
    cursor: pointer;
	z-index: 999;
}