.banner {
  height: 450px;
  background-image: url('../images/home/banner-bg.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#carousel {
  width: 100%;
  height: 100%;
  position: relative;
}
#carousel > .carousel-item {
  display: hidden;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}
.arrow-box {
  position: absolute;
  height: 100%;
  top: 0;
  width: 30px;
  cursor: pointer;
  z-index: 100;
}
.arrow-box > img {
  position: absolute;
  width: 14px;
  height: 25px;
  top: 50%;
  margin-top: -12.5px;
}
.arrow-left {
  left: 0;
}
.arrow-left > img {
  left: 50%;
  margin-left: -7px;
}
.arrow-right {
  right: 0;
}
.arrow-right > img {
  right: 50%;
  margin-right: -7px;
}

.content {
  background: #f5f5f5;
  /* height: 500px; */
}
.content h2 {
  color: #222222;
  font-size: 22px;
  padding-top: 40px;
  margin-top: 0;
  margin-bottom: 20px;
}
.content .comics-list {
  width: 100%;
  height: 528px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.content .comics-list > li {
  width: 386px;
  height: 240px;
  float: left;
  background-color: #fff;
  margin-right: 21px;
  padding: 10px;
  box-sizing: border-box;
}
.content .comics-list > li:last-child {
  margin-right: 0;
}
.comics-cover {
  width: 160px;
  height: 100%;
  border-radius: 4px;
  margin-right: 14px;
  float: left;
  object-fit: cover;
}
.comics-content {
  width: 192px;
  float: left;
}
.comics-content > h3 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 11px;
  margin-top: 10px;
}
.comics-content > p {
  color: #666666;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 62px;
}
.comics-content > button {
  width: 86px;
  height: 34px;
  background: #fff6f0;
  border: 1px solid #ff8622;
  border-radius: 3px;

  font-size: 14px;
  color: #ff8622;
  line-height: 34px;
  padding: 0;
}
.comics-content > button:hover {
  background: #ff8622;
}
.comics-content > button:hover > a {
  color: #fff;
}
.comics-content > button > a {
  display: block;
  width: 100%;
  height: 32px;
  font-size: 14px;
  line-height: 32px;
  color: #ff8622;
}
