article {
  position: relative;
  height: 40.625vw;
}

article .bg {
  display: block;
  width: 100%;
  height: 40.625vw;
  object-fit: cover;
}

article .box {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.appbox {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.content {
  display: flex;
  justify-content: space-between;
}

.content .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
}

.content .right:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.title {
  color: #FC4C02;
  font-size: 3.4375vw;
  font-family: SourceSansPro, Arial, sans-serif;
  margin-bottom: 2.08333vw;
}

#itemsbox {
  width: 19.79167vw;
}

#itemsbox .item {
  color: #ffffff;
  font-size: 1.14583vw;
  font-family: SourceSansPro, Arial, sans-serif;
  cursor: pointer;
  padding: 0 2.60417vw;
  height: 2.8125vw;
  border-radius: 0.3125vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.52083vw;
}
#itemsbox .item:after {
  content: ">";
  font-family: serif;
}

#itemsbox .item.active {
  pointer-events: none;
  font-weight: bold;
  background-color: #FC4C02;
}

#itemsbox .item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.spcimgbox {
  position: relative;
}

#spcimg {
  display: none;
  width: 39.0625vw;
  height: 33.85417vw;
  object-fit: cover;
}

.tips {
  font-family: SourceSansPro, Arial, sans-serif;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 1.14583vw;
  line-height: 3.125vw;
  pointer-events: none;
}