@charset "UTF-8";


.outerWrap {
    /* background: -webkit-linear-gradient(135deg, #dbdcdc 0%, #dbdcdc 25%, transparent 25%, transparent 58%, #dbdcdc 58%, #dbdcdc 100%);
    background: -o-linear-gradient(135deg, #dbdcdc 0%, #dbdcdc 25%, transparent 25%, transparent 58%, #dbdcdc 58%, #dbdcdc 100%);
    background: linear-gradient(135deg, #dbdcdc 0%, #dbdcdc 25%, transparent 25%, transparent 58%, #dbdcdc 58%, #dbdcdc 100%);*/
    /*background-image: url(../images/bg2.jpg);*/
    background-attachment: fixed;
    -webkit-background-size: 110%;
    background-size: 110%;
    background-position: center;
    color: #fff;
}

a {
    color: #eee;
}

/*---------bannerArea---------*/
.bannerArea {
    width: 100%;
}

.bannerArea .bannerBox {
    max-height: calc(100vh - 65px);
}

.bannerArea .bannerBox:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%;
    /*box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.5);*/
}

.bannerArea .copyright {
    text-align: right;
    color: #999999;
    font-size: 9px;
    padding-top: 1rem;
    padding-right: 0.5rem;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    white-space: nowrap;
}

.bannerArea .slick-dots {
    text-align: left;
}

.bannerArea .slick-dots li button:before {
    content: '▪';
    font-size: 2rem;
}

.bannerArea .bannerSlick .item .innerImg {
    /*padding-top: 60%;*/
    height: 90vh;
}

@media(max-width: 1200px) {

    header {
        /*padding-top: 20%;*/
        display: none;
    }

    .bannerArea {
        padding: 0;
        padding-bottom: 10%;
    }

    .bannerBox:after {
        display: none;
    }

    .bannerArea .bannerSlick .item .innerImg {
        padding-top: 70%;
    }

}


@media(max-width: 768px) {
    .bannerArea .copyright {
        display: none;
    }

    .bannerArea {
        padding-top: 15%;
    }

    .bannerArea .bannerSlick .item .innerImg .image {
        -webkit-background-size: cover;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 20%;
    }
}

/*-----aboutArea-----*/
.aboutArea {
    padding-bottom: 5%;
}

.aboutArea:before {
    content: '';
    width: 0;
    padding-top: 30%;
    background-color: #292929;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: translate(10%);
    transition: all 2s;
}

.aboutArea.show:before {
    opacity: 1;
    width: 100%;
    transform: translate(0%);
    transition: all 2s 0.4s;
}


.aboutArea .TxtBox {
    padding-top: 30%;
    padding-right: 15%;
    opacity: 0;
    transform: translateX(-10%);
    transition: all 2s;
}

.aboutArea.show .TxtBox {
    opacity: 1;
    transform: translateX(0%);
    transition: all 2s;
}

.aboutArea .Img {
    opacity: 0;
    transform: translateX(10%);
    transition: all 2s;
}

.aboutArea.show .Img {
    opacity: 1;
    transform: translateX(0%);
    transition: all 3s 1s;
}

.aboutArea .ImgBox {
    box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.3);
}

.aboutArea .ImgBox:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    padding-top: 0%;
    border: 3px solid #ceaa6e;
    z-index: -1;
    transform: translate(-15%, 20%);
    opacity: 0;
    transition: all 0.2s;
}

.aboutArea.show .ImgBox:before {
    opacity: 1;
    height: 100%;
    padding-top: 100%;
    transition: all 5s 1s;
}


.aboutArea .ImgBox .innerImg {
    padding-top: 130%;
}

.aboutArea .ImgBox .innerImg:after {
    /*content: 'Zhe-Yuan Construction';*/
    font-size: 10px;
    color: #666;
    position: absolute;
    margin-top: 3%;
}

.aboutArea .ImgBox .innerImg .image {
    background-position: center;
}

@media(max-width: 1024px) {
    .aboutArea:before {
        padding-top: 25%;
    }
}

@media(max-width: 480px) {
    .aboutArea .TxtBox {
        padding-bottom: 10%;
    }

    .aboutArea .ImgBox .innerImg:after {
        display: none;
    }

    .aboutArea:before {
        padding-top: 60%;
    }
}

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

.caseArea {
    padding-top: 20%;
    padding-bottom: 10%;
}

.caseArea .caseSlick .item {
    min-height: 170px;
    opacity: 0;
    transform: translateY(20%);
    transition: all 1s;
}

.caseArea.show .caseSlick .item {
    opacity: 1;

    transform: translateY(0%);
    transition: all 1s 1s;
}







.caseArea .caseSlick .item .Img {
    opacity: 0;
    transform: translateX(-10%);
    transition: all 1s;
}

.caseArea.show .caseSlick .item .Img {
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s 0.3s;

}

