.home {
    padding: 20px 0;
  }
  
  .home .view {
    width: 140px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #c5c5c5;
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    margin-top: 30px;
    cursor: pointer;
  }
  
  .home .view:hover {
    color: #0170e2;
    border: 1px solid #0170e2;
    text-decoration: underline;
  }
  
  .home .icon-list {
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  
  .home .icon-list .icon-item {
    flex: 1;
    display: flex;
    justify-content: center;
    flex-flow: column;
    align-items: center;
    cursor: pointer;
  }
  
  .home .icon-list .icon-item .icons {
    width: 112px;
    height: 112px;
    background-color: #ff9900;
    font-size: 50px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
  }
  
  .home .icon-list .icon-item .icons:hover {
    background-color: #333333;
    transform: scale(1.1);
  }
  
  .home .icon-list .icon-item .name {
    margin-top: 30px;
  }
  
  .home .faq {
    font-size: 40px;
    letter-spacing: 3.5px;
    text-align: center;
    margin: 50px 0;
    font-weight: 800;
  }
  
  .home .faq-list {
    display: flex;
    flex-wrap: wrap;
    color: #777;
  }
  
  .home .faq-list .faq-item {
    width: 50%;
    display: flex;
    margin-top: 20px;
    font-size: 12px;
  }
  
  .home .faq-list .faq-item .faq-icon {
    min-width: 80px;
    height: 80px;
    background-color: #ff9900;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px 2px rgba(255, 153, 0, 0.75);
    margin-right: 20px;
  }
  
  .home .faq-list .faq-item .faq-title {
    font-weight: bold;
    margin-bottom: 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
  }
  
  .home .faq-list .faq-item .faq-title:hover {
    color: #0170e2;
    text-decoration: underline;
  }
  
  @media screen and (max-width: 600px) {
    .faq-title,
    .faq-content {
      width: 200px !important;
    }
  }
  
  @media screen and (max-width: 550px) {
    .home {
      padding: 20px 0;
    }
  
    .home .icon-list {
      flex-direction: column;
    }
  
    .home .icon-list .icon-item {
      margin-top: 20px;
    }
  
    .home .faq-list {
      flex-direction: column;
      align-items: flex-start !important;
      padding: 0 20px;
    }
  
    .home .faq-list .faq-item {
      margin-top: 20px;
    }
  
    .home .faq-list .faq-item .faq-title {
      width: 220px !important;
    }
  
    .home .faq-list .faq-item .faq-content {
      width: 220px !important;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: normal;
    }
  }
  
  @media screen and (max-width: 550px) {
    .faq-title,
    .faq-content {
      width: 250px !important;
    }
  }