/* 广告状态为unfilled则隐藏 */
ins.adsbygoogle[data-ad-status="unfilled"] {
  display: none !important;
}

body {
    background-color: #fff;
}
@media only screen and (max-width: 575.98px) {
    body {
        padding: 10px 20px;
    }
}
@media only screen and (min-width: 575.98px) {
    body {
        padding: 10px 10%;
    }
}

/* @media (max-width: 575.98px) {
    body {
        padding: 10px 20px;
    }
}
@media (max-width: 767.98px) {
    body {
        padding: 10px 10%;
    }
}
@media (max-width: 991.98px) {
    body {
        padding: 10px 100px;
    }
}
@media (max-width: 1199.98px) {
    body {
        padding: 10px 300px;
    }
}
@media (max-width: 1399.98px) {
    body {
        padding: 10px 20%;
    }
}
@media (max-width: 1599.98px) {
    body {
        padding: 10px 30%;
    }
}
@media (min-width: 1599.98px) {
    body {
        padding: 10px 40%;
    }
} */

.wrapper{
    width: 100%;
    height: auto;
    position: relative;
}

.header{
    background-color: #030139;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
}
.header > .title{
    color: #fff;
    position: relative;
    display: inline-block;
}

a{
    text-decoration: none;
}
.carousel-item{
    min-height: 230px;
}

.content .title{
    width: 100%;
    height: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: .96rem;
    background-color: #fff;
    color: #7e848c;
    text-indent: .2rem;
    box-sizing: border-box;
    overflow: hidden;
    margin: 10px 0;
}
.card-img img{
    width: 100%;
    height: 100%;
}
.card-name{
    font-size: 14px;
    color: rgba(71, 74, 79, .87);
}

#list .title{
    color:#474a4f;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.list-item .desc{
    color:#7e848c;

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: unset;
    font-size: 14px;
}

@keyframes dynamicAnimation {from { background-color: #1d1d19; -webkit-box-shadow: 0 0 9px #333; }
   				50% { background-color: #424241; -webkit-box-shadow: 0 0 18px #11110e; }
   				to { background-color: #0c0c0c; -webkit-box-shadow: 0 0 9px #3a3a34; }}

                   /* @keyframes dynamicAnimation {
                    from { background-color: red; }
                    to { background-color: blue; }
                  } */
.play-btn{
    animation: dynamicAnimation 3s infinite  steps(10);
}

.footer{
    margin-top: 0.3rem;
    background: #666;
    color: #fff;
    padding: 0.533333rem 0;
    text-align: center;

    position: relative;
    bottom: 0;
    left: 0;
}