/* 院校、专业、案例详情页 */
.layout__container {
  padding-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  min-height: auto;
}

.page__achievement {
  width: 1200px;
  /* user-select: none; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-family: AlibabaPuHuiTi-Regular;
}

.layout__achievement__header {
  width: 100%;
  min-width: 1200px;
  height: 814px;
  /* margin-top: 66px; */
  /* user-select: none; */
}

.layout__achievement__header .bg-level {
  width: 100%;
  height: 570px;
  background-image: url('https://info.compassedu.hk/pc/img/list/achievement-head-bg.png');
  background-size: 1920px 570px;
  background-position: top center;
}

.layout__achievement__header .info-level {
  width: 100%;
  height: 244px;
  background-color: var(--bg-default-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.layout__achievement__header .info-level .title {
  width: 213px;
  height: 28px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url('https://info.compassedu.hk/pc/img/list/achievement-title.png');
  margin-top: 30px;
  margin-bottom: 16px;
}

.layout__achievement__header .info-level p {
  font-family: AlibabaPuHuiTi-Regular;
  font-size: 18px;
  line-height: 30px;
  color: #696969;
  text-align: center;
  letter-spacing: 0.04rem;
}

.achievement-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto 38px;
  width: 1140px;
}

.achievement-item {
  width: 270px;
  height: 195px;
  border-radius: 10px;
  background-color: var(--bg-default-color);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.achievement-item:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.achievement-item:not(:nth-child(4n)) {
  margin-right: 20px;
}

.achievement-item .cover,
.achievement-item .cover img {
  width: 100%;
  height: 135px;
}

.achievement-item .cover {
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-default-color);
  overflow: hidden;
}

.achievement-item .cover img {
  object-fit: cover;
}

.achievement-item .info-box {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.achievement-item .info-box .name {
  font-size: 20px;
  line-height: 20px;
}

.achievement-item .info-box .case {
  height: 20px;
  line-height: 20px;
  border-radius: 4px;
  background-color: #E9F3FF;
  color: var(--theme-primary-color);
  font-size: 16px;
  padding: 0 6px;
}