.app-task {
    position: relative;
}

.app-task .head {
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3CD0CA;
}

.app-task .head .title {
    font-size: 16px;
    color: #fff;
}

.app-task .top {
    position: relative;
}

.app-task .bg {
    width: 100%;
    height: 215px;
    background: linear-gradient(180deg, #41d1cb, #eaf3f3);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.app-task .top {
    padding: 16px;
    margin: 12px;
    position: relative;
    border-radius: 12px;
    background-color: #fff;
}

.app-task .top .title {
    font-size: 16px;
    font-weight: bold;
}

.app-task .top .user {
    font-size: 18px;
    padding: 10px 0;
}

.app-task .top .authentication {
    display: inline-flex;
    color: #36cfc9;
    padding: 2px 6px;
    font-size: 12px;
    border-radius: 4px;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(54, 207, 201);
}

.app-task .top .logo {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 52px;
}

.progress-circle {
    position: relative;
    width: 80px;
    height: 80px;
}

.progress-circle p {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    text-align: center;
}

.eprogress-circle-track {
    stroke: #E8E8E8;
    stroke-width: 6;
    fill: none;
}

.eprogress-circle-path {
    stroke: #36CFC9;
    stroke-width: 6;
    fill: none;
    stroke-linecap: round;
    transition: stroke-dasharray 0.5s ease;
}

.eprogress-circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.app-task .way {
    padding: 16px;
    display: flex;
    margin: 12px;
    position: relative;
    border-radius: 12px;
    background-color: #fff;
    justify-content: space-between;
}

.app-task .way .title {
    font-size: 16px;
    font-weight: bold;
}

.app-task .way .doc {
    font-size: 18px;
    color: #36cfc9;
    font-weight: bold;
    padding: 10px 0;
}

.app-task .way .infos p {
    font-size: 12px;
    color: #f37b1d;
}

.app-task .way .infos .count {
    font-size: 16px;
    color: #f37b1d;
    font-weight: bold;
}

.demand {
    margin: 12px;
    border-radius: 12px;
    background-color: #fff;
}

.demand .title {
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: .5px solid rgba(0, 0, 0, .1);
}

.demand .doc {
    padding: 12px;
    color: #666;
}

.app-task .but {
    cursor: pointer;
    background: #36cfc9;
    box-shadow: 6px 6px 16px -8px rgba(54, 207, 201, .16), 0 9px 29px 0 rgba(54, 207, 201, .08), 0 12px 49px 0 rgba(54, 207, 201, .16);
    border-radius: 12px;
    padding: 15px 0;
    margin: 26px 15px;
    text-align: center;
    color: #fff;
    font-size: 16px;
}