.container {
  padding-bottom: 50px;
}

.swiper-tabs {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  height: 40px !important;
  line-height: 40px;
  background-color: #d9e7ff;
  width: fit-content;
  border-radius: 30px;
}

.swiper-tab {
  width: 150px;
  text-align: center;
  cursor: pointer;
}

.swiper-tab.active {
  background-color: #007bff;
  color: #fff;
  border-radius: 30px;
}

.swiper-slide .content {
  width: 100%;
}

.swiper-slide .module {
  width: 100%;
  background: url("/image/achievement/标题背景001.png") center center / contain
    no-repeat;
  height: 100px;
  padding: 20px 40px;
}

.swiper-slide .module .title {
  font-size: 18px;
  font-weight: 700;
  color: #fff ;
}

.swiper-slide .module .see-btn {
   cursor: pointer; 
  margin: 5px 0 0 -5px;
}

.achieve-swiper .content {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.achieve-swiper .content .a-company {
  width: 390px;
  height: 150px;
  margin-top: 15px;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.achieve-swiper .content .bg-div {
  display: inline-block;
  width: 390px;
  height: 150px;
  background: url("/image/achievement/u3.jpg") center center / cover no-repeat;
  /* position: relative; */
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  /* 确保从中心点缩放 */
}

.achieve-swiper .content .bg-div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(210, 232, 253, 0.9);
  transition: opacity 0.5s ease;
}

/* 当hover到a标签或company-name时都触发效果 */
/* .achieve-swiper .content a:hover, */
.achieve-swiper .a-company:hover .bg-div {
  transform: scale(1.5);
}

/* .achieve-swiper .content a:hover::after, */
.achieve-swiper .a-company:hover .bg-div::after {
  opacity: 0.3;
}

.achieve-swiper .a-company .company-name {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  letter-spacing: 2px;
  padding: 0 20px;
  text-align: center;
  color: #000;
}

.achieve-swiper .a-company:hover .company-name {
  color: #fff;
}

.achieve-swiper .content > div:nth-child(3n + 1) {
  margin-left: 0;
}
