body {
    background-color: #f0f1f1;
}
a {
    cursor: pointer;
}
a:hover, a:focus {
    text-decoration: none;
}
.banner {
    background-image: url(/img/tasklist/tasklist-title-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 260px;
    margin-bottom: -100px;
}
.main {
    background-color: #fff;
    margin-bottom: 50px;
    padding: 0;
}
.main-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}
.header-user {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.header-item-avatar {
    width: 90px;
    height: 90px;
    margin-right: 15px;
}
.header-item-info {
    font-size: 14px;
    color: #666;
}
.header-item-info .info-name {
    margin-bottom: 10px;
}
.header-item-info .info-confirm {
    display: flex;
    align-items: center;
}
.header-item-info .confirm-item {
    border: 1px solid #e3e3e3;
    padding: 3px 8px;
    margin-right: 10px;
    cursor: pointer;
}
.header-item-info .confirm-item:hover {
    color: #fff;
    background-color: #226dd4;
    border-color: #226dd4;
}
.header-item-info .confirm-item i {
    color: #cacaca;
}
.header-item-info .confirm-item.active i {
    color: #398fd1;
}
.header-item-info .confirm-item:hover i {
    color: #fff;
}
.header-item-info .confirm-item-text {
    font-size: 12px;
    margin-left: 8px;
}
.header-item-info .confirm-help {
    position: relative;
}
.header-item-info .confirm-help i {
    color: #999;
}
.header-item-info .confirm-help-tips {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    color: rgb(255, 255, 255);
    left: -93px;
    bottom: 25px;
    visibility: hidden;
    white-space: pre-wrap;
    border-radius: 4px;
    margin: auto;
    padding: 6px 12px;
    line-height: 1.5;
    text-align: left;
    word-wrap: break-word;
    font-size: 12px;
    z-index: 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    width: 200px;
    transition: visibility .2s ease-in-out;
}
.header-item-info .confirm-help-tips:before {
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    content: '';
    bottom: -14px;
    left: 0;
    right: 0;
    margin: auto;
    border-width: 7px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.35) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.header-item-info .confirm-help:hover .confirm-help-tips {
    visibility: visible;
}

.header-score {
    display: flex;
    justify-content: flex-end;
}
.header-score .score-item {
    width: 120px;
    height: 90px;
    border: 1px solid #eee;
    text-align: center;
    padding: 15px 0;
    margin-left: 10px;
}
#credit {
    cursor: pointer;
    position: relative;
    margin-left: 0;
}
#credit .score-item-tips {
    position: absolute;
    width: 314px;
    height: 69px;
    padding: 5px;
    background-color: rgba(0,0,0,0.8);
    color: #fff;
    bottom: 101px;
    left: -94px;
    border-radius: 4px;
    text-align: left;
    z-index: 9;
    display: none;
}
#credit .score-item-tips:before {
    clear: both;
    content: "";
    display: table;
    position: absolute;
    background-color: #000;
    height: 12px;
    width: 100%;
    left: 0;
    bottom: 0;
    border-radius: 4px;
}
#credit .score-item-tips:after {
    clear: both;
    content: "";
    display: table;
    height: 12px;
    width: 12px;
    bottom: -6px;
    left: 151px;
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    transform: rotate(45deg);
}
#credit:hover .score-item-tips {
    display: block;
}
.header-score .score-item-title {
    color: #666;
    margin-bottom: 10px;
}
.header-score .score-item-num {
    font-size: 24px;
    color: #333;
}

