html,
body,
ul,
li,
p,
span {
  margin: 0;
  padding: 0;
}

:root {
  overflow-y: auto;
  overflow-x: hidden;
}

:root body {
  position: absolute;
}

#root {
  background: #fff;
  margin: 0;
  padding: 0;
}

.detail-container {
  width: 100vw;
  box-sizing: border-box;
  max-width: 1920px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.header-bar {
  height: 90px;
  width: 100%;
  position: relative;
}

.header-bar .logo {
  height: 64px;
  width: 208px;
  position: absolute;
  left: 200px;
  top: 13px;
}

.header-bar .header-menu {
  display: flex;
  list-style: none;
  position: absolute;
  top: 0;
  right: 200px;
}

.header-bar .header-menu li {
  width: 110px;
  height: 90px;
  text-align: center;
  line-height: 90px;
  cursor: pointer;
  position: relative;
}

.header-bar .header-menu li a {
  text-decoration: none;
  color: #000;
}

.header-bar .header-menu li a:hover {
  color: #fff;
}

.header-bar .header-menu li .menu-items {
  position: absolute;
  background: #b09671;
  top: 80px;
  left: 0;
  width: 110px;
  z-index: 20;
  color: #fff;
  display: none;
}

.header-bar .header-menu li .menu-items .menu-item {
  width: 100%;
  height: 40px;
  background: #b09671;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
  float: left;
  color: #fff;
}

.header-bar .header-menu li:hover{
  background: #b09671;
  color: #fff;
}

.header-bar .header-menu li:hover a {
  color: #fff;
}

.header-bar .header-menu li:hover .menu-items {
  display: block;
}

.footer {
  width: 100%;
  height: 200px;
  background-color: #b09671;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  line-height: 30px;
  margin-top: 45px;
}

.detail-container .banner {
  width: 100%;
  height: 255px;
  background-image: url(../images/detail-banner.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.detail-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #cac8c8;
  align-items: center;
  min-height: 320px;
}

.detail-content .detail-path {
  width: 1300px;
  margin-top: 30px;
  font-size: 14px;
  font-weight: bold;
  color: #949494;
}

.detail-content .detail-title {
  width: 1300px;
  height: 120px;
  line-height: 120px;
  border-bottom: 1px solid #cac8c8;
  font-size: 36px;
  color: #4a4a4a;
  font-weight: bold;
}



.detail-content .detail-date {
    width: 1300px;
    height: 86px;
    line-height: 86px;
    border-bottom: 1px solid #cac8c8;
    color: #838383;
    font-size: 18px;
}

.detail-content .detail-date span {
    padding-left: 10px;
    color: #b09671;
}

.article-content {
    width: 1300px;
    margin-top: 36px;
    /* display: flex; */
    justify-content: space-between;
}

.article-content .article-left {
    width: 890px;
    padding-right: 20px;
    border-right: 1px solid #d6d6d6;
}

.article-content .article-right {
    width: 328px;
    border-top: 2px solid #b09671;
}

.article-content .article-right .right-title {
    color: #b09671;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
    margin-top: 10px;
}

.article-content .article-right .right-item {
    margin-top: 20px;
    display: flex;
}

.article-content .article-right .right-item img {
    width: 105px;
    height: 85px;
}

.article-content .article-right .right-item .item-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding-left: 10px;
}

.article-content .article-right .right-item .item-right .title {
    font-size: 14px;
    color: #303030;
    text-decoration: none;
}

.article-content .article-right .right-item .item-right .date {
    font-size: 12px;
    color: #838383;
}



.news-center {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: -50px;
}

.news-center .news-content {
  width: 1300px;
  height: 328px;
  position: relative;
}

.news-center .news-content .news-title {
  font-size: 80px;
  color: #8f8f8f;
  font-weight: bold;
  opacity: 0.2;
  line-height: 100px;
  position: absolute;
  left: 0;
  top: 60px;
}

.news-center .news-content .news-txt {
  font-size: 60px;
  font-weight: bold;
  color: #1c1c1c;
  position: absolute;
  left: 20px;
  top: 140px;
}