.seize-customer {
  padding: 40px 20px; 
  background: #fbfbfb;
  box-sizing: border-box; 
}

.seize-customer .tit {
  text-align: center
}

.seize-customer .tit h3 {
  font-size: 40px;
  line-height: 1.4;
  color: #2c2c2c;
  font-weight: 600;
  /*text-transform: uppercase*/
}

.seize-customer .tit h3 span {
  font-weight: 700
}

.seize-customer .tit p {
  font-size: 17px;
  color: #5b5b5b;
  line-height: 24px;
  margin: 15px 0 0
}

.seize-customer ul {
  margin: 50px 0 0;
  overflow: hidden;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
}

.seize-customer ul li {
  aspect-ratio: 4/3; 
  height: auto !important; 
  width: 25%;
  position: relative;
  transition: .5s ease transform, .5s ease z-index;
  overflow: hidden;
  z-index: 1;
  transform: scale(1);
}

.seize-customer ul li:hover {
  z-index: 9;
  transform: scale(1.08);
}
.seize-customer ul li.active {
  width: 52%;
  z-index: 9;
  transform: scale(1);
}

.seize-customer ul li>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover; 
  transition: .3s ease all;
}

.seize-customer ul li .t {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .43);
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  padding-top: 30%;
  -webkit-flex-direction: column;
  flex-direction: column;
  text-align: center;
  transition: .3s ease all;
}

.seize-customer ul li .t em {
  font-size: 48px;
  font-weight: 600;
  color: #fbfbfb;
  width: 100%;
}

.seize-customer ul li .t h5 {
  font-size: 24px;
  line-height: 28px; 
  font-weight: 600;
  color: #fbfbfb;
  text-transform: uppercase;
  margin-top: 20px;
  width: 90%; 
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; 
  height: auto !important; 
}

.seize-customer ul li .txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
	padding: 25px 15px 20px;
  background: var(--color-primary);
  opacity: 0.85;
  display: none;
  height: auto;
  box-sizing: border-box;
}

.seize-customer ul li .txt h5 {
  font-size: 26px;
  color: #fff;
  font-weight: 600
}

.seize-customer ul li .txt p {
  font-size: 16px;
  color: #fbfbfb;
  margin: 10px 0 0
}

.seize-customer ul li .txt .more {
 	margin: 10px 0 0;
  width: 190px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  text-align: center;
  font-size: 16px;
  display: inline-block;
  color: #000;
  transition: .3s ease background, .3s ease color;
}

.seize-customer ul li .txt .more:hover {
  background: #e86d31;
  color: #fff;
}

.seize-customer ul li.active::after {
  display: none
}

.seize-customer ul li.active .t {
  display: none
}

.seize-customer ul li.active .txt {
  display: block
}

@media screen and (max-width: 1600px) {
  .seize-customer .tit h3 {
    font-size: 40px;
  }
}

@media screen and (max-width: 1500px) {
  .seize-customer .tit h3 {
    font-size: 36px;
  }
  .seize-customer ul li .txt h5 {
    font-size: 22px
  }
  .seize-customer ul li .t {
    padding-top: 28%;
  }
  .seize-customer ul li .t h5 {
    margin-top: 18px;
    font-size: 22px;
    line-height: 26px;
  }
}

@media screen and (max-width: 1400px) {
  .seize-customer .tit h3 {
    font-size: 34px;
  }
  .seize-customer ul li .t {
    padding-top: 25%;
  }
  .seize-customer ul li .t h5 {
    margin-top: 16px;
    font-size: 20px;
    line-height: 24px;
  }
  .seize-customer ul li .txt p {
    font-size: 15px
  }
}

@media screen and (max-width: 1024px) {
  .seize-customer .tit h3 {
    font-size: 30px;
  }
  .seize-customer ul li .t {
    padding-top: 22%;
  }
  .seize-customer ul li .t h5 {
    font-size: 19px;
    line-height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .seize-customer {
    padding: 30px 15px; 
  }

  .seize-customer .tit p {
    font-size: 16px
  }

  .seize-customer ul {
    margin: 25px 0 0;
    display: block
  }

  .seize-customer ul li {
    width: 100%;
    aspect-ratio: 4/3; 
    margin-bottom: 15px;
    transform: scale(1) !important;
  }

  .seize-customer ul li>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .seize-customer ul li .t {
    display: none
  }

  .seize-customer ul li .txt {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    opacity: 1;
  }

  .seize-customer ul li .txt h5 {
    font-size: 22px;
    color: #fff;
  }

  .seize-customer ul li .txt p {
    font-size: 15px;
    line-height: 22px;
    color: #fff;
    margin: 8px 0 12px;
  }

  .seize-customer ul li .txt .more {
    margin: 0;
    width: 150px;
    font-size: 15px;
  }

  .seize-customer ul li.active {
    width: 100%
  }
  .seize-customer .tit h3 {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .seize-customer .tit h3 {
    font-size: 24px;
  }
  .seize-customer ul li .txt h5 {
    font-size: 20px;
  }
  .seize-customer ul li .txt p {
    font-size: 14px;
  }
}