.ctn1 {
  padding: 50px 0 100px;
}
.ctn1 .ctn-list {
  margin-top: 30px;
}
.ctn1 .ctn-list ul {
  background: #f7f7f7;
  border-radius: 15px;
  padding: 28px 0;
}
.ctn1 .ctn-list ul li {
  padding: 0 30px;
}
.ctn1 .ctn-list ul li .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ctn1 .ctn-list ul li .box a {
  width: calc(100% - 100px);
}
.ctn1 .ctn-list ul li .box a h2 {
  position: relative;
  font-size: 18px;
  color: #333;
  line-height: 80px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  padding-left: 40px;
}
.ctn1 .ctn-list ul li .box a h2:before {
  content: '';
  width: 26px;
  height: 35px;
  background: url(../img/pdf2.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.ctn1 .ctn-list ul li .box a svg {
  width: 20px;
  height: 34px;
  margin-right: 4px;
}
.ctn1 .ctn-list ul li .box a svg path {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list ul li .box a span {
  font-size: 16px;
  color: #333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list ul li .box a:first-child:hover h2 {
  color: var(--color);
}
.ctn1 .ctn-list ul li .box a:last-child {
  width: 100px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid #c0c0c0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list ul li .box a:last-child:hover {
  background: var(--color);
  border: 1px solid var(--color);
}
.ctn1 .ctn-list ul li .box a:last-child:hover svg path {
  fill: #fff;
}
.ctn1 .ctn-list ul li .box a:last-child:hover span {
  color: #fff;
}
.ctn1 .ctn-list ul li:not(:last-child) .box {
  border-bottom: 1px solid #e1e1e1;
}
@media screen and (max-width: 1680px) {
  .ctn1 {
    padding: 50px 0 5vw;
  }
  .ctn1 .ctn-list {
    margin-top: 1.5vw;
  }
  .ctn1 .ctn-list ul {
    padding: 1.4vw 0;
  }
}
@media screen and (max-width: 768px) {
  .ctn1 {
    padding: 40px 0;
  }
  .ctn1 .ctn-list {
    margin-top: 20px;
  }
  .ctn1 .ctn-list ul {
    padding: 10px 0;
    border-radius: 8px;
  }
  .ctn1 .ctn-list ul li {
    padding: 20px 20px 0;
  }
  .ctn1 .ctn-list ul li .box {
    align-items: flex-end;
    flex-direction: column;
    padding-bottom: 20px;
  }
  .ctn1 .ctn-list ul li .box a {
    width: 100%;
  }
  .ctn1 .ctn-list ul li .box a h2 {
    line-height: 1.5;
    font-size: 16px;
    white-space: pre-wrap;
  }
  .ctn1 .ctn-list ul li .box a:last-child {
    margin-top: 20px;
    width: 90px;
    height: 40px;
  }
  .ctn1 .ctn-list ul li .box a:last-child svg {
    width: 16px;
    height: 24px;
  }
  .ctn1 .ctn-list ul li .box a:last-child span {
    font-size: 14px;
  }
}