.table-container {
	overflow-x: auto;
	height: 620px;
}

table {
	border-collapse: collapse;
	margin-bottom: 20px;
}

.loading {
	text-align: center;
	padding: 20px;
	font-style: italic;
	color: #666;
}

.center-table {
	margin: 0 auto;
	width: 80%;
	margin-bottom: 40px;
}

.center-table {
    width: 100%;
    max-width: 1300px; /* 控制最大宽度 */
    margin: 0 auto; /* 水平居中 */
    padding: 10px;
    box-sizing: border-box;
}

.table-container {
    width: 100%;
    overflow: hidden; /* 隐藏溢出内容 */
}

#reportTable {
    width: 100%;
    border-collapse: collapse;
}

.ta {
    display: flex;
    flex-wrap: wrap;
	margin: auto;
    gap: 20px; /* 卡片间距 */
    padding: 0;
    margin-left: 10%;
}

.ta tr {
	border-radius: 4%;
    width: calc(22% - 14px); /* 每行3个卡片，减去gap */
    overflow: hidden;
    transition: transform 0.3s ease;
    margin-bottom: 20px; /* 行间距 */
	box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.1),       /* 底部主阴影 */
    0 6px 20px rgba(0, 0, 0, 0.08),     /* 外围弥散阴影 */
    inset 0 1px 0 rgba(255, 255, 255, 0.2); /* 顶部内发光（增强立体感） */
  	transition: transform 0.3s ease, box-shadow 0.3s ease;
  	border-radius: 8px; /* 圆角增强立体效果 */
  	background: white;   /* 必须有背景色阴影才明显 */
}
.ta tr:hover{
	transform: translateY(-3px);
  	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  	z-index: 10; /* 确保悬停的行浮在其他行上方 */
  	background-color: #f8f9fa; /* 轻微的背景色变化 */
}
/* 卡片内容样式 */
.ta tr td {
    padding: 15px;
    width: 100%;
}

.report-image {
	padding: 15px;
	background: #f0f0f0;
	width: 100%;
    height: 175px;
    overflow: hidden;
}

.report-image img{
	border-radius: 4%;
}

.report-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-name {
	width: 100%;
    font-size: 14px;
    color: #1890ff;
    cursor: pointer;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
	white-space: normal;
  	overflow: hidden;
  	text-overflow: ellipsis;
	margin-bottom: 3px;
}

.right{
	padding: 10px;
}

.report-industryText{
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	width: 250px;
	font-size: 12px;
	color: gray;
}

