#index-news {
  padding: 10px 30px;
  background: #241916;
  letter-spacing: 2px;
}

#index-news .news-block {
  max-width: 1140px;
  margin: auto;
  height: 40px;
  padding: 3px 0;
  color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#index-news .news-content {
  display: flex;
  align-items: center;
  border-left: 1px solid #ffffff;
  padding: 5px 0;
}

#index-news .new-tag,
#index-news .news-text {
  padding-left: 20px;
  flex-shrink: 0;
}

#index-news .news-more {
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  display: flex;
  align-items: center;
  transition: all 0.6s;
}

#index-news a {
  color: #ffffff;
  text-decoration: none;
}

#index-news .news-more {
  padding: 5px 20px;
}

#index-news .news-more::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: 10px;
  transition: all 0.6s;
}

#index-news a:hover .news-more {
  background-color: #8d7022;
  border-left: 1px solid #8d7022;
  border-right: 1px solid #8d7022;
}

#index-news a:hover .news-more::before {
  transform: translate(5px, 0);
}

#index-news .flexible-line {
  background: #3a3a3a;
  height: 1px;
  flex-grow: 1;
  margin: 0 20px;
}

@media (max-width: 575px) {
  #index-news {
    padding: 5px 15px;
    font-size: 14px;
  }

  #index-news .new-tag,
  #index-news .news-text {
    padding-left: 10px;
  }

  #index-news .news-more {
    display: none;
  }

  #index-news .flexible-line {
    margin: 0 10px;
  }
}





#highlight-items {
  display: flex;
  flex-direction: row;
}

#highlight-items .hot-item {
  width: 50%;
  padding-bottom: 43%;
  overflow: hidden;
  position: relative;
}

#highlight-items .hot-item:hover .highlight-item {
  transform: scale(1.1);
}

#highlight-items .highlight-background {
  position: absolute;
}

#highlight-items .highlight-background img {
  width: 100%;
  height: auto;
}

#highlight-items .highlight-item,
#highlight-items .highlight-text,
#highlight-items .highlight-deco-1,
#highlight-items .highlight-deco-2 {
  position: absolute;
}

#highlight-items .hot-item .highlight-item {
  width: 100%;
  height: auto;
  transition: all 0.6s;
}

#highlight-items .hot-item .highlight-item img {
  width: 100%;
  height: auto;
}

#highlight-items .hot-item .highlight-text {
  width: 64%;
  height: auto;
  margin: 4% -32%;
  left: 50%;
}

#highlight-items .hot-item .highlight-text img {
  width: 100%;
  height: auto;
}

#highlight-items #hot-item-1 .highlight-deco-1 {
  width: 13%;
  height: auto;
  top: 10%;
  left: 75%;
}

#highlight-items #hot-item-1 .highlight-deco-1 img {
  width: 100%;
  height: auto;
}

#highlight-items #hot-item-1 .highlight-deco-2 {
  width: 13%;
  height: auto;
  top: 37%;
  left: 13%;
}

#highlight-items #hot-item-1 .highlight-deco-2 img {
  width: 100%;
  height: auto;
}

#highlight-items #hot-item-2 .highlight-deco-1 {
  width: 13%;
  height: auto;
  top: 10%;
  left: 75%;
}

#highlight-items #hot-item-2 .highlight-deco-1 img {
  width: 100%;
  height: auto;
}

#highlight-items #hot-item-2 .highlight-deco-2 {
  width: 15%;
  height: auto;
  top: 40%;
  left: 10%;
}

#highlight-items #hot-item-2 .highlight-deco-2 img {
  width: 100%;
  height: auto;
}

#highlight-items .highlight-text {
  transition: all 0.6s;
  translate: 0 30px;
  opacity: 0;
}
#highlight-items .highlight-text.is-inview {
  transition: all 0.6s;
  translate: 0 0;
  opacity: 1;
}

#highlight-items .highlight-deco-1 {
  transition: all 0.6s;
  translate: 60px 0;
  opacity: 0;
}
#highlight-items .highlight-deco-2 {
  transition: all 0.6s;
  translate: -60px 0;
  opacity: 0;
}
#highlight-items .highlight-deco-1.is-inview,
#highlight-items .highlight-deco-2.is-inview {
  translate: 0 0px;
  opacity: 1;
}

/* #highlight-items .highlight-item {
  transition: all 0.6s;
  opacity: 0;
}
#highlight-items .highlight-item.is-inview {
  opacity: 1;
} */



@media (max-width: 575px) {
  #highlight-items {
    display: flex;
    flex-direction: column;
  }
  
  #highlight-items .hot-item {
    width: 100%;
    padding-bottom: 86%;
  }
}