body {
    background: #ddd;
}
.wallContainer {
    width: 600px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 10%;
}
.wallImage {
    padding: 35px 20px;
    width: calc(calc(100% - 60px) / 3);
    height: 250px;
    border: 0.2rem solid #333;
    border-radius: 3px;
    margin: 15px 10px;
    background: #f0f0f0;
}
.wallImage img {
    border-radius: 30px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wallImage:nth-child(5) img {
    object-fit: contain !important;
}
.chooseContainer {
    display: flex;
    flex-wrap: wrap;
    width: 500px;
    position: relative;
    background: #bbb;
    border-left: 5px solid #888;
    height: 100vh;
    overflow: auto;
    align-items: center;
}
.chooseContainer > * {
    width: 23%;
    margin: 10px 1%;
    cursor: pointer;
    padding: 3px;
    height: 130px;
    position: relative;
    user-select: none;
}
.chooseContainer .nameDiv {
    position: absolute;
    left: 50%;
    bottom: 0px;
    font-size: 15px;
    opacity: 0.8;
    color: #fff;
    transform: translatex(-50%);
}
.chooseContainer .nameDiv2 {
    position: absolute;
    left: 50%;
    top: 50%;
    font-size: 15px;
    color: rgba(247, 122, 76, 1);
    font-size: 36px;
    transform: translate(-50%, -50%);
}
.chooseContainer .btn {
    height: auto;
}
.chooseContainer > *.selected {
    border: 3px solid rgba(247, 122, 76, 0.88);

    border-radius: 3px;
}
.chooseContainer > *.selected img {
    opacity: 0.7;
}
.chooseContainer > * > * {
    z-index: 1;
}
.chooseContainer img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    cursor: pointer;
    object-fit: cover;
    z-index: 2 !important;
}
@media only screen and (max-width: 767px) {
    .container {
        max-width: 100%;
    }
}
