﻿@charset "utf-8";

/* 全局样式 */

body {
    background: #eeeeee;
}


/* 通用样式 */

.shadow {
    filter: progid: DXImageTransform.Microsoft.Shadow(color='rgba(0,0,0,0.2)', Direction=0, Strength=20);
    /*for ie6,7,8*/
    -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    /*firefox*/
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    /*webkit*/
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    /*opera或ie9*/
}


/* header */

.header {
    position: relative;
    height: 70px;
    width: 100%;
    background: #0665fc;
    z-index: 99;
    filter: progid: DXImageTransform.Microsoft.Shadow(color='rgba(0,0,0,0.3)', Direction=0, Strength=30);
    /*for ie6,7,8*/
    -moz-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    /*firefox*/
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    /*webkit*/
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
    /*opera或ie9*/
}

.header .logo {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
    text-align: center;
    color: #009688;
    font-size: 16px;
}

.header .logo a {
    display: inline-block;
}

.header .logo a img {
    margin-top: 15px;
    display: inline-block;
    width: 150px;
    height: 40px;
}


/*主导航*/

.header-nav {
    float: right;
}

.header-nav ul li {
    float: left;
}

.header-nav ul li a {
    display: inline-block;
    transition: all 0.5s;
}

.header-nav ul li a:hover,
.header-nav ul li .select {
    background: #0557ce;
}

.header-nav ul li.cur a .img-box img {
    opacity: 1;
}

.header-nav ul li.cur a {
    background: #0557ce;
}

.header-nav ul li a .img-box {
    margin-top: 12px;
    height: 20px;
    width: 100%;
    text-align: center;
}

.header-nav ul li a .img-box img {
    display: inline;
    height: 100%;
    width: auto;
    opacity: 0.8;
    transition: all 0.5s;
}

.header-nav ul li a:hover .img-box img {
    opacity: 1;
}

.header-nav ul li a span {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    padding: 4px 30px;
    height: 30px;
    line-height: 30px;
}

.header-admin {
    height: 100%;
    position: relative;
    float: right;
    cursor: pointer;
}

.header-admin .admin-btn {
    position: relative;
    height: 70px;
    padding: 0px 30px;
    background: #ff6005;
    transition: all 0.5s;
}

.header-admin .admin-btn:hover {
    background: #ff9205;
}

.header-admin .admin-btn .img-box {
    margin-right: 5px;
    height: 20px;
    width: 20px;
    display: inline-block;
    vertical-align: middle;
}

.header-admin .admin-btn .img-box img {
    display: inline;
    height: 20px;
    width: 20px;
}

.header-admin .admin-btn span {
    height: 70px;
    line-height: 70px;
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: #fff;
}

.header-admin .admin-btn span a{
    color: #fff;
}

.header-admin .admin-nav {
    position: absolute;
    background: #fff;
    width: 100%;
    left: 0px;
    top: 70px;
}

.header-admin .admin-nav ul li a {
    display: inline-block;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    color: #333;
}

.header-admin .admin-nav ul li a:hover {
    background: #f5f5f5;
}

.header-admin .admin-login {
    position: absolute;
    right: 0px;
    top: 70px;
    width: 300px;
    padding: 40px 50px;
    background: #fff;
    filter: progid: DXImageTransform.Microsoft.Shadow(color='#ccc', Direction=0, Strength=30);
    /*for ie6,7,8*/
    -moz-box-shadow: 0px 10px 30px #ccc;
    /*firefox*/
    -webkit-box-shadow: 0px 10px 30px #ccc;
    /*webkit*/
    box-shadow: 0px 10px 30px #ccc;
    /*opera或ie9*/
}

.header-admin .admin-login .input-box {
    margin: 0 auto;
    width: 300px;
}

.header-admin .admin-login .input-box input {
    width: 280px;
    margin-bottom: 20px;
    font-size: 14px;
}

.header-admin .admin-login .input-box input:focus {
    outline: none;
    border: 1px solid #ff6005;
}

.header-admin .admin-login .login-btn {
    width: 300px;
    font-size: 16px;
    border: 0px;
    background: #ff6005;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
}

.header-admin .admin-login .login-btn:hover {
    width: 300px;
    font-size: 16px;
    border: 0px;
    background: #ff9205;
    transition: all 0.5s;
}

.header-admin .admin-login .closed-box {
    height: 22px;
    width: 22px;
    position: absolute;
    right: 15px;
    top: 15px;
}

.header-admin .admin-login .closed-box .iconfont {
    font-size: 10px;
    font-weight: bold;
    padding: 6px;
    height: 10px;
    width: 10px;
    text-align: center;
    line-height: 10px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    border-radius: 50%;
    transition: all 0.5s;
}

