@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.ctn1 {
  position: relative;
  overflow: hidden;
}
.ctn1 .ctn-list {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ctn1 .ctn-list ul {
  display: flex;
  justify-content: space-between;
}
.ctn1 .ctn-list ul li .icons {
  text-align: center;
}
.ctn1 .ctn-list ul li .icons img {
  width: auto;
  height: 60px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list ul li p {
  text-align: center;
  line-height: 1.3;
}
.ctn1 .ctn-list ul li p a {
  color: #222;
}
.ctn1 .ctn-list ul li p a:hover {
  text-decoration: underline;
}
.ctn1 .ctn-list ul li .box {
  padding: 20px 50px 20px 20px;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
}
.ctn1 .ctn-list ul li .box .tu {
  width: 130px;
  margin-right: 20px;
}
.ctn1 .ctn-list ul li .box .tu img {
  width: 100%;
}
.ctn1 .ctn-list ul li .box p {
  text-align: left;
  line-height: 1.5;
}
.ctn1 .ctn-list ul li:hover .icons img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn2 {
  position: relative;
  overflow: hidden;
}
.ctn2 .ctn-list {
  display: flex;
  justify-content: space-between;
}
.ctn2 .ctn-list .left {
  width: 40.3%;
  display: flex;
  align-items: center;
}
.ctn2 .ctn-list .left ul {
  width: 100%;
}
.ctn2 .ctn-list .left ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
.ctn2 .ctn-list .left ul li:after {
  content: '';
  width: 0;
  height: 1px;
  background: var(--color);
  position: absolute;
  left: 0;
  top: -1px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .ctn-list .left ul li h2 {
  color: #999;
  height: 110px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .ctn-list .left ul li .text {
  display: none;
  padding-bottom: 60px;
}
.ctn2 .ctn-list .left ul li .text p {
  line-height: 2;
}
.ctn2 .ctn-list .left ul li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.ctn2 .ctn-list .left ul li:hover h2 {
  color: var(--color);
}
.ctn2 .ctn-list .left ul li.active:after {
  width: 100%;
}
.ctn2 .ctn-list .left ul li.active h2 {
  font-size: 36px;
  font-family: Outfit-Bold;
  color: var(--color);
}
.ctn2 .ctn-list .right {
  width: 59.7%;
  position: relative;
}
.ctn2 .ctn-list .right a{
    display: block;
}
.ctn2 .ctn-list .right img {
  width: 100%;
}
.ctn2 .ctn-list .right .txt {
  position: absolute;
  top: 47%;
  right: 35%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: center;
}
.ctn2 .ctn-list .right .txt .position {
  width: 36px;
  height: 36px;
  margin: 0 auto;
}
.ctn2 .ctn-list .right .txt .position svg {
  animation: bounce 2s ease-in-out infinite;
  transform-origin: bottom center;
}
.ctn2 .ctn-list .right .txt h2 {
  color: var(--color);
}
@media screen and (max-width: 1600px) {
  .ctn1 .ctn-list ul li .box {
    padding: 14px 30px 14px 14px;
  }
  .ctn2 .ctn-list .left ul li h2 {
    height: 5.5vw;
  }
  .ctn2 .ctn-list .left ul li .text {
    padding-bottom: 3vw;
  }
  .ctn2 .ctn-list .left ul li.active h2 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 1440px) {
  .ctn1 .ctn-list ul li .icons img {
    height: 50px;
  }
  .ctn1 .ctn-list ul li .box {
    padding: 14px 20px 14px 14px;
  }
  .ctn1 .ctn-list ul li .box .tu {
    width: 120px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .ctn1 .ctn-list ul li .box {
    padding: 10px;
  }
  .ctn1 .ctn-list ul li .box .tu {
    width: 100px;
  }
  .ctn2 .ctn-list .left ul li h2 {
    height: 70px;
  }
  .ctn2 .ctn-list .left ul li.active h2 {
    font-size: 26px;
  }
  .ctn2 .ctn-list .right .txt {
    right: 33%;
  }
}
@media screen and (max-width: 768px) {
  .ctn1 .ctn-list ul {
    display: block;
  }
  .ctn1 .ctn-list ul li {
    width: 100%;
  }
  .ctn1 .ctn-list ul li .icons img {
    height: 40px;
  }
  .ctn1 .ctn-list ul li:not(:first-child) {
    margin-top: 40px;
  }
  .ctn1 .ctn-list ul li:last-child {
    display: flex;
    justify-content: center;
  }
  .ctn2 .ctn-list {
    display: block;
  }
  .ctn2 .ctn-list .left {
    width: 100%;
    margin-top: 10vw;
  }
  .ctn2 .ctn-list .left ul li h2 {
    height: 60px;
  }
  .ctn2 .ctn-list .left ul li .text {
    padding-bottom: 30px;
  }
  .ctn2 .ctn-list .left ul li .text p {
    line-height: 1.6;
  }
  .ctn2 .ctn-list .left ul li.active h2 {
    font-size: 26px;
  }
  .ctn2 .ctn-list .right {
    width: 100%;
  }
  .ctn2 .ctn-list .right .txt .position {
    width: 30px;
    height: 30px;
  }
  .ctn2 .ctn-list .right .txt .position svg {
    width: 25px;
  }
  .ctn2 .ctn-list .right .txt h2 {
    font-size: 14px;
  }
}

