﻿
 /*新闻及资讯的搜索框*/
.searchBox {
    width: auto;
    height: auto;
    overflow: hidden;
    background: none !important;
    border: 1px solid #f7f7f7;
    padding: 5px;
}

    .searchBox .searchInput {
        display: block;
        width: 500px;
        height: auto;
        margin: auto auto;
        text-align: center;
    }

        .searchBox .searchInput span {
            /*占位:100px*/
            display: inline-block;
            width: auto;
            height: auto;
            line-height: 36px;
            font-size: 11pt;
            color: #333;
            float: left;
            text-align: right;
            font-family: Microsoft YaHei, '微软雅黑', Arial;
        }

        .searchBox .searchInput input {
            height: 36px;
            line-height: 36px;
            float: left;
        }

            .searchBox .searchInput input[type="text"] {
                /*合计占：300*/
                width: 270px;
                padding: 0px 10px; /*占20*/
                font-size: 10pt;
                margin-right: 10px; /*占10*/
                background: #f7f7f7;
            }

            .searchBox .searchInput input[type="button"] {
                width: 90px;
                background: #ffcc66;
                color: #990000;
                font-size: 11pt;
                cursor: pointer;
                font-family: Microsoft YaHei, '微软雅黑', Arial;
            }


/*新闻列表及显示样式*/
.newsList {
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 10px 0;
}

    .newsList li {
        width: auto;
        height: 40px;
        line-height: 40px;
        overflow: hidden;
        border-bottom: 1px dashed #cccccc;
        background: url(../images/inco_001.png) no-repeat left center;
        padding: 0px 10px 0px 15px;
        font-size: 11pt;
    }

        .newsList li:last-child {
            border-bottom: none;
        }

        .newsList li a {
            color: #333333;
        }

            .newsList li a:hover {
                text-decoration: underline;
            }

        .newsList li span {
            display: inline-block;
            height: 40px;
            line-height: 40px;
            float: right;
            font-size:10pt;
            color:#666;
        }


/*新闻及内容显示样式*/
.newsTitle {
    width: auto;
    height: auto;
    overflow: hidden;
    padding: 10px;
    line-height: 30px;
    color: #222222;
    text-align: center;
    border-bottom: 1px dashed #cccccc;
    margin-bottom: 10px;
    font-family: Microsoft YaHei, '微软雅黑', Arial;
    font-size: 13pt;
}

    .newsTitle span {
        display: block;
        width: auto;
        height: 20px;
        line-height: 20px;
        overflow: hidden;
        text-align: center;
        font-size: 12px;
        color: #666666;
    }

.newsBody {
    width: auto;
    height: auto;
    overflow: hidden;
    line-height: 20px;
    color: #333333;
    font-size: 14px;
    padding: 10px;
    margin-bottom: 20px;
}



/*有下划线的内容显示区域*/
.textline {

    width:auto;
    height:auto;
    overflow:hidden;
    border-bottom:1px solid #e1e1e1;
    padding:10px;
    line-height:30px;

}

/*内容显示区域里面的表格样式*/
.table_input {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1;
}

    .table_input tr {
        margin-bottom: 10px;
    }

    .table_input th {
        width: 120px;
        font-weight: normal;
        text-align: left;
        height: 40px;
        line-height: 40px;
        padding-left: 20px;
        color: #666;
        font-size: 11pt;
        font-family: Microsoft YaHei,'微软雅黑',Arial,Helvetica,sans-serif,Tahoma !important;
        vertical-align: top;
        border: #dcdcdc 1px solid;
        background:#f7f7f7;
    }

        .table_input th i {
            color: #f00;
            font-style: normal;
            font-size: 11pt;
            font-weight: bold;
        }

    .table_input td {
        padding-left: 5px;
        color: #000;
        border: #dcdcdc 1px solid;
    }

        .table_input td span {
            display: inline-block;
            height: 30px;
            line-height: 30px;
            float: left;
            margin-right: 5px;
            color: #666;
        }

        /*label默认*/
        .table_input td label {
            display: none;
            border: 0px;
            float: left;
        }
            /*基本提示信息*/
            .table_input td label.minfo {
                display: block;
                width: 100%;
                height: 26px;
                line-height: 26px;
                color: #666;
                font-size: 12px;
                background: url(../mainpage/16_05/shape_square_edit.png) no-repeat left center;
                padding-left: 20px;
                border: 0px;
                font-family: SimSun, '宋体', Helvetica, Arial, sans-serif;
                clear: both;
            }
            /*出错提示*/
            .table_input td label.merror {
                display: block;
                width: 100%;
                height: 26px;
                line-height: 26px;
                color: #c00;
                font-size: 9pt;
                clear: both;
                background: url(../mainpage/16_05/exclamation.png) no-repeat left center;
                padding-left: 20px;
            }
            /*正确的提示*/
            .table_input td label.mok {
                display: inline-block;
                width: auto;
                height: 26px;
                line-height: 26px;
                color: #0AB01D;
                font-size: 9pt;
                background: url(../mainpage/16_05/tick.png) no-repeat left center;
                padding-left: 20px;
            }
