.banner {
  position: relative;
  height: 80vh;
  overflow: hidden;
  /* 左右按钮 */
  /* 轮播指示点 */
}
.banner .banner-info {
  background-image: url(../images/banner1.webp);
  background-size: cover;
  background-position: 42% 30%;
  background-repeat: repeat;
  width: 100%;
  height: 100%;
  position: relative;
}
.banner .text {
  padding: 100px 0;
  color: #684682;
  /*text-shadow: 0 1px 2px #999;*/
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.banner .text h3 {
  font-size: 26px;
}
.banner .text h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
.banner .text .btn {
  display: flex;
  margin-top: 20px;
}
.banner .text .btn a {
  width: 200px;
  height: 50px;
  line-height: 50px;
  background: #ffd51e;
  color: #684682;
  font-weight: bold;
  border-radius: 15px;
  text-align: center;
  margin-right: 20px;
  display: block;
  transition: 0.3s;
}
.banner .text .btn a:hover {
  background: #91c3ba;
}
.banner .banner-info {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.banner .banner-info.active {
  opacity: 1;
  z-index: 99;
}
.banner .prev,
.banner .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  font-size: 24px;
  z-index: 99;
  border-radius: 3px;
}
.banner .prev {
  left: 20px;
}
.banner .next {
  right: 20px;
}
.banner .prev:hover,
.banner .next:hover {
  background: rgba(0, 0, 0, 0.8);
}
.banner .dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 99;
}
.banner .dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.banner .active a:hover{
 background: #91c3ba !important;
}
.banner .dot.active {
  background: white;
}
.content {
  margin: 50px auto;
}
.content .row1 {
  margin: 100px auto;
}
.content .row1 .main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.content .row1 .l-text {
  width: 28%;
}
.content .row1 .l-text h3 {
  font-size: 24px;
  margin: 10px 0;
  color: #91c3ba;
}
.content .row1 .l-text a {
  display: inline-block;
  background: #ffdd59;
  border-radius: 20px;
  color: #684682;
  border: 3px solid #684682;
  margin-top: 20px;
  padding: 10px 30px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}
.content .row1 .l-text a:hove{
  width:20%;
}
.content .row1 .l-text p {
  font-size: 14px;
  color: #306a6c;
}
.content .row1 .icon {
  width: 69%;
  display: flex;
  justify-content: space-between;
}
.content .row1 .info {
  width: 22%;
  background: #fff;
  transition: 0.3s;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.content .row1 .info .icon-img {
  width: 50px;
  height: 50px;
  background: #684682;
  border-radius: 50%;
  padding: 10px;
  margin: auto;
  transition: 0.2s;
  margin-bottom: 10px;
}
.content .row1 .info .icon-img img {
  width: 100%;
}
.content .row1 .info h4 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: center;
}
.content .row1 .info p {
  font-size: 14px;
  line-height: 2;
}
.content .row1 .info:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.content .row1 .info:hover .icon-img {
  background: #91c3ba;
}
.content .row2 {
  background: #91c3ba;
  color: #fff;
  margin: 100px 0;
}
.content .row2 .main {
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  justify-content: space-between;
}
.content .row2 .main .l-text {
  width: 45%;
}
.content .row2 .main .l-text h5 {
  font-size: 20px;
  color: #684682;
}
.content .row2 .main .l-text p {
  font-size: 40px;
}
.content .row2 .main .r-text {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content .row2 .main .r-text .info {
  flex: 1;
  color: #684682;
  text-align: center;
}
.content .row2 .main .r-text .info h3 {
  font-size: 40px;
}
.tit {
  text-align: center;
  margin-bottom: 50px;
}
.tit h2 {
  color: #684682;
  font-size: 30px;
}
.tit .line {
  width: 80px;
  height: 3px;
  margin: 10px auto;
  background: #684682;
}
.row3 .service_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 1px auto;
  padding-top: 100px;
}
.row3 .service_wrap .s_info {
  width: 24%;
  background: #684682;
  border-radius: 20px;
  padding: 25px;
  color: #fff;
  margin-bottom: 100px;
  cursor: pointer;
}
.row3 .service_wrap .img_wrap {
  width: 234px;
  height: 234px;
  background: #fff;
  border-radius: 50%;
  margin-top: -100px;
  border: 3px solid #684682;
  padding: 10px;
  margin-bottom: 40px;
}
.row3 .service_wrap .s_info .img {
  position: relative;
  width: 100%;
  height: 100%;
  /* 调整大小 */
  perspective: 1000px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
  border-radius: 50%;
}
.row3 .service_wrap .s_info:hover .img {
  transform: rotateY(180deg);
  /* 鼠标悬停时翻转 */
}
.row3 .service_wrap .s_info .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* 保持圆形 */
  object-fit: cover;
  backface-visibility: hidden;
  /* 隐藏背面 */
}
.row3 .service_wrap .s_info .img .front {
  transform: rotateY(0deg);
  /* 正面 */
}
.row3 .service_wrap .s_info .img .img_back {
  transform: rotateY(180deg);
  /* 背面 */
}
.row3 .service_wrap .text {
  text-align: center;
}
.row3 .service_wrap .text h4 {
  font-size: 24px;
}
.row3 .service_wrap .text p {
  font-size: 14px;
  margin: 10px 0;
}
.row3 .service_wrap .text a {
  display: inline-block;
  background: #ffd51e;
  border-radius: 30px;
  color: #684682;
  padding: 5px 40px;
  font-size: 14px;
  font-weight: 600;
}
.line-text h5 {
  font-size: 20px;
  color: #684682;
}
.line-text h4 {
  font-size: 40px;
  color: #684682;
}

