* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body{
  width: 100%;
  height: 100%;
  /*font-size: 100px;*/
  min-width: 1200px;
}
body{
  font-size: 0.16rem;
  color: #4d4d4d;
  background-color: #f7f7f7;
}
a{
  text-decoration: none;
  color: inherit;
}
input,button{
  outline: none;
}
li{
  list-style: none;
}
.container {
  max-width: 1920px; /* 最大宽度为设计稿宽度 */
  margin: 0 auto;
}
/*顶部logo*/
.topNav{
  background-color: #fff;
}
.topNav .logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 1rem;
  overflow: hidden;
}
.topNav .logo img{
  margin-left: 0.2rem;
  width: 4rem;
}
.topNav-right{
  display: flex;
  align-items: center;
}
.topNav .logo .search{
  /*width: 1rem;*/
  /*height: 1rem;*/
  /*background-color: #29286a;*/
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /*cursor: pointer;*/
}
.topNav .logo .search img{
  width: 0.22rem;
  margin-left: 0;
  /*cursor: pointer;*/
}
.topNav .logo  input{
  height: 0.6rem;
  border-top-left-radius: 0.1rem;
  border-bottom-left-radius: 0.1rem;
  font-size: 0.22rem;
  overflow: hidden;
  transition: all 0.5s ease; /* 添加过渡效果 */
  width: 0px;
  padding-left: 0px;
  border-width: 0px;
}
/*导航菜单*/
.navLink ul{
  height: 0.5rem;
  line-height: 0.5rem;
  border: 1px solid #e8ebf2;
  display: flex;
  align-items: center;
}
.navLink ul li{
  flex: 1;
  text-align: center;
  font-size: 0.2rem;
  border-right: 1px solid #e8ebf2;
  cursor: pointer;
  font-weight: lighter;
}
.navLink ul li:last-of-type{
  border-right: none;
}
.navLink ul li a{
  width: 100%;
  height: 100%;
  display: block;
  color: #4d4d4d;
  font-weight: 500;
}
.navLink ul li.select a,.navLink ul li a:hover{
  background-color: #29286a;
  color: #fff;
}
/*底部页脚*/
.footerOther{
  background-color: #000000;
  text-align: center;
  color: #FFFFFF;
}
.footerOther a{
  color: #FFFFFF;
}
.footerOther a img{
  width: 0.2rem;
}
/*底部公司信息*/
.footerInfo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 3.52rem;
  padding: 0 1.6rem;
  overflow: hidden;
}
.footerInfo-left img{
width: 7.13rem;
}

.footerInfo-right img{
  width: 1.24rem;
}
/*页面滚动条*/
::-webkit-scrollbar {
  width: 6px; /* 滚动条宽度 */
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #a8a8a8; /* 滚动条颜色 */
  border-radius: 10px; /* 圆角 */
}

::-webkit-scrollbar-thumb:hover {
  background: #515151; /* 悬停时的颜色 */
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* 滚动条轨道颜色 */
  border-radius: 10px; /* 圆角 */
}
/*分页样式*/
._page_container{
  margin: 0.2rem auto 0 !important;
}
@media (max-width: 768px) {
    html,body{
      width: 100%;
      height: 100%;
      min-width: unset;
    }
  .topNav .logo .search{
    display: none;
  }
  .topNav .logo{
    justify-content: center;
  }
  .footerInfo{
    padding: 0 0.2rem;
    height: 2rem;
  }
  .footerInfo-left img{
    width: 100%;
  }

  ._page_container {
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, SimSun, sans-serif;
    font-size: 0.13rem;
    height: 0.28rem;
    line-height: 0.28rem;
    text-align: center;
    margin: 1rem auto;
    user-select: none;
  }
  ._page_container ._prev, ._page_container ._next, ._page_container ._home, ._page_container ._last {
    min-width: 0.3rem;
    font-size: 0.13rem;
    margin: 0 5px;
    border-radius: 2px;
    cursor: pointer;
  }
  ._page_container ._pages li {
    display: inline-block;
    color: #303133;
    font-weight: bold;
    min-width: 0.25rem;
    text-align: center;
    margin: 0 5px;
    padding: 0 5px;
    border-radius: 2px;
    cursor: pointer;
  }
}