.case-banner {
  margin-top: 0.8rem;
}
.case-list-main {
  background: white;
}

.case-list-main .list-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 35px;
}

.case-list-main .list-title h4 {
  font-size: 24px;
  color: #333;
  font-weight: normal;
  margin: 10px 0;
}

.case-list-main .list-title p {
  font-size: 12px;
  color: #c1c1c1;
}

.case-list-main .list {
  width: 80vw;
  margin: 0 auto;
}

.case-list-main .list-item {
  display: flex;
  flex-direction: row;
  min-height: 185px;
  background: #F8F8F8;
  margin-bottom: 35px;
}



.case-list-main .item-logo {
  width: 400px;
  height: 185px;
  overflow: hidden;
}

.case-list-main .item-logo img {
  width: 100%;
  height: 100%;
}

.case-list-main .item-cont {
  flex: 1;
  padding: 50px 80px 0 35px;
  transition: .5s;
}

.case-list-main .item-title {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}

.case-list-main .item-desc {
  margin-top: 10px;
  font-size: 16px;
  color: #6f6f6f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 32px;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
}

.case-list-main .list-item:hover .item-cont {
  flex: 1;
  padding-top: 30px;
}

.case-list-main .page {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  color: #333;
  padding: 0 0 40px;
}

.case-list-main .page li a {
  display: inline-block;
  margin: 0 5px;
  color: #2a6496;
}

@media screen and (min-width: 300px) and (max-width: 750px) {
  .case-banner img{
    width: 100%;
    max-height: 1.8rem;
  }
  .case-list-main {
    background: #f8f8f8;
  }
  .case-list-main .list {
    width: 100%;
    padding: 0.15rem;
  }
  .case-list-main .list-item {
    flex-direction: column;
    background: white;
    border-radius: 10px;
    overflow: hidden;
  }

  .case-list-main .item-logo {
    width: 100%;
    
  }
  .case-list-main .item-cont {
    padding-bottom: 0.4rem;
  }

  .case-list-main .list-item:hover .item-cont {
    flex: 1;
    padding-top: 50px;
  }

  .page .total,
  .page .current {
    display: none;
  }

  .case-list-main .page {
    justify-content: center;
  }

  .content {
    padding: 0 0.2rem !important;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0.3rem 0 !important;
  }

  .content .cont p {
    text-indent: 0 !important;
  }
  .content .cont img{
    max-width: 100% !important;
  }
}