.imgList {
  background-color: #fff;
  height: 100% !important;
}
.imgList_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-top: 10rem;
}
.imgList_top_left {
  font-size: 5rem;
  font-family: Gotham;
  font-weight: normal;
  color: #333333;
  line-height: 5.5rem;
}
.imgList_top_left_bold {
  font-family: Gotham-bold;
}
.imgList_top_right {
  margin-top: 5.3rem;
  height: 2rem;
  font-size: 1.8rem;
  font-family: Gotham;
  font-weight: bold;
  color: #333333;
  line-height: 2rem;
}

.imgList_showList {
  /* display: flex;
  flex-wrap: wrap; */
  padding-bottom: 9rem;
  /* justify-content: space-between; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 0.72rem 9.5rem;
}
.imgList_showList_item {
  /* width: 55rem; */
  /* width: 29.7%; */
  position: relative;
}
.imgList_showList_item:nth-of-type(3n){
  margin-right: 0;
}
.imgList_showList_item.mtr {
  display: flex;
  flex-direction: column;
}
.imgList_showList_item.mtr .imgList_showList_item_img {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  box-sizing: border-box;
  background-color: #f0f0f0;
}
.imgList_showList_item_img {
  width: 100%;
  margin-top: 4rem;
  font-size: 0;
}
.imgList_showList_item_img img {
  width: 100%;
}
.imgList_showList_item_text {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 6.8rem;
  line-height: 6.8rem;
  border-bottom: 1px solid #e2e2e2;
}
.imgList_showList_item_text_left {
  font-size: 2.2rem;
  font-family: Gotham;
  font-weight: bold;
  color: #333333;
}
/* .imgList_showList_item_text_right {
  font-size: 1.6rem;
  font-family: Gotham;
  font-weight: normal;
  color: #333333;
} */
 .imgList_showList_item_text_right {
  font-style:normal;
  display: flex;
  align-items: center;
  opacity: 0;
  margin-top: 4rem;
  transition: all 0.3s ease;
  width: calc(100% - 4rem);
  height: calc(100% - 20.5rem);
  white-space: normal;
  font-family: Gotham;
  line-height:3rem;
  font-size: 1.6rem;
  color: #fff;
  padding: 4.9rem 2rem;
  background: rgba(37,63,191,0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  overflow-y: auto;
}
/* 自定义滚动条样式 */
.imgList_showList_item_text_right::-webkit-scrollbar {
  width: 0.6rem;
}

.imgList_showList_item_text_right::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.imgList_showList_item_text_right::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.imgList_showList_item_text_right::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.7);
}

.imgList_showList_item:hover .imgList_showList_item_text_right {
  cursor: pointer;
  opacity: 1;
  visibility: visible;
}

.imgList_tab {
  margin-top: 3rem;
}

.tab-container {
  width: 100%;
}

.tab-header {
  display: flex;
  gap: 4.2rem;
  /* margin-bottom: 30px; */
}

.tab-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 2.6rem;
  font-family: Gotham;
  color: #000;
  position: relative;
  transition: all 0.3s ease;
  padding-bottom: 1rem;
}

.tab-button:hover {
  color: #1c40c7;
}

.tab-button.active {
  font-weight: bold;
}

.tab-button.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width:50%;
  height: 3px;
  background-color: #1c40c7;
}

.tab-content-placeholder {
  text-align: center;
  color: #666;
  font-style: italic;
}