    .edtpage{
        background: #FFFFFF;
        border-radius: 20px;
        padding: 18px 13px;
    }
    .tab-box {
        width: 100%;
        border-bottom: 1px solid #eee;
        overflow-x: auto;
        white-space: nowrap;
    }

    .tab-box .tab-item {
        display: inline-block;
        padding: 6px 20px;
        cursor: pointer;
        color: #666;
        font-size: 16px;
        font-weight: 400;
    }
    .tab-box .tab-item h2 {
        display: inline-block;
        cursor: pointer;
        color: #666;
        font-size: 16px;
        font-weight: 400;
    }
    .tab-item:hover {
        background: #37CD78;
    }
    .tab-item:hover h2 {
        color: #ffffff;
    }
    .tab-box .tab-item h2:hover{
        color: #ffffff;
    }
    .tab-checked {
        background: #37CD78 ;
        color: white !important;
    }
    .tab-box .tab-checked h2{
        color: white !important;
    }
    .list-item {
        position: relative;
    }

    .no-data {
        position: relative;
        left: 0;
        right: 0;
        margin: auto;
        margin-top: 30px;
        text-align: center;
        color: #939393;
        font-size: 18px;
    }

    .text-tips {
        width: 90%;
        position: absolute;
        left: 20px;
        bottom: -40px;
        display: none;
        padding: 5px 5px;
        border-radius: 5px;
        -webkit-border-radius: 5px;
        margin-top: 5px;
        color: #ffffff;
        background: #000;
        font-size: 12px;
        z-index: 99;
    }

    .text-tips.show {
        display: block;
    }

    .over-text {
        display: -webkit-box;
        overflow: hidden;
        text-overflow: ellipsis;
        line-clamp: 2;
        text-overflow: -o-ellipsis-lastline;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .edt-content-box {
        height: 55px;
        font-size: 16px;
    }

    @media screen and (max-width: 720px) {
        .tab-box {
            width: 100%;
            border-bottom: 1px solid #eee;
        }

        .edt-content-box {
            height: fit-content;
            position: relative;
        }

        .tab-box .tab-item {
            display: inline-block;
            padding: 0.3rem 0.5rem;
            cursor: pointer;
            color: #666;
            font-size: 0.9rem;
            font-weight: 400;
            cursor: pointer;
        }

        .tab-item:hover {
            background: #37CD78 ;
            color: white;
        }

        .tab-checked {
            background: #37CD78 ;
            color: white !important;
        }
    }

    .edit-tips-box {
        padding: 1px 0;
    }

    .adv-bottom_layer {
    display:none;
    width: 100%;
    height:80px;
    padding: 5px 0;
    position: fixed;
    z-index: 100;
    text-align: center;
    left: 0;
    bottom: 0;
    background: #2898FF;
  }
  
  .adv-close {
    position: absolute;
    left: 0;
    top:-15px;
    width: 30px;
    height: 20px;
    background: #2898FF url("/static/apkfunny/img/icon_arrow.png") center top no-repeat;
    z-index: 999;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
  }