.banner{
    width: 100%;
    height: 100vh;
    /* overflow: hidden; */
}

.banner .bannerTxt{
    width: 50vw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.banner .Swiper01{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}

.Swiper01 .swiper-slide{
    width: 100%;
    padding-top: 46.3%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}


/* page01 */
.page01{
    background-color: #ECE8E1;
    padding: 7%;
}

.page01 .row{
    justify-content: space-between;
    align-items: center;
    -webkit-justify-content: space-between;
    -webkit-align-items: center;
}

.page01 .imgBox{
    width: 100%;
    padding-top: 65%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.page01 h1.title{
    padding-bottom: 3%;
}

.iconArea{
    display: flex;
    justify-content: space-around;
    align-items: center;
    -webkit-justify-content: space-around;
    -webkit-align-items: center;
}

.iconArea .icon{
    text-align: center;
}

.iconArea .icon .img{
    width: 90%;
    margin: 0 auto;
    padding-top: 90%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 3%;
}

.iconArea .icon p{
    font-size: 1rem;
    text-align: center;
}

/* page02 */
.page02{
    padding: 6% 9%;
}

.page02 .titleArea{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-end;
    padding: 0% 1.3%;
    padding-bottom: 1%;
}

.page02 .caseArea .innerImg{
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
}

.page02 .caseArea .innerImg .image{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%) scale(1);
    transition: all .5s ease-in-out;
}

.page02 .caseArea .innerImg:hover .image{
    transform: translate(-50%, -50%) scale(1.1);
    transition: all .5s ease-in-out;
}

.page02 .hotCase{
    margin-bottom: 10%;
}

.page02 .classicArea{
    margin-top: 10%;
}

/* page03 */
.page03{
    background-color: #ECE8E1;
    padding: 7% 7%;
}

.page03 .row{
    justify-content: space-between;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
}

.page03 .titleArea{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-end;
    padding-bottom: 1.5%;
    margin-bottom: 3%;
    border-bottom: 2px solid #584435;
}

.page03 .newsBlock{
    width: 100%;
    padding-top: 100%;
    margin-bottom: 5%;
    position: relative;
    overflow: hidden;
}

.page03 .newsBlock .innerImg{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 1s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    
}

.page03 .newsBlock:hover .innerImg{
    transform: translate(-50%, -50%) scale(1.2);
    transition: all .5s ease-in-out;
}

.page03 .new h1.title,.page03 .newsList .new h1.title{
    font-size: 1.32rem;
    color: #7A6A47;
    padding-bottom: 5%;
}

.page03 .newsList .new{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    -webkit-align-items: flex-start;
    margin-bottom: 10%;
}

.page03 .newsList .new .newsImg{
    width: 221px;
    height: 221px;
    overflow: hidden;
}

.page03 .newsList .new .newsImg .innerImg{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: all 1s ease-in-out;
}

.page03 .newsList .new:hover .newsImg .innerImg{
    transform: scale(1.2);
    transition: all .5s ease-in-out;
}

.page03 .newsList .new .newsText {
    width: 28.5vw;
}

.page03 .newsList .new .newsText .content{
    font-size: 0.922rem;
}

.page03 .new:hover .newsText .content{
    color: #D1AE61;
}

.page03 .new:hover .newsText h1.title{
    color: #D1AE61;
}


@media screen and (max-width: 1560px){
    .page03 .newsList .new .newsText{
        width: 25vw;
    }
    .iconArea .icon p{
        font-size: 0.95rem;
    }
    .page03 .new h1.title, .page03 .newsList .new h1.title {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1024px){
    .page03 .newsList .new .newsText{
        width: 25vw;
    }
    .iconArea .icon p{
        font-size: 0.85rem;
    }
}

@media screen and (max-width:768px){
    .banner .bannerTxt {
        width: 80vw;
    }
    .iconArea{
        flex-wrap: wrap;
    }
    .page01 .imgBox{
        margin-bottom: 15%;
    }
    .iconArea .icon {
        width: 33.33%;
        margin-bottom: 10%;
    }
    .page01 h1.title{
        text-align: center;
        padding-bottom: 10%;
    }
    .iconArea .icon .img {
        width: 70%;
        padding-top: 74%;
    }

    .page02{
        padding: 10% 9%;
    }
    .page02 .caseArea .innerImg{
        margin-bottom: 5%;
    }

    .page02 .titleArea{
        margin-bottom: 3%;
    }

    .page03 .row{
        align-items: unset;
        -webkit-align-items: unset;
    }
    .page03 .newsBlock{
        border-radius: 15px;
    }
    .page03 .newsArea .col-lg-5{
        margin-bottom: 10%;
    }
    .page03 .newsList .new{
        flex-direction: column;

    }
    .page03 .newsList .new .newsImg{
        width: 100%;
        height: auto;
        padding-top: 80%;
        border-radius: 15px;
        margin-bottom: 3%;
    }
    .page03 .newsList .new .newsText {
        width: 100%;
    }
}