  :root {
    --color: #0F2B5B;
    --color2: #EE1E26;
    --color3: #1E4A9E;
  }

  *,
  :after,
  :before {
    text-wrap: pretty;
    font-family: Poppins;
  }

  @font-face {
    font-family: Poppins;
    src: url(/assets/fonts/Poppins-ExtraBold.otf);
    font-weight: 800;
  }

  @font-face {
    font-family: Poppins;
    src: url(/assets/fonts/Poppins-Bold.ttf);
    font-weight: 700;
  }

  @font-face {
    font-family: Poppins;
    src: url(/assets/fonts/Poppins-SemiBold.otf);
    font-weight: 600;
  }

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

  /* 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式 - 通用样式*/
  /* ----- 主题宽度 ----- 主题宽度 ----- 主题宽度 ----- 主题宽度 ----- 主题宽度 ----- 主题宽度 -----*/
  .container {
    width: 1660px;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0;
  }

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


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

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


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

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

  /* ----- 框架 ----- 框架 ----- 框架 ----- 框架 ----- 框架 ----- 框架 -----*/
  section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 100%;
    padding: 80px var(--container);
  }

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

  /* ----- 标题 ----- 标题 ----- 标题 ----- 标题 ----- 标题 ----- 标题 -----*/
  .BaseTop {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 15px 30px;
    justify-content: space-between;
    align-items: center;
  }

  .BaseTitle {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
  }

  .BaseTitle p {
    color: var(--color2);
    font-size: 12px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
  }

  .BaseTitle p b {
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color2);
  }

  .BaseTitle h1 {
    color: #333;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
  }



  @media (max-width: 1440px) {
    .BaseTitle h1 {
      font-size: 38px;
    }
  }

  @media (max-width: 900px) {
    .BaseTitle {
      grid-gap: 15px;
    }

    .BaseTitle h1 {
      font-size: 28px;
    }
  }

  /* ----- 查看更多 ----- 查看更多 ----- 查看更多 ----- 查看更多 ----- 查看更多 -----*/
  .BaseMore {
    color: var(--color3) !important;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    grid-gap: 5px;
  }

  .BaseMore i {
    font-size: 24px;
    line-height: 1;
    transition: 0.5s;
  }

  .BaseMore:hover i {
    transform: translateX(5px);
  }

  @media (max-width: 900px) {
    .BaseMore {
      font-size: 14px;
    }
  }

  .BaseMoreArrow img {
    transition: 0.5s;
  }

  .BaseMoreArrow:hover img {
    transform: translateX(5px);
  }

  .RedMore {
    position: relative;
    background: var(--color2);
  }

  .RedMore:hover {
    background: linear-gradient(135deg, #EE1E26 0%, #C0131A 100%);
    box-shadow: 0 4px 15px 0 rgba(238, 30, 38, 0.40);
  }

  /* ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight -----*/
  .IndexRight {
    position: fixed;
    z-index: 99999;
    right: 10px;
    top: 50vh;
    width: 110px;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
    border-radius: 10px;
    border-radius: 10px;
    background: linear-gradient(180deg, #1E4A9E 0%, #EE1E26 100%);
    padding: 5px;
  }

  .IndexRightTop {
    margin-top: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 10px;
    color: #FFF;
    text-align: center;
    font-size: 14px;
  }

  .IndexRight span {
    border-radius: 10px;
    background: #F8F9FA;
    padding: 15px;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
  }

  .IndexRight span a {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-gap: 5px;
    color: #333;
    text-align: center;
    font-size: 14px;
  }
.IndexRight span a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 5px;
  color: #333;
  text-align: center;
  font-size: 14px;
}



  @media (max-width: 600px) {
    .IndexRight {
      right: 15px;
      bottom: 15vh;
      top: auto;
      display:none
    }

    .IndexRight a span img {
      max-width: 90px;
    }

    .IndexRight a span p {
      font-size: 16px;
    }
  }
.IndexRight span a em {
  position: absolute;
  right: calc(100% + 10px);    
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  background: #1E4A9E;
  color: #fff;
  font-style: normal;
  font-size: 20px;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;             
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}

.IndexRight span a em::before {
  content: '';
  position: absolute;
  left: 100%;                    
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1E4A9E;    
}

.IndexRight span a:hover em {
  opacity: 1;
  visibility: visible;
}


  /* ----- 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;
    }
  }
