
body {
	background: url("../img/bgindex.jpg") bottom+100px center/auto;
	
}


/*大banner*/
.bannerView {
	position: relative;
	width: 100%;
	margin:0px auto 0 auto;
	overflow: hidden;
	/*background: url("../img/banner/bannerbg.png") bottom center no-repeat;*/
}
.banner {
	display: flex;
	transition: transform 0.5s ease;
	padding: 0;
	margin: 0;
	list-style: none;
}
.banner li {
	overflow: hidden;
	min-width: 100%;
	position: relative;
	text-align: center;
}
.banner li img {
	margin-left: 50%;
	transform: translateX(-50%);
	display: block;
	z-index: 200;
}
.b_left, .b_right {
	display: none;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: rgba(0,0,0,0.5);
	color: white;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	cursor: pointer;
	font-size: 20px;
	z-index: 10;
}
.bannerView:hover .b_left{display: none;}
.bannerView:hover .b_right{display: none;}
.b_left {
	left: 10px;
}
.b_right {
	right: 10px;
}
.active {
	display: block;
}

.b_Slist{
	position: absolute;top: 20%; right: 10px; width: 30px;
	z-index: 9999;
}
.b_Slist .b_Slide_btn{ width:18px; height: 18px; background-color: #ffffff; border-radius: 50px; margin: 20px auto 0px auto;cursor: pointer;}
.b_Slist .b_Slide_btn.active{ width:20px; height: 20px; background-color: #1e4d96; border:2px solid #fff;}

.masked-image{ position: absolute; top: 4%; right: 15%; width: 40%; height: 74%; z-index: 200;}
.masked-image.active{ opacity: 1; z-index: 205;transition: opacity 0.2s ease-in-out;}
/*
.masked-area1 {
	z-index: 201;
  position: absolute;
  top: 4%;
  left: 55%;
  
  width: 23%;
  height: 68%;
  transform: translate(0%, 0%);
  background:url(/assets/img/banner/s/img_s_1.jpg);

  -webkit-mask: url(#lan_1);
  mask: url(#lan_1);
	
}
*/
.moving-bg1,.moving-bg2 ,.moving-bg3 ,.moving-bg4{
    width: 100%;
    height: 130%;
    background-size: auto 150%;  /* 高度稍大于容器，避免移动时露白 */
    animation: 
      pan-x 40s linear infinite alternate,
      pan-y 30s linear infinite alternate;
  }
.moving-bg1 {
    background: url(/assets/img/banner/s/img_s_1.jpg) repeat;
  }
.moving-bg2 {
    background: url(/assets/img/banner/s/img_s_2.jpg) repeat;
  }
.moving-bg3 {
    background: url(/assets/img/banner/s/img_s_3.jpg) repeat;
  }
.moving-bg4 {
    background: url(/assets/img/banner/s/img_s_4.jpg) repeat;
  }

  /* 水平移动动画 */
  @keyframes pan-x {
    0%   { background-position-x: 0%; }
    100% { background-position-x: 100%; }
  }

  /* 垂直移动动画 */
  @keyframes pan-y {
    0%   { background-position-y: 0%; }
    100% { background-position-y: 100%; }
  }

.b_wz_1{ position: absolute; top:13%; left: 32.0%; width:12%; z-index: 12;}
.b_wz_1 img{ width:100%;}
.b_ms_1{ position: absolute;z-index: 4001;}
.b_ms_1 img{ width:100%;}

.b_zz_list{ position: absolute; bottom: -1px; left: 0px; width:100%; z-index: 204;}
.b_zz_list img{ width:100%;}

/* 闪烁的文字 */
 .pulsing-wz {
  animation: float 3s ease-in-out infinite alternate;
  transition: filter 0.3s;
}

/* 悬停时增强效果 */
.pulsing-wz:hover {
  animation: none;
  transform: translateY(-5px);
  filter: 
    drop-shadow(0 0 10px rgba(72, 219, 251, 0.8)) 
    brightness(1.1);
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* 闪烁的小点 */
  .pulsing-dot {
    animation: pulse 2s infinite;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  @keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0.6; }
  }
.tooltip {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(125,125,125,0.38);
    color: white;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
	width:1800%;
    max-width: 480px;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    margin-top: 10px;
  }
  
  .tooltip:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: rgba(0,0,0,0.8);
  }
  
  .b_ms_1:hover .tooltip {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
  }
  
  .b_ms_1:hover .pulsing-dot {
    animation: none;
    opacity: 1;
    transform: scale(1.2);
  }


.features1{ width:100%; padding:40px; border-radius: 20px; background: linear-gradient(0deg, rgba(199, 227, 248, 1), rgba(255, 255, 255, 1));}
.newspiclist{ width:100%; border-radius: 10px; overflow: hidden;}




.news-list {
	
}

.news-item {
  display: flex;
  padding: 1% 3% 1% 3%;
  border-bottom: 0px solid #eee;
  transition: background-color 0.3s;
  justify-content: flex-start;
  align-items: center; /* 添加这行使所有子项垂直居中 */
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  background-color: rgba(226, 241, 251, 0.7);
}

.news-date {
  width: 13%;
	min-width:66px;
  height: 19%;
  text-align: center;
  margin-right: 15px;
  flex-shrink: 0;
  border-radius: 5px;
  border: 2px solid #1e4d96;
  display: flex; /* 添加flex布局 */
  flex-direction: column; /* 垂直排列子元素 */
  justify-content: center; /* 垂直居中内容 */
}

.news-date .day {
  font-size: 26px;
  font-weight: bold;
  color: #1e4d96;
  line-height: 1;
  padding-top: 10%;
}

.news-date .year-month {
  font-size: 0.9rem;
  color: #1e4d96;
  margin-top: 5%;
	margin-bottom: 5%;
}

.news-content h5 {
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 1%;
  color: var(--dark-color);
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
}

.news-content p {
  font-size: clamp(12px, 2vw, 15px);
  color:rgba(105,117,116,1);
  margin-bottom: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* 轮播新闻图文 */
.newspiclist {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* 修改后的文字容器样式 - 不再是绝对定位 */
.blue-bg-caption {
  background-color: rgba(30, 77, 150, 1);
  color: white;
  text-align: left;
  padding: 15px !important;
  border-top: 2px solid #c29c6c;
}

/* 标题样式 */
.blue-bg-caption h5 {
  color: white;
  font-size: clamp(14px, 2.0vw, 16px);
  font-weight: bold;
  margin-bottom: 0.5rem;
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 简介文字样式 */
.blue-bg-caption p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.3rem;
  font-size: clamp(12px, 2vw, 15px);
	
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 990px) {
  .blue-bg-caption p {
	  
	  -webkit-line-clamp: 3;
	}
}
@media (max-width: 760px) {
  .blue-bg-caption p {
	  
	  -webkit-line-clamp: 2;
	}
}
@media (max-width: 760px) {
  .blue-bg-caption p {
	  
	  -webkit-line-clamp: 1;
	}
}
@media (min-width: 1580px) {
  .blue-bg-caption p {
	  
	  -webkit-line-clamp: 2;
	}
}
@media (min-width: 2020px) {
  .blue-bg-caption p {
	  
	  -webkit-line-clamp: 2;
	}
}

/* 图片填充容器 */carousel-indicators
.object-fit-cover {
  object-fit: cover;
}

/* 确保carousel-item填充整个高度 */
.carousel-item {
  height: 100%;
}


.features2{ width:100%; padding:40px; border-radius: 20px; background: linear-gradient(0deg, rgba(115, 144, 179, 0.6), rgba(255, 255, 255, 0.5));}

/* 轮播容器样式 */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

/* 轮播轨道样式 */
.slider-track {
  display: flex;
  /*width: calc(300% + 60px); /* 3张图片宽度 + 间隙 */
  animation: slide 20s linear infinite;
}

/* 每张幻灯片样式 */
.features2 .slide {
  position: relative;
  /*flex: 0 0 calc(33.333% - 20px); /* 显示3张，每张占1/3宽度减去间隙 */
  margin-right: 20px; /* 图片间距 */
  transition: transform 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.features2 .slide:hover {
  transform: scale(1.05);
}
.features2 .slide .sd_bg{ position: absolute; top: 0px; left: 0px; width:100%; height: 100%; border-radius: 12px; background-color: rgba(0,0,0,0.3); z-index: 90;}
.features2 .slide:hover .sd_bg{ position: absolute; top: 0px; left: 0px; width:100%; height: 100%; border-radius: 12px; background-color: rgba(0,0,0,0.6); z-index: 90;}
.features2 .slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* 动画关键帧 */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - 20px)); /* 移动一个完整轮播的长度 */
  }
}

