.box {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.box .item {
    position: relative;
    width: 330px;
    height: 500px;
    margin: 0 3px;
    transition: all 1.8s;
    overflow: hidden;
}

.box .item .backImg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box .item .back {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    transform: all 1s;
}

.box .item .back .title1 {
    font-size: 25px;
}

.box .item .back .title2 {
    font-size: 18px;
    font-size: 400;
}

.box .item .back .title3 {
    font-size: 15px;
    font-size: 400;
    padding: 0 30px;
    transform: translateX(300px);
    opacity: 0;
    transition: all 1s;
    color: #CDC9C9;
}

.badge-top-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: 30px;
}

.badge-top-box .badge-row {
    width: 100%;
    height: 20%;
    background-color: white;
}

.badge-top-box .badge-column {
    width: 20%;
    height: 90%;
    background-color: white;
}

.columnRowBox {
    opacity: 0;
    transition: all 1s;
}

.badge-bottom-box {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}

.badge-bottom-box .badge-row2 {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 20%;
    background-color: white;
}

.badge-bottom-box .badge-column2 {
    position: absolute;
    right: 0;
    width: 20%;
    height: 90%;
    background-color: white;
}

.item:hover .columnRowBox {
    opacity: 1;
}

.box .item .back:hover .title3 {
    transform: translateX(0px);
    opacity: 1;
}

.item:hover .back {
    background-color: rgba(0, 0, 0, 0.7);
}

.box2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.box2 .box2-item {
    position: relative;
    width: 300px;
    height: 270px;
    margin: 10px;
    overflow: hidden;
}
.box2 .box2-item .box2-img{
    position: absolute;
    left:0;
    top:0;
    width: 1000%;
    height: 100%;
    object-fit: cover;
}
.box2 .box2-item .box2-back{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 15px;
    top:0;
    left:0;
    transition: all 1s;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    padding: 0 20px;
    transform: translateY(-100%);
}
.box2 .box2-item .box2-red{
    position: absolute;
    bottom: 0;
    left:50%;
    transform: translateX(-50%);
    width: 0;
    height: 8px;
    background-color: #CD5555;
    transition: all 1s;
}
.box2 .box2-item:hover .box2-back{
    transform: translateY(0);
}
.box2 .box2-item:hover .box2-red{
    width: 100%;
}