.ctn1-wrapper {
  position: relative;
  z-index: 3;
}
.ctn1-wrapper .con {
  display: flex;
  justify-content: space-between;
}
.ctn1-wrapper .con .left {
  width: 46%;
}
.ctn1-wrapper .con .left ul {
  display: flex;
  flex-wrap: wrap;
}
.ctn1-wrapper .con .left ul li {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #222;
  margin-right: 10px;
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1-wrapper .con .left ul li:hover {
  background: var(--color);
  color: #fff;
}
.ctn1-wrapper .con .left ul li.active {
  background: var(--color);
  color: #fff;
}
.ctn1-wrapper .con .right {
  width: 48%;
}
.ctn1-wrapper .con .right .search-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.ctn1-wrapper .con .right .search-box input {
  width: calc(100% - 90px);
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  height: 40px;
  font-style: italic;
  font-size: 18px;
}
.ctn1-wrapper .con .right .search-box .reset{
    position: absolute;
    right:90px;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
    display: none;
}
.ctn1-wrapper .con .right .search-box .reset span{
    font-size:16px;
}
.ctn1-wrapper .con .right .search-box .mores a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blue);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1-wrapper .con .right .search-box .mores a span {
  line-height: 1;
  font-size: 24px;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn1-wrapper .con .right .search-box .mores a:hover {
  background: var(--color);
}
.ctn1-wrapper .con .right .search-box .mores a:hover span {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}
.ctn2 {
  position: relative;
  overflow: hidden;
}
.ctn2 .box {
  padding: 80px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.ctn2 .box .left {
  width: 34%;
  padding-right:40px;
}
.ctn2 .box .left .icons {
  width: 52px;
}
.ctn2 .box .left .icons img {
  width: 100%;
}
.ctn2 .box .right {
  width: 66%;
}
.ctn2 .box .right ul {
  display: flex;
  flex-wrap: wrap;
}
.ctn2 .box .right ul li {
  width: 50%;
}
.ctn2 .box .right ul li a {
  display: block;
  position: relative;
  padding-left: 24px;
  padding-right: 10px;
  color: #222;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .box .right ul li a:before {
  content: '';
  width: 2px;
  height: 8px;
  background: var(--blue);
  position: absolute;
  left: 3px;
  top: 8px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .box .right ul li a:after {
  content: '';
  width: 8px;
  height: 2px;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 11px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.ctn2 .box .right ul li:nth-child(n+3) {
  margin-top: 10px;
}
.ctn2 .box .right ul li:hover a {
  color: var(--color);
}
.ctn2 .box .right ul li:hover a:before {
  background: var(--color);
}
.ctn2 .box .right ul li:hover a:after {
  background: var(--color);
}
.ctn2 .box:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1600px) {
  .ctn1-wrapper .con .left ul li {
    width: 44px;
    height: 44px;
    margin-top: 8px;
    margin-right: 8px;
    font-size: 14px;
  }
  .ctn1-wrapper .con .right .search-box input {
    width: calc(100% - 70px);
    font-size: 16px;
  }
    .ctn1-wrapper .con .right .search-box .reset{
      right:70px;
  }
  .ctn1-wrapper .con .right .search-box .mores a {
    width: 50px;
    height: 50px;
  }
  .ctn1-wrapper .con .right .search-box .mores a span {
    font-size: 20px;
  }
  .ctn2 .box {
    padding: 4vw 0;
  }
   .ctn2 .box .left{
       padding-right:2vw;
   }
  .ctn2 .box .left .icons {
    width: 48px;
  }
}
@media screen and (max-width: 1440px) {
  .ctn2 .box .left .icons {
    width: 44px;
  }
  .ctn2 .box .right ul li a {
    padding-left: 20px;
  }
  .ctn2 .box .right ul li a:before {
    top: 6px;
  }
  .ctn2 .box .right ul li a:after {
    top: 9px;
  }
}
@media screen and (max-width: 768px) {
  .ctn1-wrapper .con {
    display: block;
  }
  .ctn1-wrapper .con .left {
    width: 100%;
  }
  .ctn1-wrapper .con .right {
    width: 100%;
    margin-top: 6vw;
  }
  .ctn1-wrapper .con .right .search-box input {
    width: calc(100% - 54px);
  }
    .ctn1-wrapper .con .right .search-box .reset{
      right:54px;
  }
  .ctn1-wrapper .con .right .search-box .reset span{
      font-size: 14px;
  }
  .ctn1-wrapper .con .right .search-box .mores a {
    width: 44px;
    height: 44px;
  }
  .ctn1-wrapper .con .right .search-box .mores a span {
    font-size: 18px;
  }
  .ctn2 .box {
    padding: 30px 0;
    display: block;
  }
  .ctn2 .box .left {
    width: 100%;
    display: flex;
    align-items: center;
    padding-right:0;
  }
  .ctn2 .box .left h2 {
    order: 2;
  }
  .ctn2 .box .left .icons {
    width: 40px;
    margin-top: 0;
    margin-right: 20px;
  }
  .ctn2 .box .right {
    width: 100%;
    margin-top: 6vw;
  }
  .ctn2 .box .right ul {
    display: block;
  }
  .ctn2 .box .right ul li {
    width: 100%;
  }
  .ctn2 .box .right ul li a {
    padding-right: 0;
  }
  .ctn2 .box .right ul li:not(:first-child) {
    margin-top: 10px!important;
  }
  .ctn2 .box:first-child {
    border-top: none;
  }
}

