  /* 基本重置 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  ol,
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  a {
    color: inherit;
    /* 使用父元素的颜色 */
    text-decoration: none;
  }

  b {
    font-weight: normal;
  }

  body {
    color: #333;
  }

  .page {
    max-width: 1920px;
    margin: 0 auto;
  }


  .main {
    padding-top: 64px;
  }

  .home-wrap {
    margin: 30px 0;
  }

  .home-wrap .container-wrap {
    width: 1200px;
    margin: 0 auto;
    max-width: 1536px;
  }

  .container-wrap .subtitle {
    text-align: center;
  }

  .container-wrap .subtitle .title1 {
    font-weight: bold;
    font-size: 28px;
    color: #444444;
  }

  .container-wrap .subtitle .title2 {
    font-weight: bold;
    font-size: 18px;
    color: #cccccc;
  }

  .container-wrap .content .friend-list {
    margin-top: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .container-wrap .content .friend-content {
    width: 100%;
  }

  .container-wrap .content .friend-list .friend-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 23px 25px;
    background-color: #fff;
    cursor: pointer;
  }

  .container-wrap .content .friend-list .friend-item:hover {
    box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.2);
  }

  .container-wrap .content .friend-list .friend-item .pic {
    width: 200px;
    height: 200px;
    position: relative;
    background-color: white;
    /* 设置背景颜色为白色 */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* 隐藏超出部分 */
    margin-right: 50px;
  }

  .container-wrap .content .friend-list .friend-item .pic img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* 让图片保持原有比例缩放 */
  }

  .container-wrap .content .friend-list .friend-item .desc {
    width: calc(100% - 300px);
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  @media screen and (min-width: 769px) and (max-width: 1500px) {
    .main {
      padding-top: 116px;
    }

  }

  @media (max-width: 960px) {
    .main {
      padding-top: 64px;
    }

    .home-wrap {
      width: 100%;
      padding: 15px;
      margin: 0;
    }

    .home-wrap .container-wrap {
      width: 100%;
      height: 100%;
    }

    .container-wrap .subtitle .title1 {
      font-size: 24px;
    }

    .container-wrap .subtitle .title2 {
      font-size: 14px;
    }

    .container-wrap .content .friend-list .friend-item {
      flex-direction: column;
      padding: 13px 15px;
      box-shadow: 0px 0px 2px 0 rgba(0, 0, 0, 0.2);
    }


    .container-wrap .content .friend-list .friend-item .pic {
      width: 100px;
      height: 100px;
      margin-right: 0px;
      position: relative;
      justify-content: flex-start;
    }

    .container-wrap .content .friend-list .friend-item .desc {
      width: 100%;
      font-size: 14px;
		text-indent: 2em;
      -webkit-line-clamp: 5;
    }

  }