#tasks .task-menu {
    border-bottom: 1px solid #dfe1e1;
    display: flex;
    padding: 40px 24px 0;
    height: 82px;
    white-space: nowrap;
}
#tasks .task-menu .menu-item {
    font-size: 12px;
    color: #999;
    line-height: 40px;
    padding: 0 10px;
    border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
}
#tasks .task-menu .menu-item.more {
    display: none;
}
#tasks .task-menu .menu-item:nth-last-child(2), #tasks .task-menu .menu-item.more {
    border-right: 1px solid #eee;
}
#tasks .task-menu .menu-item.on {
    color: #333;
    border-top: 1px solid #dfe1e1;
    border-left: 1px solid #dfe1e1;
    position: relative;
    height: 44px;
    bottom: 2px;
}
#tasks .task-menu .menu-item .menu-item-icon {
    vertical-align: text-bottom;
    margin-right: 2px;
}
#tasks .task-menu .menu-item .menu-item-icon.on {
    display: none;
}
#tasks .task-menu .menu-item.on .menu-item-icon {
    display: none;
}
#tasks .task-menu .menu-item.on .menu-item-icon.on {
    display: inline-block;
}
#tasks .main-content-area {
    padding: 24px;
}
#tasks .main-content-area .task-tags {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 30px;
    white-space: nowrap;
}
#tasks .main-content-area .task-tags .task-label {
    margin-right: 8px;
}
#tasks .main-content-area .task-tags .tags-btn {
    color: #999;
    font-size: 12px;
    background-color: #f2f2f2;
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    border: none;
    margin-right: 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
}
#tasks .main-content-area .task-tags .tags-btn.more {
    display: none;
}
#tasks .main-content-area .task-tags .tags-btn.on {
    color: #fff;
    background-color: #3366bb;
}

#task_list {}
#task_list .col-lg-3 {
    margin-bottom: 20px;
}
#task_list .task-item {
    border: 1px solid #dfe1e1;
    border-radius: 4px;
    overflow: hidden;
    display: block;
}
#task_list .task-item .item-header {
    background-color: #2a2d40;
    display: flex;
    align-items: center;
    padding: 18px;
}
#task_list .task-item .item-logo {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 22px;
    background-color: #fff;
    border: 1px solid #fff;
}
#task_list .task-item .item-info {}
#task_list .task-item .item-type {
    height: 20px;
    line-height: 20px;
    text-align: center;
    padding: 0 16px;
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(255,255,255,0.9);
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}
#task_list .task-item .item-count {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
#task_list .task-item .item-count-join {
    margin-right: 10px;
    display: flex;
    align-items: center;
}
#task_list .task-item .count-icon {
    margin-right: 4px;
    font-size: 16px;
    color: rgba(255,255,255,0.4);
}
#task_list .task-item .count-num {
    color: rgba(255,255,255,0.3);
}
#task_list .task-item .item-tags {
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    height: 20px;
}
#task_list .task-item .item-tags-type {
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    font-size: 12px;
    padding: 0 8px;
    margin-right: 8px;
    display: flex;
    align-items: center;
}
#task_list .task-item .item-tags-type:nth-last-child(1) {
    margin: 0;
}
#task_list .task-item .tags-icon {
    margin-right: 4px;
}
#task_list .task-item .tags-txt {}
#task_list .item-main {
    padding: 22px 18px 10px;
    height: 226px;
    border-bottom: 1px solid #dfe1e1;
}
#task_list .item-main .item-info-title {
    font-size: 16px;
    font-weight: bold;
    color: #3366bb;
    margin-bottom: 8px;
    line-height: normal;
    height: 42px;
    overflow: hidden;
}
#task_list .item-main .item-info-star {
    display: flex;
    color: #ccc;
}
#task_list .item-main .star-label {}
#task_list .item-main .star-list {}
#task_list .item-main .star-list .fa {
    letter-spacing: 3px;
}
#task_list .item-main .item-info-detail {
    margin-top: 16px;
    overflow: hidden;
}
#task_list .item-main .item-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    color: #999;
    min-height: 26px;
}
#task_list .item-main .detail-icon {
    margin-top: 2px;
    width: 20px;
    padding-right: 4px;
}
#task_list .item-main .detail-icon.fa-flag {
    color: #900;
    font-size: 14px;
}
#task_list .item-main .detail-content {
    display: flex;
}
#task_list .item-main .detail-content-item {
    display: flex;
    align-items: center;
}
#task_list .item-main .content-item-label {
    margin-right: 14px;
    white-space: nowrap;
}
#task_list .item-main .content-item-num {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
}
#task_list .item-main .content-item-num.flag {
    color: #900;
}
#task_list .item-main .content-item-num img {
    margin-right: 2px;
}
/*奖池*/
#task_list .item-main .content-item-num .pond-status {
    width: 14px;
    height: 9px;
    margin-right: 2px;
    background-color: #ddd;
}
#task_list .item-main .content-item-num .status-yellow {
    background-color: #e0e04a;
}
#task_list .item-main .content-item-num .status-green {
    background-color: #4fd14f;
}
#task_list .item-main .content-item-num .status-red {
    background-color: red;
}
#task_list .item-main .content-item-num .pond-tips {
    font-size: 14px;
    margin-left: 6px;
}
#task_list .item-main .content-item-num .tips-yellow {
    color: #e0e04a;
}
#task_list .item-main .content-item-num .tips-green {
    color: #4fd14f;
}
#task_list .item-main .content-item-num .tips-red {
    color: red;
}
#task_list .item-main .detail-content-item .fa-flag {
    font-size: 14px;
    color: #900;
    margin-left: 8px;
}
#task_list .item-main .content-tag {
    background-color: #f1f1f1;
    border-radius: 2px;
    padding: 2px 6px;
    margin-right: 4px;
    white-space: nowrap;
    margin-bottom: 4px;
}
#task_list .item-main .item-detail-item:nth-child(1) .content-item-num {
    color: #666;
    font-weight: bold;
}
#task_list .item-main .item-detail-item:nth-last-child(1) .detail-content {
    display: flex;
}
#task_list .item-bottom {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#task_list .item-bottom:hover {
    background-color: #fafafa;
}
#task_list .item-bottom-btn {
    font-size: 14px;
    color: #3366bb;
}
#task_list .item-bottom-btn.disable {
    color: #999;
}
#task_list .item-bottom-btn.accept {
    color: #ff721c;
}
#task_list .item-bottom .fa {
    font-size: 18px;
    color: #999;
}
#task_list .task-item.src .item-header {
    background-color: #144184;
}
#task_list .task-item.public .item-header {
    background-color: #202020;
}
#task_list .task-item.chain .item-header {
    background-color: #450484;
}
#task_list .task-item.internet .item-header {
    background-color: #006BD5;
}
#task_list .task-item.rce .item-header {
    background-color: #226dd4;
}
#task_list .task-item.expert .item-header {
    background-color: #11266a;
}
#task_list .task-item.job .item-header {
    background-color: #123179;
}
#task_list .task-item.project .item-header {
    background-color: #094794;
}

