
/* 轮播主容器：固定700px×335px，居中 */
        .banner-slider1 {
           
            position: relative;
            overflow: hidden;
            margin: 0; 
            
        }

        /* 轮播列表容器 */
        .slider1-main-wrapper {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .slider1-list {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            display: flex;
        }

        /* 轮播项：半透明背景 */
        .slider1-item {
            width: 700px;
            height: 100%;
            flex-shrink: 0;
            background-color: rgba(0, 0, 0, 0.35);
        }

        .slider1-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.9;
        }

        /* 底部通栏：修改为更明显的半透明背景 */
        .slider1-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
            background: rgba(128, 108, 82, 0.55); /* 核心修改：降低不透明度，更透明 */
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 25px;
        }

        /* 左侧标题 */
        .slider1-title {
            color: #ffffff;
            font-size: 18px;
            font-weight: 500;
            line-height: 50px;
			text-align: left;
			margin-left: 0;
        }

        /* 右侧数字分页 */
        .slider1-dots {
            display: flex;
            gap: 8px;
            align-items: center;
			text-align: right;
			margin-right: 0;
        }

        .slider1-dots .dot1 {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #222222;
            color: #ffffff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: bold;
            transition: all 0.2s ease;
        }

        .slider1-dots .dot1.active {
            background: #b72020;
        }