.BannerArea {
    padding-bottom: 5%;
}

.BannerArea .bannerSlick .item .innerImg {
    height: 30vh;
}

.bannerArea .pageTitle,
.breadcrumbs-list {
    text-align: left;
}

.breadcrumbs-area {
    padding: 15px 0 45px;
}

.titleArea {
    padding-bottom: 10%;
}

.titleArea .leftBox {
    padding: 5%;
}

.titleArea .leftBox:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);

    width: 200%;
    height: 100%;
    border: 1px solid rgb(2 62 58 /80%);
}

.titleArea .leftBox .articleTitle {
    margin-bottom: 2rem;
}

.titleArea .leftBox .articleTitle span {
    font-size: 1.2rem;

}

.titleArea .leftBox ul.info li {
    line-height: 2;
    padding-left: 4.5rem;
    opacity: 0.8;
}

.titleArea .leftBox ul.info li span {
    position: absolute;
    left: 0;
    font-weight: bold;
    /*color: #fff;*/


}



/* downloadArea */

.titleBox {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 6%;
    font: 36px /1.5 'Times New Roman', serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-indent: 5px;
}

.titleBox h3 b {
    display: block;
    font-weight: normal;
    font-size: 14px;
}

.titleBox:after {
    content: '';
    display: block;
    width: 5%;
    height: 2px;
    background-color: #b1a069;
    margin: 0 auto;
    margin-top: 30px;
}


.downloadArea {
    background-color: rgb(41 41 41 / 50%);
    border: 1px solid #333;
    padding: 3rem;
    margin: 3rem auto;
}

.download-list {
    width: 100%;
    padding-left: 2rem;
}

.download-list li {
    list-style: square;
    line-height: 2;
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.download-list li a {
    display: flex;
    width: 100%;

}

.download-list li a em {
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-style: normal;
}

.download-list li a:after {
    content: 'READ MORE';
    position: absolute;
    right: 0;
    top: 50%;

    transform: translateY(-50%);
}

.download-list li a span {
    width: fit-content;
    padding-right: 10px;
}


@media(max-width: 991px) {

    .BannerArea {
        min-height: 100%;
    }

    .urbanInfo .pageTitle {
        font-size: 1.6rem;
        padding-top: 50%;

    }

    .downloadArea {
        padding: 10% 10px;
    }

    .download-list li a {
        flex-direction: column;
    }

    .download-list li a em {
        width: 100%;
        -webkit-line-clamp: inherit;
    }

    .download-list li {
        border: none;
        margin-bottom: 15%;
    }

    .download-list li a:after {

        top: 100%;
        width: 100%;
        font-size: 10px;
        opacity: 0.5;
        transform: none;
        border-bottom: 1px solid #505050;

    }
}



/*.galleryList*/
.galleryList {
    margin-top: 10%;
}

.galleryList .item {
    margin-bottom: 30px;
}

.galleryList .item a {
    display: block;
}

.galleryList .item a:before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 0.5s;
}

.galleryList .item a:after {
    content: '+';
    font-size: 5rem;
    color: #fff;
    position: absolute;
    line-height: 1;
    z-index: 2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.5s;

}

.galleryList .item a:hover:before {
    background-color: rgba(0, 0, 0, 0.8);
    transition: all 0.5s;
}

.galleryList .item a:hover:after {
    opacity: 1;
    transition: all 0.5s;

}

.galleryList .title {
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}