.bold {
  font-weight: bold;
  font-family: "NotoSansExtraBold", "notosansbold", "Noto Sans", "Helvetica", "Arial", sans-serif;
}

.two_lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}

.three_lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}

.banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
}

.banner {
  height: 700px;
  position: relative;
  margin-bottom: 40px;
}
.banner .banner_img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  left: 0;
  top: 0;
}
.banner .banner_text {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 146px;
  transform: translateX(-50%);
  text-align: center;
}
.banner h1 {
  font-size: 60px;
  line-height: 80px;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.banner p {
  font-size: 16px;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.banner .banner_icon {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 2;
  width: 1750px;
  max-width: 90%;
}
.banner .banner_icon .icon_box {
  width: 6%;
}
.banner .banner_icon .icon_box img {
  width: 100%;
  max-height: 47px;
}

.page_title {
  font-size: 24px;
  color: #222;
  line-height: normal;
  margin-bottom: 40px;
}

.recommend {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.recommend .recommend_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}
.recommend .recommend_item:hover::before {
  background-color: rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.recommend .recommend_item {
  aspect-ratio: 680/450;
  padding: 34px 30px 30px;
  background-color: #fff;
  flex: 1;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
}
.recommend .recommend_item .recommend_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
}
.recommend .recommend_item .content {
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.recommend .recommend_item .content .top {
  text-align: right;
}
.recommend .recommend_item .content .top .play-box:hover {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0s ease-in-out 0s;
}
.recommend .recommend_item .content .top .play-box:hover .play_text {
  max-width: 200px;
  transition: all 0.5s ease-in-out;
  margin: 0 10px;
}
.recommend .recommend_item .content .top .play-box {
  display: inline-flex;
  align-items: center;
  padding: 3px;
  border-radius: 23px;
  background-color: transparent;
  transition: background-color 0s linear 0.5s;
  z-index: 2;
  position: relative;
}
.recommend .recommend_item .content .top .play-box .play_text {
  max-width: 0;
  transition: all 0.5s ease-in-out;
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
}
.recommend .recommend_item .content .bottom .recommend_txt {
  font-size: 24px;
  color: #fff;
  line-height: normal;
  margin-bottom: 16px;
}
.recommend .recommend_item .content .bottom .recommen_desc {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}




.tag_box {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.tag_box .tag {
  font-size: 12px;
  color: #222;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid #9e9e9e;
}
.tag_box .tag.white {
  color: #fff;
}

.filter_box {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
}

.store_ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.store_ul .store_item {
  width: calc(33.33% - 14px);
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid #E5E2E2;
}
.store_ul .store_item:hover {
  box-shadow: 0 3px 9px 0 rgb(232 232 232);
  border: 1px solid transparent;
  transition: all 0.5s ease 0s;
}
.store_ul .store_img_box:hover .store_img {
  transform: scale(1.07);
  transition: all 0.5s ease 0s;
}
.store_ul .store_item:hover .store_title{color: #005BFE;}
.store_ul .store_img_box {
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 0.3s;
}
.store_ul .store_img {
  aspect-ratio: 453/286;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 8px 8px 0 0;
  color: #fff;
  transform: scale(1);
  transition: all 0.5s ease 0s;
}
.store_ul .store_title {
  font-size: 18px;
  line-height: normal;
  color: #222;
  margin-bottom: 17px;
}
.store_ul .store_description {
  font-size: 14px;
  line-height: normal;
  color: #666;
  margin-bottom: 8px;
}
.store_ul .store_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store_ul .store_date {
  font-size: 14px;
  color: #666;
}

.pagination_box {
  padding: 24px;
  text-align: center;
  background-color: #fff;
  display: flex;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 76px;
}

.empty {
  height: 450px;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
}

.empty_icon {
  width: 64px;
  margin-bottom: 12px;
}

.empty_text {
  font-size: 14px;
  color: #000;
}

@media (max-width: 992px) {
  .banner .banner_icon .icon_box {
    width: 9%;
  }
  .recommend {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .store_ul .store_item {
    width: 100%;
  }
  .pagination_box {
    padding: 24px 0;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .banner {
    height: 430px;
  }
  .banner .banner_img {
    height: 430px;
  }
  .banner .banner_text {
    top: 58px;
    width: 85%;
  }
  .banner h1 {
    font-size: 32px;
    line-height: 43px;
    margin-bottom: 15px;
  }
  .banner p {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .banner .banner_icon {
    gap: 2.604vw;
    bottom: 2.604vw;
  }
  .banner .banner_icon .icon_box {
    padding: 0 5.208vw;
    width: calc(25% - 1.953vw);
  }
  .recommend .recommend_item {
    aspect-ratio: 335/449;
    padding: 14px 20px 27px;
  }
  .recommend .recommend_item .content .bottom .recommend_txt {
    font-size: 16px;
  }
  .recommend .recommend_item .content .bottom .recommen_desc {
    font-size: 14px;
  }
  .filter_box {
    flex-wrap: wrap;
    gap: 10px;
  }
  .filter_box .sel-item {
    flex: auto;
    width: calc(50% - 12.5px);
  }
  .filter_box .sel-item:last-child {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .banner .banner_icon {
    gap: 2.667vw;
    bottom: 5.333vw;
  }
  .banner .banner_icon .icon_box {
    padding: 0 3.2vw;
    width: calc(25% - 2vw);
  }
}
.sel-item {
  flex: 1;
  position: relative;
}

.sel-input {
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  display: block;
  border: none;
  background-color: transparent;
  padding: 0 40px 0 16px;
  width: 100%;
  height: 48px;
  color: #222222;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #E4E6F0;
}

.sel-input[readonly] {
  cursor: pointer;
}

.sel-close {
  position: absolute;
  top: 0;
  right: 40px;
  z-index: 3;
  display: none;
  cursor: pointer;
  border: none;
  background-color: transparent;
  width: 24px;
  height: 100%;
  background-image: url("../images/common/list_customer_stories/da_gb.svg");
  background-size: 16px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sel-input:hover {
  border-color: #005BFE;
}

.sel-buttom {
  position: relative;
  width: 100%;
}

.sel-arrows {
  transition: all 0.3s;
  position: absolute;
  top: 0;
  right: 16px;
  z-index: 1;
  display: block;
  width: 24px;
  height: 100%;
  background-image: url("../images/common/list_customer_stories/da9.png");
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.sel-list {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  max-height: 250px;
  overflow: auto;
  border-radius: 8px;
  padding: 4px;
  z-index: 12;
  display: none;
  box-sizing: border-box;
  background-color: #fff;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12), 0px 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.sel-item.show_list .sel-list {
  display: block;
}

.sel-item.show_list .sel-input {
  border: 1px solid #005BFE;
}

.sel-item.show_list .sel-arrows {
  transform: rotate(-180deg);
}

.sel-one {
  width: 100%;
  font-size: 16px;
  color: #222222;
  line-height: 22px;
  padding: 9px 12px;
  position: relative;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.sel-one:hover {
  background: #F5F5F5;
}

.sel-one:active, .sel-one.active {
  font-family: notosansbold, "Noto Sans", "Helvetica", "Arial", sans-serif;
  font-weight: 500;
  padding-right: 28px;
  background: #E6F4FF;
}

.sel-one.active:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../images/common/list_customer_stories/da18.png");
  background-size: 100% 100%;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -10px;
}

.input-box.show .sel-input {
  padding-right: 70px;
}

@media (min-width: 993px) {
  .input-box.show:hover .sel-close {
    display: block;
  }
  .input-box.show:hover .sel-close {
    display: block;
  }
}
@media (max-width: 992px) {
  .input-box.show .sel-close {
    display: block;
  }
  .sel-item {
    width: calc(50% - 5px);
  }
}
.di-main {
  width: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.customers_title {
  font-size: 40px;
  color: #222;
  margin-bottom: 80px;
  text-align: center;
}

.di-bottom {
  width: 100%;
  position: relative;
}

.di-b {
  width: 77.5%;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 115px;
  padding-top: 27px;
}

.zw-swiper-btn {
  transition: all ease 0.3s;
  position: absolute;
  top: auto;
  bottom: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.08);
  background-size: 24px auto;
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  z-index: 2;
}

.zw-swiper-btn:after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 24px auto;
  background-position: center center;
  background-repeat: no-repeat;
}

.zw-swiper-btn:hover {
  background-size: 0 0;
  background-color: #005BFE;
}

.zw-swiper-btn:hover:after {
  display: block;
}

.di-prev {
  left: calc(50% - 70px);
  background-image: url("../images/zwcad_ov/da15.png");
}

.di-prev:after {
  background-image: url("../images/zwcad_ov/da15-b.png");
}

.di-next {
  right: calc(50% - 70px);
  background-image: url("../images/zwcad_ov/da16.png");
}

.di-next:after {
  background-image: url("../images/zwcad_ov/da16-b.png");
}

.dib-item {
  width: 100%;
  height: auto;
}

.dib-link {
  transform: scale(0.9);
  transition: all 0.3s;
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.06);
}

.dib-link:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  line-height: 0;
  font-size: 0;
}

.dib-left {
  float: left;
  position: relative;
  width: 38.43%;
}

.dib-img {
  position: relative;
  width: 100%;
  padding-top: 71.0659898477%;
  overflow: hidden;
  border-radius: 8px;
}

.dib-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.dib-video {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 123;
}

.dib-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  z-index: 12;
  cursor: pointer;
  width: 73px;
  height: 73px;
  border-radius: 50% !important;
  background-color: rgba(18, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-image: url("../images/zwcad_ov/da14.png");
  background-size: 35.9375% auto;
  background-repeat: no-repeat;
  background-position: 54% 50%;
}

.dib-play:hover {
  background-color: rgba(18, 17, 17, 0.8);
}

.dib-right {
  float: right;
  position: relative;
  width: calc(61.57% - 60px);
  padding-right: 30px;
}

.dib-top {
  width: 100%;
}

.dib-quot {
  width: 100%;
  margin-bottom: 25px;
}

.dib-quot img {
  height: 19px;
}

.dib-intro {
  width: 100%;
  font-size: 18px;
  color: #222222;
  line-height: 24px;
  min-height: 160px;
  padding-bottom: 25px;
}

.dib-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.dib-lt {
  flex: 1;
  padding-right: 15px;
}

.dib-name {
  width: 100%;
  margin-bottom: 8px;
  font-size: 20px;
  color: #222222;
  line-height: 27px;
}

.dib-post {
  width: 100%;
  font-size: 16px;
  color: #666666;
  line-height: 22px;
}

.dib-rt {
  font-size: 0;
}

.dib-logo {
  display: block;
  width: 140px;
  height: 48px;
  line-height: 48px;
  text-align: right;
}

.dib-logo img {
  max-width: 100%;
  max-height: 100%;
}

.dib-item.swiper-slide-active .dib-link {
  transition: all 0.3s;
  transform: scale(1);
}

.dib-item.swiper-slide-active .dib-link {
  transition-delay: 0.2s;
}

@media (max-width: 1500px) {
  .di-b {
    width: 80%;
  }
  .customers_title {
    font-size: 36px;
    line-height: normal;
  }
}
@media (max-width: 992px) {
  .customers_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .di-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .di-top {
    margin-bottom: 40px;
  }
  .di-buttom {
    padding-top: 40px;
  }
  .di-b {
    width: 100%;
    padding-bottom: 100px;
    padding-top: 14px;
  }
  .dib-right {
    width: 100%;
    padding: 0 10px 25px;
  }
  .dib-link {
    padding: 30px 10px 20px;
  }
  .dib-intro {
    min-height: 10px;
    padding-bottom: 23px;
  }
  .dib-lt {
    flex: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }
  .dib-rt {
    width: 100%;
  }
  .dib-left {
    width: 100%;
  }
}
@media (max-width: 350px) {
  .di-more {
    font-size: 18px;
  }
}
.g-size16 {
  font-size: 16px;
}

.gu-main {
  width: 100%;
  padding: 80px 0;
  background-image: url(../images/zwcad_ov/da29.jpg);
  background-size: cover;
  background-position: center center;
}

.gu-inner {
  width: 1400px;
  max-width: 92%;
  margin: 0 auto;
}

.gu-title {
  color: #fff;
  line-height: 1.36;
  margin-bottom: 12px;
  text-align: center;
}

.gu-des {
  color: #fff;
  line-height: 1.375;
  text-align: center;
  margin-bottom: 48px;
}

.gu-btns {
  font-size: 0;
  width: calc(100% + 16px);
  text-align: center;
}

.gu-btns a {
  display: inline-block;
  min-width: 165px;
  line-height: 46px;
  padding: 0 24px;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  font-family: notosansbold, "Noto Sans", "Helvetica", "Arial", sans-serif;
  margin: 0 10px;
  transition: all 0.3s;
}

.gu-btns a.white {
  background: #fff;
  color: #222;
}

@media (min-width: 1201px) {
  .gu-btns a:hover {
    background: #fff;
    border-color: #fff;
    color: #222;
    transition: all 0.3s;
  }
  .gu-btns a.white:hover {
    background: #DCE5F5;
    border-color: #DCE5F5;
    color: #222;
  }
}
@media (max-width: 1920px) {
  .gu-main {
    padding: 4.166vw 0;
  }
  .gu-title {
    margin-bottom: 2.5vw;
  }
}
@media (max-width: 1500px) {
  .gu-inner {
    width: 1200px;
  }
}
@media (max-width: 768px) {
  .gu-main {
    padding: 40px 37px 77px;
  }
  .gu-inner {
    max-width: 100%;
  }
  .gu-title {
    margin-bottom: 31px;
  }
}
@media (max-width: 650px) {
  .gu-main {
    background-image: url(../images/zwcad_ov/da29-b.png);
  }
  .gu-btns {
    width: 100%;
  }
  .gu-btns a {
    width: 100%;
    margin: 0 0 12px;
  }
  .gu-btns a:last-child {
    margin-bottom: 0;
  }
  .gu-title {
    max-width: 10em;
    margin: 0 auto 14px;
  }
}