@charset "UTF-8";
.brnner-wrapper {
  background-image: url("../assets/service-4/1.png");
}

.container-q1 {
  padding-top: 118px;
  padding-bottom: 70px;
  text-align: center;
  overflow: hidden;
}
.container-q1 .titles {
  margin-bottom: 75px;
  font-size: 30px;
  color: #0550a2;
}
.container-q1 .carousel-s {
  display: grid;
  grid-template-columns: repeat(auto-fit, 495px);
  grid-auto-flow: column;
  column-gap: 40px;
  animation: slide 15s linear infinite;
}
.container-q1 .carousel-s:hover {
  animation-play-state: paused;
}
.container-q1 .carousel-s .carousel-item {
  position: relative;
  width: 495px;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.container-q1 .carousel-s .carousel-item img {
  width: 100%;
  height: 100%;
}
.container-q1 .carousel-s .carousel-item:hover .text {
  opacity: 1;
}
.container-q1 .carousel-s .carousel-item .text {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  font-size: 20px;
  color: #FFFFFF;
  opacity: 0;
  transition: 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
}
.container-q1 .carousel-s1 {
  grid-template-columns: repeat(auto-fit, 290px);
  animation: slide1 15s linear infinite;
}
.container-q1 .carousel-s1 .carousel-item {
  width: 290px;
  height: 330px;
}

.container-q2 {
  height: 550px;
  background: #f5f7f9;
  padding-top: 93px;
  text-align: center;
}
.container-q2 .title {
  font-size: 30px;
  color: #333333;
}
.container-q2 .qr-items {
  padding-top: 62px;
  column-gap: 18px;
}
.container-q2 .qr-items .qr-item {
  flex: 1;
  height: 230px;
  background: #FFFFFF;
  box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}
.container-q2 .qr-items .qr-item .head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #0550A2;
  font-size: 20px;
  color: #FFFFFF;
}
.container-q2 .qr-items .qr-item .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 15px;
  padding: 24px 29px;
  color: #0550A2;
  font-size: 15px;
  place-items: center;
}
.container-q2 .qr-items .qr-item .content span {
  display: block;
  height: 24px;
  padding: 0 10px;
  line-height: 24px;
  border-radius: 12px;
  cursor: pointer;
}
.container-q2 .qr-items .qr-item .content span:nth-child(3n+1) {
  place-self: center start;
}
.container-q2 .qr-items .qr-item .content span:nth-child(3n+2) {
  text-align: center;
}
.container-q2 .qr-items .qr-item .content span:nth-child(3n) {
  place-self: center end;
}
.container-q2 .qr-items .qr-item .content span:hover {
  background: rgba(5, 80, 162, 0.1);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200px);
  }
}
@keyframes slide1 {
  0% {
    transform: translateX(-200px);
  }
  100% {
    transform: translateX(0);
  }
}
/* 当鼠标悬停时，暂停动画 */
.carousel:hover .carousel-content {
  animation-play-state: paused;
}

/*# sourceMappingURL=service-4.css.map */
