html, body {
    background-color: #f1f1f2;
}

    body.stop {
        overflow: hidden;
    }

[v-cloak] {
    display: none;
}

#cover {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
    z-index: 2;
}

.content {
    width: 1200px;
    margin: 0 auto;
}

.loginBox {
    float: left;
    width: 400px;
    position: fixed;
    top: 50%;
    margin-top: -19px;
    left: 50%;
    margin-left: -200px;
}

.loginBtn {
    float: left;
}

.header {
    background-color: #fff;
    height: 118px;
    margin-top: 24px;
}

    .header .title {
        font-size: 20px;
        color: #333;
        line-height: 24px;
        padding-top: 24px;
    }

    .header .btns {
        font-size: 16px;
        color: #333;
        padding-top: 16px;
    }

.main {
    float: left;
    border: 1px solid #f8f8f8;
    border-radius: 3px;
    padding: 24px 16px;
    background-color: #fff;
    margin-top: 24px;
}

.site {
    float: left;
}

    .site .item {
        background-color: #f7f9fa;
        color: #333;
        width: 100%;
        border: 0;
        height: 42px;
        cursor: pointer;
    }

        .site .item.run:hover {
            background-color: #eff3fb;
        }

.task .column {
    text-align: center;
    font-size: 16px;
}

.task .item {
    height: 60px;
    background-color: #f7f9fa;
    line-height: 60px;
    margin-top: 20px;
}

    .task .item:first-child {
        margin-top: 0;
    }

    .task .item .column {
        font-size: 14px;
    }

    .task .item:first-child .column {
        font-size: 16px;
        font-weight: bold;
    }

.task a {
    color: #009688;
}

.addTaskBox {
    z-index: 3;
    width: 800px;
    height: 600px;
    border: 1px solid #f8f8f8;
    position: fixed;
    left: 50%;
    margin-left: -400px;
    top: 50%;
    margin-top: -300px;
    border-radius: 3px;
    background-color: #fff;
}

    .addTaskBox .title {
        cursor: unset !important;
    }

    .addTaskBox .tabmain {
        padding: 24px;
    }

        .addTaskBox .tabmain .tabs {
            float: left;
            width: 100%;
        }

            .addTaskBox .tabmain .tabs li {
                display: inline-block;
                *display: inline;
                *zoom: 1;
                vertical-align: middle;
                font-size: 14px;
                transition: all .2s;
                -webkit-transition: all .2s;
                position: relative;
                line-height: 40px;
                min-width: 65px;
                padding: 0 15px;
                text-align: center;
                cursor: pointer;
                width: 25%;
            }

                .addTaskBox .tabmain .tabs li.cur:after {
                    position: absolute;
                    left: 0;
                    top: 0;
                    content: "";
                    width: 100%;
                    height: 41px;
                    box-sizing: border-box;
                    pointer-events: none;
                    border: none;
                    border-radius: 0;
                    border-bottom: 2px solid #5FB878;
                }

                .addTaskBox .tabmain .tabs li.cur {
                    color: #009688;
                }

    .addTaskBox .tabcontent {
        float: left;
        width: 100%;
        padding-top: 24px;
    }

        .addTaskBox .tabcontent .item {
            font-size: 14px;
            height: 36px;
            padding: 12px 0;
            line-height: 36px;
        }

            .addTaskBox .tabcontent .item div:first-child {
                text-align: right;
            }

        .addTaskBox .tabcontent .tabItemShort .item {
            height: 24px;
            line-height: 24px;
            padding: 4px 0;
        }

        .addTaskBox .tabcontent .btns {
            position: absolute;
            right: 0;
            bottom: 38px;
            padding-right: 24px;
        }

            .addTaskBox .tabcontent .btns button {
                width: 100px;
            }

        .addTaskBox .tabcontent select {
            width: 400px;
            height: 36px;
            border: 1px solid #eee;
            padding-left: 10px;
        }

        .addTaskBox .tabcontent input[type="radio"] {
            margin-right: 5px;
        }

        .addTaskBox .tabcontent input[type="text"] {
            height: 36px;
            border: 1px solid #eee;
            padding-left: 10px;
            display: inline-block;
            width: 400px;
        }

            .addTaskBox .tabcontent input[type="text"].short {
                width: 50px;
            }