.report-publishDateText{
	margin-top: 10px;
	font-size: 12px;
	color: gray;
}


  /* 新增轮播图专用样式 - 完全复制原有功能但类名不同 */
  .report-swiper-pagination {
	position: relative;
	bottom: 0;
	margin-top: 40px;
	display: flex;
	justify-content: center;
	gap: 6px;
  }

  .report-swiper-pagination-bullet {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #D8D8D8;
	cursor: pointer;
	transition: all 0.3s ease;
	opacity: 0.8;
  }

  .report-swiper-pagination-bullet-active {
	background-color: #1E50FF;
	width: 40px;
	height: 6px;
	border-radius: 3px;
	opacity: 1;
  }

  .report-swiper-container {
	width: 1200px;
	height: 350px;
	margin: 0 auto;
  }
  
  .report-project-case {
	width: 100%;
  }
  
  .report-project-case h2 {
	width: 100%;
	text-align: center;
	margin-top: 60px;
	margin-bottom: 20px;
	font-size: 40px;
	color: black;
	line-height: 40px;
  }
  
  .report-intro-word {
	font-size: 20px;
	color: #FFFFFF;
	line-height: 20px;
	width: 100%;
	text-align: center;
  }
  
  .report-swiper-button-prev,
  .report-swiper-button-next {
	position: absolute;
	top: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	z-index: 10;
	cursor: pointer;
	background-size: contain;
	background-repeat: no-repeat;
  }
  
  .report-swiper-button-prev {
	left: 12px;
	z-index: 999;
	background-image: url("../../../images/zuo.png");
  }
  
  .report-swiper-button-next {
	right: 20px;
	z-index: 999;
	background-image: url("../../../images/you.png");
  }
  
  .report-tab-item.active {
	color: #fff;
	background-color: #2978FF;
	border-radius: 25px;
	font-weight: bold;
  }
  
  /* 表格样式 */
  .report-tab-container {
	  width: 100%;
	  display: flex;
	  justify-content: center;
  }

  .report-tab-wrapper {
	  width: 1200px;
	  margin: 0 auto;
	  background-color: #fff;
	  border-radius: 25px;
  }

  .report-tab-list {
	  border: 1px solid gray;
	  border-radius: 30px;
	  display: flex;
	  list-style: none;
	  justify-content: space-between;
	  padding: 0;
	  margin: 0;
  }

  .report-tab-item {
	  padding: 15px 25px;
	  cursor: pointer;
	  color: #151D3E;
	  font-size: 14px;
	  position: relative;
	  transition: all 0.3s ease;
  }

  .report-tab-item:hover {
	/* color: #2978FF; */
  }
  
  /* 项目内容样式 */
  .report-project-item {
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: left;
	width: 100%;
	box-sizing: border-box;
	overflow: hidden;
  }

  .report-project-box {
	background-image: url(../../../images/bj.png);
	background-position: center center; /* 新增：确保背景图居中 */
  	background-repeat: no-repeat; /* 新增：防止背景图重复 */
	background-size: 100% 100%;
	width: 1200px;
	margin-top: 30px;
	height: 320px;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	justify-content: space-between;
  }

  .report-project-main {
	position: relative;
	width: auto;
	background-color: #fff;
	box-shadow: 4px 4px 8px 0px #E8ECF6;
  }
  
  /* 其他项目类型的特殊样式 */
  .report-other-projects-container {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	width: 1200px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 10px;
	height: 100%;
	background-image: url(../../../images/bj.png);
	background-position: center center; /* 新增：确保背景图居中 */
  	background-repeat: no-repeat; /* 新增：防止背景图重复 */
	background-size: 100% 100%;
  }

  .report-other-project-item {
	flex: 1;
	min-width: 200px;
	max-width: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
  }

  .report-other-project-img-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
	height: 180px;
	width: 100%;
	transition: transform 0.3s ease;
  }
  
  /* 按钮样式 */
  .report-btn {
	width: 100%;
	text-align: center;
	margin-top: 40px;
	margin-bottom: 50px;
  }
  
  .report-btn a {
	display: inline-block;
	padding: 0 40px;
	background-color: #2580FF;
	color: #fff;
	height: 40px;
	line-height: 40px;
	border-radius: 20px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
  }

  /* 项目标题样式 */
.report-project-box-left h2 {
	font-size: 28px;
	color: #333;
	margin-bottom: 30px;
	text-align: center;
	font-weight: bold;
  }
  
  /* 销售人员联系方式样式 */
  .sales-contacts {
	width: 470px;
	display: flex;
	justify-content: space-around;
	border-radius: 50px;
	margin: auto;
	background: linear-gradient(to right, #FFAB42, #FF6F28);
	margin-top: 20px;
  }
  
  .sales-contacts p {
	font-size: 18px;
	color: #fcfcfc;
	line-height: 1.8;
	margin: 5px 0;
  }
  
  /* 项目内容区域调整 */
  .report-project-box-left {
	padding: 40px;
	width: 100%;
  }

  .report-other-project-img-box .report-box{
	text-align: center;
	margin-top: calc(50% - 80px);
  }

  .report-other-project-img-box .report-box img{
	width: 60px;
	height: 60px;
  }
  .report-other-project-img-box .report-box h3{
	margin-top: 15px;
	color: #ffffff;
  }
  .report-other-project-item:nth-child(1) .report-other-project-img-box{
	background: linear-gradient(to right, #4AA7FF, #0074FF);
  }
  .report-other-project-item:nth-child(2) .report-other-project-img-box{
	background: linear-gradient(to right, #14CEFF, #2A87FF);
  }
  .report-other-project-item:nth-child(3) .report-other-project-img-box{
	background: linear-gradient(to right, #4C94FF, #4537FF);
  }
  .report-other-project-item:nth-child(4) .report-other-project-img-box{
	background: linear-gradient(to right, #4B93FF, #1069EF);
  }

  .nodata{
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  .nodata img{
	width: 298px;
	height: 236px;
  }
  .nodata p{
	font-size: 14px;
	color: #525A6A;
  }