@import url(../../../public/css/rem.css);
* {
  padding: 0;
  margin: 0;
}
body {
  overflow-x: hidden;
}
/* 消息容器 */
.message-wrap {
  position: absolute;
  top: 0;
  left: 0;
  /* animation: moves 0.5s ease infinite; */
  z-index: 9999;
  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%);
  }
}
#app {
  position: relative;
  width: 100vw;
}
#app .header {
  width: 100vw;
  height: 87px;
  vertical-align: bottom;
}
#app .footer {
  width: 100vw;
  height: 399px;
  vertical-align: bottom;
}
.wrap {
  margin: 0 auto 0;
  width: 930px;
  height: 100%;
}
.wrap .crumbs-wrap {
  width: 100%;
  height: 102px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  align-items: center;
  justify-content: start;
}
.wrap .crumbs-wrap a {
  position: relative;
  margin-right: 30px;
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  color: #000;
}
.wrap .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);
}
.wrap .crumbs-wrap span {
  font-size: 18px;
  color: #868686;
  line-height: 25px;
}
.wrap .top-wrap {
  width: 100%;
  height: 164px;
  padding-top: 36px;
}
.wrap .top-wrap .top {
  box-sizing: border-box;
  margin-left: 150px;
  width: 630px;
  min-height: 203px;
  max-height: 300px;
}
.wrap .top-wrap .top .date-wrap {
  max-width: 100%;
  height: 25px;
  display: flex;
}
.wrap .top-wrap .top .date-wrap span {
  max-width: 511px;
  font-size: 18px;
  line-height: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrap .top-wrap .top .date-wrap .date {
  min-width: 90px;
  /* margin-left: 28px; */
}
.wrap .top-wrap .top h1 {
  padding-top: 6px;
  width: 627px;
  height: 90px;
  font-size: 32px;
  font-weight: 500;
  line-height: 45px;
}
.wrap .top-wrap img {
  width: 100%;
  height: 516px;
}
.wrap .content {
  margin: -5px auto 0;
  width: 630px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.wrap .content p {
  margin: 0;
}
.wrap .content img {
  width: 140%;
  margin-left: -20%;
}
.wrap .latest-news-wrap {
  border-top: 1px solid #d8d8d8;
  padding-top: 40px;
  margin: 40px auto 114px;
  height: 451px;
  width: 630px;
}
.wrap .latest-news-wrap .latest-news {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}
.wrap .latest-news-wrap .latest-news-item {
  box-sizing: border-box;
  padding: 32px 0;
  width: 100%;
  height: 155px;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
  text-decoration: none;
  color: #000;
}
.wrap .latest-news-wrap .content-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 90px;
}
.wrap .latest-news-wrap .content-wrap p {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 44px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wrap .latest-news-wrap .content-wrap span {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 20px;
  font-size: 14px;
  line-height: 20px;
}
.wrap .latest-news-item:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}
.bottom {
  height: 399px;
  width: 100vw;
}
