body,
html {
    background: var(--bg);
}

.news {
    background-color: #FFF;
    padding         : 0.5rem 0.8rem 10px;
    min-width       : 1200px;
    min-height      : calc(100vh - var(--nav-height) - var(--footer-height));
}

.tab {
    background   : #F7F7F7;
    border-radius: 5px;
}

.tab li {
    padding    : 0.12rem 0.2rem;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color      : #2F2F2F;
    display    : inline-block;
    position   : relative;
    cursor     : pointer;
    z-index    : 2;
    width      : 1rem;
    text-align : center;
}

.tab li .sub-item {
    width        : 1rem;
    background   : var(--bg);
    position     : absolute;
    top          : 100%;
    left         : 0px;
    z-index      : 2;
    border-radius: 0px 0px 3px 3px;
    display      : none;
}

.tab li .sub-item .item {
    padding      : 0.1rem;
    margin-bottom: 0px;
    text-align   : center;
    border-bottom: 1px solid #FFF;
}

.tab li .sub-item .item:last-child {
    border: none;
}

.sub-item .item:hover {
    color: var(--theme);
}

.tab li:hover,
.tab li:hover .sub-item {
    color  : var(--theme);
    display: inline-block;
}

.tab li.active {
    color: var(--theme);
}

.tab li.active::before {
    background: var(--theme);
    content   : '';
    position  : absolute;
    bottom    : 0.08rem;
    left      : 0px;
    right     : 0px;
    margin    : auto;
    width     : 0.15rem;
    height    : 3px;
}

.condition {
    padding-left: 2rem;
}


.date,
.search {
    padding      : 0.07rem;
    border-radius: 5px;
    margin-right : 50px;
}

.date,
.date .ivu-input,
.date .ivu-input:focus,
.date .ivu-date-picker-focused input:not([disabled]) {
    background: #F7F7F7;
    border    : none;
    box-shadow: none
}

.search,
.search .ivu-input,
.search .ivu-input:focus {
    margin-right: inherit;
    background  : #F7F7F7;
    border      : none;
    box-shadow  : none
}

.search-btn {
    background   : var(--theme);
    border-radius: 5px;
    padding      : 0.1rem 0.15rem;
    margin-left  : 30px;
    color        : #FFF;
    transition   : background 0.2s;
    margin-top   : 2px;
    cursor       : pointer;
    min-width        : 0.6rem;
}

.search-btn:active {
    background: #b42328;
}




.cover {
    width   : 100%;
    position: relative;
    overflow: hidden;
    cursor  : pointer;
    display : inline-block;
}

.cover img {
    width  : 100%;
    display: block;
    margin : auto;
}


.join {
    padding      : 0.07rem 0.2rem;
    font-size    : 0.16rem;
    font-family  : SourceHanSansCN-Regular, SourceHanSansCN;
    color        : var(--theme);
    border       : 1px solid var(--theme);
    transition   : all 0.3s;
    z-index      : 2;
    position     : relative;
    overflow     : hidden;
    border-radius: 5px;
}

.join {
    font-size : 0.16rem;
    background: var(--theme);
    color     : #FFF;
}

.join:hover {
    color: #FFF
}

.join span {
    font-size : 0.3rem;
    transform : translate(4px, 2px);
    display   : inline-block;
    transition: transform 0.2s;
}

.join:active {
    background: #b42328;
}


.join:hover span {
    transform: translate(10px, 2px);
}

.list {
    padding-top: 20px;
}

.list .item {
    position: relative;
    display : block;
}

.cover {
    width : 35%;
    float : left;
    height: 200px;
}

.cover img {
    width     : 100%;
    height    : 100%;
    display   : block;
    object-fit: cover;
}

.info {
    margin-left  : calc(35% + 1rem);
    height       : 200px;
    border-bottom: 1px solid #F7F7F7;
}

.list .desc {
    height  : 65px;
    overflow: hidden;
    color   : #666;
}

.item {
    margin-bottom: 20px;
    color        : #333;
}

.item .title {
    height            : 80px;
    font-family       : SourceHanSansCN-Bold, SourceHanSansCN;
    color             : #000;
    font-size         : 0.2rem;
    font-weight       : bold;
    overflow          : hidden;
    -webkit-line-clamp: 2;
    text-overflow     : ellipsis;
    display           : -webkit-box;
    -webkit-box-orient: vertical;
    margin-bottom     : 8px;
    padding-top       : 15px;
    transition        : all 0.3s;
}

.item .title span {
    color    : #000;
    font-size: 0.2rem;
}

.item .title .ivu-tag span {
    font-size: 0.13rem;
}

.item:hover .title span {
    color: var(--theme);
}

.item .time,
.item .position {
    margin-bottom: 10px;
}

.item .time img,
.item .position img {
    vertical-align: text-top;
    margin-right  : 10px;
}

.item .position {
    margin-bottom: 30px;
}

.time {
    position   : absolute;
    right      : 0px;
    top        : 6px;
    font-style : oblique;
    font-size  : 0.18rem;
    color      : #2F2F2F;
    font-family: "AVGARDN";
}

.time span {
    font-size     : 0.25rem;
    vertical-align: baseline;
    color         : var(--theme);
}

.label {
    padding-top : 10px;
    margin-right: 106px;
}

.label .ivu-tag {
    border : none;
    padding: 6px 10px 4px 10px;
    height : auto;
}

.loading {
    padding   : 10px;
    text-align: center;
}

.loadingAnimation {
    animation: rotate 1s linear infinite;
    display  : inline-block;
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    25% {
        -webkit-transform: rotate(90deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
    }

    75% {
        -webkit-transform: rotate(270deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}