.s-title p {
  width: 1200px;
  color: #333;
}
.ctn1 {
  padding: 60px 0 120px;
  overflow: hidden;
}
.ctn1 .ctn-list {
  margin-top: 60px;
}
.ctn1 .ctn-list ul li {
  margin-top: 30px;
  display: flex;
}
.ctn1 .ctn-list ul li .tu {
  width: 50%;
  overflow: hidden;
}
.ctn1 .ctn-list ul li .tu img {
  width: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1 .ctn-list ul li .tu:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.ctn1 .ctn-list ul li .text {
  width: 50%;
  background: #F7F9FB;
  padding: 0 46px;
  display: flex;
  align-items: center;
}
.ctn1 .ctn-list ul li .text .center {
  width: 100%;
}
.ctn1 .ctn-list ul li .text .center h2 {
  font-weight: 700;
}
.ctn1 .ctn-list ul li .text .center p {
  margin-top: 20px;
  line-height: 1.8;
  text-align: justify;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 10px;
}
.ctn1 .ctn-list ul li .text .center p::-webkit-scrollbar {
  width: 3px;
}
.ctn1 .ctn-list ul li .text .center p::-webkit-scrollbar-track {
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.1);
}
.ctn1 .ctn-list ul li .text .center p::-webkit-scrollbar-thumb {
  border-radius: 3px;
  background: #005698;
}
@media screen and (max-width: 1600px) {
  .ctn1 {
    padding: 3vw 0 6vw;
  }
  .ctn1 .ctn-list {
    margin-top: 3vw;
  }
  .ctn1 .ctn-list ul li {
    margin-top: 1.5vw;
  }
  .ctn1 .ctn-list ul li .text {
    padding: 0 2.3vw;
  }
  .ctn1 .ctn-list ul li .text .center p {
    margin-top: 1vw;
  }
}
@media screen and (max-width: 1024px) {
  .ctn1 .ctn-list ul li .text .center p {
    max-height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .ctn1 {
    padding: 40px 0;
  }
  .ctn1 .ctn-list {
    margin-top: 30px;
  }
  .ctn1 .ctn-list ul li {
    display: block;
    margin-top: 20px;
  }
  .ctn1 .ctn-list ul li .tu {
    width: 100%;
  }
  .ctn1 .ctn-list ul li .text {
    width: 100%;
    padding: 20px;
  }
  .ctn1 .ctn-list ul li .text .center p {
    line-height: 1.6;
    margin-top: 10px;
    padding-right: 0;
    max-height: 100%;
  }
}