* {
    box-sizing: border-box;
}

#app,
html,
body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    box-sizing: border-box;
    font-size: 0;
}

div {
    display: inherit;
}

p {
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    background-color: #F4F4F4;
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #457AFF;
    border-radius: 5px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input {
    border: none;
    outline: none;
    resize: none;
}

textarea {
    background-color: transparent;
    border: none;
    outline: none;
    resize: none;
}

button {
    padding: 0;
    margin: 0;
    background-color: transparent;
    border: none;
    outline: none;
    resize: none;
    cursor: pointer;
}

.noPointer{
    pointer-events: none;
    cursor: no-drop;
}

.hide{
    display: none!important;
}

.contentBox {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #F8F9FC;
}

.contv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    background-color: #fff;
}

.clear::after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.msgBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .8);
    z-index: 10;
}

.msgBox .contv {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.msgBox .title {
    font-size: 20px;
    color: #3D3D3D;
}

.msgBox .btnBox {
    font-size: 0;
}

.msgBox .btnBox .btn {
    padding: 10px 40px;
    border-radius: 30px;
    background-color: #CBCBCB;
    color: #fff;
    margin: 0 43px;
    font-size: 14px;
}

.msgBox .btnBox .btn-remove {
    background-color: #4C7EFB;
}

.removeBox .contv {
    padding: 44px 120px 59px;
    border-radius: 20px;
    text-align: center;
}

.removeBox .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 70px;
}

.removeBox .txt {
    color: #636679;
    margin: 70px 0;
    font-size: 20px;
}

.tipsBox .text {
    font-size: 16px;
    color: #3D3D3D;
    line-height: 40px;
}

.tipsBox .btnBox .btn-sub {
    background-color: #4C7EFB;
}

.tipsBox .contv{
    padding: 33px 86px 44px;
    border-radius: 20px;
    text-align: center;
}

.tipsBox .title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 40px;
}

.tipsBox .txt {
    font-size: 15px;
    color: #3D3D3D;
    line-height: 40px;
    height: 40px;
}

.tipsBox .name {
    margin: 20px 0 40px;
}

.tipsBox .name select,
.tipsBox .name p{
    font-size: 15px;
    color: #3D3D3D;
    display: inline-block;
    vertical-align: top;
    height: 38px;
    line-height: 38px;
}

.tipsBox .name select{
    width: 300px;
    border: solid 1px #BFC3CD;
    outline: none;
}

.tipsBox form{
    font-size: 0;
    margin: 20px 0 40px;
}

.tipsBox form .write-txt{
    margin-top: 15px;
}

.tipsBox form .write-txt p{
    font-size: 15px;
    color: #3D3D3D;
    line-height: 36px;
    height: 36px;
    display: inline-block;
    vertical-align: top;
    width: 100px;
}
.tipsBox form .write-txt select,
.tipsBox form .write-txt input{
    height: 36px;
    line-height: 36px;
    font-size: 15px;
    color: #3D3D3D;
    width: 225px;
    background-color: #F4F5F8;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    padding: 10px 20px;
}

.tipsBox form .write-txt .tips-txt{
    font-size: 15px;
    color: #3D3D3D;
    width: 225px;
    background-color: #F4F5F8;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    display: inline-block;
    vertical-align: top;
    padding: 10px 20px;
    text-align: left;
    word-break: break-word;
}

.tipsBox .el-input__prefix{
    display: none;
}

.tipsBox form .write-txt select{
    border: none;
}

.detailBox .contv{
    width: 60%;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 44px 77px 65px;
    height: 80%;
}

.detailBox .contv .scroll{
    margin-top: 30px;
    width: 90%;
    height: calc( 100% - 80px );
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
    margin: 30px auto 0px;
}

.detailBox .contv .title{
    font-weight: bold;
}

.detailBox .detail{
    font-size: 0;
    margin: 20px 0;
}

.detailBox .detail p{
    font-size: 15px;
    color: #3D3D3D;
    line-height: 30px;
    display: block;
}

.detailBox .btnBox {
    text-align: center;
    margin-top: 20px;
}

.navBox {
    width: 300px;
    height: 100%;
    padding: 42px 12px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
}

.navBox .name {
    font-size: 0;
    padding: 0 20px;
    margin-bottom: 84px;
}

.navBox .name p {
    color: #3D3D3D;
    font-size: 15px;
    font-weight: bold;
    display: inline-block;
    vertical-align: top;
    height: 43px;
    line-height: 43px;
    margin-left: 10px;
}

.navBox .navList {
    font-size: 0;
    display: block;
}

.navBox .navList .navItem {
    display: block;
    margin-bottom: 10px;
}

.navBox .navList .navItem .item {
    width: 100%;
    padding: 14px 24px;
    box-sizing: border-box;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    cursor: pointer;
}

