@charset "UTF-8";

body {
    background-color: #393939;
    background-image: url(../images/bg.png);
    -webkit-background-size: 50%;
    background-size: 50%;
}



.bannerBox .bannerSlick .innerImg {
    padding-top: 40%;
}

a {
    color: #eee;
}

a:hover {
    color: #eee;
}

/*--------caseArea--------*/

.caseArea {
    padding-bottom: 10%;
}

.caseArea .caseList .item {
    min-height: 170px;
    justify-content: center;
    margin-bottom: 5rem;
}





.caseArea .caseList .item:nth-child(odd) {
    margin-left: 10%;
}

.caseArea .caseList .item:nth-child(even) {
    flex-direction: row-reverse;
}

.caseArea .caseList .item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    border: 1px solid #666;
    opacity: 0;
    transition: all 0.5s;
}

.caseArea .caseList .item.show:before {
    opacity: 1;
    height: 100%;
    transition: all 0.3s;
}

.caseArea .caseList .item:nth-child(even):before {
    width: 55%;
    left: 10%;
}

.caseArea .caseList .item .titleBox {
    margin-bottom: 2rem;
}

.caseArea .caseList .item .titleBox:after {
    content: '';
    position: absolute;
    height: 1px;
    right: 0;
    bottom: 0;
    background-color: #666;

}

.caseArea .caseList .item .caseInfoBox {
    margin-bottom: 1rem;
    padding: 5% 5%;
    opacity: 0;
    transform: translateX(-10%);
    transition: all 1s 0.5s;
}

.caseArea .caseList .item.show .caseInfoBox {
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s 0.5s;
}

.caseArea .caseList .item:nth-child(even) .caseInfoBox {
    padding-left: 10%;
    padding-right: 0;
}

.caseArea .caseList .item .caseInfoBox .caseName {
    font-weight: bold;
    padding-left: 5px;
    display: inline-block;
    padding-bottom: 10px;
}

.caseArea .caseList .item .caseInfoBox .caseName:after {
    content: '';
    width: 0;
    height: 5px;
    background-color: #ceaa6e;
    position: absolute;
    top: 100%;
    right: 110%;
    transition: all 1s 0.5s;
}

.caseArea .caseList .item.show .caseInfoBox .caseName:after {
    width: 3.5rem;
    transition: all 1s 0.5s;
}

.caseArea .caseList .item .caseInfoBox .caseInfo {
    font-weight: 300;
}


.caseArea .caseList .item .caseInfoBox ul.InfoList {
    margin-top: 2rem;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
}

.caseArea .caseList .item .InfoList li {
    display: block;
    width: 100%;
    padding-left: 5rem;
    font-weight: 300;
}

.caseArea .caseList .item .InfoList li span {
    position: absolute;
    left: 0;
    font-weight: 300;
}

.caseArea .caseList .item .InfoList li span:after {
    content: '：';
}

.caseArea .caseList .item .ImgBox:hover .innerImg:after {
    width: 120%;
    height: 120%;
    opacity: 0.5;
    transition: all 0.5s;
}



.caseArea .caseList .item:nth-child(odd) .ImgBox {
    transform: translate(10%, -10%);
}

.caseArea .caseList .item:nth-child(even) .ImgBox {
    transform: translate(0%, -10%);
}

.caseArea .caseList .item .ImgBox .innerImg {
    padding-top: 65%;
    overflow: hidden;
}

.caseArea .caseList .item .ImgBox .innerImg {
    opacity: 0;
    transform: translateY(-20%);
    transition: all 1s 0.5s;
}

.caseArea .caseList .item.show .ImgBox .innerImg {
    opacity: 1;
    transform: translateY(0%);
    transition: all 1s 0.5s;
}

.caseArea .caseList .item .ImgBox .innerImg:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    background: -webkit-radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    background: -o-radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    background: -moz-radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    transition: all 0.5s;
}

.caseArea .caseList .item:hover .ImgBox .innerImg:after {
    width: 120%;
    height: 120%;
    opacity: 0.5;
    transition: all 0.5s;
}

.caseArea .caseList .item.show .ImgBox .innerImg:after {
    width: 120%;
    height: 120%;
    opacity: 0;
    transition: all 0.5s;
}

.caseArea .caseList .item .ImgBox .innerImg .image {
    background-position: center;
}

.caseArea .item .btn-rm {
    font-size: 10px;
    margin-top: 2rem;
    color: #aa9061;
    display: inline-block;
}

.caseArea .item .btn-rm:before {
    content: '';
    width: 0%;
    height: 1px;
    background-color: #999;
    position: absolute;
    bottom: 0%;
    transition: all 0.5s;
}

.caseArea .item:hover .btn-rm:before {
    width: 100%;
    transition: all 0.5s;
}






@media(max-width: 480px) {
    .caseArea .caseList .item {
        margin: 0 !important;
    }

    .caseArea .caseList .item:before {
        height: 70%;
    }

    .caseArea .caseList .item:nth-child(odd) .ImgBox {
        transform: translate(0, -10%);
    }

    .caseArea .caseList .item:nth-child(even):before {
        width: 100%;
        left: 0%;
    }

    .caseArea .caseList .item:nth-child(even) .caseInfoBox {
        margin-bottom: 1rem;
        padding: 5% 5%;
    }


}