body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f2f2f2;
}

.booking-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.result {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    background-color: #f4f4f4;
}

.result.success {
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.result.error {
    border: 1px solid #f44336;
    color: #f44336;
}
.box{
    justify-content: center;
    width: 800px;
    height: 400px;
    /* 弹性布局 水平排列 */
    display: flex;
    flex-direction: row;
    /* 设置元素的倒影效果，below是倒影在元素下方，15px是元素和倒影的距离，后面的属性是设置倒影渐变 */
    -webkit-box-reflect: below 5px -webkit-linear-gradient(transparent 50%,rgba(100,100,100,0.3));
}
.img-box{
    width: 100px;
    height: 400px;
    overflow: hidden;
    /* 加个动画过渡 */
    transition: 0.3s;
}
.img-box img{
    width: 100%;
    height: 100%;
    /* 由于这里我的图片都是竖图，而容器是横向的，所以对图片做了以下处理，这里大家根据自己的图片进行调节即可 */
    /* 对图片进行剪切，保留原始比例 */
    object-fit: cover;
    /* object-position属性一般与object-fit一起使用，用来设置元素的位置 */
    object-position: 50% 20%;
}
/* 默认最后一张展开 */
.img-box:nth-child(5){
    width: 800px;
}
/* 鼠标移入，图片展开 */
.img-box:hover{
    width: 800px;
}
.img-box:hover ~ .img-box:nth-child(5){
    width: 100px;
}