  :root {
    --color: #76450F;
    --color2: #FCF48E;
  }

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

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

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

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

  @media screen and (max-width: 1440px) {
    .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 - 1400px - 6px) / 2);
  }


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

  @media screen and (max-width: 900px) {
    :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 {
    color: #000;
    font-family: Montserrat;
    font-size: 50px;
  }

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

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

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

  /* ----- 查看更多 ----- 查看更多 ----- 查看更多 ----- 查看更多 ----- 查看更多 -----*/

  .indexMore {
    display: flex;
    align-items: center;
    grid-gap: 60px;
    padding-bottom: 10px;
    border-bottom: 1px solid #2C2C2C;
  }

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

  /* ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight ----- IndexRight -----*/
  .IndexRight {
    position: fixed;
    z-index: 99999;
    right: 40px;
    bottom: 240px;
    display: flex;
    flex-direction: column;
    grid-gap: 15px;
  }

  .IndexRight a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }

  .IndexRight a .icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .IndexRight a span {
    padding: 10px;
    background: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
    grid-gap: 5px;
    position: absolute;
    right: calc(100% + 15px);
    display: none;
  }

  .IndexRight a span::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
  }

  .IndexRight a:hover span {
    display: flex;
  }

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

  .IndexRight a span p {
    color: #000;
    font-family: MiSans2;
    font-size: 20px;
    white-space: nowrap;
  }

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

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

    .IndexRight a span p {
      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;
    }
  }

  /* 表单样式 */
  .IndexFormIcon {
    position: fixed;
    z-index: 999;
    right: 40px;
    bottom: -120px;
    padding: 8px;
    padding-right: 5px;
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 6px 4px 0 rgba(92, 89, 89, 0.31);
    cursor: pointer;
    transition:0.5s;
  }

.IndexFormBox.on .IndexFormIcon {
    bottom: 120px;
}

  .IndexFormClosed {
    border-radius: 0 0 0 6px;
    background: rgba(131, 129, 129, 0.75);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
  }

  .IndexFormClosed img {
    width: 15px;
  }

  .IndexForm {
    position: fixed;
    z-index: 999999;
    left: -100vw;
    bottom: 60px;
    width: calc(100vw - var(--container) * 2);
    background: url(/assets/images/image1.jpg) no-repeat center/cover;
    border-radius: 14px;
    box-shadow: 0 6px 4px 0 rgba(92, 89, 89, 0.31);
    transition: 0.5s;
    padding: 20px 60px;
    padding-right: 100px;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
  }

  .IndexForm.on {
    left: var(--container);
  }

  .IndexForm input {
    height: 36px;
    background: #fff0;
    outline: none;
    border-bottom: 1px solid #000;
  }

  .IndexForm .input1 {
    width: 15%;
  }

  .IndexForm .input2 {
    width: 20%;
  }

  .IndexForm .captcha {
    height: 36px;
    width: 15%;
    display: flex;
  }


  .IndexForm .captcha input {
    width: calc(100% - 80px);
  }

  .IndexForm .captcha img {
    background: #FFF;
    width: 80px;
    height: 100%;
    border-bottom: 1px solid #000;
  }

  .IndexForm .input4 {
    width: 120px;
    height: 36px;
    border-radius: 30px;
    background: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 5px;
    color: #000;
    text-align: center;
    font-size: 14px;
  }

  .IndexForm .input4 i {
    transform: rotate(-45deg);
  }

  @media (max-width: 1200px) {
    .IndexForm {
      padding-left: 30px;
      padding-right: 45px;
    }
  }

  @media (max-width: 900px) {
    .IndexForm {
      flex-wrap: wrap;
      grid-gap: 15px 0;
    }

    .IndexForm .input1,
    .IndexForm .input2,
    .IndexForm .captcha,
    .IndexForm .input4 {
      width: 30%;
    }
  }

  @media (max-width: 600px) {
    .IndexFormIcon {
      right: 15px;
    }

    .IndexForm {
      flex-wrap: wrap;
      grid-gap: 15px;
    }

    .IndexForm .input1,
    .IndexForm .input2,
    .IndexForm .captcha,
    .IndexForm .input4 {
      width: calc(50% - 7.5px);
    }

    .IndexForm .captcha input {
      width: calc(100% - 60px);
    }

    .IndexForm .captcha img {
      width: 60px;
    }
  }

  /* ----- 鼠标移入图片变大 ----- 鼠标移入图片变大 ----- 鼠标移入图片变大 ----- 鼠标移入图片变大 -----*/
  .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;
    }
  }
