 /* 基本重置 */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  ol,
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  a {
    color: inherit;
    /* 使用父元素的颜色 */
    text-decoration: none;
  }

  body {
    color: #333;
  }

  .page {
    max-width: 1920px;
    margin: 0 auto;
  }


  /* .container-body {
    justify-content: center;
  }

  .container-body .tabs {
    width: 100%;
    height: 62px;
    line-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .container-body .tabs .tab-item {
    padding: 0 20px;
    cursor: pointer;
    color: #5a5b61;
    font-size: 14px;
  }

  .container-body .tabs .tab-item:hover {
    border-bottom: 2px solid #3778fa;
  } */

  .main {
    padding-top: 64px;
  }

  .home-wrap {
    padding-top: 40px;
  }

  .main .home-wrap .container-wrap {
    width: 920px;
    padding: 0 0 20px 0;
    margin: 0 auto;
  }

  .main .home-wrap .container-wrap .title {
    text-align: center;
  }

  .main .home-wrap .container-wrap .title h3 {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .main .home-wrap .container-wrap .title span {
    text-align: center;
    color: #5a5b61;
    font-size: 14px;
  }

  .main .home-wrap .container-wrap .content {
    margin: 30px 0;
    font-family: Noto Sans CJK !important;
  }

  .content p,
  .content h1,
  .content h2,
  .content h3,
  .content h4,
  .content h5,
  .content h6,
  .content li,
  .content span,
  .content div {
    font-family: Noto Sans CJK !important;
  }
  .content img{
  	width:100% !important;
	height:auto !important;
  }

  .text-secondary p{
    font-size:14px;
  }

  @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;
      box-shadow: 0;
    }

    .main .home-wrap .container-wrap {
      width: 100%;
      padding: 0px;
      margin: 0 auto;
    }

    .main .home-wrap .container-wrap .title h3 {
      font-size: 18px;
    }

    .main .home-wrap .container-wrap .content {
		overflow-x: auto;
      margin: 20px 0;
    }
  }

