 #app .app-wrapper {
  background-color: #f4f4f4;
}
#app .app-wrapper .container {
  height: 100%;
  margin: 0 auto;
}
#app .app-wrapper .swiper-container .swiper-wrap {
  width: 100%;
  height: 380px;
  background-size: cover;
  color: #fff;
}
#app .app-wrapper .swiper-container .swiper-wrap .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .title {
  font-size: 30px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .desc {
  padding: 24px 20px 24px 0;
  font-size: 18px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .btn-box {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .btn-box a {
  display: block;
}
#app .app-wrapper .swiper-container .swiper-wrap .container .center .title-box .title-content-box .btn-box a .btn {
  width: 120px;
  height: 32px;
  line-height: 32px;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
}
#app .app-wrapper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.3;
}
#app .app-wrapper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  opacity: 1;
}
#app .app-wrapper .swiper-button-next,
#app .app-wrapper .swiper-button-prev {
  width: 25px;
  height: 30px;
}
#app .app-wrapper .content-wrap {
  background-color: #f7f9fc;
}
#app .app-wrapper .content-wrap .products-container .products-content {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row {
  width: 100%;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box {
  margin-bottom: 20px;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item {
  width: 100%;
  background-color: #fff;
  padding: 24px 30px 50px;
  cursor: pointer;
  transition: all 0.4s;
  -ms-transition: all 0.4s; /* IE 9 */
  -moz-transition: all 0.4s; /* Firefox */
  -webkit-transition: all 0.4s; /* Safari 和 Chrome */
  -o-transition: all 0.4s; /* Opera */
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item:hover {
  box-shadow: 0 0 20px #aaa;
  transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item img {
  display: block;
  width: 58%;
  height: auto;
  max-height: 36px;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item .name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin: 10px 0;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item .desc {
  color: rgba(0,0,0,0.45);
  font-size: 14px;
  margin: 20px 0;
  height: 56px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item .btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .app-wrapper .content-wrap .products-container .products-content .bin-row .products-item-box .products-item .btn-box .btn {
  width: 50%;
  min-width: 110px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  background-color: #0085f0;
  border-radius: 20px;
  height: 40px;
  line-height: 40px;
}
#app .app-wrapper .content-wrap .case-container .case-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 0 25px 0;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box {
  margin-bottom: 20px;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item {
  cursor: pointer;
  transition: all 0.4s;
  -ms-transition: all 0.4s; /* IE 9 */
  -moz-transition: all 0.4s; /* Firefox */
  -webkit-transition: all 0.4s; /* Safari 和 Chrome */
  -o-transition: all 0.4s; /* Opera */
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  -webkit-transform: translateY(0px);
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item:hover {
  transform: translateY(-6px);
  -moz-transform: translateY(-6px);
  -o-transform: translateY(-6px);
  -webkit-transform: translateY(-6px);
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item .img-box {
  display: block;
  width: 100%;
  height: 180px;
  position: relative;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item .img-box .tag {
  padding: 0 10px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  color: #fff;
  background-color: rgba(27,38,64,0.6);
  font-size: 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item .case-item-text {
  padding: 14px 30px 30px;
  background-color: #fff;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item .case-item-text .name {
  height: 30px;
  line-height: 30px;
  color: #000;
  font-size: 18px;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#app .app-wrapper .content-wrap .case-container .case-content .case-item-box .case-item .case-item-text .desc {
  color: rgba(0,0,0,0.45);
  font-size: 14px;
  text-align: left;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#app .app-wrapper .content-wrap .customer-container {
  background-color: #fff;
}
#app .app-wrapper .content-wrap .customer-container .customer-content {
  padding-bottom: 30px;
}
#app .app-wrapper .content-wrap .customer-container .customer-content .customer-item-box {
  padding-bottom: 20px;
}
#app .app-wrapper .content-wrap .customer-container .customer-content .customer-item-box .customer-item img {
  width: 176px;
  height: auto;
  max-height: 60px;
  min-height: 60px;
}
#app .app-wrapper .content-wrap .news-container {
  background: url("../images/bloc/enterprise-home/banner3.jpg") center no-repeat;
  background-size: cover;
  min-height: 610px;
  padding-bottom: 20px;
}
#app .app-wrapper .content-wrap .news-container .head-title .title {
  color: #fff;
}
#app .app-wrapper .content-wrap .news-container .head-title .desc {
  color: #fff;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box {
  padding-bottom: 20px;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item {
  height: 160px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .img-box {
  width: 35%;
  padding-right: 20px;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .img-box img {
  display: block;
  width: 100%;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .text-box {
  width: 65%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .text-box .title {
  width: 100%;
  color: #000;
  font-size: 18px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .text-box .title:hover {
  color: #008dff;
}
#app .app-wrapper .content-wrap .news-container .news-content .news-item-box .news-item .text-box .desc {
  width: 100%;
  color: rgba(0,0,0,0.65);
  font-size: 14px;
  display: -webkit-box;
  word-break: break-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
#app .app-wrapper .content-wrap .news-container .bin-carousel-dots-inside {
  bottom: 0px;
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  #app .app-wrapper .content-wrap .head-title .title {
    font-size: 23px;
  }
  #app .app-wrapper .content-wrap .products-container .products-content .products-item-box .products-item .name {
    font-size: 18px;
  }
}
@media screen and (min-width: 768px) {
  #app .app-wrapper .content-wrap .products-container .products-content .products-item-box .products-item .name {
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
