@import url(../../../public/css/rem.css);
* {
  padding: 0;
  margin: 0;
}
/* 消息容器 */
.message-wrap {
  position: absolute;
  top: 90px;
  left: 0;
  /* animation: moves 0.5s ease infinite; */
  z-index: 10;
  width: 100%;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
/* 小喇叭 */
.message-wrap .horn {
  width: 24px;
  height: 24px;
}
/* 中间部分 */
.message-wrap .animate_set {
  position: relative;
  /* transform: translateX(-100%); */
  width: 75%;
  text-align: center;
  display: flex;
  align-items: center;
  padding-left: 24px;
  overflow: hidden;
}
/* 关闭消息按钮 */
.message-wrap .close-button {
  width: 24px;
  height: 24px;
  cursor: pointer;
}
/* 消息文字 */
.message-wrap .message {
  transform: translateX(1600px);
  max-width: fit-content;
  margin-left: 12px;
  color: #ccc;
  font-size: 16px;
  white-space: nowrap;
  text-overflow: ellipsis;
  animation: example 15s linear infinite;
}
@keyframes example {
  0% {
    transform: translateX(1600px);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes moves {
  0% {
    background-color: #fff;
  }
  10% {
    background-color: pink;
  }
  30% {
    background-color: green;
  }
  40% {
    background-color: #000;
  }
  350% {
    background-color: red;
  }
  60% {
    background-color: yellow;
  }
  70% {
    background-color: skyblue;
  }
  80% {
    background-color: sienna;
  }
  90% {
    background-color: slateblue;
  }
  100% {
    background-color: purple;
  }
}
#app {
  width: 100vw;
}
#app .header {
  width: 100vw;
  height: 87px;
  vertical-align: top;
}
#app .footer {
  margin-top: 74px;
  width: 100vw;
  height: 399px;
  vertical-align: top;
}
.crumbs-wrap {
  width: 100%;
  height: 102px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: start;
}
.crumbs-wrap a {
  position: relative;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  color: #000;
}
.crumbs-wrap a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -13px;
  width: 8px;
  height: 8px;
  border: 1px solid #868686;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: translateY(-40%) rotate(45deg);
}
.crumbs-wrap span {
  font-size: 18px;
  color: #868686;
  line-height: 25px;
}
.wrap {
  width: 942px;
  margin: 0 auto 0;
}
.announcement-wrap {
  width: 100%;
  margin-top: 32px;
}
.announcement-wrap .announcement-item {
  margin-bottom: 24px;
  box-sizing: border-box;
  padding: 36px;
  width: 100%;
  height: 160px;
  background: #F5F6FA;
  border-radius: 6px;
  line-height: 18px;
  transition: all 0.3s;
  cursor: pointer;
}
.announcement-wrap .announcement-item .content {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  color: inherit;
  line-height: 25px;
}
.announcement-wrap .announcement-item .bottom-wrap {
  margin-top: 24px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.announcement-wrap .announcement-item .bottom-wrap .date {
  color: inherit;
  font-size: 16px;
  line-height: 22px;
}
.announcement-wrap .announcement-item .bottom-wrap .more-wrap {
  width: 54px;
  display: flex;
  text-decoration: none;
  color: inherit;
}
.announcement-wrap .announcement-item .bottom-wrap .more-wrap .more {
  color: inherit;
  font-size: 14px;
  line-height: 20px;
}
.announcement-wrap .announcement-item .bottom-wrap .more-wrap .more-active-icon {
  display: none;
}
.announcement-wrap .announcement-item .bottom-wrap .more-wrap img {
  transform: translateY(2px);
  width: 16px;
  height: 16px;
}
.announcement-wrap .announcement-item:hover {
  background: #4D66FF;
  color: #fff;
}
.announcement-wrap .announcement-item:hover .bottom-wrap .more-wrap .more-active-icon {
  display: block;
}
.announcement-wrap .announcement-item:hover .bottom-wrap .more-wrap .more-icon {
  display: none;
}