.row4 {
  background: #91c3ba;
  color: #fff;
  padding: 100px 0;
}
.row4 .main {
  display: flex;
  justify-content: space-between;
}
.row4 .main .l {
  width: 47%;
  display: flex;
  justify-content: space-between;
}
.row4 .main .l .ll {
  width: 48%;
}
.row4 .main .l .ll img {
  transition: 0.2s;
}
.row4 .main .l .ll img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.row4 .main .l .ll-text {
  background: #684682;
  padding: 30px;
  color: #fff;
  margin-bottom: 30px;
  transition: 0.2s;
}
.row4 .main .l .ll-text:hover {
  cursor: pointer;
  transform: scale(1.1);
}
.row4 .main .l .ll > img {
  width: 100%;
}
.row4 .main .l .more {
  display: block;
  margin: 30px auto;
  padding: 10px;
  width: 80%;
  border-radius: 30px;
  background: #ffd51e;
  color: #684682;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
}
.row4 .main .l .more img {
  vertical-align: middle;
  height: 20px;
  margin-right: 10px;
}
.row4 .main .l .more:hover {
  width: 80%;
}
.row4 .main .r-text {
  width: 48%;
  color: #306a6c;
}

.row4 .main .r-text h4 {
  margin: 30px 0;
}
.row4 .icon {
  display: flex;
  margin: 70px 0 0 0;
  justify-content: space-between;
}
.row4 .icon .icon-info {
  display: flex;
  align-items: center;
  display: contents;
}
.row4 .icon h5 {
  font-size: 18px;
}
.row4 .icon p {
  font-size: 14px;
}
.row4 .icon img {
  height: 35px;
  margin-right: 5px;
}


