@import url(var.css);
.cases .cases_header {
  position: relative;
}
.cases .cases_header img {
  width: 100%;
  aspect-ratio: 7/2;
}
.cases .cases_header .header_text {
  position: absolute;
  top: 40%;
  left: 15%;
  color: white;
  text-align: left;
}
.cases .cases_header .header_text .title {
  font-size: 50px;
  text-align: left;
}
.cases .cases_boutique {
  padding: 120px 0;
}
.cases .cases_boutique .subtitle {
  text-align: center;
  color: #898989;
  font-size: 18px;
  margin-top: -20px;
  margin-bottom: 40px;
}
.cases .cases_boutique .boutiques {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.cases .cases_boutique .boutiques .boutique_item {
  position: relative;
  height: 250px;
  color: white;
  font-size: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--primary-transition);
}
.cases .cases_boutique .boutiques .boutique_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.cases .cases_boutique .boutiques .boutique_item .boutique_title {
  padding: 20px;
  margin-top: 30px;
  position: absolute;
  transition: var(--title-transition);
  top: 65%;
  font-size: 22px;
  width: -webkit-fill-available;
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail {
  position: relative;
  padding: 0 20px;
  transition: var(--delay-transition);
  top: 100%;
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail .boutique_detail_des {
  display: -webkit-box;
  /*将对象转为弹性盒模型展示*/
  -webkit-box-orient: vertical;
  /*设置弹性盒模型子元素的排列方式*/
  -webkit-line-clamp: 3;
  /*限制文本行数*/
  overflow: hidden;
  /*超出隐藏*/
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail .btn {
  display: block;
  color: #fff;
  margin-top: 20px;
  font-size: 16px;
  line-height: 40px;
  width: 150px;
  height: 40px;
  text-align: center;
  border: 1px solid #fff;
  position: relative;
  transition: var(--primary-transition);
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail .btn:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: var(--primary-transition);
  z-index: -1;
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail .btn:hover {
  border-color: var(--primary-color);
}
.cases .cases_boutique .boutiques .boutique_item .boutique_detail .btn:hover:after {
  width: 100%;
}
.cases .cases_boutique .boutiques .boutique_item:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
.cases .cases_boutique .boutiques .boutique_item:hover .boutique_title {
  top: 0;
}
.cases .cases_boutique .boutiques .boutique_item:hover .boutique_detail {
  top: 40%;
}
.cases .cases_boutique_phone {
  display: none;
}
.cases .cases_more {
  padding: 100px 0;
  text-align: center;
}
.cases .cases_more .subtitle {
  color: #898989;
  font-size: 18px;
  margin-top: -20px;
  padding-bottom: 40px;
}
.cases .cases_more .more_cate {
  width: 1000px;
  margin: 0 auto;
  font-size: 18px;
  color: #898989;
  display: flex;
  align-items: center;
}
.cases .cases_more .more_cate .cate_list {
  display: flex;
  gap: 20px;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  /* IE and Edge */
}
.cases .cases_more .more_cate .cate_list .cate_item {
  padding: 5px 20px;
  border: 2px solid #ccc;
  cursor: pointer;
  white-space: nowrap;
}
.cases .cases_more .more_cate .cate_list .active {
  border-color: #1e5096;
  color: #1e5096;
}
.cases .cases_more .more_list {
  display: none;
}
.cases .cases_more .more_list .more_item_box {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding: 40px 0;
}
.cases .cases_more .more_list .more_item {
  padding: 40px;
  padding-top: 0;
  text-align: left;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s linear;
}
.cases .cases_more .more_list .more_item:hover {
  background-color: white;
  box-shadow: 0 0 20px 5px #ccc;
}
.cases .cases_more .more_list .more_item .item_img {
  width: 270px;
  height: 93px;
}
.cases .cases_more .more_list .more_item .item_meg {
  width: 100%;
}
.cases .cases_more .more_list .more_item .item_meg_phone {
  width: 100%;
  display: none;
}
.cases .cases_more .more_list .more_item .item_meg .item_title {
  font-size: 22px;
  text-align: left;
  width: 100%;
}
.cases .cases_more .more_list .more_item .item_meg .item_des {
 
  color: #898989;
  font-size: 14px;
  height: 88px;
  margin-top: 10px;
  margin-bottom: 26px;
}
.cases .cases_more .more_list .more_item .item_meg .jumpBtn {
  margin: 0 auto;
}
.cases .cases_more .ml_show {
  display: block;
}
@media screen and (max-width: 680px) {
  .cases {
    width: 100%;
  }
  .cases .cases_header {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .cases .cases_header .header_text {
    left: 0;
    top: 30%;
    width: 100%;
    position: absolute;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
  }
  .cases .cases_header .header_text .title {
    text-align: center;
    font-size: 27px;
    font-weight: 400;
  }
  .cases .cases_header .header_text .subtitle {
    text-align: center;
    font-size: 16.6px;
  }
  .cases .cases_header img {
    overflow: hidden;
    height: 364px;
    object-fit: cover;
    object-position: 70% 50%;
  }
  .cases .cases_boutique {
    display: none;
  }
  .cases .cases_boutique_phone {
    display: block;
    padding: 16px;
  }
  .cases .cases_boutique_phone .subtitle {
    margin-top: -15px;
    color: #898989;
    font-size: 14px;
  }
  .cases .cases_boutique_phone .carousel {
    width: 100%;
    overflow: hidden;
  }
  .cases .cases_boutique_phone .carousel .carousel_item {
    height: 200px;
    position: relative;
  }
  .cases .cases_boutique_phone .carousel .carousel_item .item_mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 20;
  }
  .cases .cases_boutique_phone .carousel .carousel_item .item_text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 44;
    color: white;
    line-height: 20px;
    padding: 0 10px;
    box-sizing: border-box;
  }
  .cases .cases_boutique_phone .carousel .carousel_item .item_text .icon {
    vertical-align: middle;
  }
  .cases .cases_boutique_phone .carousel .carousel_item .item_bac {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: -4;
  }
  .cases .cases_boutique_phone .carousel .about_criteria_carousel_pagination {
    text-align: center;
  }
  .cases .cases_boutique_phone .carousel .about_criteria_carousel_pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
  }
  .cases .cases_more {
    padding: 40px 16px;
    box-sizing: border-box;
  }
  .cases .cases_more .subtitle {
    font-size: 14px;
    padding: 0;
    margin-top: -15px;
    text-align: left;
  }
  .cases .cases_more .more_cate {
    width: 100%;
  }
  .cases .cases_more .more_cate .cate_title {
    display: none;
  }
  .cases .cases_more .more_cate .cate_list {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-x: visible;
  }
  .cases .cases_more .more_cate .cate_list .cate_item {
    padding: 0;
    border: none;
    white-space: nowrap;
    position: relative;
    padding-bottom: 10px;
    color: #261f1e;
    font-size: 15px;
  }
  .cases .cases_more .more_cate .cate_list .cate_item:after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    background-color: #1e5096;
    transition: all 0.3s linear;
  }
  .cases .cases_more .more_cate .cate_list .active {
    border-color: #1e5096;
    color: #1e5096;
  }
  .cases .cases_more .more_cate .cate_list .active:after {
    width: 100%;
  }
  .cases .cases_more .more_list {
    width: 100%;
    min-width: unset;
    grid-template-columns: 1fr;
  }
  .cases .cases_more .more_list  .more_item_box{
  
    grid-template-columns: 1fr;
  }
  .cases .cases_more .more_list .more_item {
    background-color: white;
    padding: 0;
    width: 100%;
    flex-direction: row;
    align-items: center;
    height: 120px;
    box-shadow: 0 0 10px 2px #ccc;
  }
  /* .cases  .cases_more  .more_list  .more_item:hover {
    display: none;
  } */
  .cases .cases_more .more_list .more_item .item_img {
    width: 105px;
    height: 36px;
  }
  .cases .cases_more .more_list .more_item .item_meg {
    display: none;
    width: calc(100% - 105px);
    padding-right: 10px;
    box-sizing: border-box;
    height: 100%;
  }
  .cases .cases_more .more_list .more_item .item_meg_phone{
    display: block;
    width: calc(100% - 105px);
    padding-right: 10px;
    box-sizing: border-box;
    height: 100%;
  }
  .cases .cases_more .more_list .more_item .item_meg .item_title {
    color: #261f1e;
    font-size: 16px;
    margin-top: 20px;
  }
  .cases .cases_more .more_list .more_item .item_meg .item_des {
    font-size: 13px;
    margin: 0;
    height: auto;
    margin-top: 3px;
  }
  .cases .cases_more .more_list .more_item .item_meg .item_des .four_text {
    -webkit-line-clamp: 3;
  }
  .cases .cases_more .more_list .more_item .item_meg .jumpBtn {
    display: none;
  }
}
body .ui-pagination-container {
  width: fit-content;
  margin: 0 auto;
}
body .ui-pagination-container .ui-pagination-page-item {
  background: transparent;
  border: none;
  color: #999;
}
body .ui-pagination-container .ui-pagination-page-item:hover {
  color: #999;
}
body .ui-pagination-container .ui-pagination-page-item.active {
  color: #1e5096;
  background: transparent;
}
