body,
html {
    background: var(--bg);
}

#main {
    margin-top: 1px;
}

.content {
    padding   : 0.2rem 0.5rem;
    background: #FFF;

}

.text-img {
    width   : 280px;
    position: absolute;
    top     : 0px;
    left    : 0px;
}

.text-img img {
    padding-top: 5px;
    width      : 100%;
}

.category {
    position: relative;
}

.category .tab {

    background-position: 0px 38px;
    background-repeat  : no-repeat;
    padding-left       : 320px;
}

.category .tab a {
    display      : inline-block;
    padding      : 8px 25px 6px 25px;
    margin-right : 20px;
    border       : 1px solid #efefef;
    font-size    : 16px;
    color        : #666;
    border-radius: 25px;
    cursor       : pointer;
}

.category .tab a.active,
.category .tab a:active {
    color           : #FFF;
    background-image: url(../icon/btn-bg.png);
    background-size : 100% 100%;
}

/* 行业 */
.industry {
    padding-top     : 0.3rem;
    /* margin-bottom: 0.3rem; */
    /* border-bottom   : 1px solid #f5f5f5; */
}

.industry .tab {
    border-bottom: 1px solid #f5f5f5;
    margin-right : 0.5rem;
}

.industry .tab li {
    padding    : 0.12rem 0.2rem;
    font-family: SourceHanSansCN-Normal, SourceHanSansCN;
    font-weight: 400;
    color      : #2F2F2F;
    display    : inline-block;
    position   : relative;
    cursor     : pointer;
}

.industry .tab li:hover {
    color: var(--theme);
}

.industry .tab li.active {
    color: var(--theme);
}

.industry .tab li.active::before {
    background: var(--theme);
    content   : '';
    position  : absolute;
    bottom    : -0.02rem;
    left      : 0px;
    right     : 0px;
    margin    : auto;
    width     : 0.15rem;
    height    : 3px;
}


.list {
    min-height      : calc(100vh - var(--nav-height) - var(--footer-height));
}

.live {
    background   : var(--bg);
    border-radius: 10px;
    overflow     : hidden;
    margin-bottom: 25px;
}

.live .live-cover {
    height: 225px;

}

.live .live-cover img {
    width     : 100%;
    height    : 100%;
    display   : block;
    object-fit: cover;
}

.live .live-cover {}

.live-info {
    padding: 0.1rem 0.15rem;
}

.live-info .name {
    font-size  : 0.16rem;
    font-weight: bold;
    color      : #000;
}

.live:hover .name {
    color: var(--theme);
}

.live-info .desc {
    font-size: 0.14rem;
    color    : #666;
}

.loading {
    padding   : 10px;
    text-align: center;
}

.loadingAnimation {
    animation: rotate 1s linear infinite;
    display  : inline-block;
}



.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;
}




@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);
    }
}