:root {
  --primary-color: #42409e;
  --gray-light: #c8c8c8;
  --gray-base: #313131;
  --gray-medium: #4b4b4b;
  --gray-border: #898989;
  --bg-service: #e2e2e2;
  --bg-white: #fff;
  --blue-secondary: #2d408d;
  --grid-col-desktop: 3;
  --grid-col-mobile: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

@keyframes shake {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
/* .container {
  max-width: 88%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
} */

.section-top {
  text-align: center;
}
.section-subtitle, .section-title, .section-desc {
  display: block;
  font-weight: normal;
}
.section-subtitle {
  font-size: 26px;
  color: var(--gray-light);
  text-transform: uppercase;
}
.section-title {
  font-size: 40px;
  color: var(--gray-base);
  text-align: center;
  overflow: hidden;
  font-weight: bold;
}
.section-title span {
  color: var(--primary-color);
}
.section-desc {
  font-size: 18px;
  color: var(--gray-medium);
}
@media (max-width: 1200px) {
  .section-subtitle {
    font-size: 16px;
    padding-bottom: 5px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-desc {
    font-size: 12px;
    padding-top: 5px;
  }
}

.home-section-service {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #fff;
  --grid-column: var(--grid-col-desktop);
}
@media (max-width: 1200px) {
  .home-section-service {
    padding: 40px 0;
  }
}
.home-section-service .list {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(var(--grid-column), minmax(0, 1fr));
  gap: 40px;
}
.home-section-service .list dl dt {
  overflow: hidden;
  border-radius: 10px;
}
.home-section-service .list dl dt img {
  width: 100%;
  display: block;
  transition: transform 1s;
}
.home-section-service .list dl dt:hover img {
  transform: scale(1.1);
}
.home-section-service .list dl dd {
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  vertical-align: middle;
  padding: 30px 0;
  position: relative;
  border-bottom: 1px solid var(--gray-border);
}
.home-section-service .list dl dd::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: -1px;
  background: var(--blue-secondary);
  height: 2px;
  transition: right 0.5s ease-out;
}
.home-section-service .list dl dd .title {
  font-size: 26px;
  color: var(--blue-secondary);
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}
.home-section-service .list dl dd .title img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.home-section-service .list dl dd p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}
.home-section-service .list dl:hover dd::after {
  right: 0;
}
@media (max-width: 1200px) {
  .home-section-service .list {
    --grid-column: var(--grid-col-mobile);
  }
  .home-section-service .list dl {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--bg-white);
  }
  .home-section-service .list dl dt {
    border-radius: 0;
  }
  .home-section-service .list dl dd {
    padding: 10px;
    border-bottom: 0;
  }
  .home-section-service .list dl dd::after {
    display: none;
  }
  .home-section-service .list dl dd .title {
    font-size: 16px;
    line-height: 1.6;
    height: auto;
  }
  .home-section-service .list dl dd p {
    font-size: 12px;
  }
}
.home-section-products {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f6f6f6;
}
@media (max-width: 1200px) {
  .home-section-products {
    padding: 40px 0;
  }
}
.home-section-products .wrap {
  display: flex;
  gap: 50px;
  align-items: center;
  margin-top: 45px;
  margin-left: auto;
  margin-right: auto;
}
.home-section-products .column-one {
  flex: 1;
  --grid-column: 2;
  display: flex;
  gap: 50px;
  grid-template-columns: repeat(var(--grid-column), minmax(0, 1fr));
}
.home-section-products .column-one .item {
  flex: 1;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.home-section-products .column-one .item a {
  display: block;
  color: #333;
}
.home-section-products .column-one .item .image {
  overflow: hidden;
  height: 195px;
}
.home-section-products .column-one .item .image img {
  width: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.home-section-products .column-one .item .image:hover img {
  transform: scale(1.1);
}
.home-section-products .column-one .item .text {
  padding: 15px 30px;
  padding-bottom: 30px;
}
.home-section-products .column-one .item .text .title {
  height: 50px;
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #000;
}
.home-section-products .column-one .item .text .title i {
  font-size: 18px;
}
.home-section-products .column-one .item .text .title .left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-section-products .column-one .item .text .title .left i {
  font-size: 12px;
}
.home-section-products .column-one .item .text .title:hover span {
  color: var(--primary-color);
}
.home-section-products .column-one .item .text ul {
  margin-top: 10px;
}
.home-section-products .column-one .item .text ul li {
  height: 36px;
  line-height: 36px;
  overflow: hidden;
  border-bottom: #d0d0d0 1px dashed;
  padding: 0 10px;
}
.home-section-products .column-one .item .text ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-section-products .column-one .item .text ul li:hover a {
  font-weight: bold;
  color: var(--primary-color);
}
.home-section-products .column-one .item .text ul li i {
  font-size: 14px;
}
.home-section-products .column-two {
  flex: 0 365px;
}
.home-section-products .column-two ul li {
  position: relative;
  margin-bottom: 50px;
}
.home-section-products .column-two ul li:last-child {
  margin-bottom: 0;
}
.home-section-products .column-two ul li img {
  width: 100%;
  height: 250px;
}
.home-section-products .column-two ul li a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 30px;
  text-align: center;
  width: 100%;
  height: 100%;
}
.home-section-products .column-two ul li a span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}
.home-section-products .column-two ul li a .title {
  font-size: 20px;
  color: #fff;
  letter-spacing: 3px;
}
.home-section-products .column-two ul li a em {
  display: block;
  font-size: 14px;
  color: #fff;
  width: 128px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  margin: 15px auto 0;
  border-radius: 30px;
  border: #fff 1px solid;
}
.home-section-products .column-two ul li a em:hover {
  animation: shake 1.5s linear;
}
@media (max-width: 1200px) {
  .home-section-products .wrap {
    flex-direction: column;
    margin-top: 25px;
    gap: 20px;
  }
  .home-section-products .column-one,
  .home-section-products .column-two {
    flex: 1;
    width: 100%;
  }
  .home-section-products .column-one {
    flex-direction: column;
    gap: 20px;
  }
  .home-section-products .column-one .item {
    flex: 1;
  }
  .home-section-products .column-one .item .text {
    padding: 15px;
  }
  .home-section-products .column-one .item .text .title {
    height: 36px;
    line-height: 36px;
  }
  .home-section-products .column-one .item .text ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 10px;
  }
  .home-section-products .column-one .item .text ul li {
    line-height: 30px;
    height: 30px;
  }
  .home-section-products .column-one .item .text ul li a {
    font-size: 14px;
  }
  .home-section-products .column-one .item .text ul li a i {
    display: none;
  }
  .home-section-products .column-two ul {
    display: flex;
    gap: 20px;
  }
  .home-section-products .column-two ul li {
    flex: 0 50%;
    margin-bottom: 0;
  }
  .home-section-products .column-two ul li a {
    line-height: 1;
  }
  .home-section-products .column-two ul li a span {
    font-size: 8px;
    margin-bottom: 10px;
  }
  .home-section-products .column-two ul li a .title {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .home-section-products .column-two ul li a em {
    font-size: 10px;
    height: auto;
    line-height: 1;
    margin: 0;
    padding: 5px 15px;
    width: auto;
  }
  .home-section-products .column-two ul li img {
    height: 120px;
  }
}
.home-section-quality {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f6f6f6;
}
@media (max-width: 1200px) {
  .home-section-quality {
    padding: 40px 0;
  }
}
.home-section-quality .list {
  --grid-column: 4;
  display: grid;
  grid-template-columns: repeat(var(--grid-column), minmax(0, 1fr));
  gap: 30px;
  margin-top: 25px;
}
.home-section-quality .list dl {
  background: #fff;
  border-radius: 10px;
  padding: 50px 35px;
  position: relative;
}
.home-section-quality .list dl dt img {
  width: 62px;
  height: 62px;
}
.home-section-quality .list dl dd {
  padding: 15px 0 0;
}
.home-section-quality .list dl dd em {
  display: block;
  font-size: 70px;
  color: rgba(226, 226, 226, 0.4);
  position: absolute;
  top: 0;
  right: 5px;
  line-height: 70px;
}
.home-section-quality .list dl dd .title {
  font-size: 20px;
  color: #313131;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}
.home-section-quality .list dl dd .content {
  font-size: 14px;
  color: #828282;
  line-height: 26px;
  padding: 10px 0 0;
  overflow: hidden;
}
.home-section-quality .list dl:hover {
  box-shadow: 0 3px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: #f3f3f3;
}
@media (max-width: 1200px) {
  .home-section-quality .list {
    --grid-column: 2;
    gap: 10px;
  }
  .home-section-quality .list dl {
    padding: 20px 10px;
  }
  .home-section-quality .list dl dt img {
    width: 36px;
    height: 36px;
  }
  .home-section-quality .list dl dd em {
    font-size: 40px;
    line-height: 40px;
  }
  .home-section-quality .list dl dd .title {
    font-size: 16px;
    height: auto;
    line-height: 1.6;
  }
  .home-section-quality .list dl dd .content {
    font-size: 12px;
    line-height: 1.8;
  }
}
.home-section-process {
  padding: 70px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  --bg-image: url("/assets/images/ban01.jpg");
  background-image: var(--bg-image);
}
@media (max-width: 1200px) {
  .home-section-process {
    padding: 40px 0;
  }
}
.home-section-process .wrap {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-section-process .left {
  flex: 0 45%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-section-process .left > * {
  display: block;
}
.home-section-process .left > span {
  font-size: 18px;
  color: #fff500;
  margin-bottom: 10px;
}
.home-section-process .left > em {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 7px;
  margin-bottom: 10px;
}
.home-section-process .left > b {
  font-size: 52px;
  letter-spacing: 12px;
  color: #fff;
  margin-bottom: 10px;
}
.home-section-process .left .desc {
  font-size: 14px;
  color: #7e828a;
  padding: 10px 0 0;
  margin-bottom: 20px;
  line-height: 1.6;
}
.home-section-process .left .contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.home-section-process .left .contacts .online {
  border-right: 1px solid #fff;
  flex: 0 210px;
}
.home-section-process .left .contacts .online a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #fff;
  width: 168px;
  text-align: center;
  height: 45px;
  line-height: 45px;
  border-radius: 30px;
  border: 2px solid #fff;
}
.home-section-process .left .contacts .online a i {
  color: #fff;
  font-size: 18px;
}
.home-section-process .left .contacts .online a:hover {
  animation: shake 1.5s linear;
}
.home-section-process .left .contacts .phone {
  display: flex;
  gap: 10px;
}
.home-section-process .left .contacts .phone i {
  font-size: 40px;
  color: #fff;
}
.home-section-process .left .contacts .phone .info span {
  font-size: 14px;
  color: #999;
  display: block;
  margin-bottom: 5px;
}
.home-section-process .left .contacts .phone .info .tel {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
}
.home-section-process .left img {
  width: 100%;
}
.home-section-process .left.mobile-show {
  display: none;
}
.home-section-process .right {
  flex: 0 45%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.home-section-process .right .top {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.home-section-process .right .top .first {
  display: flex;
  gap: 10px;
  align-items: center;
}
.home-section-process .right .top .first i {
  font-size: 24px;
}
.home-section-process .right .top .first .title {
  font-size: 26px;
}
.home-section-process .right .top .subtitle {
  font-size: 22px;
  color: #858ebb;
  text-transform: uppercase;
}
.home-section-process .right .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 25px;
  padding-top: 10px;
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  gap: 20px 0;
}
.home-section-process .right .list .item {
  text-align: center;
  color: #fff;
}
.home-section-process .right .list .item img {
  width: 60px;
  margin-left: auto;
  margin-right: auto;
}
.home-section-process .right .list .item .title {
  margin-top: 5px;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .home-section-process {
    background-image: unset;
    padding: 0;
  }
  .home-section-process .container {
    padding: 0;
  }
  .home-section-process .wrap {
    flex-direction: column-reverse;
  }
  .home-section-process .left, .home-section-process .right {
    flex: 1;
    width: 100%;
  }
  .home-section-process .left.pc-show {
    display: none;
  }
  .home-section-process .left.mobile-show {
    display: block;
  }
  .home-section-process .right {
    padding: 20px;
    --bg-image: url("/assets/images/process_bg.jpg");
    background-image: var(--bg-image);
  }
  .home-section-process .right .top {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .home-section-process .right .top .first i {
    font-size: 16px;
  }
  .home-section-process .right .top .first .title {
    font-size: 16px;
  }
  .home-section-process .right .top .subtitle {
    font-size: 14px;
  }
  .home-section-process .right .list .item img {
    width: 30px;
  }
  .home-section-process .right .list .item .title {
    font-size: 12px;
  }
}

/*# sourceMappingURL=home.css.map */
