.header {
  height: 4rem;
  background-color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 60px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn {
  background-color: #409eff;
  color: #fff;
  border: none;
  height: 2rem;
  border-radius: 5px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.head_logo {
  height: 40px;
  vertical-align: middle;
}
.btn:hover {
  background-color: #83c0ff;
}
.btnContent {
  position: relative;
  .ewmImg {
    width: 250px;
    height: 280px;
    position: absolute;
    right: 0;
    top: 70px;
    display: none;
    z-index: 99;
  }
}

.content {
  box-sizing: border-box;
  /* width: calc(100% - 40px); */
  min-height: calc(100% - 80px);
  padding: 20px;
  background-color: #dcdfe6;
  color: black;
  .btnContentsj {
    display: none;
  }
}
.content-t {
  display: flex;
  justify-content: space-between;
}

.content-title {
  font-weight: 600;
  padding-left: 12px;
  height: 22px;
  line-height: 22px;
  border-left: 5px solid #2482fc;
}

.list {
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.item {
  /* float: left; */
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px 20px 0;
  height: 180px;
  width: 180px;
  padding: 2px 30px;
  background: #fff;
  text-align: center;
  color: black;
  border-radius: 1rem;
}
.item:hover {
  background-color: #f2f6fc;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item img {
  vertical-align: bottom;
  margin-top: 10px;
  width: 80px;
  height: 80px;
}

.item .item_title {
  margin-top: 10px;
}

.item_title .short_name {
  display: block;
  font-weight: bold;
  font-size: 120%;
}

.item_title .name {
  display: block;
}
.sjewmContent {
  display: none;
}
/* 手机自适应 */
@media (max-width: 767px) {
  .header {
    font-size: 14px;
  }
  .btn {
    height: 24px !important;
    font-size: 12px !important;
  }
  .item {
    width: 100%;
    margin-right: 0;
  }
  .btnContent {
    display: none;
  }
  .btnContentsj {
    display: block !important;
    position: relative !important;
  }
  .sjewmContent {
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    .ewmImgsj {
      width: 220px;
      height: 250px;
      display: block !important;
      margin-left: auto;
      margin-right: auto;
      margin-top: 50%;
    }
  }
}
