.task_wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
}

    .task_wrap .task {
        width: 1217px;
        margin: 485px auto 40px;
        padding: 28px 48px 0;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        background-color: #fff;
        -webkit-box-shadow: 0 5px 6px 0 rgb(229 230 249 / 53%);
        box-shadow: 0 5px 6px 0 rgb(229 230 249 / 53%);
        border-radius: 20px;
    }

        .task_wrap .task .task_type {
            display: -ms-flexbox;
            display: flex;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            width: 100%;
        }

            .task_wrap .task .task_type .van-badge--fixed {
                position: absolute;
                transform-origin: 100%;
                top: 10px;
                right: 30px;
            }
            /*.task_wrap .task .task_type .van-badge--fixed {
                position: absolute;
                transform-origin: 100%;
                top: 0px;
                right: 24px;
            }*/


            .task_wrap .task .task_type li {
                display: -ms-flexbox;
                display: flex;
                margin-bottom: 10px;
                -ms-flex-align: center;
                align-items: center;
                -ms-flex-pack: center;
                justify-content: center;
                width: 144px;
                height: 47px;
                margin-right: 16px;
                background-color: #fff;
                -webkit-box-shadow: 0 2px 5px 0 #d7d7d7;
                box-shadow: 0 2px 5px 0 #d7d7d7;
                border-radius: 24px;
                color: #333;
                cursor: pointer;
            }

                .task_wrap .task .task_type li.active {
                    background-image: -webkit-gradient(linear,left top,right top,from(#fff1c5),to(#e9d481));
                    background-image: -webkit-linear-gradient(left,#fff1c5,#e9d481);
                    background-image: -o-linear-gradient(left,#fff1c5 0,#e9d481 100%);
                    background-image: linear-gradient(90deg,#fff1c5,#e9d481);
                    -webkit-box-shadow: 0 6px 15px 0 #2d2d2d;
                    box-shadow: 0 1px 2px 0 #2d2d2d;
                    color: #333;
                }


.van-tabs--line .van-tabs__wrap {
    height: var(--van-tabs-line-height);
    border-bottom: 1px solid #c3c3c3;
    margin-bottom: 10px;
}


/** 列表 css start */
.task_table {
    padding: 30px;
    border: 1px solid #f1f1f1;
    border-radius: 10px;
    background: #981300;
}

    .task_table h1 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 20px;
        text-align: center;
        font-weight: bold;
    }

    .task_table table {
        border-collapse: collapse;
        width: 100%;
    }

        .task_table table th, .task_table table td {
            height: 60px;
            border: 1px solid #FFA200;
            text-align: center;
            vertical-align: middle;
        }

        .task_table table th {
            background: #FFA200;
            color: #981300;
        }

        .task_table table td {
            background: #981300;
            color: #fff;
        }
/** 列表 css end */


.fadeInUp {
    -webkit-animation: fadeInUp__B3TPm .6s;
    animation: fadeInUp__B3TPm .6s;
}

@keyframes fadeInUp__B3TPm {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.task_wrap .task .task_list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 30px 0 40px;
}

.task_item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1118px;
    height: 220px;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

    .task_item .Avatar {
        width: 140px;
        height: 140px;
        margin-left: 85px;
    }

    .task_item .task_explain {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 404px;
        margin-left: 15px;
        font-style: italic;
    }

        .task_item .task_explain span:nth-child(1) {
            font-weight: 700;
            font-size: 28px;
            color: #ffe417;
        }

        .task_item .task_explain span:nth-child(2) {
            font-size: 20px;
            color: #fff;
        }

.taskDescription {
    font-size: 20px;
    color: #fff;
}

.progress_wrap {
    width: 404px;
}

    .progress_wrap .task_explainSum {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: end;
        justify-content: flex-end;
        font-size: 32px;
        letter-spacing: 3px;
        color: #ffe417;
    }

.DLZQtask .task_explainSum {
    font-style: italic;
}

.progress_wrap .progress {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 404px;
    height: 16px;
    margin: 20px 0;
    background-color: #242428;
    border-radius: 8px;
}

    .progress_wrap .progress .progress_rate {
        height: 12px;
        background-color: #ffe417;
        border-radius: 6px;
    }



.task_detail_icon {
    cursor: pointer;
    width: 42px;
    height: 42px;
}

.task_sum {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 67px;
    font-size: 32px;
    color: #fff;
}

    .task_sum i {
        color: gray;
    }

.task_btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 61px;
    margin-right: 80px;
    font-size: 32px;
    color: #fff;
    border-radius: 5px;
}

    .task_btn.task_pro {
        background-image: -webkit-gradient(linear,left top,left bottom,from(#29cfff),to(#0084ff)),-webkit-gradient(linear,left top,left bottom,from(#8e6138),to(#8e6138));
        background-image: -webkit-linear-gradient(top,#29cfff,#0084ff),-webkit-linear-gradient(#8e6138,#8e6138);
        background-image: -o-linear-gradient(top,#29cfff 0,#0084ff 100%),-o-linear-gradient(#8e6138,#8e6138);
        background-image: linear-gradient(180deg,#29cfff,#0084ff),linear-gradient(#8e6138,#8e6138);
        background-blend-mode: normal,normal;
        cursor: pointer;
    }
    .task_btn.disabled {
        background-color: #c3c3c3;
    }


.van-skeleton {
    margin-top: 20px;
    margin-bottom: 30px;
}

.nodata {
    font-size: 22px;
    color: gray;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.task .row {
    display: flex;
    justify-content: flex-start;
}

    .task .row .column {
        width: 26%;
        display: flex;
        flex-grow: 2;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

        .task .row .column span:nth-child(2) {
            align-self: baseline;
            font-size: 20px;
            margin-left: 130px;
            font-weight: 900;
            color: #6b6653;
            width: 100px;
            height: 33px;
            text-align: center;
            border-radius: 10px;
            cursor: pointer;
            object-fit: contain;
            box-shadow: inset 0 3px rgb(237 237 237), inset 0 -3px #bbb, inset 3px 0 #d7d7d7, inset -3px 0 #d7d7d7;
        }

.record_btn {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

    .record_btn span:nth-child(1) {
        color: red;
        font-size: 18px;
    }

    .record_btn span:nth-child(2) {
        align-self: baseline;
        font-size: 20px;
        margin-left: 130px;
        font-weight: 900;
        color: #6b6653;
        width: 100px;
        height: 33px;
        text-align: center;
        border-radius: 10px;
        cursor: pointer;
        object-fit: contain;
        box-shadow: inset 0 3px rgb(237 237 237), inset 0 -3px #bbb, inset 3px 0 #d7d7d7, inset -3px 0 #d7d7d7;
    }


.record {
    padding: 21px 50px 50px;
    width: 920px;
    position: fixed;
    left: 50%;
    top: 50%;
    display: none;
    z-index: 10000;
    border-radius: 20px;
    box-sizing: border-box;
    background: #991400;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
}

    .record .close {
        position: absolute;
        right: 18px;
        top: 18px;
    }

    .record p {
        margin-bottom: 24px;
        color: #fff;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }

    .record .record_wrap {
        max-height: 500px;
        overflow-y: auto;
    }

    .record table {
        width: 100%;
        border-collapse: collapse;
    }

        .record table .van-popup {
            height: 90% !important;
            width: 400px;
            z-index: 2001;
            border-radius: 17px;
            margin-right: 35px;
        }

        .record table .van-overlay {
            border-radius: 17px;
        }

    .record th {
        color: #801100;
        font-size: 14px;
        line-height: 10px;
        text-align: center;
        background: #FFA200;
        border: 1px solid #b1812d;
    }

    .record td {
        line-height: 20px;
        text-align: center;
        background: #991400;
        border: 1px solid #FFA200;
        color: white;
    }

.van-pagination {
    display: flex;
    justify-content: end;
}

.van-pagination__item--active {
    color: #ffffff;
    background-color: #ffb100;
}

.van-pagination__item {
    flex: 1;
    box-sizing: border-box;
    min-width: var(--van-pagination-item-width);
    height: var(--van-pagination-height);
    color: var(--van-pagination-item-default-color);
    background: #991400;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.van-pagination__items li {
    background-color: #FFA200;
}

.van-pagination__item--active {
    color: var(--van-white);
    background-color: #991400 !important;
}

.van-pagination__items li button {
    color: white;
}


.record .nodata {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #898989;
}

.mask {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.8);
    z-index: 99;
}

.center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.detail_wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 480px;
    height: 427px;
    padding-top: 117px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    .detail_wrap .title {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        width: 480px;
        height: 40px;
        background-image: -webkit-gradient(linear,left top,left bottom,from(#fff1c5),to(#e9d481)),-webkit-gradient(linear,left top,left bottom,from(#fff1c5),to(#e9d481));
        background-image: -webkit-linear-gradient(top,#fff1c5,#e9d481),-webkit-linear-gradient(#fff1c5,#e9d481);
        background-image: -o-linear-gradient(top,#fff1c5 0,#e9d481 100%),-o-linear-gradient(#fff1c5,#e9d481);
        background-image: linear-gradient(180deg,#fff1c5,#e9d481),linear-gradient(#fff1c5,#e9d481);
        background-blend-mode: normal,normal;
        -webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 50%);
        box-shadow: 0 1px 4px 0 rgb(0 0 0 / 50%);
        border-radius: 8px 8px 0 0;
        font-size: 20px;
        letter-spacing: 2px;
        color: #000;
    }

    .detail_wrap .close {
        position: absolute;
        top: 77px;
        right: -30px;
        width: 48px;
        height: 48px;
        cursor: pointer;
    }

    .detail_wrap .detail {
        -ms-flex: 1 1;
        flex: 1 1;
        width: 480px;
        border-radius: 0 0 8px 8px;
        font-size: 14px;
        line-height: 32px;
        background-color: #f4e3a4;
        color: #999;
        overflow:scroll;
    }

        .detail_wrap .detail .detail_item {
            text-indent: 20px;
        }

            .detail_wrap .detail .detail_item .detail_title {
                font-size: 18px;
                color: #242424;
                font-weight: bold;
                font-family: "Microsoft Ya Hei";
            }

            .detail_wrap .detail .detail_item div:nth-child(2) {
                color: #242424;
                font-family: "Microsoft Ya Hei";
                text-indent: 0px;
                padding-left: 20px;
            }
/** 列表模式 start */
.task_item.DLZQtask.list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 1118px;
    height: 220px;
    background-repeat: no-repeat;
    margin-bottom: 10px;
    margin-top: 30px;
}

.comwid {
    width: 90%;
    padding: 10px;
    border: 8px solid #e9e9e9;
    margin: 0 auto;
    margin-bottom: 10px;
}

    .comwid .jtm {
        margin: 10px 0;
        display: inline-block;
    }

    .comwid p {
        line-height: 30px;
        text-align: left;
        color: #000;
        margin-bottom: 0px;
    }

    .comwid .jttil {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin-top: 20px;
    }

    .comwid table {
        border: 1px solid #f00;
        border-collapse: collapse;
        width: 920px;
        font-weight: bold;
        margin-top: 10px;
    }

        .comwid table tr:nth-child(odd) {
            background-color: #e1e1e1;
        }

        .comwid table tr:nth-child(even) {
            background-color: white;
        }

        .comwid table tr th {
            font-weight: normal;
            color: #ffffff;
            background-color: #7d05bb;
            text-align: center;
            line-height: 40px;
            border: 1px solid #d9d9d9;
        }

        .comwid table tr td {
            color: #000;
            text-align: center;
            line-height: 40px;
            border: 1px solid #d9d9d9;
        }

.tabred {
    color: #f00;
}

.task .row {
    display: flex;
    justify-content: center;
}

    .task .row .column {
        width: 26%;
        display: flex;
        flex-grow: 2;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

.static-container a {
    color: #0d6efd;
    text-decoration: underline;
}

.custom_text img {
    width: 100%;
    margin-left: 0px !important;
}

.comwid .task_btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 180px;
    height: 61px;
    margin-right: 80px;
    font-size: 32px;
    color: #fff;
    border-radius: 5px;
}

    .comwid .task_btn.task_pro {
        background-image: -webkit-gradient(linear,left top,left bottom,from(#29cfff),to(#0084ff)),-webkit-gradient(linear,left top,left bottom,from(#8e6138),to(#8e6138));
        background-image: -webkit-linear-gradient(top,#29cfff,#0084ff),-webkit-linear-gradient(#8e6138,#8e6138);
        background-image: -o-linear-gradient(top,#29cfff 0,#0084ff 100%),-o-linear-gradient(#8e6138,#8e6138);
        background-image: linear-gradient(180deg,#29cfff,#0084ff),linear-gradient(#8e6138,#8e6138);
        background-blend-mode: normal,normal;
        cursor: pointer;
    }

    .comwid .task_btn.disabled {
        background-color: #c3c3c3;
    }

.progress_wrap.list {
    width: 404px;
    display: flex;
}

.task_explain.list {
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 200px;
    font-style: italic;
}

.task_detail_icon.list {
    cursor: pointer;
    width: 36px;
    height: 36px;
}

.task_explainSum.list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
    font-size: 24px;
    letter-spacing: 3px;
    color: #ffe417;
}
/** 列表模式 end */
