.page-tag {
  position: absolute;
  left: 0;
}

.filter-wrap {
  padding: 60px 0 35px;
  border-bottom: 1px solid #dfdfdf;
}
.filter-wrap .header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #333333;
  margin-bottom: 30px;
}
.filter-wrap .header small {
  font-size: 30px;
}
.filter-wrap .header h2 {
  font-weight: bold;
  font-size: 40px;
  margin: unset;
  line-height: 1;
  margin: 15px 0 0;
}
.filter-wrap .header .search {
  display: flex;
}
.filter-wrap .header .search .btn {
  width: 60px;
  height: 48px;
  background: linear-gradient(to right, #5A2CD8, #3433C6, #3C92CA);
  margin-left: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.filter-wrap .header .search .btn img {
  width: 28px;
  height: 28px;
}



.desc-wrap {
  padding: 52px 0;
}
.desc-wrap .cover {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.desc-wrap .cover img {
  width: 80%;
  line-height: 80%;
  object-fit: contain;
}
.desc-wrap .desc h2 {
  margin: unset;
}
.desc-wrap .desc .rich-text {
  font-size: 14px;
  color: #646464;
  line-height: 1.6;
  height: 180px;
  margin-top: 25px;
}

.desc-wrap .desc .link {
  display: flex;
  margin-top: 20px;
}
.desc-wrap .desc .link a + a {
  margin-left: 28px;
}
.desc-wrap .desc .link a {
  width: 33%;
  /*flex: 1;*/
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  color: #fff;
  height: 56px;
  line-height: 1;
  text-align: center;
  border-radius: 28px;
  transition: background .3s ease;
}
.desc-wrap .desc .link a:hover {
  background: var(--hover-color);
}
.desc-wrap .desc .link a img {
  display: block;
  margin-right: 10px;
  height: 25px;
  object-fit: contain;
}


.links-wrap {
  background: #F5F5F5;
}
.links-wrap .wrap {
  display: flex;
  justify-content: space-around;
  opacity: 0.6;
  width: 80%;
  margin: 0 auto;
}
.links-wrap .wrap img {
  display: block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  filter: grayscale(100%);
  transition: filter .3s ease;
}
.links-wrap .wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  height: 100px;
  transition: color .3s ease;
}
.links-wrap .wrap a:hover {
  color: var(--main-color);
}
.links-wrap .wrap a:hover img {
  filter: grayscale(0);
}

.introduce-wrap {
  padding-bottom: 35px;
}
.introduce-wrap .container {
  max-width: 1200px;
}
.introduce-wrap .panel-wrap {
  padding-top: 35px;
  position: relative;
}
.introduce-wrap .panel-wrap .page-tag {
  top: -60px;
}
.introduce-wrap .panel-wrap header {
  display: flex;
  align-items: center;
  line-height: 1;
  font-weight: 700;
  color: var(--main-color);
}
.introduce-wrap .panel-wrap header img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
  margin-right: 10px;
}
.introduce-wrap .panel-wrap .rich-text {
  margin-top: 15px;
  line-height: 2;
  color: #666;
}
.introduce-wrap .panel-wrap .rich-text img {
  max-width: 100%;
}


.video-popup-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: background .3s ease;
}
.video-popup-wrap.active {
  opacity: 1;
  pointer-events: all;
}
.video-popup-wrap .content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 600px;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 30px;
  overflow: hidden;
}
.video-popup-wrap .content .close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  cursor: pointer;
}
.video-popup-wrap .content .close img {
  display: block;
  width: 40%;
  height: 40%;
}
.video-popup-wrap .content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 640px) {
  .filter-wrap {
    padding: 30px 0 15px;
  }
  .filter-wrap .header {
    display: block;
    margin-bottom: 15px;
  }
  .filter-wrap .header small {
    font-size: 20px;
  }
  .filter-wrap .header h2 {
    font-size: 24px;
    margin-top: 6px;
    margin-bottom: 15px;
  }
  .filter-wrap .input-wrap {
    flex: 1;
  }
  .filter-wrap .bread-wrap {
    font-size: 14px;
  }

  .desc-wrap {
    padding-top: 0;
  }
  .desc-wrap .cover {
    height: 200px;
  }
  .desc-wrap .desc h2 {
    font-size: 16px;
  }
  .desc-wrap .desc .rich-text {
    height: unset;
  }
  .desc-wrap .desc .link a + a {
    margin-left: 10px;
  }
  .desc-wrap .desc .link a {
    font-size: 12px;
    height: 40px;
  }
  .desc-wrap .desc .link a img {
    height: 15px;
    margin-right: 5px;
  }
  .links-wrap .wrap {
    width: 100%;
  }
  .links-wrap .wrap a {
    font-size: 12px;
    height: 60px;
  }
  .links-wrap .wrap img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
  }
}
