.banner {
  position: relative;
}

.banner-head {
  overflow: hidden;
}

.banner-ul {
  display: flex;
  width: 400%;
  position: relative;
  left: 0;
  transition-duration: .3s;
}

.banner-img {
  max-width: 100%;
  height: auto;
}

.banner-body {
  position: absolute;
  left: 0;
  bottom: 1rem;
  width: 100%;
  text-align: center;
}

.banner-btn {
  padding: 0;
  margin-left: .5rem;
  margin-right: .5rem;
  width: .7rem;
  height: .7rem;
  text-indent: -9999px;
  background-color: #fff;
  border: 0;
  border-radius: 50%;
}

.banner-btn:hover {
  cursor: pointer;
  background-color: orange;
}

.banner-btn-active {
  background-color: orange;
}

/* category ------------------------- */

.category {
  position: relative;
  display: flex;
  border: solid 1px #f2e4e2;
  background-image: linear-gradient(#fff, #d4b9b5);
}

.category-head {
  padding: 1rem;
  position: absolute;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.category-body {
  width: 100%;
}

.category-imgs {
  text-align: right;
}

.category-img {
  max-width: 100%;
  height: auto;
}

.category-cht {
  color: #bf7629;
  font-size: 1.5rem;
}

.category-en {
  margin-top: 5px;
  display: block;
  color: #bc938d;
  font-size: 1.3rem;
  text-transform: capitalize;
}

.category-btn {
  display: inline-block;
  padding: .5em;
  text-decoration: none;
  color: #fff;
  background-color: #ff8f00;
  border-radius: 3px;
}

.category-btn:hover {
  opacity: .7;
}

/* News ------------------------- */

.news-ul {
  padding-left: 1.1rem;
  list-style-type: square;
  color: #ccc;
}

.news-li {
  line-height: 1.5;
}

.news-li + li {
  margin-top: 1rem;
}

.news-link {
  color: #cd8c96;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

/* Hot --------------------- */

.hot-body {
  margin-top: 1rem;
}

@media screen and (max-width: 480px) {
}