/* 响应式调整 */
@media (max-width: 768px) {
  .slider-track {
    width: calc(600% + 60px); /* 在小屏幕上可能需要调整 */
  }
  
  .slide {
    flex: 0 0 calc(50% - 20px); /* 小屏幕显示2张 */
  }
}

@media (max-width: 576px) {
  .slide {
    flex: 0 0 calc(100% - 20px); /* 超小屏幕显示1张 */
  }
}

.sd_view{ position: absolute; top: 25%; left: 10%; width: 80%; color:#fff; z-index: 100;}

.sd_view .nav_bline{ display: block; height: 4px; width:4.2rem; background-color: #ffffff; margin-top: 4px;}
.slide:hover .nav_bline{background-color: #c29c6c;}
.sd_view *{ color:#ffffff;}
.sd_view h3{ font-size: clamp(14px, 2.0vw, 24px);}
.sd_view p{ font-size: 14px;}


.btn-custom {
	color: white; /* 白字 */
	border: 1px solid white; /* 白线边框 */
	background-color: transparent; /* 透明背景 */
	border-radius: 50px; /* 椭圆形状 */
	padding: 4px 20px; /* 调整内边距使按钮更椭圆 */
	margin: 0 auto;
}
.btn-custom:hover {
	color: white; /* 白字 */
	background-color: rgba(68, 181, 254, 0.2); /* 悬停时轻微白色背景 */
}






/* 圆形指示器样式 */
#newsCarousel .carousel-indicators{
	bottom:24%;
}
#newsCarousel .carousel-indicators button {
	width: 12px;
	height: 12px;
	border-radius: 50%; /* 圆形 */
	border: none;
	background-color: rgba(255, 255, 255, 0.6); /* 半透明白色 */
	margin: 0 5px;
}

#newsCarousel .carousel-indicators button.active {
	background-color: white; /* 激活状态为纯白色 */
}



/*飘浮*/
.share1 {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
}

.share1>ul>li {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    list-style: none;
    cursor: pointer;
    position: relative;
    color: #bbc7d4;
    border-radius: 50%;
}
.share1>ul>li img{ width:100%;}
.wx-show {
    left: -156px;
}

.share-show {
    position: absolute;
    border: 1px solid #4A92DB;
    background: #fff;
    padding: 11px 10px;
    right: 77px;
    top: 0px;
    display: none;
    border-radius: 3px;
}
.shower{ display: block;}
.share1>ul>li p{
	 font-size:16px;
	color:#777;
	padding: 0px;margin:0px;
}


























