| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 | page {    height: 100%;}.hc-app-task-detail {    .task-detail-content {        position: relative;        background: white;        border-top: 2rpx solid #eee;        .task-name-box {            position: relative;            display: flex;            align-items: center;            padding: 20rpx;            .name-bar {                flex: 1;            }            .arrow-bar {                margin-left: 22rpx;                .task-item {                    font-size: 26rpx;                }                .task-item + .task-item {                    margin-top: 18rpx;                }            }        }        .task-report-info {            position: relative;            display: flex;            justify-content: space-between;            box-sizing: border-box;            flex-direction: row;            padding: 20rpx;            padding-top: 0;            font-size: 24rpx;        }        .task-pdf-list-bar {            position: relative;            font-size: 24rpx;            border-top: 2rpx solid #eee;            .task-pdf-info {                position: relative;                display: flex;                box-sizing: border-box;                color: #EE5B20;                align-items: center;                width: 100vw;                padding: 20rpx;                box-sizing: border-box;                .file-name {                    position: relative;                    flex: 1;                }                .file-num {                    margin-left: 26rpx;                }            }            .task-item {                font-size: 26rpx;            }            .task-item + .task-item {                margin-top: 18rpx;            }        }    }    .action-bar-btn {        background: #EE5B20;        border-radius: 100rpx;    }    .task-popup-content {        position: relative;        padding: 0 24rpx;        .title {            color: #8E8E93;            font-size: 28rpx;            margin-bottom: 38rpx;            text-align: center;        }        .popup-btn::after {            display: none;        }        .popup-code-bar {            position: relative;            margin-bottom: 24rpx;            .btn-tel-code-bar {                position: relative;                display: flex;                align-items: center;                justify-content: space-between;                flex-direction: row;                margin-bottom: 20rpx;                .btn-tel {                    font-size: 30rpx;                    font-weight: bold;                }                .btn-code {                    position: relative;                    display: flex;                    align-items: center;                }            }            .code-input-bar {                position: relative;                .code-input {                    border: 2rpx solid #cbcbcb;                    border-radius: 8rpx;                    height: 70rpx;                    line-height: initial;                    min-height: initial;                    font-size: 28rpx;                    padding: 0 20rpx;                }            }        }        .popup-argument-bar {            position: relative;            margin-bottom: 24rpx;            .argument-input {                border: 2rpx solid #cbcbcb;                border-radius: 8rpx;                line-height: initial;                font-size: 26rpx;                padding: 20rpx;                width: 100%;            }        }        .popup-btn-bar {            position: relative;            .c1 {                background-color: #554D84;            }            .c2 {                background-color: #EE5B20;            }            .c3 {                background-color: #BFBFBF;            }            .c4 {                background-color: #81B337;            }        }        .popup-btn-bar + .popup-btn-bar {            margin-top: 24rpx;        }    }}
 |