.introduce-wrap {
  padding: 55px 0;
}
.introduce-wrap .container {
  position: relative;
  padding: 50px 0;
}
.introduce-wrap .container::after {
  content: "";
  height: 100%;
  max-width: 900px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  background: #FEF6F5;
}
.introduce-wrap .row {
  position: relative;
  z-index: 1;
  margin: 0;
}
.introduce-wrap .banner {
  border: 3px solid rgba(235, 169, 160, 1);
  padding: 15px;
}
.introduce-wrap .control {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
}
.introduce-wrap .control .prev,
.introduce-wrap .control .next {
  width: 60px;
  height: 100px;
  background: rgba(0, 0, 0, .3);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s ease;
}
.introduce-wrap .control .prev:hover,
.introduce-wrap .control .next:hover {
  background: rgba(0, 0, 0, .5);
}
.introduce-wrap .control .prev i,
.introduce-wrap .control .next i {
  font-size: 30px;
  color: #fff;
}
.introduce-wrap .swiper {
  height: 340px;
}
.introduce-wrap .swiper img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.introduce-wrap .swiper p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(165, 8, 8, 0.8);
  color: #fff;
  margin: unset;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
}
.introduce-wrap .list {
  padding-right: 30px;
}
.introduce-wrap .list li {
  border-bottom: 1px dashed #ddd;
}
.introduce-wrap .list li a {
  display: flex;
  align-items: center;
  height: 90px;
  color: #333;
}
.introduce-wrap .list li a:hover {
  color: #E7361E;
}
.introduce-wrap .list li a .icon {
  width: 25px;
  height: 25px;
}
.introduce-wrap .list li a .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.introduce-wrap .list li p {
  flex: 1;
  margin: 0 0 0 10px;
}
.introduce-wrap .list > a {
  display: flex;
  align-items: center;
  position: absolute;
  right: 50px;
  bottom: -40px;
  color: #E7361E;
  width: 110px;
}
.introduce-wrap .list > a img {
  width: 20px;
  height: 20px;
  margin-left: 8px;
}
.introduce-wrap .list > a::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -10px;
  width: 0;
  height: 1px;
  background: #BE2F22;
  transition: width .3s ease;
}
.introduce-wrap .list > a:hover::after {
  width: 90%;
}


.news-wrap {
  padding: 0px 0 80px;
}
.news-wrap .container {
  position: relative;
}
.news-wrap .cover {
  height: 200px;
  overflow: hidden;
}
.news-wrap img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.news-wrap .swiper-slide:hover img {
  transform: scale(1.1);
}
.news-wrap .swiper-slide {
  background: #BE2F22;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.news-wrap .desc {
  padding: 20px 15px;
}
.news-wrap .desc h2 {
  margin: unset;
  font-size: 20px;
  line-height: 1.4;
}
.news-wrap .desc p {
  line-height: 1.6;
  margin: 15px 0 0;
}
.news-wrap .control {
  position: absolute;
  top: 50%;
  left: -40px;
  right: -40px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
}
.news-wrap .control .next,
.news-wrap .control .prev {
  width: 40px;
  height: 80px;
  border: 1px solid #BE2F22;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s ease;
}
.news-wrap .control .next i,
.news-wrap .control .prev i {
  color: #BE2F22;
}
.news-wrap .control .next:hover,
.news-wrap .control .prev:hover {
  background: #BE2F22;
}
.news-wrap .control .next:hover i,
.news-wrap .control .prev:hover i {
  color: #fff;
}


@media screen and (max-width: 640px) {
  .introduce-wrap {
    padding: 30px 0;
  }
  .introduce-wrap .container {
    padding: 0 0 50px;
  }
  .introduce-wrap .container::after {
    display: none;
    right: 0;
  }
  .introduce-wrap .list > a {
    right: 0;
  }
  .introduce-wrap .swiper,
  .introduce-wrap .swiper img {
    height: 200px;
  }
  .news-wrap {
    padding-bottom: 30px;
  }
  .news-wrap .desc h2 {
    font-size: 18px;
  }
  .news-wrap .cover {
    height: 120px;
  }

  .introduce-wrap .control .prev, .introduce-wrap .control .next {
    width: 30px;
    height: 60px;
  }
}
