.cljs {
  margin-top: 20px;
  padding: 20px;
  padding-bottom: 40px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  overflow: hidden;
  background-color: #fff;
}
.cljs-top-modules .module {
  background-color: #f7f7f7;
  display: flex;
  height: 250px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.cljs-top-modules .module-pic {
  width: 50%;
  height: 100%;
  padding: 2px;
  box-sizing: border-box;
  overflow: hidden;
}
.cljs-top-modules .module-pic img {
  width: 100%;
  height: 100%;
  transform: scale(1);
  transition: all 0.5s ease;
}
.cljs-top-modules .module-cont {
  flex: 1;
  padding: 40px 20px;
  text-align: center;
}
.cljs-top-modules .module-cont-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #333;
}
.cljs-top-modules .module-cont-content {
  font-size: 16px;
  line-height: 25px;
  color: #666;
}
.cljs-top-modules .reverse {
  flex-direction: row-reverse;
}
.cljs-top-modules .module:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.cljs-top-modules .module:hover .module-pic img {
  transform: scale(1.03);
  transition: all 0.5s ease;
}
.cljs-bottom-pic {
  margin: 0 100px;
}
.cljs-bottom-pic img {
  width: 100%;
}
.cljs-bottom-modules {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
.cljs-bottom-modules .module {
  width: 32%;
  height: 500px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translatey(0);
}
.cljs-bottom-modules .module-pic {
  height: 300px;
  background-color: #eee;
}
.cljs-bottom-modules .module-pic img {
  width: 100%;
  height: 100%;
}
.cljs-bottom-modules .module-content {
  height: 200px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  color: #666;
  padding: 40px 20px;
  padding-bottom: 20px;
  line-height: 25px;
}
.cljs-bottom-modules .module:hover {
  transform: translatey(-10px);
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.2);
}
.cljs .title-left-bar {
  margin: 30px 0;
}
/*# sourcemappingurl=cljs.css.map */

@media (max-width: 1200px) {
  .cljs {
  }
  .cljs-top-modules {
    display: flex;
    flex-direction: column;
  }
  .cljs-top-modules .module {
    height: auto;
  }
  .cljs-top-modules .module-cont {
    padding: 20px 10px;
  }
  .cljs-top-modules .module-pic {
    height: unset;
  }
  .cljs-top-modules .module-pic img {
    object-fit: cover;
    -o-object-fit: cover;
  }
}

@media (max-width: 768px) {
  .cljs-top-modules .module-cont-title {
    margin-bottom: 16px;
  }
  .cljs-top-modules .module-cont-content {
    font-size: 14px;
  }
  .cljs-bottom-modules {
    flex-direction: column;
    row-gap: 20px;
  }
  .cljs-bottom-modules .module {
    width: unset;
    max-width: 460px;
    margin: 0 auto;
  }
  .cljs-bottom-pic {
    margin: 0;
  }
  .cljs-bottom-modules .module-content {
    height: auto;
  }
}
