  :root {
    --color: #74D4FF;
    --color2: #155DFC;
    --jianbian: linear-gradient(90deg, #00A6F4 0%, #155DFC 100%);
  }

  *,
  :after,
  :before {
    text-wrap: pretty;
    font-family: 'Microsoft YaHei';
  }

  @font-face {
    font-family: Montserrat;
    src: url(/assets/fonts/Montserrat-Black.otf);
  }

  .jianbian {
    background: var(--jianbian);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
  }

  /* é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼ - é€šç”¨æ ·å¼*/
  /* ----- ä¸»é¢˜å®½åº¦ ----- ä¸»é¢˜å®½åº¦ ----- ä¸»é¢˜å®½åº¦ ----- ä¸»é¢˜å®½åº¦ ----- ä¸»é¢˜å®½åº¦ ----- ä¸»é¢˜å®½åº¦ -----*/
  .container {
    width: 1600px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
  }

  @media screen and (max-width: 1660px) {
    .container {
      width: 100%;
      max-width: 100%;
      padding-left: 90px;
      padding-right: 90px;
    }
  }


  @media screen and (max-width: 1200px) {
    .container {
      padding-left: 3vw;
      padding-right: 3vw;
    }
  }

  :root {
    --container: calc((100vw - 1600px - 6px) / 2);
  }


  @media screen and (max-width: 1660px) {
    :root {
      --container: 90px;
    }
  }

  @media screen and (max-width: 1200px) {
    :root {
      --container: 3vw;
    }
  }

  /* ----- æ¡†æž¶ ----- æ¡†æž¶ ----- æ¡†æž¶ ----- æ¡†æž¶ ----- æ¡†æž¶ ----- æ¡†æž¶ -----*/
  section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding: 120px var(--container);
  }

  @media (max-width: 1200px) {
    section {
      padding: 90px var(--container);
    }
  }

  @media (max-width: 900px) {
    section {
      padding: 60px var(--container);
    }
  }

  /* ----- æ ‡é¢˜ ----- æ ‡é¢˜ ----- æ ‡é¢˜ ----- æ ‡é¢˜ ----- æ ‡é¢˜ ----- æ ‡é¢˜ -----*/
  .BaseTitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 15px;
  }

  .BaseTitle h1 {
    border-radius: 50px;
    border: 1px solid #B8E6FE;
    background: #F0F9FF;
    color: #0084D1;
    font-size: 13px;
    padding: 10px 20px;
    display: flex;
    grid-gap: 8px;
    align-items: center;
  }

  .BaseTitle h1::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00A6F4;
  }

  .BaseTitle h2 {
    color: #333;
    font-size: 25px;
    font-weight: bold;
    line-height: 1.25;
  }

  .BaseTitle h3 {
    color: #6A7282;
    font-size: 16px;
  }


  @media (max-width: 1200px) {
    .BaseTitle h2 {
      font-size: 32px;
    }
  }

  @media (max-width: 600px) {
    .BaseTitle h2 {
      font-size: 24px;
    }
  }


  /* ----- æŸ¥çœ‹æ›´å¤š ----- æŸ¥çœ‹æ›´å¤š ----- æŸ¥çœ‹æ›´å¤š ----- æŸ¥çœ‹æ›´å¤š ----- æŸ¥çœ‹æ›´å¤š -----*/

  .indexMore {
    color: #fff;
    border-radius: 10px;
    background: var(--jianbian);
  }

  .indexMore:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 166, 244, 0.40), 0 8px 10px -6px rgba(0, 166, 244, 0.40);
  }

  .indexMoreArrow .arrow {
    transition: 0.5s;
  }

  .indexMoreArrow:hover .arrow {
    transform: translateX(5px);
  }

  @media (max-width: 900px) {
    .indexMore {
      grid-gap: 30px;
      padding-bottom: 5px;
    }
  }

  /* ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight -----*/
  .IndexRight {
    position: fixed;
    z-index: 99999;
    right: 16px;
    top: 50vh;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
  }

  .IndexRight a {
    position: relative;
  }

  .IndexRight a .IRIcon {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    background: #FFF;
    box-shadow: 0 10px 15px -3px rgba(116, 212, 255, 0.16);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    grid-gap: 8px;
    color: #6A7282;
    text-align: center;
    font-size: 14px;
  }

  .IndexRight a .IRIcon img {
    width: 20px;
  }

  .IndexRight a span {
    position: absolute;
    width: 0;
    overflow: hidden;
    top: 0;
    right: 0%;
  }

  .IndexRight a:hover span {
    width: auto;
  }

  .IndexRight a:hover .IRIcon {
    background: var(--jianbian);
    color: #fff;
  }

  .IndexRight a.phone:hover .IRIcon {
    background: #fff0;
    box-shadow: none;
  }

  .IndexRight a:hover .IRIcon img {
    filter: brightness(0) invert(1);
  }

  .IndexRight a.phone span {
    z-index: -1;
    width: 0;
    overflow: hidden;
    height: 100%;
    background: var(--jianbian);
    border-radius: 14px;
    box-shadow: 0 10px 15px -3px rgba(116, 212, 255, 0.16);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 20px;
  }

  .IndexRight a.phone:hover span {
    width: 270px;
    padding-right: 80px;
  }

  .IndexRight a.wx:hover span {
    right: 100%;
    top: auto;
    bottom: 0;
  }

  @media (max-width: 1660px) {
    .IndexRight a .IRIcon {
      width: 70px;
      height: 70px;
      font-size: 12px;
    }

    .IndexRight a .IRIcon img {
      width: 14px;
    }
  }

  @media screen and (max-width: 1200px) {
    .IndexRight {
      right: 8px;
      grid-gap: 5px;
    }

    .IndexRight a .IRIcon {
      width: 60px;
      height: 60px;
      grid-gap: 4px;
    }

    .IndexRight a.phone:hover span {
      width: 200px;
      padding-right: 60px;
      font-size: 16px;
    }
  }

  /* ----- phoneFooter ----- phoneFooter ----- phoneFooter ----- phoneFooter ----- phoneFooter -----*/
  .phoneFooter {
    display: none;
    width: 100%;
    height: 60px;
    background: #fff;
    position: fixed;
    z-index: 99;
    left: 0;
    bottom: 0;
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.10);
  }

  .phoneFooter a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    grid-gap: 3px;
  }

  .phoneFooter a img {
    width: 20px;
    filter: grayscale(1);
  }

  .phoneFooter a.active img {
    filter: grayscale(0);
  }

  .phoneFooter a p {
    color: #000;
    text-align: center;
    font-size: 14px;
  }

  .phoneFooter a.active p {
    color: var(--color);
  }


  @media (max-width: 750px) {
    .phoneFooter {
      display: flex;
      justify-content: space-evenly;
    }

    footer {
      padding: 0;
      height: 60px;
      background: #fff;
    }

    footer * {
      display: none !important;
    }

  }

  @media (max-width: 400px) {
    .phoneFooter a p {
      font-size: 12px;
    }
  }


  /* ----- é¼ æ ‡ç§»å…¥å›¾ç‰‡å˜å¤§ ----- é¼ æ ‡ç§»å…¥å›¾ç‰‡å˜å¤§ ----- é¼ æ ‡ç§»å…¥å›¾ç‰‡å˜å¤§ ----- é¼ æ ‡ç§»å…¥å›¾ç‰‡å˜å¤§ -----*/
  .imgHover {
    overflow: hidden;
    width: 100%;
  }

  .imgHover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
  }

  .imgHover:hover img {
    transform: scale(1.08);
  }

  .imgHoverBox:hover img {
    transform: scale(1.08);
  }

  /* ç›¸å†Œç»„ä»¶ */

  .bigimg {
    width: auto !important;
    height: auto !important;
    max-width: 70vw !important;
    max-height: 70vh !important;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    z-index: 9999;
    border: 0px solid #fff;
    object-fit: contain;
  }

  .mask {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #000000cc;
    z-index: 9998;
    transition: all 1s;
    display: none
  }

  .mask img {
    width: 50px;
    height: 50px;
    background: #fff;
    padding: 15px;
    border-radius: 50%;
    position: fixed;
    bottom: 5vh;
    left: calc(50% - 25px);
  }

  @media (max-width: 640px) {
    .mask img {
      bottom: 10vh;
    }
  }