* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}
/* 全屏轮播容器 */
.fullscreen-carousel {
  position: relative;
  width: 100vw;
  /*height: 100vh;*/
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* 图片轮播部分 - 渐显效果关键代码 */
.carousel-images {
  position: relative;
  /*height: calc(100vh - 80px); !* 减去标题区域高度 *!*/
  height: 100vh; /* 减去标题区域高度 */
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.carousel-image.active {
  opacity: 1;
  z-index: 2;
}

.carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 导航箭头 */
.carousel-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.carousel-arrow.prev {
  left: 30px;
}

.carousel-arrow.next {
  right: 30px;
}

/* 指示点 */
.carousel-dots {
  position: absolute;
  bottom: 100px; /* 调整到标题区域上方 */
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

/* 标题区域 - 在图片下方 */
.title-container {
  height: 65px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.title-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 80%;
  width: 100%;
}

.carousel-title {
  flex: 1;
  text-align: center;
  font-size: 16px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
  transition: all 0.3s;
  position: relative;
  display: flex;
align-items: center;
  background: url("../images/pss6wnfa39c2sdgd7ddmxbpgqc0ls06ljuq733ead0e-94b1-44ab-9744-b0743b8f3e8c.png") left center no-repeat;
  background-size: 7%;
  padding-left:50px;

}
.carousel-title p span{
  color: #0d2958;
  font-size: 14px;

}
.carousel-title p span+span{font-size: 18px; word-break: break-all;display: block}
.carousel-title  a{

  color: #0d2958;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-left:10px
}
.carousel-title.active a{
  font-size: 18px;
  font-weight: 700;
}
.carousel-title  a:before{
  content: '';

   background-color: rgba(208, 237, 255, 1);
   width: 8px;
   height: 38px;
  position: absolute;
  left:0;top:-5px;
   margin-left: -1px;
}

/* 当前激活的标题样式 */
.carousel-title.active {
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

.carousel-title.active a{
  font-size: 18px;
  font-weight: 700;
}
/*!* 标题之间的分隔线 *!*/
/*.carousel-title:not(:last-child)::after {*/
/*  content: "";*/
/*  position: absolute;*/
/*  right: -20px;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  width: 1px;*/
/*  height: 20px;*/
/*  background: #eee;*/
/*}*/