body {
  background-color: #f5f5f5;
}

.all {
  max-width: 750px;
  margin: auto;
  padding: 0 0 60px;
}

.banner {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}
.banner img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner:hover img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}

.intro {
  padding: 5%;
  background: #fff;
}
.intro .tit {
  font-size: 16px;
}
.intro .des {
  font-size: 14px;
  color: #999;
  margin-top: 5px;
}
.intro .num {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.other {
  margin-top: 10px;
  padding: 5%;
  background: #fff;
}
.other .sort {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #999;
}
.other .sort div {
  margin-right: 20px;
}
.other .sort div:last-child {
  margin-right: 0;
}
.other .sort .act {
  color: #333;
}
.other .sort .act::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  margin-top: 5px;
}
.other .details {
  font-size: 14px;
}
.other .con {
  margin-top: 20px;
}
.other .con > div {
  display: none;
}
.other .con > div:first-child {
  display: block;
}
.other .flx {
  margin-top: 5px;
  font-size: 12px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  color: #999;
}
.other .flx span {
  margin-right: 10px;
}
.other .flx span:last-child {
  margin-right: 0;
}
.other .img {
  position: relative;
  height: 0;
  padding-bottom: 56%;
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}
.other .img img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.other .img:hover img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.other .img-l {
  position: relative;
  width: 30%;
  height: 80px;
  /*padding-bottom: 56%;*/
  overflow: hidden;
  display: block;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}
.other .img-l img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.other .img-l:hover img {
  -webkit-transform: scale(1.05);
     -moz-transform: scale(1.05);
      -ms-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
}
.other .tit {
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 15px;
}
.other .tit a {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.other .tit a:hover {
  color: var(--main-color);
}
.other .item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
.other .item:first-child {
  padding-top: 0;
}
.other .item:last-child {
  border-bottom: none;
}
.other .empty {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.other .empty img {
  width: 160px;
}