.content {
  width: 1400px;
  margin: 0 auto;
  margin-top: 60px;
}

.content .department {
  width: 100%;
  margin-bottom: 80px;
  margin-top: 60px;
}

.content .department .top {
  width: 100%;
  display: flex;
  align-items: center;
}

.content .department .top .left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.content .department .top .left .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.content .department .top .left .icon img {
  width: 100%;
}

.content .department .top .left .name {
  flex-shrink: 0;
  font-size: 22px;
  line-height: 22px;
  color: #333333;
}

.content .department .top .right {
  width: 100%;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.content .department .top .right .line {
  width: 100%;
  height: 1px;
  display: none;
}

.content .department .top .right .icon {
  width: 44px;
  height: 16px;
  margin-left: 6px;
  flex-shrink: 0;
}

.content .department .top .right .icon img {
  width: 100%;
}

.content .department .list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.content .department .list .item {
  height: 86px;
  background-color: #f0f0f0;
  border: dashed 1px #d7d7d7;
  display: flex;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
}

.content .department .list .item span {
  font-size: 18px;
  line-height: 22px;
  color: #666666;
  position: relative;
  transition: 0.5s;
}

.content .department .list .item span::after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #7D3F30;
  border-radius: 50%;
  position: absolute;
  left: -14px;
  top: 10px;
  transition: 0.5s;
}

.content .department .list .item a {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.content .department .list .item:hover {
  background-color: #7D3F30;
  border: dashed 1px #7D3F30;
}

.content .department .list .item:hover span {
  color: #fff;
}

.content .department .list .item:hover span::after {
  background-color: #fff;
}

@media screen and (max-width: 1560px) {
  .content {
    width: 90%;
    margin: 0 auto;
    margin-top: 60px;
  }
}

@media screen and (max-width: 1280px) {
  .content .department .list {
    grid-template-columns: repeat(4, 1fr);
  }
  .content .department .list .item {
    height: 86px;
    background-color: #f0f0f0;
    border: dashed 1px #d7d7d7;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }
}

@media screen and (max-width: 980px) {
  .content .department .list {
    grid-template-columns: repeat(3, 1fr);
  }
  .content .department .list .item {
    height: 86px;
    background-color: #f0f0f0;
    border: dashed 1px #d7d7d7;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }
}

@media screen and (max-width: 680px) {
  .content .department .list {
    grid-template-columns: repeat(2, 1fr);
  }
  .content .department .list .item {
    height: 86px;
    background-color: #f0f0f0;
    border: dashed 1px #d7d7d7;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.5s;
  }

  .content {
    width: 90%;
    margin: 0 auto;
    margin-top: 30px;
  }

  .content .department {
    width: 100%;
    margin-bottom: 30px;
    margin-top: 30px;
  }

}