.main-1 .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.main-1 .item .img-auto {
  overflow: hidden;
}
.main-1 .item .img-auto::before {
  padding-top: calc(100% / 820 * 310);
}
.main-1 .item .img-auto .tags {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  display: flex;
  gap: 0.4rem;
  width: 100%;
  padding: 0 2.5rem;
  transform: translateX(-50%);
}
.main-1 .item .img-auto .tags > a {
  position: relative;
  display: flex;
  gap: 1.4rem;
  z-index: 1;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}
.main-1 .item .img-auto .tags > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e8378e 0%, #2a1470 100%);
  opacity: 0;
  z-index: -1;
  transition: all ease 0.3s;
}
.main-1 .item .img-auto .tags > a p {
  font-size: 0.8rem;
  font-family: Light;
  color: #fff;
}
.main-1 .item .img-auto .tags > a i {
  color: #fff;
  transform: rotate(45deg);
}
.main-1 .item .img-auto .tags > a:hover::after {
  opacity: 1;
}
.main-1 .item .img-auto .tags > a:hover i {
  transform: rotate(0deg);
}
.main-1 .item .txt {
  position: relative;
  padding: 1.5rem 2.5rem;
  background-color: #f7f7f7;
}
.main-1 .item .txt::after {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  width: 7.1rem;
  height: 2.8rem;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/ci.png");
}
.main-1 .item .txt h6 {
  font-size: 1.2rem;
}
.main-1 .item .txt .des {
  font-size: 0.8rem;
  font-family: Light;
  line-height: 1.4;
  margin-top: 0.7rem;
}
.main-1 .item .txt .more-btn {
  margin-top: 1.2rem;
}
.main-1 .item:hover .img-auto > img {
  transform: scale(1.04);
}
.main-2 .main-center {
  padding: 0 20rem;
}
.main-2 .title {
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--color-c2);
}
.main-2 .title h1 {
  text-align: center;
  font-size: 2.2rem;
}
.main-2 .label {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  margin-bottom: 1.6rem;
}
.main-2 .label > span {
  flex-shrink: 0;
  line-height: 1.8;
}
.main-2 .label .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}
.main-2 .label .tags > a {
  position: relative;
  display: flex;
  gap: 1.4rem;
  z-index: 1;
  padding: 0.4rem 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}
.main-2 .label .tags > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #e8378e 0%, #2a1470 100%);
  opacity: 0;
  z-index: -1;
  transition: all ease 0.3s;
}
.main-2 .label .tags > a p {
  font-size: 0.8rem;
  font-family: Light;
  color: #fff;
}
.main-2 .label .tags > a i {
  color: #fff;
  transform: rotate(45deg);
}
.main-2 .label .tags > a:hover::after {
  opacity: 1;
}
.main-2 .label .tags > a:hover i {
  transform: rotate(0deg);
}
.main-2 .label .des,
.main-2 .label .des * {
  line-height: 1.8;
}
.main-2 .other {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--color-c2);
}
.main-2 .other a {
  font-size: 0.8rem;
  text-decoration: underline;
}
.main-2 .other a:hover {
  color: var(--color-c1);
}
.main-2 .other .return {
  width: 4.2rem;
  height: 4.2rem;
  gap: 0.5rem;
  text-decoration: none;
  border-radius: 50%;
  background-color: var(--color-c1);
}
.main-2 .other .return img {
  width: 1.3rem;
}
.main-2 .other .return span {
  font-size: 0.7rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main-1 .content {
    grid-template-columns: 1fr;
    gap: var(--padding);
  }
  .main-1 .item .img-auto .tags {
    padding: 0 1rem;
  }
  .main-1 .item .txt {
    padding: 1rem;
  }
  .main-1 .item .txt h6 {
    font-size: 1rem;
  }
  .main-2 .title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  .main-2 .title h1 {
    font-size: 1.4rem;
  }
  .main-2 .label {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
