* {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: 'Arial', '微软雅黑';
    list-style: none;
    transition: all .2s;
}

/*标题-----------------------------------------------------------------------*/
.banner-title {
    width: 100%;
    padding-top: 365px;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner-title>h1 {
    color: white;
    font-weight: normal;
    font-size: 55px;
    position: absolute;
    transition: all .2s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.banner-title>div {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    transition: all .2s;
}

.banner-title>div>p {
    line-height: 50px;
    display: flex;
    transition: all .2s;
    align-items: center;
    color: white;
    font-size: 14px;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-title>div>p>a {
    display: inline-block;
    width: 17px;
    padding-top: 16px;
    background: url(/html/images/house.png) no-repeat center;
    background-size: contain;
    margin: 0 10px 0;
}

.banner-title>div>p>span {
    font-size: 14px;
    margin: 0 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*标题end--------------------------------------------------------------------*/
/*标题自适应------------------------------------------------------------------*/
/* @media screen and (min-width:1100px) and (max-width:1400px) {
    .banner-title>h1 {
        font-size: 50px;
    }

    .banner-title>div>p {
        line-height: 40px;
    }
}

@media screen and (min-width:768px) and (max-width:1100px) {
    .banner-title>h1 {
        font-size: 40px;
    }

    .banner-title>div>p {
        line-height: 35px;
    }
}

@media screen and (max-width:768px) {
    .banner-title>h1 {
        transform: translate(-50%, -50%);
        font-size: 30px;
    }

    .banner-title>div {
        opacity: 0;
    }

    .banner-title>div>p {
        line-height: 0;
    }
} */

@media screen and (max-width:1280px) {
    .banner-title {
        padding-top: 330px;
    }
}

@media screen and (max-width:1024px) {
    .banner-title {
        padding-top: 300px;
    }

    .banner-title>h1 {
        font-size: 40px;
    }

    .banner-title>div>p {
        line-height: 45px;
    }
}

@media screen and (max-width:768px) {
    .banner-title {
        padding-top: 250px;
    }

    .banner-title>h1 {
        font-size: 36px;
    }

}

@media screen and (max-width:435px) {
    .banner-title {
        padding-top: 220px;
    }

    .banner-title>h1 {
        font-size: 28px;
    }

    .banner-title>div>p {
        line-height: 35px;
    }
}