   /* 设置轮播指示器样式 */
   .carousel-indicators li {
       width: 10px!important;
       height: 10px!important;
       border-radius: 50%;
       background-color: #fff;
       /* 非激活时为白色 */
       opacity: 1;
   }

   /* 激活状态时的颜色 */
   .carousel-indicators .active {
       background-color: #1fb0e5;
       /* 激活状态时为 #1fb0e5 */
   }

   /* 在小屏幕下 (max-width: 576px) 调整高度为两倍 */
   @media (max-width: 576px) {
       #newsCarousel .carousel-item img {
           height: 214px !important;
           /* 小屏幕下的高度设置为两倍 */
           object-fit: cover; /* 保持比例并裁剪 */
           object-position: center; /* 以中心为基准显示 */
       }

       #carouselExampleIndicators .carousel-item img {
           height: 135px !important;
           object-fit: cover; /* 保持比例并裁剪 */
           object-position: center; /* 以中心为基准显示 */
       }
   }