#task_win {
    position: fixed;
    top: 0;
    margin-top: 52px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1024;
    display: none;
}
#task_win .task-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
#task_win .task-win-main {
    width: 600px;
    background-color: #fff;
    position: relative;
    margin: 150px auto 0;
    border-top: solid 2px #3366bb;
}
#task_win .win-header {
    color: #333;
    font-size: 12px;
    line-height: 16px;
    padding: 15px 20px;
    position: relative;
    border-bottom: solid 1px #eee;
    background: #fff;
    font-weight: bold;
}
#task_win .win-form {
    padding: 20px 20px 8px;
    color: #999;
}
#task_win .win-label {
    margin-bottom: 8px;
}
#task_win .task-menu {
    display: flex;
    flex-wrap: wrap;
}
#task_win .task-menu .menu-item {
    display: flex;
    align-items: center;
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    border: 1px solid #eee;
    margin-right: 10px;
    border-radius: 2px;
    margin-bottom: 8px;
    cursor: pointer;
}
#task_win .task-menu .menu-item .menu-item-icon {
    margin-right: 5px;
}
#task_win .task-menu .menu-item .menu-item-icon.on {
    display: none;
}
#task_win .task-menu .menu-item.on {
    color: #3366bb;
    border-color: #3366bb;
}
#task_win .task-menu .menu-item.on .menu-item-icon {
    display: none;
}
#task_win .task-menu .menu-item.on .menu-item-icon.on {
    display: block;
}
#task_win .task-tags {
    display: flex;
    flex-wrap: wrap;
}
#task_win .task-tags .tags-btn {
    color: #999;
    font-size: 12px;
    background-color: #f2f2f2;
    padding: 0 10px;
    height: 24px;
    line-height: 24px;
    border: none;
    margin-right: 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
#task_win .task-tags .tags-btn.on {
    color: #fff;
    background-color: #3366bb;
}
#task_win .win-footer {
    padding: 20px;
    text-align: right;
    border-top: 1px dashed #eee;
}
#task_win .win-footer .close-btn {
    color: #fff;
    background-color: #3366bb;
    width: 80px;
}


