.main-content .container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.wxapp-section {
  margin-bottom: 50px;
}

.text-line {
  position: relative;
  padding: 30px 0;
  text-align: center;
}
.text-line h2 {
  position: relative;
  margin-bottom: 20px;
  font-size: 32px;
  z-index: 1;
  color: #313131;
}

  .box {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  
  .box a {
    text-decoration: none;
  }
  
  .box .content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 20px;
  }
  
  .box .content::after {
    content: '';
    width: calc(33.333% - 20px);
  }
  
  .box .content .card-list {
    width: calc(33.333% - 20px);
    /* height: 340px; */
  }
  
  .box .content .card-list .card-img {
    width: 100%;
    /* height: 278px; */
  }
  
  .box .content .card-list a {
    width: 100%;
    /* height: 278px; */
    display: inline-block;
    position: relative;
    overflow: hidden;
  }
  
  .box .content .card-list a .tips {
    width: 100%;
    height: 0;
    background: #3498db;
    position: absolute;
    left: 0;
    bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    padding: 0 10px;
    box-sizing: border-box;
    transition: 0.3s;
  }
  
  .tips-user {
    padding-top: 5px;
    display: flex;
    align-items: center;
  }
  
  .tips-designer div {
    display: flex;
    align-items: center;
  }
  
  .box .content .card-list a .tips img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  
  .box .content .card-list :hover .tips {
    height: 62px;
  }
  
  .box .content .card-list a .tips .tips-designer {
    display: flex;
    justify-content: space-between;
  }
  
  .box .content .card-list a .tips .tips-designer span {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 4px 4px 4px 4px;
    font-size: 16px;
    font-weight: 400;
  }
  
  .box .content .card-list ul {
    width: 100%;
    padding: 0;
    margin: 16px 0;
    color: #444c69;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .box .content .card-list ul li {
    list-style: none;margin-left: 0;
  }
  
  .box .content .card-list ul span {
    display: flex;
    align-items: center;
    padding: 2px 10px;
    box-sizing: border-box;
    background: rgba(0, 128, 255, 0.26);
    border-radius: 4px 4px 4px 4px;
    border: 1px solid #3498db;
    font-size: 16px;
    font-weight: 400;
  }

  
  .box .list {
    width: 100%;
    height: 450px;
    margin-bottom: 80px;
    display: flex;
    /* justify-content: center */
  }
  
  .box .list .card {
    width: 550px;
    height: 100%;
    margin-right: 90px;
    background: rgba(0, 0, 0, 1);
    padding: 31px 36px;
    box-sizing: border-box;
  }
  
  .box .list .card .name-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .box .list .card .name {
    /* width: 300px; */
    font-size: 50px;
    font-family: 'PingFang SC';
    font-weight: 400;
    color: #ffffff;
    position: relative;
    white-space: nowrap;
  }
  
  .box .list .card .designer {
    margin-top: 44px;
    min-height: 1px;
    font-size: 14px;
    font-family: 'PingFang SC';
    font-weight: 300;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  .box .list .card button {
    margin-top: 40px;
    cursor: pointer;
    width: 180px;
    height: 40px;
    border: 1px solid #707070;
    opacity: 1;
    border-radius: 19px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
  }
  
  .box .list .links {
    display: inline-block;
    height: 40px;
    margin-top: 40px;
  }
  
  .box .list .links-item {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #707070;
    border-radius: 20px;
    cursor: pointer;
  }
  
  .box .list .links_name {
    font-size: 14px;
    font-weight: 300;
    margin-right: 12px;
    color: rgba(255, 255, 255, 1);
  }
  
  .box .list .links-item .links_icon {
    width: 16px;
    height: 16px;
  }
  
  .box .list .card .name:after {
    content: '';
    width: 0;
    height: 11px;
    background: linear-gradient(130deg, #5a65ff 0%, #f852bb 100%);
    position: absolute;
    bottom: -10px;
    left: 0;
    transform: translateY(-50%);
    transition: width 0.3s ease-in-out;
  }
  
  .box .list .card:hover .name:after {
    width: 100%;
    transition: width 0.3s ease-in-out;
  }
  
  .box .list .case-img {
    /* width: 50%; */
    height: 100%;
  }
  
  @media (min-width: 1200px) and (max-width: 1600px) {
    .box .list {
      height: 300px;
    }
  
    .box .list .card .name {
      font-size: 35px;
    }
  
    /* .box .list .card p:after {
      width: 90%;
    }
  
    .box .list .card p::before {
      width: 60%;
    } */
  
    .box .list .card ul {
      margin-top: 20px;
      line-height: 20px;
    }
  
    .box .list .card button {
      margin-top: 10px;
    }
  
    .box .content .card-list {
      width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 1200px) {
    .box {
      width: calc(100% - 300px);
    }
  
    .box .list {
      height: 300px;
    }
  
    .box .list .card .name {
      font-size: 35px;
    }
  
    /* .box .list .card .name:after {
      width: 90%;
    }
  
    .box .list .card .name::before {
      width: 60%;
    } */
  
    .box .list .card ul {
      margin-top: 20px;
      line-height: 20px;
    }
  
    .box .list .card button {
      margin-top: 10px;
    }
  
    .box .content .card-list {
      width: calc(50% - 20px);
    }
  }
  
  @media (max-width: 767px) {
  
    .box {
      width: calc(100% - 30px);
      padding-bottom: 30px;
    }
  
    .box .list {
      height: auto;
    }
  
    .box .list {
      width: 100%;
      flex-wrap: wrap;
    }
  
    .box .card {
      width: 100%;
    }
  
    .box .list img {
      width: 100%;
      object-fit: fill;
    }
  
    .bg {
      width: 100%;
      height: 1376px;
      background: url(../images/case-tuoyuan.png);
      position: absolute;
      right: 0;
      bottom: 0%;
    }
  
    .box .content .card-list {
      width: 100%;
      margin-bottom: 20px;
      margin-right: 0;
    }

    .box .content .card-list .tips {
      height: 62px!important;
    }
  }
  
  .more {
    width: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.1s;
    cursor: pointer;
  }
  
  .more:hover {
    opacity: 1;
    transition: opacity 0.1s;
  }
  
  .more .btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .more .btn-img {
    width: 36px;
    height: 36px;
  }
  
  .more .text {
    margin-top: 10px;
    font-size: 20px;
    color: #ffffff;
  }
  