.header-admin .admin-login .closed-box .layui-icon:hover {
    background: rgba(0, 0, 0, 0.5);
}

.header-admin .admin-login .login-title {
    position: relative;
    font-size: 20px;
    height: 20px;
    line-height: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.header-admin .admin-login .login-title .line {
    display: block;
    position: absolute;
    top: 9px;
    width: 100px;
    height: 1px;
    font-size: 0px;
    background: #eeeeee;
}

.header-admin .admin-login .login-title .line1 {
    left: 0px;
}

.header-admin .admin-login .login-title .line2 {
    right: 0px;
}


/* main */

.main {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}


/* ind-title */

.ind-title {
    position: relative;
    width: 100%;
    margin-top: 40px;
}

.ind-title .font {
    position: relative;
    width: 100%;
    height: 70px;
    text-align: center;
    background: url(../../images/title-bg.png) bottom center no-repeat;
}

.ind-title .font .cn {
    padding-top: 10px;
    font-size: 36px;
    color: #000;
}

.ind-title .font .en {
    font-size: 12px;
    color: #959595;
    text-transform: uppercase;
}

.ind-title .line {
    position: relative;
    margin: 0 auto;
    margin-top: 20px;
    width: 40px;
    height: 8px;
    background: #0665fc;
}


/* tb-search */

.tb-search {
    width: 640px;
    height: 50px;
    padding: 10px;
    margin: 0 auto;
    background: url(../../images/alpha-white-20.png) 0 0 repeat;
}

.tb-search .box {
    width: 260px;
    float: left;
    height: 50px;
}

.tb-search .box select {
    width: 260px;
    height: 50px;
    border: none;
    border-right: 1px solid #cccccc;
}

.tb-search .box select option {
    padding: 5px 0px;
}

.tb-search .search-submit {
    font-size: 25px;
    color: #fff;
    border: none;
    background: #0665fc;
    width: 120px;
}

.tb-search .search-submit a {
    color: #fff;
}

/* tb-search-layui */

.tb-search-layui {
    width: 640px;
    height: 50px;
    padding: 10px;
    margin: 0 auto;
    background: url(../../images/alpha-white-20.png) 0 0 repeat;
}

.tb-search-layui .box {
    width: 260px;
    float: left;
    height: 50px;
}

.tb-search-layui .box .layui-form-select input {
    font-size: 16px;
    height: 50px;
    padding: 0 20px;
}

.tb-search-layui .box .layui-form-select dl {
    top: 52px;
    bottom:auto;
    text-align: left;
    font-size: 15px;
}

.tb-search-layui .box .layui-form-selectup dl{
    bottom: 52px;
    top: auto;
}

.tb-search-layui.box select {
    width: 260px;
    height: 50px;
    border: none;
    border-right: 1px solid #cccccc;
}

.tb-search-layui .box select option {
    padding: 5px 0px;
}

.tb-search-layui .search-submit {
    font-size: 25px;
    color: #fff;
    border: none;
    background: #0665fc;
    width: 120px;
}

.tb-search-layui .search-submit a {
    color: #fff;
}

/* tb-lib-list */

.tb-lib-list ul li {
    width: 370px;
    height: 270px;
    float: left;
    margin-right: 45px;
    margin-bottom: 45px;
    text-align: left;
    background: url(../../images/lib-bg.jpg) 0 0 no-repeat;
    filter: progid: DXImageTransform.Microsoft.Shadow(color='#ccc', Direction=0, Strength=30);
    /*for ie6,7,8*/
    -moz-box-shadow: 0px 0px 30px #ccc;
    /*firefox*/
    -webkit-box-shadow: 0px 0px 30px #ccc;
    /*webkit*/
    box-shadow: 0px 0px 30px #ccc;
    /*opera或ie9*/
}

.tb-lib-list ul li.last {
    margin-right: 0px;
}

.tb-lib-list ul li .wrap {
    width: 340px;
    padding-left: 25px;
}

.tb-lib-list ul li .title {
    padding-top: 10px;
    height: 70px;
    line-height: 70px;
    font-size: 20px;
    font-weight: bold;
}

.tb-lib-list ul li .title .sign {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin-right: 15px;
    margin-left: 5px;
    border-radius: 50%;
    background: #0665fc;
}

.tb-lib-list ul li .des {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.tb-lib-list ul li .des div {
    height: 22px;
    margin-bottom: 15px;
}

.tb-lib-list ul li .des .img-box {
    display: block;
    height: 22px;
    width: 22px;
    overflow: hidden;
    float: left;
    margin-right: 10px;
}

.tb-lib-list ul li .des span img {
    display: inline-block;
    line-height: 22px;
    height: 22px;
    width: 22px;
    vertical-align: middle;
}

.tb-lib-list ul li .des .font-box {
    display: block;
    line-height: 22px;
    width: 300px;
    height: 22px;
    float: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tb-lib-list ul li .btn {
    display: block;
    text-align: center;
    width: 100px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #0665fc;
    color: #0665fc;
    background: none;
    border-radius: 5px;
    font-size: 16px;
}

.tb-lib-list ul li .btn:hover {
    background: #0665fc;
    color: #fff;
    transition: all 0.5s;
}

/* tb-act-list */

.tb-act-list ul li {
    float: left;
    margin-right: 150px;
    background: #fff;
    text-align: left;
    filter: progid: DXImageTransform.Microsoft.Shadow(color='#ccc', Direction=0, Strength=30);
    /*for ie6,7,8*/
    -moz-box-shadow: 0px 0px 30px #ccc;
    /*firefox*/
    -webkit-box-shadow: 0px 0px 30px #ccc;
    /*webkit*/
    box-shadow: 0px 0px 30px #ccc;
    /*opera或ie9*/
}

.tb-act-list ul li.last {
    margin-right: 0px;
}

.tb-act-list ul li .img-box {
    width: 300px;
    height: 180px;
    overflow: hidden;
}

.tb-act-list ul li .img-box img {
    width: 300px;
    height: 180px;
}

.tb-act-list ul li .name {
    width: 270px;
    padding: 15px 15px;
    height: 40px;
    font-size: 16px;
    line-height: 20px;
}

.tb-act-list ul li .btn {
    width: 270px;
    padding: 0px 15px;
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
    color: #0665fc;
}


/* footer */

.footer {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    background: #343434;
}

.ul-footer {
    /*width: 1000px;*/
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.ul-footer li {
    text-align: left;
    float: left;
    margin-left: 50px;
    color: #bebebe;
}

.f-title {
    text-align: left;
    font-size: 18px;
    padding-bottom: 5px;
    display: inline-block;
    padding-right: 20px;
    margin-bottom: 5px;
    border-bottom: 3px solid #ccc;
}

.f-text {
    text-align: left;
    font-size: 12px;
    line-height: 20px;
}

.f-text a {
    color: #a2a2a2;
}

.f-text a:hover {
    color: #dedada;
}

.foo {
    width: 100%;
    text-align: center;
    background: #1e1e1e;
    padding: 10px 0;
    color: #a2a2a2;
    font-size: 12px;
}

.ul-footer .f01 {
    margin-left: 0px;
}

.ul-footer .f04 {
    float: right;
    color: #a2a2a2;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
}

.f04 .div>span {
    float: left;
}

.f04 .div img {
    width: 94px;
    height: 94px;
}

.fs01,
.fs02 {
    display: none;
    /*display: inline-block;*/
    width: 93px;
    text-align: center;
}

.fs02 span {
    color: orange;
}

.footer .footer-er-box {
    display: inline-block;
}

.s002 {
    display: inline-block;
    margin: 0 10px;
}


/* footer-tb */

.footer-tb {
    width: 100%;
    line-height: 40px;
    font-size: 12px;
    position:fixed;
    bottom:0px;
    z-index: 99999;
    text-align: center;
    background: #e9eef3;
}


/* 样式覆盖 */

.tb-table-style {

}

.tb-table-style1 {}

.tb-table-style .btn-info {
    color: #fff;
    margin-right: 10px;
}

.tb-table-style thead tr th {
    position: relative;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    font-size: 14px;
    background: #f2f2f2;
}

.tb-table-style tbody tr td {
    padding: 9px 15px;
}

.tb-table-style .btn {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    font-size: 12px;
    font-weight: 1000;
    line-height: 20px;
    text-align: center;
    white-space: normal;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    border-radius: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    background: none;
    box-shadow: none;
    color: #428bca;
    opacity: 1;
    transition: all 0.5s;
    margin-right: 15px;
    text-decoration:underline;
    text-shadow:none;
}

.tb-table-style .btn:hover{
    color: #0665fc;
    opacity: 1;
    background: none;
}

/* home-dayrEdit */

.home-dayrEdit .g-sd1 table thead th{
    background: #f2f2f2;
}

.home-dayrEdit .g-mn1c table thead th{
    background: #f2f2f2;
}

/* Home-YeahrEdit */
.home-YeahrEdit{
}

.home-YeahrEdit .table .btn-danger{
    margin-top: 3px;
}

.home-YeahrEdit table tr td .form-control{
    text-align: left;
}

.home-YeahrEdit table tr td .btn{
    padding-top: 7px;
    padding-left: 15px;
}

.tb-file {
    width:400px;
    position:absolute;
    background:#fff;
    display:none;
    margin-left:-410px;
    border:1px solid#f2f2f2;
    overflow:auto;
}
.tb-file .title {
     height:35px;
     line-height:35px;
     padding-left:10px;
     color:#000;
     background:#f2f2f2;
}

/* home-CompanyList */

.home-CompanyList{
}

.home-CompanyList .tablebody{
    width: 100%;
}

.home-CompanyList .tree-box-wrap{
    width: 300px;
    padding-right: 40px;
}

.home-CompanyList .tree-box{
    width:300px; 
    height:400px; 
    border:1px solid #eeeeee;
    overflow:auto; 
    background:#f2f2f2;
    z-index:999
}

/* tb-modal-style1 */
.tb-modal-style1 .des-box{
    line-height: 30px;
}

.tb-modal-style1 button{
    margin-top: -3px;
}


/* 内页头部 tb-page-header */

.tb-page-header {
    text-align: left;
    padding: 30px 40px;
    margin: 0px;
}

.tb-page-header a {
    color: #fff;
}

.tb-page-header h1 {
    font-size: 24px;
    margin: 0px;
    font-weight: bold;
}

/* bootstrap 重置 */

.panel {
    border: none;
}

.bootstrap-table .fixed-table-container.fixed-height .table thead th {
    background: #f2f2f2;
}

.tb-table-style thead>tr>th,
.tb-table-style tbody>tr>th,
.tb-table-style tfoot>tr>th,
.tb-table-style thead>tr>td,
.tb-table-style tbody>tr>td,
.tb-table-style tfoot>tr>td {
    text-align: left;
    position: relative;
    padding: 9px 15px;
    min-height: 20px;
    line-height: 20px;
    border: 1px solid #e6e6e6;
}

.bootstrap-table .fixed-table-container.fixed-height .table thead th{
    background: #f2f2f2;
}



/* 后台公共样式 
--------------------------------------------------------------*/

.bg-fff {
    background: #fff;
}

.ov-x-auto {
    overflow-x: auto;
}

.tb-data-wrap {
    padding: 20px;
}


/* tb-tab-lg */

.tb-tab-lg {
    padding: 0px 15px;
    padding-top: 10px;
    background: #f2f2f2;
    border-bottom: 1px solid #e6e6e6;
}

.tb-tab-lg ul {
    border-bottom: none;
}

.tb-tab-lg li a {
    padding: 10px 20px;
}


/* 操作功能 */

.operation-zone {
    text-align: left;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eeeeee;
}

.operation-zone .form-control {
    width: 300px;
}

.operation-zone .form-group {
    margin-right: 20px;
}

.operation-zone .form-group label {
    margin-right: 10px;
}

.operation-zone .btn2 {
    float: right;
}


/* 内页头部操作 */

.header-operation {
    text-align: left;
    padding: 20px 40px;
    border-bottom: 1px solid #eeeeee;
}

.header-operation .form-control {
    width: 300px;
    background-color: #fff;
}

.header-operation .form-group {
    margin-right: 20px;
    line-height: 100%;
}

.header-operation .form-group label {
    margin-right: 10px;
}

.header-operation .mg00 {
    margin: 0px;
}


.page-title-sm {
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 0px;
}


.tb-table-style .tb-table-ct{
    font-size: 15px;
    font-weight: bold;
    padding: 10px 20px;
    padding-top: 30px;
    border-bottom: 1px solid #c2c2c2;
    text-align: left;
}

/* logs-Index */
.logs-Index .input-group{
    width: 300px;
    float: left;
}

.logs-Index .control-label{
    float: left;
    line-height: 34px;
}



/* 信息发布样式 */

.tb-release {}

.tb-release-zone {
    background: #fff;
}

/* 填报表格样式 */

.tb-fill-table .form-control {
    border: none;
    text-align: center;
}

.tb-fill-table .table-error {
    position: absolute;
    color: #fff;
    background: #ff006e;
    padding: 5px;
}

/* bi框架 */
.bi-content-wrap{
    position: relative;
    height: 90%;
}

.bi-content{
    position: relative;
    height: 100%;
}

.bi-content iframe{
    width: 100%;
    height: 100%;
    border: 0px;
}

/* tb-table-btn */

.tb-table-btn{
    font-size: 14px;
    color: #0665fc;
}

.tb-table-btn:visited{
    font-size: 14px;
    color: #0665fc;
}

.tb-table-btn:link{
    font-size: 14px;
    color: #0665fc;
}

.tb-table-btn:hover{
    font-size: 14px;
    color: #f0f;
}

/* zb-index */
.zb-index .tb-table-style tbody tr td{
    padding-top: 15px;
}

.zb-index .tb-table-style tbody tr .zbl{
    padding-top: 9px;
}

/* zbconfig-EditZb */
.zbconfig-EditZb table{
    width: 100%;
}


.table-error {
    position: absolute;
    color: #fff;
    background: #ff006e;
    padding: 5px;
}