#entrance {
    display: none;
    background: #fff;
    padding-top: 85px;
    margin-bottom: 30px;
    overflow: hidden;
}
#entrance .contain {
    display: block;
    background-image: url(/img/verify/verifyEntrace_bg.png);
    background-repeat: no-repeat;
    min-height: 320px;
    width: 590px;
    position: relative;
    margin: 0 auto 25px;
    padding-top: 45px;
    left: 90px;
}
#entrance .des {
    color: #666;
    font-size: 14px;
    text-align: center;
    display: block;
    position: relative;
    right: 90px;
}
#entrance .verify-entence {
    color: #fff;
    background: #ffaa07;
    font-size: 14px;
    text-align: center;
    height: 40px;
    width: 115px;
    border-radius: 5px;
    position: relative;
    left: 136px;
    top: 20px;
}

@media (min-width: 1366px) {
    .container {
        width: 1350px;
    }
}
@media (max-width: 1365px) and (min-width: 1200px) {
    #task_list .task-item .item-tags-type {
        padding: 0 1px;
        margin-right: 4px;
    }
    #task_list .task-item .tags-icon {
        margin-right: 1px;
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    #task_list .task-item .item-logo {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 1366px) and (min-width: 992px) {
    .banner {
        margin-bottom: -200px;
    }
}
@media (min-width: 992px) {
    #task_list {
        margin: 0 -10px;
    }
    #task_list .col-lg-3 {
        padding: 0 10px;
    }
    #tasks .main-content-area .task-tags .tags-btn:hover {
        color: #fff;
        background-color: #3366bb;
    }
}
@media (max-width: 991px) {
    .banner {
        height: 150px;
    }
    .main-header {
        padding: 15px;
    }
    .header-user {
        margin-bottom: 20px;
        display: block;
    }
    .header-item-avatar {
        margin-bottom: 10px;
    }
    .header-item-info .confirm-help-tips {
        left: -130px;
    }
    .header-item-info .confirm-help-tips:before {
        left: 72px;
    }
    #credit .score-item-tips {
        bottom: 80px;
        left: -14px;
    }
    #credit .score-item-tips:after {
        left: 56px;
    }
    .header-score {
        width: 100%;
        justify-content: space-between;
    }
    .header-score .score-item {
        width: 33%;
        height: 70px;
        padding: 10px 0;
    }
    .header-score .score-item-title {
        margin-bottom: 6px;
    }
    #tasks .task-menu {
        padding: 20px 15px 0;
        height: 62px;
    }
    #tasks .main-content-area {
        padding: 15px;
    }
    #tasks .task-menu .menu-item:nth-of-type(3) ~ .menu-item {
        display: none;
    }
    #tasks .task-menu .menu-item.more {
        display: block!important;
    }
    #tasks .main-content-area .task-tags .tags-btn:nth-of-type(3) ~ .tags-btn {
        display: none;
    }
    #tasks .main-content-area .task-tags .tags-btn.more {
        display: block!important;
    }
}
@media (max-width: 600px) {
    #tasks .main-content-area .task-tags .task-label {
        display: none;
    }
    #task_list .task-item .item-header {
        padding: 15px;
    }
    #task_list .task-item .item-logo {
        width: 74px;
        height: 74px;
    }
    #task_win .task-win-main {
        width: 100%;
        margin: 20px auto 0;
    }
    #entrance .contain {
        width: 100%;
        left: 0;
    }
    #entrance .des {
        right: 0;
    }
    #entrance .verify_btn {
        text-align: center;
        margin-top: 15px;
    }
    #entrance .verify-entence {
        left: 0;
        top: 0;
    }
    .main .page li:nth-child(1), .main .page li.form_page {
        display: none;
    }
    .main .page li.pre {
        display: block!important;
    }
}

.main .no-data {
    text-align: center;
}
.main .no-data .no-data-icon {
    width: 100px;
    margin-bottom: 15px;
}
.main .no-data .no-data-word {
    color: #999;
    font-size: 20px;
}

.tasklist-loading {
    min-height: 350px;
    padding-top: 50px;
}
.tasklist-loading .loading-ripple {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    position: relative;
}
.tasklist-loading .loading-ripple i {
    width: 64px;
    height: 64px;
    background: #226dd4 none repeat scroll 0 0;
    border: 0 solid #226dd4;
    box-sizing: content-box;
    color: #226dd4;
    animation: 1s linear 0s normal none infinite running loading-ripple;
    border-radius: 100%;
    float: left;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
}
.loading-ripple i:nth-child(2) {
    animation-delay: 0.2s;
}
.loading-ripple i:nth-child(3) {
    animation-delay: 0.4s;
}
.loading-ripple:after {
    clear: both;
    content: "";
    display: table;
    line-height: 0;
}

