
/*--------------------------------------------------------------
# ecom-service
--------------------------------------------------------------*/

.ecom-service .swiper-pagination {
    margin-top: 20px;
    position: relative;
  }
  
  .ecom-service .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #4154f1;
  }
  
  .ecom-service .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #4154f1;
  }
  
  
  .ecom-service .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
  }
  
  .ecom-service .member .pic {
    border-radius: 4px;
    overflow: hidden;
  }
  
  .ecom-service .member img {
    transition: all ease-in-out 0.4s;
  }
  
  .ecom-service .member:hover img {
    transform: scale(1.1);
  }
  
  .ecom-service .member .member-info {
    position: absolute;
    bottom: -48px;
    left: 20px;
    right: 20px;
    background: linear-gradient(360deg, #5c768d 0%, rgba(92, 118, 141, 0.9) 35%, rgba(140, 167, 191, 0.8) 100%);
    padding: 15px 0;
    border-radius: 4px;
  }
  
  .ecom-service .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
  }
  
  .ecom-service .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #fff;
    bottom: 0;
    left: calc(50% - 25px);
  }
  
  .ecom-service .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #fff;
  }
  
  .ecom-service .member .social {
    margin-top: 15px;
  }
  
  .ecom-service .member .social a {
    transition: color 0.3s;
    color: #fff;
  }
  
  .ecom-service .member .social a:hover {
    color: #9eccf4;
  }
  
  .ecom-service .member .social i {
    font-size: 16px;
    margin: 0 2px;
  }
  
  