.scrollbar {
    overflow: auto;
}

.scrollbar::-webkit-scrollbar { /*滚动条整体样式*/
    width: 6px; /*高宽分别对应横竖滚动条的尺寸*/
    height: 1px;
}

.scrollbar::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    height: 80px;
    border-radius: 10px;
    background: #D9D9D9;
}

.scrollbar::-webkit-scrollbar-track { /*滚动条里面轨道*/
    border-radius: 10px;
    background: #fff;
}

input::-webkit-input-placeholder {
    color: #ccc;
}

input::-moz-placeholder {
    color: #ccc;
}

input:-moz-placeholder {
    color: #ccc;
}

input:-ms-input-placeholder {
    color: #ccc;
}

.form-group {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
}

label, .label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    color: #333;
}

.form-control {
    height: 32px;
    outline: none;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding-right: 10px;
    padding-left: 10px;
    vertical-align: middle;
    color: #333;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    box-sizing: border-box;
}
.form-control:focus{
    border: 1px solid #2173D9;
}


.form-select {
    height: 32px;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding-right: 30px;
    padding-left: 12px;
    vertical-align: middle;
    color: #333;
    -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background: url(../images/icon_down.png) right 15px center no-repeat;
    background-size: 12px 6px;
    overflow: hidden;
}

.form-select-noborder {
    padding-left: 0;
    border: none;
    outline: none;
}

label + .form-control, .label + .form-control, label + .form-select, .label + .form-select {
    margin-left: 5px;
}

.btn {
    *overflow: visible;
    display: inline-block;
    border: 1px solid transparent;
    margin-bottom: 0;
    white-space: nowrap;
    vertical-align: middle;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    height: 32px;
    line-height: 32px;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    outline: none;
}

.btn + .btn {
    margin-left: 8px;
}

.btn:hover {
    text-decoration: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #b3b3b3;
}

.btn-primary {
    background: #3584ea;
    color: #fff;
}

.btn-primary:hover {
    background: #1a7cf6;
}

.btn-primary:active {
    background: #064ca4;
}

.btn-inverse {
    border: 1px #0863d5 solid;
    color: #0863d5;
    background: none;
}


.btn-inverse:active {
    border: 1px #064ca4 solid;
    color: #064ca4;
}

.btn-disable {
    background: #f6f6f6;
    border: 1px #e8e8e8 solid;
    color: #999;
    cursor: pointer;
}

.btn-disable:hover {
    background: #f6f6f6;
    border: 1px #e8e8e8 solid;
    color: #999;
}

.btn-disable:active {
    background: #f6f6f6;
    border: 1px #e8e8e8 solid;
    color: #999;
}

.btn-dottedline {
    border: 1px #e8e8e8 dashed;
    background: #f6f6f6;
    color: #ccc;
}

.btn .icon {
    margin: -2px 5px 0 0;
    vertical-align: middle;
}

.switch {
    display: inline-block;
}

.switch > input {
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
    *margin-bottom: 1px;
}

.switch > input:nth-child(1) {
    display: none;
}

.switch > .switch-name:last-child {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 16px;
    background-color: #ccc;
    border-radius: 8px;
    cursor: pointer;
    text-indent: -9999em;
}

