.img-container {
    height: 239px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.img-container .description {
    position: absolute;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0 32px;
    max-width: 1200px;
    width: 100%;
    color: white;
    height: 186px;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.img-container .description .banner-title {
    font-size: 32px;
}
.img-container .description .banner-title-cn {
    font-size: 20px;
    font-weight: bold;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .img-container .description {
        max-width: 734px;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .img-container .description {
        max-width: 425px;
        padding: 0 25px;
        width: 100%;
    }
    .img-container .description .banner-title {
        font-size: 30px;
    }
}