/* 全局样式 */
html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
#app{
  position: relative;
 }
 
.mask {
  position: fixed;
  top: 44px; /* 设置为 header 的高度 */
  left: 0;
  width: 100%;
  height: calc(100% - 44px); /* 减去 header 的高度 */
  background-color: #ccc;
  opacity: 0.7;
}

header{
  width: 100%;
  height: 44px;
  background-color: #fff;
  padding: 15px 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  position: sticky;
  top:0;
  z-index:999;
}


/* 导航栏样式 */
.navbar {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
}

.logo img {
  height: 30px;
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  text-align: center;
}

.nav-links li a:hover {
  color: #333;
}

.search img{
  width: 16px;
}

.search-input {
  display: none;
}
.search-input input{
  width: 440px;
  outline: none;
  border: 0px;
}


/* 内容区域 */
.mainBox{
  width: 100%;
  height: auto;
  min-height: calc(100vh - 44px);
  /* background-color: pink; */
  background-color: #f5f5f7;
  overflow: auto;
}
.cont{
  margin: auto;
  width: 60%;
  padding: 10px;
  box-sizing: border-box;
}

.contTitle{
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  padding: 100px 0px;
  box-sizing: border-box;
  font-family: PingFangSC-Regular, sans-serif;
}

.threeBox{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.every{
  width: 31%;
  height: 360px;
  border-radius: 10px;
  background-color: #fff;
}
.every:hover{
  box-shadow: 2px 2px 6px 2px rgba(23, 22, 22, 0.2);
}

.top{
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 10px 0px 0px 10px;
  box-sizing: border-box;
  font-size: 20px;
}
.top1{
  background-image: url(../image/open/data.png);
  background-size: 101% 100%;
}
.top2{
  background-image: url(../image/open/mob.png);
}
.top3{
  background-image: url(../image/open/function.png);
}

.every .bottom{
  width: 100%;
  height: 180px;
  padding: 10px;
  box-sizing: border-box;
}

.bottom .text{
  width: 100%;
  height: 100px;
  color: #6E6E73;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:5;
}
.bottom .btn{
  width: 100%;
  height: auto;
  margin-top: 10px;
}
.btn span{
  display: inline-block;
  font-size: 12px;
  background-color: #6E6E73;
  color: #fff;
  padding: 4px 8px;
  border-radius: 2px;
}
.btn span:hover{
  cursor: pointer;
}
