.banner {
    width: 100%;
    height: 300px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    background-color: #f5f5f5;
}

.container {
    max-width: 1600px;
    width: 1600px;
}

.container .guest .item {
    width: 50%!important;
}

.guest .item .right {
    padding-left: 20px;
    background-color: #f5f2ed;
}

.guest .item .pic {
    margin-right: 0;
}

.guest .item .pic img {
    height: 100%;
    object-fit: cover;
}

.container .item {
    background-color: #f5f2ed;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    display: flex;
    transition: all .4s;
}

.container .item:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .1);
    transform: scale(1.01);
}

.item .pic {
    width: 180px;
    margin-right: 20px;
}

.pic img {
    width: 100%;
}

.item .right {
    flex: 1;
}

.item .name {
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.item .text {
    color: #727272;
}

.item .right>* {
    margin-bottom: 12px;
}

.item .fx {
    color: rgb(212, 7, 7);
}

.item .js {
    line-height: 20px;
}

@media screen and (max-width:1000px) {
    .container .item {
        align-items: center;
        flex-direction: column;
    }
}

@media screen and (max-width:500px) {
    .container .js {
        font-size: 14px;
    }
    .item .name {
        font-size: 18px;
    }
    .item .text,
    .item .fx {
        font-size: 14px;
    }
}