.control-box {
    width: 1400px;
    height: 400px; /* 增加高度以容纳较大的图片 */
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
}

.control-box ul {
    list-style: none;
    position: relative;
}

.control-box ul li {
    position: absolute;
    top: 140px; /* 调整以适应图片的尺寸 */
    cursor: pointer;
}

.control-box ul li img {
    width: 35px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.bigbox {
    overflow: hidden;
    width: 1308px; /* 根据图片的宽度调整 */
    height: 400px; /* 根据图片高度调整 */
    margin: 0 auto;
}

#switcher {
    overflow: hidden;
    height: 400px;
    left: 0px;
}

.content_1, .content_2 {
    float: left;
}

.box {
    transition: all 0.7s ease 0s;
    width: 654px; /* 调整为图片宽度 */
    float: left;
    text-align: center;
    margin-bottom: 50px;
}

.box img {
    width: 654px; /* 设置图片宽度 */
    height: 368px; /* 设置图片高度 */
    border: 10px solid #fdfcfc;
}

/* 隐藏的全屏背景层，用于显示放大图片 */
.image-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* 全屏显示的放大图片 */
.image-overlay img {
    max-width: 80%;
    max-height: 80%;
    transition: transform 0.5s ease;
}
