.datasheet_main {
  padding: 15.5rem 0 16rem;
}
.datasheet_main .filter_box {
  margin-top: 5rem;
}
.datasheet_main .list {
  margin-top: 5rem;
}
.datasheet_main .list ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 1.875%;
}
.datasheet_main .list .active .datasheet_item {
  box-shadow: 0 1.5rem 1rem rgba(193, 202, 209, 0.45);
  background-color: #fff;
}
.datasheet_main .list .active .datasheet_item::after {
  opacity: 1;
}
.datasheet_main .list .active .btn_download {
  background-color: var(--primary);
  border-color: var(--primary);
}
.datasheet_main .datasheet_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  border-radius: 1.2rem;
  border: 1px solid #dadee1;
}
.datasheet_main .datasheet_item::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: -1px;
  top: -1px;
  content: '';
  border-radius: 1.2rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.datasheet_main .datasheet_item .pic {
  background-color: #f5f6f7;
  border-radius: 1.2rem;
  padding-bottom: 73.16%;
  position: relative;
  display: block;
}
.datasheet_main .datasheet_item .pic .img {
  position: absolute;
  left: 49.7%;
  top: 50.5%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(10, 22, 45, 0.14);
  width: 42%;
  --h: 139.94%;
}
.datasheet_main .datasheet_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 7.143% 3rem;
}
.datasheet_main .datasheet_item h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.datasheet_main .datasheet_item .more {
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary);
  transition: all 0.3s;
  display: inline-block;
  margin-top: 3.3rem;
  margin-bottom: auto;
}
.datasheet_main .datasheet_item .more:hover {
  color: var(--title);
  text-decoration: underline;
}
.datasheet_main .datasheet_item .desc {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  border-top: 1px solid #b1b6ba;
  gap: 2rem;
  padding-top: 2.6rem;
  margin-top: 2.8rem;
}
.datasheet_main .datasheet_item .desc span {
  font-size: 2rem;
  font-weight: 500;
}
.datasheet_main .datasheet_item .desc p {
  font-size: 1.7rem;
  color: #3f3f3f;
  margin-top: 0.8rem;
}
.datasheet_main .datasheet_item .desc .btn_download {
  margin-top: 0.4rem;
}
.datasheet_main p.center:has(.btn_line) {
  margin-top: 4rem;
  min-height: 6.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .datasheet_main .list ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .datasheet_main {
    padding: 50px 0;
  }
  .datasheet_main .filter_box {
    margin-top: 30px;
  }
  .datasheet_main .list {
    margin-top: 30px;
  }
  .datasheet_main .list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
  .datasheet_main .datasheet_item {
    border-radius: 10px;
  }
  .datasheet_main .datasheet_item::after {
    border-radius: 10px;
  }
  .datasheet_main .datasheet_item .pic {
    border-radius: 10px;
  }
  .datasheet_main .datasheet_item .info {
    padding: 16px 20px;
  }
  .datasheet_main .datasheet_item h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  .datasheet_main .datasheet_item .more {
    font-size: 14px;
    margin-top: 10px;
  }
  .datasheet_main .datasheet_item .desc {
    gap: 16px;
    padding-top: 10px;
    margin-top: 20px;
  }
  .datasheet_main .datasheet_item .desc span {
    font-size: 16px;
  }
  .datasheet_main .datasheet_item .desc p {
    font-size: 14px;
    margin-top: 6px;
  }
  .datasheet_main .datasheet_item .desc .btn_download {
    margin-top: 0;
  }
  .datasheet_main p.center:has(.btn_line) {
    margin-top: 40px;
    min-height: 43px;
  }
}
@media screen and (max-width: 576px) {
  .datasheet_main .list ul {
    grid-template-columns: 1fr;
  }
}
/*# sourceMappingURL=datasheet.css.map */