﻿input,
select {
    display: inline-block;
    width: 100%;
    height: 40px;
    line-height: 38px;
    border: 1px solid #dbdfed;
    box-sizing: border-box;
    border-radius: 6px;
    padding: 0 20px;
    font-size: 14px;
    background-color: #fff;
}
.checkbox {
    position: relative;
    box-sizing: border-box;
    margin: 0;
}

.checkbox input[type="checkbox"] {
    width: 8px;
    height: 10px;
    color: #757575;
    position: relative;
    top: 1px;
    left: 0;
    cursor: pointer;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: 5px;
}

.checkbox input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 1;
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    transform: rotate(-50deg);
    height: 0.25rem;
    left: -1px;
    top: 4px;
    width: 6px;
    border-color: #CCCCCC;
    border-left: 2px solid #989898;
    border-bottom: 2px solid #989898;
    border-top-style: none;
    border-right-style: none;
    border-radius: 0;
}

.checkbox input[type="checkbox"]::after {
    content: "";
    position: absolute;
    left: -5px;
    width: 16px;
    height: 16px;
    background: #fff;
    cursor: pointer;
    background: #e8eaee;
    box-sizing: border-box;
    border-radius: 6px;
}

.checkbox input[type="checkbox"]:checked::before {
    border-color: #fff;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    background: #ffc514;
}

.checkbox input[type="checkbox"]:checked::after {
    background: #ffc514;
}


.checkbox.all input[type="checkbox"]::before {
    border-left: 2px solid #989898;
    border-bottom: 2px solid #989898;
}

.checkbox.all input[type="checkbox"]::after {
    background: #555;
}

.checkbox.all input[type="checkbox"]:checked::before {
    border-left: 2px solid #ffc514;
    border-bottom: 2px solid #ffc514;
    background: #555;
}

.checkbox.all input[type="checkbox"]:checked::after {
    background: #555;
}

.ico_asc {
    display: inline-block;
    width: 7px;
    height: 11px;
    background: url(../img/ico_asc.png) no-repeat center;
    background-size: cover;
    margin-left: 6px;
}
.ico_asc.rotate {
    transform: rotate(180deg);
}

.checkbox span {
    font-size: 16px;
    color: #787878;
    line-height: 16px;
    cursor: pointer;
    margin-left: 10px;
}

input::placeholder {
    color: #d7d7d7;
}


.bd_btn {
    display: inline-block;
    min-width: 70px;
    height: 30px;
    line-height: 28px;
    padding: 0 12px;
    box-sizing: border-box;
    border: 1px solid #a8a8a8;
    border-radius: 4px;
    text-align: center;
    background: #fff;
}
.bd_btn:hover {
    border-color: #0e3061;
    box-shadow: 0 2px 0 rgba(188, 188, 188, .6);
}
.bg_btn {
    display: inline-block;
    min-width: 80px;
    height: 40px;
    line-height: 38px;
    border: 1px solid #a8a8a8;
    text-align: center;
    padding: 0 20px;
    color: #383838;
    background: #e1edff;
    box-sizing: border-box;
    border-radius: 4px;
}
.bg_btn.gray {
    background: #e8e8e8;
}
.bg_btn:hover {
    border-color: #0e3061;
    box-shadow: 0 2px 0 rgba(188, 188, 188, .6);
}
.btn_area .bd_btn {
    margin-left: 8px;
}
.btn_area .bg_btn {
    margin-left: 8px;
    /*flex: auto;*/
    max-width: 145px;
}
.btn_area {
    text-align: right;
    margin-top: 21px;
    display: flex;
}
.btn_area .paging {
    text-align: left;
    flex: auto;
    margin: auto;
}
.modal .paging {
    margin-top: 10px;
}

.table_div {
    border: 1px solid #dbdfed;
    border-radius: 10px 10px 0 0;
    margin-top: 10px;
}
table {
    width: 100%;
}
table thead {
    border-radius: 10px 10px 0 0;
}
table thead th {
    height: 50px;
    background: #eef0f8;
    color: #383838;
    font-weight: 500;
    padding: 0 8px;
    text-align: center;
}
table thead tr:nth-child(1) th:first-child {
    border-radius: 10px 0 0 0;
}
table thead tr:nth-child(1) th:last-child {
    border-radius: 0 10px 0 0;
}
table tbody td {
    height: 50px;
    text-align: center;
    background: #fff;
    color: #787878;
    padding: 0 8px;
}
table tbody tr:nth-child(even) td {
    background: #f8f8f8;
}
/*table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}
table tbody tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}*/
table .checkbox input[type="checkbox"] {
    top: -3px;
}
table td .bd_btn {
    margin: 0 2px;
}
table td .under {
    display: inline-block;
    color: #488fcb;
    border-bottom: 1px solid #488fcb;
    padding-bottom: 5px;
}
table td .under.gray {
    color: #787878;
    border-color: #787878;
}
table .b_bg th {
    background: #dbdfed;
}

