.swiper{
	width: 1100px;
	height: 146px;
}

.newsleftimg{
	float: left;
	display: block;
    width: 335px;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.newsleftswiper {
    width: 335px;
    height: 240px;
    position: relative;
    overflow: hidden;
}
.newsleftswiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 重点：不变形，填满容器，超出部分裁剪 */
}

.newsleftswiper .swiper-pagination {
    bottom: 10px !important;
    right: 10px !important;
    left: auto !important;
    width: auto !important;
    /* 关键：横向排列 */
    display: flex !important;
    gap: 2px;
}
/* 普通数字方框 */
.newsleftswiper .swiper-pagination-bullet {
    width: 18px !important;
    height: 18px !important;
    background-color: #222222;
    color: #ffffff;
    border: 1px solid #fff;
    border-radius: 0 !important;
    opacity:1 !important;
    line-height:18px;
    text-align:center;
    font-size:14px;
    margin: 0 !important;
    flex-shrink: 0;
}
/* 当前激活方框，橙色底色 */
.newsleftswiper .swiper-pagination-bullet-active {
    background-color:#ff6600 !important;
}