body {
    background-color: #fff;
}

* {
    box-sizing: border-box;
}

.banner {
    display: block;
    width: 100%;
}

.flex_cell {
    display: flex;
    min-width: 0;
}

.flex_cell_bd {
    flex: 1;
    min-width: 0;
}

.content {
    background-color: #fff;
    position: relative;
}

.tabbar {
    text-align: center;
    color: #4d4d4d;
    font-size: .22rem;
    padding: .2rem 0 .2rem;
}

.tabicon {
    display: block;
    width: .68rem;
    margin: 0 auto .1rem;
}

.panel {
    padding: 0.5rem .54rem 0.4rem;
}

.title {
    padding: .1rem .25rem;
    color: #fff;
    font-size: .27rem;
    border-radius: 50px;
    text-align: center;
    z-index: 2;
    background: linear-gradient(to right, #fe8a45, #d10e11);
    position: inherit;
    font-weight: 600;
}

.titlebar {
    position: relative;
    margin-bottom: .3rem;
}

.titlebar:before {
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #fe8a45, #d10e11);
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
}

.panel-items {
    font-size: 0;
    margin: 0 -.22rem;
    overflow: hidden;
}

.item-view {
    width: calc(50% - .44rem);
    display: inline-block;
    position: relative;
    margin: 0 .22rem .6rem;
}

.playicon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: .76rem;
}

.itempic {
    width: 100%;
    display: block;
    border-radius: 0.08rem;
}

.seemore {
    background-color: #f6f6f6;
    color: #666666;
    font-size: .22rem;
    text-align: center;
    border-radius: 0.08rem;
    padding: .18rem;
}

.item-desc {
    color: #666666;
    font-size: .22rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: .15rem 0rem 0rem;
}

.item-flex {
    display: flex;
    padding: .3rem .2rem;
    align-items: center;
    margin-bottom: .15rem;
    background: rgb(238, 245, 245, .5);
}

.item-flex-bd {
    flex: 1;
    min-width: 0;
    color: #4d4d4d;
    font-size: .22rem;
}

.item-flex-view {
    position: relative;
    width: 2.97rem;
    height: 1.64rem;
}

.tabfixed {
    width: 100%;
    position: fixed;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    top: 0;
    left: 0;
    -webkit-animation: fadeIn 1.5s;
    -moz-animation: fadeIn 1.5s;
    -ms-animation: fadeIn 1.5s;
    animation: fadeIn 1.5s;
    background-color: #fff;
    padding: 0.1rem 0 0.1rem!important;
    z-index: 10;
}