
body{
    font-size: 16px;
    background-color: #bfcaf0;
}
.app{
    width: 100%;
    margin:0 auto;
    
}
.page_main{
    background: url(/images/pc/recruit/bg.png) no-repeat;
    background-size: 200px auto 100px auto;
    position: relative;
    margin: 0 auto;
    width: 100%;
    border: 1px solid transparent;
}
.wrap{
    width: 1080px;
    margin: 100px auto;
    background-color: #fff;
    padding:20px;
    border-radius: 8px;

}
.line{
    height: 10px;
    background-color: #bfcaf0;
    border-radius: 5px;
}
.status{
    float: left;
}
.status  li{
    float: left;
    padding: 0 15px;
    line-height: 50px;
    text-align: center;
    height: 50px;
    border-radius: 8px;
    background-color: #efefef;
    margin-right: 10px;
    cursor: pointer;
    color: rgb(133, 130, 130);
    /* transition: background-color 0.3s, color 0.3s, border-color 0.3s; */
}
.status li.activited {
    background-color: #5e8ffd;
    color:rgba(252,252,252);
}

.status li .default{
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-top: 10px;
    vertical-align: top;
    line-height: 40px;
}
.status li .span1{
    background: url(/images/pc/recruit/user-music.png) 100% 100% no-repeat;
}

.status li.activited .span1{
    background: url(/images/pc/recruit/user-music-white.png) 100% 100% no-repeat;
}

.status li .span2{
    background: url(/images/pc/recruit/sing.png) 100% 100% no-repeat;
}

.status li.activited .span2{
    background: url(/images/pc/recruit/sing-white.png) 100% 100% no-repeat;
}

.status li .span3{
    background: url(/images/pc/recruit/music.png) 100% 100% no-repeat;
}
.status li.activited .span3{
    background: url(/images/pc/recruit/music-white.png) 100% 100% no-repeat;
}
.status li .span4{
    background: url(/images/pc/recruit/yanzou.png) 100% 100% no-repeat;
}
.status li.activited .span4{
    background: url(/images/pc/recruit/yanzou-white.png) 100% 100% no-repeat;
}
.status li .span5{
    background: url(/images/pc/recruit/yinfu.png) 100% 100% no-repeat;
}
.status li.activited .span5{
    background: url(/images/pc/recruit/yinfu-white.png) 100% 100% no-repeat;
}
.status li .span6{
    background: url(/images/pc/recruit/piano.png) 100% 100% no-repeat;
}
.status li.activited .span6{
    background: url(/images/pc/recruit/piano-white.png) 100% 100% no-repeat;
}



.btn-checkbox {
    display: none; /* 隐藏默认的复选框 */
}
.custom-control{
    display: inline-block;
    margin-right: 5px;
}

.btn-checkbox + .btn {
    display: inline-block;
    position: relative;
    padding: 10px 20px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 8px;
    border: 1px solid transparent;
    color: rgb(133, 130, 130);
    background-color: #efefef;
    border-color: #efefef;
    cursor: pointer;
    margin-top: 5px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn-checkbox:checked + .btn {
    background-color: #5e8ffd;
    color: #fff;
    border-color: rgba(252,252,252);
}

.project-img-btn {
    /* position: relative; */
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

.add-icon {
    display: block;
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
    cursor: pointer;
  }
  .add-text {
    color: #999;
    font-size: 16px;
    line-height: 1;
    margin-left:10px;
  }
.picUpload {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    outline: medium none;
    cursor: pointer;
    -moz-opacity: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

#file{
    display: none;
}

.col-form-label:after {
    content: " *";
    color: red;
}

.required {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10px;
    margin-left: 2px;
    color: red;
    font-weight: bold;
}


.loading{
    animation:rotating 1.4s linear infinite;
}
@keyframes rotating{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

.btn-primary{
    background-color: #5e8ffd;
    border-color: #5e8ffd;
}