body {
  margin: 0;
  background: rgba(250, 250, 250, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

body a {
  text-decoration: none;
}

.news-detail-title-container {
  display: flex;
}

.news-detail-title-home {
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(127, 127, 127, 1);
}

.news-detail-title-cur-nav {
  margin-left: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(25, 25, 25, 1);
}

.news-detail-banner-container {
  width: 100%;
  height: 240px;
  position: relative;
}

.news-detail-banner {
  width: 100%;
  height: 100%;
}

.news-detail-container {
  margin-top: -46px;
  z-index: 1;
  width: 1200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.news-detail-title-wrapper {
  width: 100%;
  height: 80px;
  border-radius: 8px 8px 0px 0px;
  background: rgba(255, 255, 255, 1);
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  box-sizing: border-box;
}

.news-detail-content-wapper {
  width: 100%;
  border-radius: 0px 0px 8px 8px;
  min-height: 500px;
  background: rgba(255, 255, 255, 1);
  border: 1px solid rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 40px;
  box-sizing: border-box;
}

.news-detail-back-container {
  display: flex;
  align-items: center;
}

.news-detail-back-container span {
  margin-left: 4px;

  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(48, 102, 239, 1);
}

.news-detail-content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 60px;
  box-sizing: border-box;
}

.news-detail-content-title-container {
  width: 100%;
  height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.news-detail-content-title {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;

  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: rgba(25, 25, 25, 1);
}

.news-detail-content-info {
  margin-top: 16px;

  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(115, 132, 148, 1);
}

.news-detail-divider {
  width: calc(100% - 2px);
  margin: 16px 0 20px 0;
  border: 1px dashed rgba(217, 217, 217, 1);
}

.news-detail-content {
  width: 100%;
  overflow: hidden;
}

.news-detail-content img {
  width: 100%;
}

.news-detail-content.empty {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .news-detail-banner-container {
    display: none;
  }

  .news-detail-container {
    margin-top: 0;
    width: 100%;
    height: auto;
  }

  .news-detail-title-wrapper {
    height: 46px;
    padding: 12px;
  }

  .news-detail-title-cur-nav {
    font-size: 14px;
    line-height: 22px;
  }

  .news-detail-title-home {
    font-size: 14px;
    line-height: 22px;
  }

  .news-detail-back-container {
    display: none;
  }

  .news-detail-content-wapper {
    margin-top: 4px;
    padding: 16px;
  }

  .news-detail-content-container {
    padding: 0;
  }

  .news-detail-content-title-container {
    height: auto;
  }

  .news-detail-content-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .news-detail-content-info {
    margin-top: 8px;
    font-size: 12px;
    line-height: 20px;
  }

  .news-detail-divider {
    margin: 8px 0 12px 0;
  }
}