.switch > .switch-name::before {
    position: absolute;
    top: 2px;
    left: 2px;
    display: block;
    width: 12px;
    height: 12px;
    content: "";
    border-radius: 50%;
    background: #fff;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.switch > .switch-name::after {
    position: absolute;
    top: 2px;
    right: 2px;
    display: block;
    width: 22px;
    height: 12px;
    line-height: 12px;
    content: "";
    text-indent: 0;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.switch > input:checked ~ .switch-name {
    background-color: #0863d5;
}

.switch > input:checked ~ .switch-name::before {
    left: 24px;
}

.switch > input:checked ~ .switch-name::after {
    left: 2px;
    content: "";
}

.choice {
    display: inline-block;
    margin: 5px 30px 5px 0;
    cursor: pointer;
}

.choice > input {
    width: 16px;
    height: 16px;
    margin-bottom: -3px;
    *margin-bottom: 1px;
}

.choice > input:nth-child(1) {
    display: none;
}

.choice > .choice-name {
    display: block;
    color: #333;
    line-height: 21px;
}

.choice > .choice-name::before {
    float: left;
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #ccc;
    margin: 3px 10px 0 0;
    padding: 4px;
    box-sizing: border-box;
}

.choice > input:checked ~ .choice-name::before {
    border: 1px solid #0863d5;
    background: #0863d5;
}

.choice > input[type="radio"] ~ .choice-name::before {
    border-radius: 50%;
    background-clip: content-box !important;
}

/*分页*/
.pagination {
    margin: 10px 0;
    text-align: center;
}

.pagination .label {
    color: #666;
}

.pagination .form-paging {
    width: 30px;
    padding: 0 2px;
    text-align: center;
}

.pagination-list {
    display: inline-block;
    *display: inline;
}

.pagination-list li {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}

.pagination-list li a, .pagination-list li span {
    position: relative;
    float: left;
    display: inline-block;
    min-width: 32px;
    height: 32px;
    line-height: 30px;
    border: 1px solid #ccc;
    border-radius: 2px;
    margin-right: 6px;
    text-decoration: none;
    text-align: center;
    color: #666;
}

.pagination-list li a:hover, .pagination-list li span:hover {
    border-color: #0863d5;
    color: #0863d5;
}

.pagination-list li a {
    background: #fff;
}

.pagination-list li.active a, .pagination-list li.active span {
    background-color: #0863d5 !important;
    border-color: #0863d5 !important;
    color: #fff;
}

.pagination-list li.disabled a, .pagination-list li.disabled span {
    border-color: #ccc;
    color: #ccc;
    cursor: default;
}

.pagination-list li.more a, .pagination-list li.more span {
    border-width: 0 !important;
    color: #999 !important;
}

/*面包屑*/
.breadcrumb {
    line-height: 20px;
}

.breadcrumb .breadcrumb-item {
    display: inline-block;
    color: #999;
    cursor: pointer;
}

.breadcrumb .breadcrumb-item:hover {
    color: #188eee;
}

.breadcrumb .breadcrumb-splitline {
    display: inline-block;
    color: #333;
}

.breadcrumb .breadcrumb-active {
    display: inline-block;
    color: #454545;
}

/*弹出层*/
.mask {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2222;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.child{
    width: 1298px;
    height: 764px;
    position: absolute;
    top: 13%;
    left: 18%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #e9eaeb;
    box-sizing: border-box;
}
.popup {
    position: absolute;
    left: 50%;
    top: 50%;
    padding: 0 0 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px #e9eaeb;
    box-sizing: border-box;
}

.popup-hd {
    position: relative;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px #e8e8e8 solid;
    border-radius: 5px 5px 0 0;
}

.popup-hd .title {
    font-size: 14px;
    font-weight: normal;
    background: #f9f9f9;
    padding: 0 16px;
    border-radius: 5px 5px 0 0;
}

.popup-hd .popup-close {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -6px;
    background: url(../images/icon_close_12.png) no-repeat;
    outline: none;
}


/*新增头部个人登录操作栏*/

.user-opera {
    height: 30px;
    float: right;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-opera > img {
    width: 14px;
    height: 14px;
    margin: 0 5px
}

.user-opera span {
    font-size: 14px;
    color: #fff;
}

.user-opera span:nth-of-type(2) {
    margin: 8px;
    color: #ccc
}
.user-opera .user {
    width: 135px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.user-opera .user .user-img{
    width: 18px;
    height: 18px;
    border-radius: 18px;
    margin-left: 15px;
}
.user-opera .user img{
    width: 10px;
    height: 6px;
}

.user-opera .user span {
    margin: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user-opera .user .icon {
    position: absolute;
    right: 13px;
    top: 8px;
    content: "";
    width: 8px;
    height: 8px;
    border-width: 1px 1px 0 0;
    border-color: #737373;
    border-style: solid;
    transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

.user-opera .user .ullist {
    display: none;
    width: 135px;
    background-color: #fff;
    position: absolute;
    top: 50px;
    right: 28px;
    z-index: 9;
}

.user-opera .user .ullist ul {
    overflow: hidden
}

.user-opera .user .ullist ul li {
    height: 16px;
    line-height: 16px;
    margin: 15px;
}

.user-opera .user .ullist ul li:nth-last-child(2) {
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.user-opera .user .ullist ul li:nth-of-type(5) {
    margin-top: 10px
}

.user-opera .user .ullist ul li:hover {
    color: #0000cc
}


/*名师工作室动态详情页 上传资源按钮动态样式*/
.sourceUpload{
    background-color: #0863d5 !important;
    color: #fff !important;
}