@media (min-width: 696px) {
  /* 内减模式 */
  * {
    box-sizing: border-box;
  }

  /* 去除常见标签默认的 margin 和 padding */
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  li,
  dl,
  dt,
  dd,
  input {
    margin: 0;
    padding: 0;
  }

  /* 设置网页统一的字体大小、行高、字体系列相关属性 */
  body {
    /* font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
    "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif; */

    font-family: -apple-system, "HuaweiSans", "Arial", "PingFang SC",
      "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "Microsoft JhengHei",
      SimSun, sans-serif !important;
    color: #333;
    margin: 0;
    background-color: rgb(242, 242, 242);
    -webkit-tap-highlight-color: transparent;
  }

  /* 去除列表默认样式 */
  ul,
  ol {
    list-style: none;
  }

  /* 去除默认的倾斜效果 */
  em,
  i {
    font-style: normal;
  }

  /* 去除a标签默认下划线，并设置默认文字颜色 */
  a {
    text-decoration: none;
    color: #333;
  }

  /* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
  img {
    vertical-align: middle;
  }

  /* 去除input默认样式 */
  input {
    border: none;
    outline: none;
    color: #333;
  }

  /* 左浮动 */
  .fl {
    float: left;
  }

  /* 右浮动 */
  .fr {
    float: right;
  }

  /* 双伪元素清除法 */
  .clearfix::before,
  .clearfix::after {
    content: "";
    display: table;
  }
  .clearfix::after {
    clear: both;
  }
  /* 
      footer
      1. 调整整体区域的样式
          宽高背景色 内外边距
      2. 调整区域版心  --> 特殊版心
          2.1 调整样式
          2.2 区域划分
  */

  .footer {
    margin-top: 120px;
    background-color: #333;
    color: #fff;
  }

  .footer-content {
    /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  */
    padding: 40px;
    display: flex;
    justify-content: space-between;
  }
  .footer_list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer_list img {
    width: 80px;
    height: 80px;
  }
  .footer_list p {
    font-weight: 700;
    font-style: normal;
    font-size: 34px;
    color: #ffffff;
  }
  .footer_list_code {
    width: 120px !important;
    height: 120px !important;
  }
  .footer_list_attention {
    font-weight: 400;
    font-style: normal;
    font-size: 12px !important;
    color: #ffffff;
    text-align: center;
    margin-top: 5px;
  }
  .footer_contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer_contact p {
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: rgb(255, 255, 255);
  }
  .footer_contact a {
    display: block;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #fff !important;
  }

  .footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: #706d6d solid 1px;
    font-size: 12px;
    color: #dfd4d4cb;
  }
  .icp {
    text-align: center;

    padding: 10px 0;
    font-size: 12px;
    color: #dfd4d4cb;
  }

  /* 移动 导航栏 */
  .menu {
    display: none;
  }
  /* 
        导航栏
    */
  .shortcut {
    position: fixed;
    left: 0%;
    top: 0;
    width: 100%;
    height: 65px;
    padding: 0 30px;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
  }
  .shortcut_wrapper {
    max-width: 1700px;
    margin: 0 auto;
  }
  .shortcut .wrapper {
    height: 80px;
    /* background-color: pink; */
  }

  .shortcut li {
    float: left;
    line-height: 60px;
    margin-right: 5px;
  }
  .shortcut li a {
    padding: 21px 10px;
    font-size: 14px;
    color: #dcdcdc;
  }
  .shortcut li:hover {
    border-bottom: 3px solid #fff;
  }
  .shortcut .logo {
    display: inline-block;
    height: 65px;
    line-height: 65px;
    /* margin-left: 100px; */
    background-size: contain;
    font-size: 0;
  }

  .logo_div {
    /* height: 65px; */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo_div_p1 {
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    color: #ffffff;
    /* margin-top: 20px; */
    height: 20px;
    line-height: 20px;
    /* height: 40px; */
  }
  .logo_div_p2 {
    text-align: center;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    color: #ffffff;
    height: 14px;
    line-height: 20px;
  }
  .logo_img {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
  /* 设置悬浮菜单项样式 */
  .menu-item {
    display: inline-block;
    position: relative;
  }

  /* 设置二维码图片样式 */
  .qrcode {
    display: none; /* 默认隐藏二维码图片 */
    position: absolute;
    top: 80px; /* 根据需要调整位置 */
    right: -28px;

    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  }
  .qrcode img {
    width: 120px;
    height: 120px;
  }
  .qrcode p {
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #000;
    font-size: 14px;
  }

  /* 鼠标悬停时显示二维码图片 */
  .menu-item:hover .qrcode {
    display: block;
  }
}
@media (max-width: 695px) {
  /* 内减模式 */
  * {
    box-sizing: border-box;
  }

  /* 去除常见标签默认的 margin 和 padding */
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  li,
  dl,
  dt,
  dd,
  input {
    margin: 0;
    padding: 0;
  }

  /* 设置网页统一的字体大小、行高、字体系列相关属性 */
  body {
    /* font: 16px/1.5 "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei",
      "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif; */

    font-family: -apple-system, "HuaweiSans", "Arial", "PingFang SC",
      "Hiragino Sans GB", "STHeiti", "Microsoft YaHei", "Microsoft JhengHei",
      SimSun, sans-serif !important;
    color: #333;
    margin: 0;
    background-color: rgb(242, 242, 242);
    -webkit-tap-highlight-color: transparent;
  }

  /* 去除列表默认样式 */
  ul,
  ol {
    list-style: none;
  }

  /* 去除默认的倾斜效果 */
  em,
  i {
    font-style: normal;
  }

  /* 去除a标签默认下划线，并设置默认文字颜色 */
  a {
    text-decoration: none;
    color: #333;
  }

  /* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
  img {
    vertical-align: middle;
  }

  /* 去除input默认样式 */
  input {
    border: none;
    outline: none;
    color: #333;
  }
  /* 修改轮播图容器的样式 */
  .swiper {
    width: 100%;
    margin: 0 auto;
    margin-top: 0.9302rem;
    padding-bottom: 0.9302rem;
    border-radius: 0.2326rem;

    overflow: hidden;
  }

  /* 修改轮播项的样式 */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .swiper-slide img {
    width: 100%;
    height: auto;

    object-fit: cover;
  }

  /* 修改分页器的样式 */
  .swiper-pagination-bullet {
    height: 0.0698rem;
    background: #363131;
    cursor: pointer;
    /* max-width: 34px; */
    border-radius: 0;
    margin: 0 !important;
    /* 设置最大宽度 */
  }

  .swiper-pagination-bullet-active {
    background-color: #6c7177;
    opacity: 1;
  }

  /* 左浮动 */
  .fl {
    float: left;
  }

  /* 右浮动 */
  .fr {
    float: right;
  }

  /* 双伪元素清除法 */
  .clearfix::before,
  .clearfix::after {
    content: "";
    display: table;
  }
  .clearfix::after {
    clear: both;
  }
  /* pc端 导航 */
  .shortcut {
    display: none;
  }
  /* 移动端 导航 */
  .top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    height: 1.3953rem;
    padding: 0.2326rem 0.4651rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
  }

  .menu-icon {
    cursor: pointer;
    font-size: 0.5581rem;
  }

  .dropdown-menu {
    display: none;
    position: fixed;
    top: 1.3953rem;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 0.0233rem solid #ccc;
    box-shadow: 0 0.093rem 0.186rem rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 0.6977rem;
    font-size: 0.3256rem;
  }

  .dropdown-menu .level-1 {
    display: flex;
    justify-content: flex-start;
  }

  .dropdown-menu .level-1 a {
    color: #333;
    text-decoration: none;
    padding: 0.4651rem 0.9302rem;
  }

  .dropdown-menu .level-2 {
    display: flex;
    justify-content: center;
  }

  .dropdown-menu .level-2 a {
    color: #333;
    text-decoration: none;
    padding: 0.3488rem 1.8605rem;
  }

  .dropdown-menu .level-1 a,
  .dropdown-menu .level-2 a {
    display: block;
    width: 100%;
    text-align: left;
  }

  .overlay {
    display: none;
    /* 默认隐藏遮罩层 */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: hidden;
    /* 半透明黑色遮罩 */
    z-index: 999;
    /* 遮罩层位于菜单之下 */
  }

  .show {
    display: block;
  }
  /* ------ */
  .shortcut_wrapper {
    height: 1.3953rem;
  }
  .shortcut .logo {
    height: 1.3953rem;
    line-height: 1.3953rem;
    background-size: contain;
    font-size: 0;
  }
  .logo_div {
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .logo_div_p1 {
    text-align: center;
    margin: 0;
    font-weight: 700;
    font-style: normal;
    font-size: 0.4651rem;
    color: #333;
  }

  .logo_img {
    width: 0.8605rem;
    height: 0.8605rem;
    margin-right: 0.2326rem;
  }

  /* 
      footer
      1. 调整整体区域的样式
          宽高背景色 内外边距
      2. 调整区域版心  --> 特殊版心
          2.1 调整样式
          2.2 区域划分
  */

  .footer {
    margin-top: 0.4651rem;
    background-color: #333;
    color: #fff;
  }

  .footer-content {
    padding: 0.9302rem;
    display: flex;
    justify-content: space-between;
  }
  .footer_list {
    display: none;
  }
  .footer_contact {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer_contact p {
    font-weight: 400;
    font-style: normal;
    font-size: 0.3256rem;
    color: #fff !important;
  }
  .footer_contact a {
    display: block;
    font-weight: 400;
    font-style: normal;
    font-size: 0.3256rem;
    color: #fff !important;
  }
  .footer-copyright {
    padding: 0.4651rem 0.9302rem;
    border-top: #706d6d solid 0.0233rem;
    font-size: 0.2791rem;
    color: #dfd4d4cb;
  }
  .footer-copyright p {
    margin-bottom: 0.186rem;
  }
  .icp {
    text-align: center;
    /* padding: 10px 0; */
    font-size: 0.2791rem;
    color: #dfd4d4cb;
  }
}
