body{
    background-color: #e9d9cc;
}
.banner {
    width: 100%;
    position: relative;
}

.banner img {
    display: block;
    width: 100%;
}

.banner .content {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1150px;
}

.banner h1 {
    font-size: 65px;
    width: 750px;
    color: #ffffff;
}
.hot{
    width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hot .left{
    width: 480px;
}
.hot h1{
    color: #795131;
    font-family: 'Times New Roman', Times, serif;
    font-size: 75px;
}
.hot h3{
    font-weight: 500;
    color: #795131;
}
.hot p{
    width: 400px;
    margin-top: 80px;
    color: #795131;
    font-size: 15px;
}
.hot img{
    width: 450px;
    border-radius: 30px;
    box-shadow: 8px 7px 15px rgba(0,0,0,0.3);
}
.btn{
    display: block;
    width: 240px;
    height: 58px;
    line-height: 58px;
    text-align: center;
    font-size: 20px;
    border-radius: 29px;
    margin-top: 35px;
    background-color: #faeee6;
    border: 2px solid #ba5d53;
    color: #ba5d53;
    font-weight: 600;
}
.btn:hover {
    color: #ee9a57;
    border-color: #ee9a57;
}
.news{
    width: 1000px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
}
.news li{
    width: 460px;
}
.news img{
    width: 100%;
    height: 285px;
    border-radius: 30px;
    box-shadow: 8px 7px 15px rgba(0, 0, 0, 0.3);
}
.news h1{
    margin-top: 35px;
    width: 350px;
    color: #795131;
}
.date{
    margin-top: 8px;
    color: #795131;
}
.news  p{
    width: 400px;
    margin-top: 50px;
    color: #795131;
}
@media (max-width: 780px) {
    .banner img{
        min-height: 300px;
    }
    .banner .content{
        width: 94%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .banner h1{
        width: 100%;
        text-align: center;
        font-size: 40px;
    }
    .hot{
        width: 94%;
        display: block;
    }
    .hot .left{
        width: 100%;
    }
    .hot p{
        width: 100%;
        margin-top: 25px;
    }
    .hot img{
        display: block;
        width: 100%;
        margin-top: 25px;
    }
    .news{
        width: 94%;
        display: block;
    }
    .news li{
        width: 100%;
        margin-bottom: 40px;
        padding: 25px;
        border: 2px dotted #795131;
        border-radius: 20px;
    }
    .news img{
        height: auto;
    }
    .news h1{
        width: 100%;
        margin-top: 20px;
    }
    .news p{
        width: 100%;
        margin-top: 20px;
    }
}
@media (max-width: 500px) {
    .banner h1{
        font-size: 32px;
    }
}