/*新版loading*/
#tasklist_loading {
    text-align: center;
    min-height: 350px;
    padding-top: 50px;
}
#tasklist_loading .task-loading-txt {
    margin-top: 20px;
    color: #aaa;
}

.main .page{height: 30px;margin: 20px auto 60px;font-size: 12px;padding: 0 10px;font-weight: 700;}
.main .page ul{height: 30px;}
.main .page li {min-width: 40px;line-height: 30px;float: left;color: #555;margin-right: 10px;}
.main .page .on{background: #226dd4;color: #fff;}
.main .page li.form_page {width: 60px;}
.main .page li.form_page .page_input {font-size: 14px;font-weight:normal;border: 1px solid #ebeff3;-webkit-border-radius: 2px;-moz-border-radius: 2px;-ms-border-radius: 2px;-o-border-radius: 2px;border-radius: 2px;height: 28px;width: 48px;padding: 0 5px;outline: 0;}
.main .page li.next {width: 160px;margin: 0;float: right;}
.main .page li a {padding: 0 16px;font-size: 16px;float:left;color: #989ea6;font-weight: 700;font-style: italic;text-decoration: none;line-height: 30px;text-align: center;-webkit-border-radius: 2px;-moz-border-radius: 2px;-ms-border-radius: 2px;-o-border-radius: 2px;border-radius: 2px;display: block;margin-right: 6px;}
.main .page li a:hover{background: #226dd4;color: #fff;}
.main .page li.next span {float: left;}
.main .page li.next i{float: right;display: block;line-height: 30px;}
.main .page li.next a{display: block;line-height: 30px;width: 100%;}
.main .page li.pre {width: 80px;margin-right: 20px;float: right;}
.main .page li.pre a{width:100%;}

.hack-pop .select-info {
    padding: 30px 0;
}
.hack-pop .select-info .tips {
    margin-top: 24px;
    font-size: 14px;
    color: #999;
}
.hack-pop .select-info .tips .win-p-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}
.hack-pop .select-info .tips span {
    margin-bottom: 5px;
    display: inline-block;
}
.hack-pop .agreet_protocol .agreet_checked {
    height: 14px;
    width: 14px;
    top: 2px;
    left: 5px;
    position: relative;
}
.hack-pop .agreet_protocol p {
    float: left;
    display: contents;
    cursor: pointer;
}

/*文件上传样式*/
.attachments-upload {
    position: relative;
    text-align: center;
    line-height: 63px;
    z-index: 0;
    height: 85px;
    /* min-height:75px; */
    padding: 10px;
    width: 100%;
    border: 1px dashed #c5c5c5;
    cursor: pointer;
    color: #888;
    -webkit-border-radius: 4px;
    border-radius: 4px;
  }
.attachments-upload:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
  }
.attachments-upload .fa-paperclip {
    font-size: 30px;
    color: #f5f5f5;
    z-index: -2;
    position: relative;
  }
.attachments-collection {
    font-size: 12px;
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -ms-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
     transition: opacity 0.1s ease-in-out;
  }
.attachment-uploaded {
    position: relative;
    z-index: 101;
    background: #f5f5f5;
    color: #000;
    font-size: 12px;
    margin-bottom: 3px;
    padding: 0;
    overflow: hidden;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
  }
.attachment-uploaded .attachment-progress-background {
    background-color: #226dd4;
    position: absolute;
    height: 100%;
    z-index: 110;
  }
.attachment-uploaded .attachment-progress-info {
    padding: 4px 10px;
    position: relative;
    width: 100%;
    z-index: 111;
  }
.attachment-uploaded .attachment-progress-info .attachment-name {
    color: #fff;
  }
.attachment-uploaded:hover .attachment-remove {
    color: #eee;
  }
.attachment-progress {
    font-size: 11px;
    color: #828282;
    float: right;
    margin: 0 10px;
  }
.attachment-remove {
    cursor: pointer;
    color: #fff;
    float: right;
    font-size: 11px;
    user-select: none;
  }