<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
* {
    margin: 0px;
    padding: 0px;
}

body {
    font: 12px/1.5 Microsoft YaHei, SimSun, Arial, Helvetica, sans-serif;
    color: #333;
    background: #FFF;
}

img {
    border: 0px;
}

ul, ol {
    list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input, select, textarea {
    vertical-align: middle;
    outline: none;
    resize: none;
    border: none;
    font-family: Microsoft YaHei;
}

a {
    color: #333;
    text-decoration: none;
}

.clearfix {
    zoom: 1;
    overflow: hidden;
}

.clear {
    clear: both;
    font-size: 0;
    height: 0;
    line-height: 0;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.icons {
    font-size: 0px;
    text-indent: -9999999px;
    overflow: hidden;
    display: block;
}


/**********颜色*************/
.bgWhite {
    background-color: #FFFFFF;
}

.bgGray {
    background-color: #f1f2f7;
}

.bgBlue {
    background-color: #24b6f4;
}

.colorBlack {
    color: #000000;
}

.colorWhite {
    color: #FFFFFF;
}

.colorBlue {
    color: #24b6f4;
}

.colorGray33 {
    color: #333333;
}

.colorGray66 {
    color: #666666;
}

.colorGray99 {
    color: #999999;
}

/******input伪元素placeholder更改颜色*********/
::-webkit-input-placeholder {
    color: #c3c3c3;
    text-overflow: ellipsis;
    font-size: 14px;
}

:-moz-placeholder {
    color: #c3c3c3 !important;
    text-overflow: ellipsis;
    font-size: 14px;
}

::-moz-placeholder {
    color: #c3c3c3 !important;
    text-overflow: ellipsis;
    font-size: 14px;
}

/* for the future */
:-ms-input-placeholder {
    color: #c3c3c3 !important;
    text-overflow: ellipsis;
    font-size: 14px;
}

/*截字段*/
.owt01 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*间距*/
.ml10 {
    margin-left: 10px;
}

.ml20 {
    margin-left: 20px;
}

.ml30 {
    margin-left: 30px;
}

.ml40 {
    margin-left: 40px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mr10 {
    margin-right: 10px;
}

.mr20 {
    margin-right: 20px;
}

.mr30 {
    margin-right: 30px;
}

.mr40 {
    margin-right: 40px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

/*分页*/
.pagination {
    text-align: right;
}

.pagination a, .pagination b {
    display: inline-block;
    font-size: 14px;
    vertical-align: top;
    border: solid #e5e5e5 1px;
    height: 24px;
    line-height: 24px;
    color: #666;
    margin: 0 2px;
    padding: 0px 7px;
}

.pagination a:hover, .pagination .cur {
    background-color: #24b6f4;
    color: #FFF;
}


/*复选框*/
input[type='checkbox'] {
    position: relative;
    width: 13px;
    height: 13px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid transparent;
}

input[type='checkbox']:after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 13px;
    height: 13px;
    top: -2px;
    left: 0;
    border: 1px solid #c6c6c6;
    background: #ffffff;
    border-radius: 2px;
}

input[type='checkbox']:checked:after {
    background: url(../images/c_box_check.png) no-repeat center;
    border: 1px solid transparent;
}

/*单选框*/
input[type='radio'] {
    position: relative;
    width: 11px;
    height: 11px;
    margin-right: 8px;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid transparent;
}

input[type='radio']:after {
    content: '';
    z-index: 1;
    position: absolute;
    width: 11px;
    height: 11px;
    top: -2px;
    left: 0;
    border: 1px solid #c6c6c6;
    background: #ffffff;
    border-radius: 50%;
}

input[type='radio']:checked:after {
    background-image: url(../images/radio_check.png);
    background-repeat: no-repeat;
    background-position: center;
    background-color: #ffffff;
    border: 1px solid transparent;
}
</pre></body></html>