.navBox .navList .navItem .item.select {
    background-color: #457AFF;
}

.navBox .navList .navItem .item.select p {
    color: #fff;
}

.navBox .navList .navItem .children .item.select {
    background-color: #F4F5F8;
}

.navBox .navList .navItem .children .item.select p {
    color: #457AFF;
    position: relative;
}

.navBox .navList .navItem .children .item.select p::before {
    content:'';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #457AFF;
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    -moz-transform: translate(0,-50%);
    -ms-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
}

.navBox .navList .navItem i {
    display: inline-block;
    vertical-align: top;
    width: 24px;
    height: 22px;
    background-size: 24px 22px;
}

.navBox .navList .navItem p {
    font-size: 15px;
    color: #3D3D3D;
    height: 22px;
    line-height: 22px;
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
}

.navBox .navList .navItem .children .item p {
    margin-left: 34px;
    font-size: 12px;
}

.content {
    width: calc(100% - 304px);
    height: 100%;
    display: inline-block;
    vertical-align: top;
    margin-left: 4px;
}

.myHeader {
    width: 100%;
    height: 93px;
    color: #3D3D3D;
    background-color: #fff;
}

.myHeader .userName {
    float: right;
    margin-right: 100px;
    font-size: 20px;
    position: relative;
    cursor: pointer;
}

.myHeader .userName p{
    line-height: 93px;
}

.searchBox {
    height: 82px;
    background-color: #fff;
    margin-left: 16px;
    margin-top: 14px;
    padding-right: 42px;
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
}

.search-item {
    font-size: 0;
    display: inline-block;
    vertical-align: top;
    padding: 23px 20px;
}

.search-item p {
    font-size: 14px;
    color: #3D3D3D;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    vertical-align: top;
}

.search-item input {
    width: 300px;
    height: 36px;
    line-height: 36px;
    background-color: #F7F9FA;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    padding: 0 5px;
}

.search-item select {
    height: 36px;
    line-height: 36px;
    background-color: #F7F9FA;
    padding: 0 5px;
    border: none;
    outline: none;
}

.searchBox .btnBox {
    font-size: 0;
    padding: 23px 0;
}

.searchBox .btnBox .btn {
    display: inline-block;
    vertical-align: top;
    width: 110px;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    color: #fff;
    font-size: 15px;
    background-color: #CBCBCB;
    margin: 0 5px;
}

.searchBox .btnBox .btn-search {
    background-color: #457AFF;
}

.organiza-txt {
    display: block;
    padding: 20px;
    height: calc(100% - 220px);
}

.organiza-title {
    margin-bottom: 20px;
}

.organiza-title p {
    font-size: 18px;
    color: #3D3D3D;
    float: left;
    height: 36px;
    line-height: 36px;
}

.organiza-title p::before {
    content: '';
    display: inline-block;
    vertical-align: top;
    width: 5px;
    height: 36px;
    background-color: #457AFF;
    margin-right: 10px;
}

.organiza-title .btnBox {
    float: right;
    font-size: 0;
    margin-right: 39px;
}

.organiza-title .btnBox .btn {
    width: 126px;
    height: 36px;
    line-height: 36px;
    background-color: #477BFE;
    color: #fff;
    font-size: 15px;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    margin-right: 20px;
}

.dataList {
    height: calc(100% - 150px);
    overflow-y: auto;
    overflow-x: hidden;
}

.dataList .listItem,
.organiza-list {
    font-size: 0;
}

.dataList .listItem p,
.organiza-list p {
    display: inline-block;
    vertical-align: top;
    padding: 21px 30px;
    font-size: 14px;
    color: #3D3D3D;
}

/* .organiza-list p label {
    display: block;
}

.organiza-list p label input {
    width: 30px;
    height: 30px;
} */
.content .el-checkbox__inner{
    width: 20px;
    height: 20px;
}
.content .el-checkbox__inner::after{
    left: 7px;
    top: 5px;
}

.organiza-list {
    height: 100%;
}

.pageBox {
    margin-top: 10px;
    float: right;
}
.courseTips .el-upload--picture-card,
.content1 .el-upload-list--picture-card .el-upload-list__item,
.content1 .el-upload--picture-card{
    width: 100px;
    height: 100px;
}

.courseTips .el-upload--picture-card i,
.content1 .el-upload--picture-card i{
    display: block;
    margin: 36px 0 0;
}

.courseTips .el-upload-list--picture-card .el-upload-list__item,
.content1 .el-upload-list--picture-card .el-upload-list__item{
    display:none
}

.piliang .el-upload-list .el-upload-list__item{
    display: none;
}

.piliang .el-upload-list .el-upload-list__item:last-child{
    display: block;
}

.tipsBox form .write-txt input.el-upload__input{
   display: none; 
}