.caseArea .caseSlick .item .titleBox {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(10%);
    transition: all 1s;
}

.caseArea.show .caseSlick .item .titleBox {
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s;
}

.caseArea .caseSlick .item .titleBox:after {
    content: '';
    position: absolute;
    width: 120%;
    height: 1px;
    right: 0;
    bottom: 0;
    background-color: #666;
}

.caseArea .caseSlick .item .caseInfoBox {
    margin-bottom: 1rem;

}

.caseArea .caseSlick .item .caseInfoBox .caseName {
    font-weight: bold;
}

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


.caseArea .caseSlick .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 .caseSlick .item .InfoList li {
    display: block;
    width: 50%;
    padding-left: 5rem;
    font-weight: 300;
}

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

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

.caseArea .caseSlick .slick-dots {
    text-align: left;
    position: relative;
    bottom: 0;
    margin-bottom: 1rem;
}

.caseArea .caseSlick .slick-dots li {
    width: 50px;
}

.caseArea .caseSlick .slick-dots li button {
    width: 50px;
    padding: 0;
}

.caseArea .caseSlick .slick-dots li button::before {
    content: '▂▂▂';
    font-size: 1rem;
}

.caseArea .caseSlick .slick-dots li.slick-active button:before {
    color: #c69c6d;
}

.caseArea .caseSlick .item .Img .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 .caseSlick .item .Img:hover .innerImg:after {
    width: 120%;
    height: 120%;
    opacity: 0.5;
    transition: all 0.5s;
}

.caseArea .caseSlick .item .Img .innerImg {
    padding-top: 120%;
    overflow: hidden;
}

.caseArea .item .btn-rm {
    font-size: 10px;
}

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

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

@media(max-width: 768px) {
    .caseArea .caseSlick .item .Img .innerImg {
        padding-top: 60%;
    }

    .caseArea {
        padding-bottom: 15%;
    }
}

@media(max-width: 480px) {
    .caseArea {
        padding-bottom: 30%;
    }



    .caseArea .caseSlick .item .InfoList li {
        width: 100%;
    }

    .caseArea .caseSlick .slick-dots {
        margin-top: 2rem;
        text-align: center;
        border-top: 1px solid #999;
    }
}


/*--------newsArea--------*/
.newsArea {
    padding-bottom: 10%;
}



.newsArea .titleBox {
    border-bottom: 1px solid #666;
    bottom: 2rem;
    opacity: 0;
    transform: translateX(20%);
    transition: all 1s;
}

.newsArea.show .titleBox {
    opacity: 1;
    transform: translateX(0%);
    transition: all 1s;
}

.newsArea .Txt {
    padding: 20px;
    opacity: 0;
    transform: translateY(20%);
    transition: all 1s;
}

.newsArea.show .Txt {
    opacity: 1;
    transform: translateY(0%);
    transition: all 1s;
}

.newsArea .Txt .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    letter-spacing: 1px;
}

.newsArea .Txt .day {
    padding-right: 15px;
    font-size: 2rem;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.newsArea .Txt .dateBox {
    margin: 5px 0 13px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: calc(100% - 48px);
    position: relative;
}

.newsArea .Txt .dateBox:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsArea .Txt .date {
    font-weight: 300;
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}

.newsArea .Txt .newIcon {
    font-size: 14px;
    font-weight: 300;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
}


.newsArea .Txt h3 {
    margin-bottom: 25px;
}

.newsArea .Txt h3  {
    display: inline-block;
    height: 30px;
    font-size: 16px;
    font-weight: 400;
    padding: 3px 0;
}

.newsArea .Txt h3:hover:before {
    width: 100%;
}

.newsArea .Txt h3:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background-color: #c8bfb1;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.newsArea .Txt p {
    font-size: 13px;
    font-weight: 300;
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif;
    color: rgba(200, 191, 177, 0.6);
    line-height: 1.8;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-wrap: break-word;
}

.newsArea .Txt .more {
    margin-top: 1rem;
}

.newsArea .Txt .more {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    /*color: #404040;*/
    position: relative;
    width: 130px;
    padding-left: 0px;
    -webkit-transition: all .4s linear;
    -o-transition: all .4s linear;
    transition: all .4s linear;
    letter-spacing: 1px;
}

.newsArea .btnBox {
    margin-top: 3rem;
}

.btnBox {
    opacity: 0;
    transform: translateY(10%);
    transition: all 1s;
}

.show .btnBox {

    opacity: 1;
    transform: translateY(0%);
    transition: all 1s 1s;
}

@media(max-width: 480px) {
    .newsArea .Txt {
        padding: 10px;
    }

    .newsArea .Txt .dateBox {
        flex-wrap: wrap;
    }

    .newsArea .Txt .day {
        font-size: 2.8rem;
        line-height: 1;
    }

    .newsArea .Txt .date {
        font-size: 10px;
    }
}