.row5 .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.row5 .main .l {
  width: 60%;
  padding: 100px 0;
}
.row5 .main .l .line-text {
  color: #91c3ba;
}
.row5 .main .l p {
  margin: 30px 0;
  color: #306a6c;
}
.row5 .main .l table {
  width: 90%;
}
.row5 .main .l table td {
  width: 50%;
  color: #306a6c;
}
.row5 .main .l table td b{
  color: #306a6c;
  font-size: 20px;
}
.row5 .main .r {
  width: 30%;
}
.row5 .main .r img {
  width: 100%;
  height: 100%;
}
.row6 {
  background: #91c3ba;
  padding: 100px 0;
}
.row6 .list {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.row6 .list .info {
  width: 48%;
  margin-bottom: 60px;
  background: #fff;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
}
.row6 .list .info:hover{
  background-color:#94b30017;
}
.row6 .list .info .yh {
  background: #684682;
  position: absolute;
  left: 30px;
  top: -20px;
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 5px;
}
.row6 .list .info .yh img {
  width: 100%;
}
.row6 .list .info .text {
  margin: 30px 0;
  font-style: italic;
}
.row6 .list .info .text p {
  /*margin-bottom: 30px;*/
  margin:0;
  color: #306a6c;
}
.row6 .list .info .user {
  display: flex;
  align-items: center;
  margin-top: 45px;
}
.row6 .list .info .user img {
  height: 30px;
  margin-right: 20px;
}
.row7 {
  margin: 100px auto;
}
.row7 .icon {
  display: flex;
  justify-content: space-between;
}
.row7 .info {
  width: 32%;
  background: #fff;
  transition: 0.3s;
  border-radius: 10px;
  padding: 20px 18px;
  cursor: pointer;
  display: flex;
}
.row7 .info .text {
  flex: 1;
}
.row7 .info .icon-img {
  width: 50px;
  height: 50px;
  background: #684682;
  border-radius: 50%;
  padding: 10px;
  margin-right: 30px;
  transition: 0.2s;
  margin-bottom: 10px;
}
.row7 .info .icon-img img {
  width: 100%;
}
.row7 .info h4 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
}
.row7 .info p {
  font-size: 14px;
  line-height: 2;
}
.row7 .info:hover .icon-img {
  background: #91c3ba;
}
.row8 {
  background: #91c3ba;
  padding: 100px 0;
}
.row8 .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.row8 .main .l {
  width: 55%;
}
.row8 .main .l h4 {
  margin: 20px 0;
}
.row8 .main .l a {
  display: inline-block;
  background: #ffdd59;
  border-radius: 13px;
  color: #684682;
  margin-top: 20px;
  padding: 10px 40px;
  font-size: 19px;
  font-weight: 600;
  text-decoration: none;
}
.row8 .main .r {
  width: 40%;
  /* 让整体手风琴更美观 */
  /* 头部样式 */
  /* 鼠标悬停时变色 */
  /* 下拉内容部分 */
  /* 当展开时增加 padding */
  /* 添加一个小箭头 */
  /* 展开时旋转箭头 */
}
.row8 .main .r .panel {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.row8 .main .r .panel-header {
  background: #fff;
  color: #91c3ba;
  font-size: 18px;
  padding: 15px;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.row8 .main .r .panel-header:hover {
  /*background: linear-gradient(135deg, #1b1db5, #0fb5c5);*/
}
.row8 .main .r .panel-body {
  max-height: 0;
  overflow: hidden;
  background: #f9f9f9;
  transition: max-height 0.4s ease-out, padding 0.3s;
  padding: 0 20px;
  color: #333;
  line-height: 1.6;
  border-radius: 0 0 10px 10px;
}
.row8 .main .r .panel-body p {
  margin: 30px 0;
  font-size: 16px;
  color: #684682;
}
.row8 .main .r .panel-body.open {
  padding: 15px 20px;
}
.row8 .main .r .panel-header::after {
  content: "▼";
  font-size: 14px;
  transition: transform 0.3s ease-in-out;
}
.row8 .main .r .panel-header.active::after {
  transform: rotate(180deg);
}
.row9 {
  margin: 50px auto;
}
.row9 .list {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.row9 .info {
  width: 24%;
  background: #fff;
  transition: 0.3s;
  display: flex;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
  cursor: pointer;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
.row9 .info .address {
  width: 50px;
  height: 50px;
  background: #684682;
  border-radius: 50%;
  padding: 10px;
  margin-right: 30px;
  transition: 0.2s;
}
.row9 .info .address img {
  width: 100%;
}
.row9 .info .text h5 {
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.row9 .info .text p {
  font-size: 14px;
  line-height: 2;
}
.row9 .info:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
}
.row9 .info:hover .address {
  background: #91c3ba;
}
.row10 {
  background: #91c3ba;
  padding: 50px 0;
  color: #fff;
  margin-bottom: 50px;
}
.row10 .main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.row10 .main .r {
  display: flex;
  align-items: center;
  text-align: right;
}
.row10 .main .r b {
  font-size: 24px;
}
.row10 .main .r img {
  height: 70px;
  margin-left: 20px;
}

.row10 .main .r a {
    display: inline-block;
    background: #ffd51e;
    border-radius: 30px;
    color: #684682;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
}


@media screen and (max-width: 980px) {
    
  .banner .text .btn {
  flex-direction: column;
  padding: 0 20%;
  }
  .banner .text .btn a {
    margin: 10px 0;
  }
  .content .row1 .l-text {
    width: 100%;
  }
  .content .row1 .icon {
    width: 100%;
    flex-wrap: wrap;
  }
  .content .row1 .info {
    width: 49%;
    margin-top: 20px;
  }
  .content .row2 .main .l-text {
    width: 100%;
  }
  .content .row2 .main .r-text {
    margin-top: 20px;
    width: 100%;
  }
  .content .row3 .service_wrap .s_info {
    width: 49%;
  }
  .content .row3 .service_wrap .img_wrap {
    width: 100%;
    height: 280px;
  }
  .content .row4 .main {
    flex-wrap: wrap;
  }
  .content .row4 .main .l {
    width: 100%;
  }
  .content .row4 .main .r-text {
    width: 100%;
  }
  .content .row5 .l {
    width: 100%;
  }
  .content .row5 .r {
    margin: 0 auto;
    width: 60%;
  }
  .content .row7 .icon {
    flex-wrap: wrap;
  }
  .content .row7 .info {
    width: 80%;
    margin: 0 auto;
  }
  .content .row8 .l {
    width: 100%;
  }
  .content .row8 .r {
    width: 100%;
    margin-top: 20px;
  }
  .content .row9 .list {
    flex-wrap: wrap;
  }
  .content .row9 .info {
    margin-top: 20px;
    width: 49%;
        display: block;
  }
  .content .row10 .main {
    flex-wrap: wrap;
  }
  .content .row10 .line-text {
    width: 100%;
    text-align: center;
  }
  .content .row10 .r {
    text-align: center;
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .content .row3 .service_wrap .s_info {
    width: 100%;
  }
  .content .row3 .service_wrap .img_wrap {
    height: 280px;
  }
  .content .row6 .list .info {
    width: 100%;
  }
  .row9 .info .address {
  transition: 0.2s;
  }
  .banner {
    border: 1px solid red;
    height: 45vh;
  }
  .banner .text {
    width: 100%;
    text-align: center;
  }
  .banner .text {
    padding: 20px 0;
    color: #684682;
    /*text-shadow: 0 1px 2px #999;*/
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .banner .text h2 {
    font-size: 27px;
    margin-bottom: 35px;
  }
  .content .row1 {
    margin: 20px auto;
  }
}
