/**
 *  网站栏目页面样式
 *  by wang 201711
 */
@import "layout-anime.css?ver=20210425";
.season-title{
  text-align: center;
  padding-top: 1rem;
  position: relative;
}
.season-title h2{
  display: inline-block;
  font-size: 2.5rem;
  cursor: default;
}
.season-title h2:hover .year-box{
    display:block;
    transform-origin: 100% 0%;
    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;
}
.season-title > a{
  display: inline-block;
  width: 3rem;
  height: 3.3rem;
  line-height: 3.3rem;
  margin: 0 8px;
  font-size: 2.2rem;
  font-weight: bold;
  font-family: "黑体";
}
.year-box{
  display: none;
  text-align: left;
  background-color: #1E2021;
  padding: 1.5rem;
  border-radius: .5rem;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 1.3rem;
  line-height: 1.4;
  width:17rem;
  margin-top:1rem;
  position:absolute;
  z-index: 10;
  left:calc(50% - 9.9rem);
}
.year-box li{
  float: left;
  margin: .8rem 1rem;
}
.year-box a{
  color: #ccc;
}
.year-box a:hover{
  color: #fff;
}
.year-box:before{
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:.6rem solid transparent;
    border-bottom-color:#1E2021;
    left: 9.5rem;
    top:-1.2rem;
}
.year-box:after{
    width:100%;
    height:50px;
    content:'';
    position: absolute;
    top:-50px;
    left:0;
}
.module-title{
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.module-title h3{
  display: inline;
  font-weight: normal;
  font-size: 2rem;
  border-left: .5rem solid var(--main-color);
  padding-left: 1rem;
}
.info{
    width:100%;
    height:20rem;
    font-size: 1.5rem;
    text-align:center;
    color:#ccc;
    padding:10rem 0;
    cursor:default;
}
.more{
  font-size:1.5rem;
  text-align:center;
  color:#888;
  cursor:pointer;
  padding-top:.5rem;
  padding-bottom:1rem;
}
.more:hover{
  color:#555;
}
.more.disable:hover{
  color:#888;
  cursor:default;
}
.page-box{
    display:none;
}
