

.content {
    position: relative;
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    width: 100%; /* 每个项占1/3 */
    transition: transform 0.5s ease;
}

.carousel-item {
    width: 100%;
    flex: 1 0 100%;
}

.carousel-item img {
    width: 100%;
    display: block;
}

.carousel-control-prev, .carousel-control-next {
    position: absolute;
    width: 5rem;
    top: 50%;
    cursor: pointer;
    border: none;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-indicators {
    text-align: center;
    position: absolute;
    bottom: 100px;
    width: 100%;
}

.dot {
    height: 5px;
    width: 40px;
    margin: 0 5px;
    background-color: #E4E4E4;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #A72F28;
}




/* 外部容器，处理滚动 */
.wrapper {
    margin-top: -10%;
    width: 100%;
    overflow-x: auto; /* 滚动 */
    -webkit-overflow-scrolling: touch; /* 支持移动设备上的平滑滚动 */
    scrollbar-width: none; /* Firefox 隐藏滚动条 */
}

.wrapper::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 - 适用于Chrome、Safari和Edge */
}

/* 内部容器，保留阴影效果 */
.card-box {
    display: flex;
    position: relative;
}

.card-box img {
    width: 24%;
    margin: 0 0.5%;
    border-radius: 16px;
    box-shadow: #787878 2px 0px 10px;
    cursor: pointer;
}



.mask {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    background-color: #00000057;
    display: none;
    z-index: 99;
}


body {
    padding-bottom: 20rem;
    background-color: #fff !important;
}

.iti-box {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    
}
.iti-box img {
    width:28%;
    box-shadow: 0px 0px 8px #00000080;
    border-radius: 12px;
}