.ico_check {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_check.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -2px;
}
.ico_del {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url(../img/ico_del.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -1px;
}
.ico_pen {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_pen.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -1px;
}
.ico_list {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_list.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -1px;
}
.ico_file {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_file.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -1px;
}
.ico_photo {
    display: inline-block;
    width: 16px;
    height: 14px;
    background: url(../img/ico_photo.png) no-repeat center;
    background-size: cover;
    margin-right: 7px;
    vertical-align: -2px;
}
.ico_cal {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_cal.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
}
.ico_plus {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_plus.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_plus2 {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_plus2.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_search_s {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_search_s.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_medal {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_medal.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_del_s {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_del_s.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_rec {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_rec.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_time {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_time.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_full {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_full.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.my_com {
    display: inline-block;
    width: 13px;
    height: 13px;
    background: #488fcb;
    border-radius: 3px;
    margin-right: 6px;
    vertical-align: -1px;
}
.ico_com {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_com.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_del_sm {
    display: inline-block;
    width: 9px;
    height: 9px;
    background: url(../img/ico_del_sm.png) no-repeat center;
    background-size: cover;
}
.ico_down {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_down.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}

.paging {
    overflow: hidden;
}
.paging a {
    float: left;
    display: block;
    line-height: 16px;
    padding: 0 15px;
    font-size: 14px;
    color: #787878;
}
.paging a.active {
    color: #488fcb;
    font-weight: 600;
}
.paging a i {
    display: block;
    width: 20px;
    height: 16px;
    background-size: cover !important;
}
.paging a.prev i {
    background: url(../img/paging_i.png) no-repeat center;
}
.paging a.prev_all i {
    background: url(../img/paging_all.png) no-repeat center;
}
.paging a.next i {
    background: url(../img/paging_i.png) no-repeat center;
    transform: rotate(180deg);
}
.paging a.next_all i {
    background: url(../img/paging_all.png) no-repeat center;
    transform: rotate(180deg);
}
input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}
.filebox label {
    display: inline-block;
    padding: .5em .75em;
    color: #999;
    font-size: inherit;
    line-height: normal;
    vertical-align: middle;
    background-color: #fdfdfd;
    cursor: pointer;
    border: 1px solid #ebebeb;
    border-bottom-color: #e2e2e2;
    border-radius: .25em;
}
.filebox .upload-name {
    display: inline-block;
    padding: .5em .75em;
    font-size: inherit;
    font-family: inherit;
    line-height: normal;
    vertical-align: middle;
    background-color: #f5f5f5;
    border: 1px solid #ebebeb;
    border-bottom-color: #e2e2e2;
    border-radius: .25em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
select {
    background: url(../img/ico_selec.png) no-repeat 94% center;
    background-size: 24px 16px;
}
.alarm_i {
    display: inline-block;
    width: 12px;
    height: 14px;
    background: url(../img/ico_alarm.png) no-repeat center;
    background-size: cover;
}
.ico_search {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_search30.png) no-repeat center;
    background-size: contain;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_liSearch {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_liSearch.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_set {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_set.png) no-repeat center;
    background-size: cover;
    vertical-align: -2px;
    margin-right: 6px;
}
.ico_check44 {
    display: inline-block;
    width: 25px;
    height: 15px;
    background: url(../img/ico_check44.png) no-repeat center;
    background-size: cover;
}
.ico_back {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_back.png) no-repeat center;
    background-size: cover;
    vertical-align: -1px;
    margin-right: 6px;
}
.ico_pur {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: url(../img/ico_pur.png) no-repeat center;
    background-size: cover;
    vertical-align: -1px;
    margin-right: 6px;
}
.plus_g {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url(../img/plus_g.png) no-repeat center;
    background-size: cover;
}
textarea {
    resize: none;
    border: 1px solid #dbdfed;
    border-radius: 6px;
    width: 100%;
}
table textarea {
    min-height: 80px;
    margin: 8px 0;
}
.pa_btn {
    position: absolute;
    top: 0;
    right: 0;
}
.purson_add .modal-footer .bg_btn {
    background: #fff;
    border-color: #0e3061;
}

