﻿/* CSS Reset */

html, body, div, span, applet, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-weight: normal;
    vertical-align: baseline;
}

ol, ul, li {
    list-style: none;
}

/* 文本域禁止拖拽且没有边框 */

textarea {
    outline: none;
    resize: none;
}

/* Custom Background-Img */

body {
    background: #FFFFFF url(../images/bg_xz.jpg) no-repeat center -80px;
}

/* Custom Header */

.header {
    width: 1125px;
    height: 200px;
    margin: 10px auto;
}

.header .logo_box {
    display: flex;
    align-items: center;
   /* justify-content: space-between;*/
    position: relative;
}

.header .logo_box .logo_img {
    margin-top: 15px;
    width: 654px;
    height: 73px;
    background: url(../images/logo_xz.png) no-repeat left top;
    z-index: 10;
}

.header .logo_box_2 input {
    border-radius: 3px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    padding: 0px 56px 0 10px;
    outline: none;
    width: 308px;
    border: 1px solid #165cc0;
    background: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

.logo_search {
    padding-left: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    width: 56px;
    height: 37px;
    background: #165cc0 url(../images/search.png) no-repeat center;
    background-size: 21px;
    position: absolute;
    top: 35px;
    right: 0px;
    display: inline-block;
}

/* Custom  Footer*/

.footer {
    width: 100%;
    height: 87px;
    /* footer的高度一定要是固定值*/
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: #01479D url(../images/footerIcon.png) no-repeat 35% 45%;
    z-index: 3;
}

.footer p:first-child {
    padding-top: 5px;
}

.footer p {
    text-align: center;
    font-size: 12px;
    font-weight: 0;
    color: #FFFFFF;
    line-height: 16px;
    margin-top: 8px;
}

/* Custom Nav */

.nav_box {
    width: 1125px;
    height: 45px;
    line-height: 45px;
    background: rgba(1, 71, 157, 1);
    margin: 0 auto;
}
.nav_box2 {
    width: 190px;
    height: 90px;
    line-height: 45px;
    background: rgba(1, 71, 157, 1);
    margin: 0 auto;
    float: left;
    position: absolute;
    z-index: 999;
}

.nav_box ul li div {display:none;}
.nav_box ul li:hover div,.nav_box ul li a:hover div,.nav_box ul li a:active div {display:block;}
.nav_box2 ul li:hover,.nav_box2 ul li a:hover,.nav_box2 ul li a:active {background-color:#86cfff91;border-radius: 15px;}

.nav_box ul li {
    width: 16%;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.nav_box ul li :hover .nav_box2 {
    left:0px;
    top:38px;
}

.nav_box2 ul li {
    width: 100%;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.nav_box ul li a {
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    width: 100%;
    height: 100%;
    letter-spacing: 2px;
    display: inline-block;
}


/* .nav_box ul li a:hover {
    width: 100px;
        height: 30px;
        line-height: 30px;
        border-radius: 15px;
        background-color: #86cfff91;
        color: #fff;
} */

/* 表格样式设置 */

/* table tbody tr td {
    overflow: hidden;
    text-overflow: ellipsis;
} */

/* 左侧内容 */

.fix {
    width: 100%;
    /*display: flex;*/
    /*justify-content: space-between;*/
    padding: 0px 30px;
}

.flleft {
    width: 180px;
    /*float: left;*/
}

.col_links dt {
    width: 100%;
    height: 40px;
    line-height: 40px;
    color: white;
    background-color: #1a75e7;
    text-align: center;
    /*margin: 10px auto;*/
    /*border-radius: 15px;*/
}

.col_links dd {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: left;
    padding-left: 10px;
    /*padding: 10px 15px;*/
}

.col_links dd a {
    text-decoration: none;
    color: #696969;
}

.col_links dd a:hover {
    color: #60a1eb;
    font-weight: 600;
}

.col_links dd a.active_dd {
    color: #1974e7;
}

.fix .flright {
    width: 855px;
    float: right;
    line-height: 32px;
    /* margin-right: 40px; */
}

.active_col_link {
    color: #1974e7;
    margin-left: 30px;
    display: inline-block;
    border-bottom: 2px solid #1974e7;
}

/* 搜索框 */

.search_header {
    /*width: 60%;*/
    /*margin: 20px auto;*/
    display: flex;
    /* border: 1px solid #1974e7; */
}

.search_header input {
    /* 盒子模型，怪异IE盒子模型，width=content+border*2+padding*2 */
    float: left;
    width: 330px;
    height: 36px;
    outline: none;
    border: 1px solid #cdd3da;
    border-right: none;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 14px;
}

.search_header .query_btn {
    float: right;
    width: 100px;
    height: 36px;
    background-color: #1671e2;
    color: white;
    border-style: none;
    outline: none;
    font-size: 14px;
}

.search_header .query_btn:hover {
    font-size: 18px;
}

/* 下拉菜单 + 搜索框 */

.select_search_header {
    /*width: 80%;*/
    /*margin: 20px auto;*/
    display: flex;
}

.select_search_header .select_box {
    flex: 1;
    height: 36px;
    width: 150px;
    margin-left: 10px;
    box-sizing: border-box;
    padding-left: 10px;
    font-size: 14px;
    border: 1px solid #cdd3da;
    /*color: #cdd3da;*/
}

.select_search_header .search_input {
    flex: 4;
    height: 36px;
    width: 240px;
    box-sizing: border-box;
    margin-left: 10px;
    outline: none;
    border: 1px solid #cdd3da;
    font-size: 14px;
    padding-left: 10px;
}

.select_search_header .query_btn {
    float: right;
    width: 100px;
    height: 36px;
    background-color: #1974e7;
    color: white;
    border-style: none;
    font-size: 14px;
    outline: none;
}

/* 通用字体颜色 */

.blueColor {
    color: #60a1eb;
}

.greyColor {
    color: #d0d0d0;
}

.lightblue {
    color: #f0f8fb;
}

/* 通用样式 */

.pd15 {
    padding: 15px;
}

.pd30 {
    padding: 15px 30px;
}

.l {
    float: left;
}

.r {
    float: right;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.dsn {
    display: none;
}

.db {
    display: block;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pb5 {
    padding-bottom: 5px;
}

.pt5 {
    padding-top: 5px;
}

.rel {
    position: relative;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.ell {
    /* 文本溢出部分用省略号显示 */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.item .time {
    right: 10px;
    top: 7px;
    color: #6E6C6D;
}

.abs {
    position: absolute;
}

.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.tcollapse {
    border-collapse: collapse;
}

.mt10 {
    margin-top: 10px;
}

.g6 {
    color: #666;
}

.g6:hover {
    color: #318DFF;
}

/* body 样式 */

/* #container {
    保证footer是相对于container位置绝对定位
    position: relative;
    width: 100%;
    min-height: 100%;
    设置padding-bottom值大于等于footer的height值，以保证main的内容能够全部显示出来而不被footer遮盖；
    padding-bottom: 100px;
    box-sizing: border-box;
} */

.content {
    width: 1125px;
    min-height: 680px;
    margin: 0 auto 100px;
    background: rgb(255, 255, 255);
}

/* Custom  Public*/

.clear {
    clear: both;
}

/* 申报正文 */

.center_row {
    margin-top: 15px;
    padding-left: 5%
}

.center_row2 {
    margin-top: 10px;
}

.breadcrumb>li+li:before {
    color: #CCCCCC;
    content: "/ ";
    padding: 0 5px;
}

.breadcrumb {
    margin-bottom: 30px !important;
    background: #eff2f4 !important;
}

.breadcrumb li a {
    font-size: 14px !important;
}

.text-with-hr {
    /*text-align: center;*/
    position: relative;
    z-index: 2;
    width: 95%;
    margin: 25px auto;
}

.text-with2 {
    line-height: 36px;
}

/*
横线，并通过z-index：-1将or附近的横线遮盖住
*/

.text-with-hr:before {
    position: absolute;
    content: '';
    top: 20px;
    left: 0px;
    width: 100%;
    border-bottom: 1px solid rgb(24, 93, 222);
    z-index: -1;
}

.text-with:before {
    position: absolute;
    content: '';
    top: 20px;
    left: 0px;
    width: 100%;
    /*border-bottom: 1px solid rgb(24,93,222);*/
    z-index: -1;
}

.active-xm {
    background: rgb(24, 93, 222) !important;
    color: white !important;
    border: 1px solid rgb(24, 93, 222) !important;
}

.text-with-hr span {
    display: inline-block;
    background: white;
    padding: 9px 0;
    border-radius: 20px;
    border: 1px solid rgb(24, 93, 222);
    line-height: 1.428571429;
    width: 40px;
    text-align: center;
    height: 40px;
    color: rgb(24, 93, 222);
    margin-left: 14%;
    margin-right: 5%;
}

.text-with-hr2 span {
    margin-left: 18%;
    margin-right: 7%;
}

.text-with span {
    display: inline-block;
    width: 180px;
    text-align: center;
    margin-left: 5.7%;
    font-family: SimHei;
    margin-top: 15px;
}

.text-with2 span {
    width: 250px;
}

.margin-span {
    margin-left: 9.5% !important;
    ;
}

.jbxx {
    background: rgb(24, 93, 222);
    margin-top: 10px;
    text-align: center;
    color: white;
    line-height: 30px;
    height: 30px;
    border-radius: 5px;
}

.control-label {
    text-align: right;
    line-height: 34px;
    font-size: 14px;
}

/*
.select-width{
	width:72%;
}
*/

.glxm {
    position: relative;
    height: 34px;
    background: rgb(24, 93, 222);
    color: white;
}

.bkgc1 {
    width: 150px;
    background: rgb(220, 86, 20);
    color: white;
}

.bkgc2 {
    width: 150px;
    background: rgb(137, 138, 139);
    color: white;
}

/*模态框样式修改*/

.modal-header {
    padding: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.modal-footer {
    padding: 1px;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}

.modal {
    top: 10%;
}

.table-row {
    margin-top: 20px;
}

.table th, td {
    text-align: center;
    padding: 5px;
}

.width-css {
    width: 25%;
}

.ztree {
    height: 230px;
}

.left_css {
    width: 50%;
    margin-left: 15px;
    margin-bottom: 10px;
}

.special_lineheight {
    line-height: 17px;
}

.lxrpadleft {
    padding-left: 0px;
}

.lxrpadright {
    padding-right: 0px;
}

.frlxrlineheight {
    line-height: 34px;
}

.prompt-font {
    font-size: 12px;
}

.xmfrNew {
    border-top: 1px solid #cccccc;
    margin-top: 20px;
    padding-top: 10px;
}

.xmfrNewButton {
    text-align: center;
    margin-top: 10px;
}

.lcxxmargin {
    margin-top: 15px;
}

.zwdiv {
    margin: 35px 0px;
}

.tab {
    background-color: #f1f7fa;
    width: 25%;
}

/* 新闻资讯样式 */

.fl_title {
    width: 100%;
    height: 36px;
    line-height: 36px;
    margin-bottom: 5px;
}

.fl_title::before {
    position: relative;
    content: '';
    border-left: 4px solid #01479D;
    height: 20px;
    /**border-radius: 5px;*/
    margin-right: 10px;
}

.border-top {
    padding-top: 3px;
}

.border-top li {
    border-bottom: 1px dashed #e5eaee;
    line-height: 44px;
    height: 44px;
}

.border-top {
    font-size: 14px;
}

.fl_title span {
    color: #444444;
    font-size: 18px;
}

.fl_title span.more a {
    /* display: inline-block; */
    /* margin-left: 600px; */
    font-size: 16px;
    color: #0D83BF;
    /* text-decoration: none; */
    float: right;
}

.fl_title span.more a:hover {
    color: indianred;
}

ul li a.link_con {
    width: 78%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: inline-block;
}

.newsContent .flright ul li a:hover {
    text-decoration: underline;
    color: indianred;
}

.newsContent .flright ul li div.time {
    float: right;
    width: 20%;
    text-align: right;
}

/* 公示---右侧样式 */

.flright .haha_box_resultsPublicity {
    width: 725px;
    height: 96px;
    height: 60px;
    position: relative;
}

.haha_box_resultsPublicity .haha_form {
    width: 555px;
    height: 34px;
    font-size: 14px;
    padding: 0px 5px;
    outline: none;
}

.haha_box_resultsPublicity .haha_search .search_icon {
    width: 36px;
    height: 34px;
    background: #1975E6 url(../images/search.png) no-repeat center;
    background-size: 28px;
    position: absolute;
    top: 0;
    left: 555px;
}

/* #proTable td {
    border: 1px solid #E6E6E6;
} */

.qmanu {
    padding-right: 3px;
    padding-left: 3px;
    padding-bottom: 3px;
    padding-top: 3px;
    text-align: center;
    font-family: "microsoft yahei";
    font-size: 12px;
    margin: 15px;
}

/* 中介服务 一级页面 */

.zjml {
    background-color: #1974e7;
    color: #fff;
    border-radius: 10px;
}

/*
.haha_table .tt_header {
    color: #AFAFAF;
}

.haha_table .tt_header td, .haha_table .split_tr td {
    border-bottom: 1px solid #E6E6E6;
}

.haha_table td {
    padding: 0px 5px;
}

.tc {
    text-align: center;
    white-space: nowrap;
}

.haha_table .asdf {
    position: relative;
    padding-left: 15px;
    white-space: nowrap;
    text-align: left;
}

.haha_table .asdf:before {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    border: 2px solid #BFBFBF;
    background: #D9D9D9;
    left: 1px;
    top: 50%;
    margin-top: -2px;
} */

/* 办事大厅 -二级页面 - 流程指引 */

.lczy_content {
    height: 220px;
    margin-top: 20px;
    padding: 0px 30px;
}

.bottom_explain {
    height: 150px;
    padding: 0px 30px;
}

.lczy_content_item {
    width: 12%;
    background-color: #efefef;
    text-align: center;
    padding: 5px 0px;
    display: inline-block;
}

.bottom_explain_item {
    width: 12%;
    height: inherit;
    text-align: center;
    padding: 30px 0px;
    display: inline-block;
    color: #959191;
    vertical-align: top;
    /* border: 1px solid #efefef; */
}

.explain_title {
    display: inline-block;
    font-size: 15px;
}

.explain_con {
    display: inline-block;
    height: 100px;
    font-size: 12px;
    padding: 8px 10px 0px;
}

.row_1 {
    display: inline-block;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #6F6F6F;
    margin-top: 15px;
}

.row_2 {
    font-weight: 600;
}

.row_3 {
    display: inline-block;
    height: 122px;
    font-size: 12px;
    padding: 8px 10px 10px;
}

.pt10 {
    padding-top: 15px;
    font-size: 15px;
}

/* 鼠标移入div放大 */

.lczy_content_item {
    transition: all 0.3s;
}

.lczy_content_item:hover {
    background-color: #1975E6;
    color: #ffffff;
    cursor: pointer;
    transform: scaleY(1.1) translateZ(0);
}

/* 项目申报 - 页面样式 */

.content_main {
    padding: 0px 30px;
}

.content_main p.introduce {
    color: #666666;
    font-size: 14px;
    margin: 40px 0px 0px;
    padding-left: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CCCCCC;
}

.declareItem {
    margin: 0px;
    height: 180px;
}

.typ-inner {
    height: 154px !important;
}

.steps {
    width: 1065px;
    height: 190px;
    position: relative;
    text-align: center;
}

.steps .step {
    width: 20%;
    float: left;
}

.step .step_head {
    color: #1975E6;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 100%;
    position: relative;
}

.step .step_head::before, .step .step_head::after {
    content: "";
    position: absolute;
    display: block;
    left: 0%;
    top: 50%;
    -webkit-transform: translate(-0%, -50%);
    transform: translate(-0%, -50%);
    border-top: 1px solid #1975E6;
    width: 39%;
}

.step .step_head::after {
    left: 61.5%;
}

.step .step_head .circle {
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(25, 117, 230, 1);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.step .step_head .circle span {
    display: inline-block;
    color: #1975E6;
    font-size: 18px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, 0%);
    transform: translate(-50%, -50%);
}

.step .step_main {
    width: 213px;
    padding-top: 15px;
    text-align: center;
}

.step .step_main .step_main_title {
    color: #333333;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}

.step .step_main .step_main_con {
    color: #666666;
    font-size: 14px;
    width: 164px;
    line-height: 20px;
    margin: 0 auto;
}

.step .step_head .current_step {
    background-color: #185dde;
}

/* 申报类型 */

.declareItem {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* margin-top: 2%; */
}

.declareItem .type {
    /* width: 183px;
    height: 113px; */
    width: 165px;
    height: 100px;
    border-radius: 16px;
}

.declareItem .type p {
    text-align: center;
    font-size: 16px;
    padding-top: 40%;
}

.declareItem .type p:hover {
    color: #ffffff;
}

.type1 {
    background: rgba(241, 247, 255, 1) url(../images/type1.png) no-repeat center 25%;
}

.type1:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType1.png) no-repeat center 25%;
}

.type2 {
    background: rgba(241, 247, 255, 1) url(../images/type2.png) no-repeat center 25%;
}

.type2:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType2.png) no-repeat center 25%;
}

.type3 {
    background: rgba(241, 247, 255, 1) url(../images/type3.png) no-repeat center 25%;
}

.type3:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType3.png) no-repeat center 25%;
}

.type4 {
    background: rgba(241, 247, 255, 1) url(../images/type4.png) no-repeat center 25%;
}

.type4:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType4.png) no-repeat center 25%;
}

.type_add1 {
    background: rgba(241, 247, 255, 1) url(../images/ppt.png) no-repeat center 25%;
}

.type_add1:hover {
    background: rgba(49, 141, 255, 1) url(../images/pptHover.png) no-repeat center 25%;
}

.type_add2 {
    background: rgba(241, 247, 255, 1) url(../images/jianguan.png) no-repeat center 25%;
}

.type_add2:hover {
    background: rgba(49, 141, 255, 1) url(../images/jianguanHover.png) no-repeat center 25%;
}

/* 二级页面 - 项目申报 - 地区/分类划分 */

.sidebar_tab {
    /* width: 200px;
    float: left;
    border: 1px #c9e0ff solid;
    height: 40px; */
    width: 100%;
    /*margin: 10px auto;*/
    height: 34px;
    line-height: 34px;
    margin-bottom: 10px;
}

.s_tab_title {
    /* width: 50%;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    cursor: pointer;
    text-align: center;*/
    background: #e0e8ef;
    width: 50%;
    text-align: center;
    cursor: pointer;
    color: #5986a6;
}

.tab1, .tab2 {
    float: left;
}

.tab1:hover, .tab2:hover {
    color: #fff;
    background: #1a75e7;
}

.tab1 {
    /*border-radius: 15px 0px 0px 15px;*/
}

.tab2 {
    /*border-radius: 0px 15px 15px 0px;*/
    /*border-left: 1px solid black;*/
}

/* 左侧 - 导航 - 样式 [地区/分类] */

.fix .flleft {
    font-size: 14px;
    width: 180px;
    float: left;
    /*min-height: 510px;*/
    border: none;
    background-color: #f8f8f8;
}

.selected2 {
    color: #fff;
    background: #1a75e7;
}

.li_sp ul li {
    cursor: pointer;
    /*超出部分隐藏*/
    overflow: hidden;
    /* 强制在同一行内显示所有文本，直到文本结束或者遭遇 br 对象。不换行 */
    word-break: keep-all;
    /* 内容超出宽度时隐藏超出部分的内容 */
    white-space: nowrap;
    /* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
    text-overflow: ellipsis;
    height: 26px;
    line-height: 26px;
    border: 1px solid #ccc;
    margin-top: 10px;
    padding-left: 10px;
    color: #606266;
    font-size: 14px;
}

.li_sp ul li:hover {
    color: #fff;
    background-color: #1183db;
}

/* 右侧 - 导航 - 样式 */

.flright .tabs {
    height: 38px;
    width: 100%;
    margin-bottom: 20px;
}

.flright .tabs .tab_a {
    height: 100%;
    line-height: 38px;
    padding: 0 15px;
    font-size: 16px;
    cursor: pointer;
}

.selected {
    color: #1975E6;
    /* border-bottom: 2px solid #1975E6; */
}

/* 右侧 - 内容 - 样式 */

.tab_content .ss_box {
    border: 1px solid #D6D6D6;
    padding: 10px 8px;
    margin: 10px 0px;
}

.tab_content .ss_box .ss_title {
    font-weight: 600;
}

.tab_content .ss_box .ss_content {
    margin-top: 10px;
    color: #666666;
    font-size: 14px;
    /*min-height: 40px;*/
    line-height: 40px;
    padding-left: 12px;
}

.tab_content .ss_box .ss_content:after {
    content: '';
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.tab_content .ss_box .ss_content .long_string {
    width: 545px;
    float: left;
    line-height: 22px;
    letter-spacing: 1px;
    /*height: 20px;*/
}

.tab_content .ss_box .ss_content button {
    margin-right: 10px;
    margin-left: 0px;
    border: 0;
    width: 101px;
    height: 28px;
    line-height: 28px;
    outline: none;
    border-radius: 20px;
    background-color: #185dde;
    color: #fff;
}

.tab_content .ss_box .ss_content .button1 {
    background-color: #90abc5;
    color: #fff;
    margin-left: -119px;
}

/* ztree 样式 设置 */

/*开关按钮*/

.ztree .bottom_close, .ztree .bottom_open {
    z-index: 1000;
}

.ztree li span.button.bottom_close, .ztree li span.button.root_close, .ztree li span.button.center_close {
    background-image: url(../images/treeright.png);
    background-position: 10px 7px;
    background-size: 10px 10px;
}

.ztree li span.button.bottom_open, .ztree li span.button.root_open, .ztree li span.button.center_open {
    background-image: url(../images/treedown.png);
    background-position: 10px 7px;
    background-size: 10px 10px;
}

.ztree li span.button.switch {
    height: 25px;
    width: 25px;
}

.ztree li span.button.switch.bottom_docu, .ztree li span.button.switch.center_docu {
    background: none;
}

/*节点图标*/

.ztree li span.button.ico_close, .ztree li span.button.ico_open, .ztree li span.button.ico_docu {
    background-image: url(../images//treework.png);
    background-position: 0 0;
    background-size: 100% 100%;
    margin: 0 5px;
}

.ztree li a.curSelectedNode span.button.ico_close, .ztree li a.curSelectedNode span.button.ico_open, .ztree li a.curSelectedNode span.button.ico_docu {
    background-image: url(../images/treework_white.png);
}

/*被选中的a   目前仅支持三级树样式，如果增加层级，可增加level层级left和padding-left样式即可     left: -47px;
    padding-left: 63px;
*/

/* .ztree li a.curSelectedNode{
    position: relative;
    width: 200px;
    height: 30px;
    padding-top: 6px;
    color: #FFFFFF;
    background-color: #0091fe;
    border: none;
}
.curSelectedNode.level0{

    left: -47px;
    padding-left: 63px;

}
.curSelectedNode.level1{
    left: -64px;
    padding-left: 63px;

}
.curSelectedNode.level2{
    left: -80px;
    padding-left: 63px;

}
.curSelectedNode.level3{
    left: -148px;
    padding-left: 148px;
}
.curSelectedNode.level4{
    left: -166px;
    padding-left: 166px;
}
.curSelectedNode.level5{
    left: -183px;
    padding-left: 183px;
} */

/* 首页样式 */

/* .content {
    width: 1125px;
    min-height: 430px;
    margin: 0 auto;
    background: rgb(255, 255, 255);
} */

/* 通用 */

.box {
    margin: 0 auto;
    width: 100%;
    /* width: 98%; */
    /* line-height: 32px; */
}

.flex2 {
    display: flex;
    justify-content: space-around;
}

.flexItem2 {
    width: 48%;
}

.item-left {
    width: 400px;
}

.item-right {
    width: 505px;
}

.title {
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.title-link-warp {
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
    border-bottom: 1px solid #CCCCCC;
    margin-top: 20px;
    position: relative;
    font-size: 16px;
}

.title-link-warp .active {
    /*border-bottom:  1px solid #004483;*/
    color: #000 !important;
    position: relative;
}

.title span {
    font-size: 18px;
    margin-left: 20px;
}

.none-margin {
    margin-top: 0 !important;
}

.title-link-warp .title-link {
    display: inline-block;
    font-size: 16px;
    margin-right: 20px;
    color: #999999;
    cursor: pointer;
}

.title-link-warp .title-link:hover {
    color: #318DFF;
}

/*.title-link-warp:before {*/

/*    position: absolute;*/

/*    content: '';*/

/*    height: 20px;*/

/*    width: 10px;*/

/*    background: url(../images/icon.png);*/

/*    background-size: 100%;*/

/*    top: 8px;*/

/*    !*left:-20px;*!*/

/*}*/

.title-inner:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 10px;
    background: url(../images/icon.png);
    background-size: 100%;
    top: 8px;
    left: 0;
}

.title-inner:after {
    position: absolute;
    content: '';
    height: 0px;
    width: 100%;
    border-bottom: 1px solid #004483;
    left: 0;
    top: 35px;
}

/*.title-inner:after {*/

/*}*/

/*.title-link-warp .active:after {*/

/*}*/

.title-inner {
    /*box-sizing: border-box;*/
    color: #000;
    font-size: 16px;
    padding-left: 20px;
    /*border-bottom: 1px solid #004483;*/
    position: relative;
}

.title .more a {
    /* display: inline-block; */
    /* margin-left: 340px; */
    font-size: 16px;
    color: #004483;
    /*float: right;*/
}

.title .more a:hover {
    color: indianred;
}

/* 页面 */

.box1 {
    height: 330px;
    padding: 0 40px;
}

.box2 {
    height: 190px;
}

.box3 {
    /*height: 870px;*/
}

.box4 {
    height: 310px;
    margin-bottom: 20px;
}

.box5 {
    /* height: 200px; */
}

/* 新闻 */

.news ul li a.link_con {
    width: 78%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: inline-block;
    line-height: 32px;
    font-size: 14px;
}

.news ul li div.time {
    float: right;
    width: 20%;
    text-align: right;
    line-height: 32px;
    height: 32px;
    font-size: 14px;
}

.news ul li a:hover {
    text-decoration: underline;
    color: indianred;
}

/* 用户登录 */

.login-border {
    /*width: 450px;*/
    height: 275px;
    margin: 0 auto;
    margin-top: 10px;
    box-shadow: 0px 8px 9px 1px rgba(199, 199, 199, 0.15);
}

.login-box {
    /* width: 540px; */
    width: 280px;
    height: 250px;
    margin: 10px auto 0px;
    position: relative;
}

.login-box .login-title {
    height: 30px;
    line-height: 30px;
}

.login-box .login-title div {
    color: #666;
    font-size: 14px;
    text-align: center;
    width: 50%;
    float: left;
    border-bottom: 1px solid #ccc;
}

.border_bottom {
    color: #004483 !important;
    border-bottom: 1px solid #004483 !important;
}

.login-box .login-content {
    width: 280px;
    height: 210px;
    margin: 0px auto 0px;
}

.login-content .input-content input {
    outline: none;
    border: 1px solid #ccc;
    padding-left: 30px;
    font-size: 14px;
}

.login-content .input-content input[name="username"], input[name="password"] {
    width: 100%;
    height: 35px;
    margin-top: 15px;
    outline: none;
}

.login-content .input-content input[name="validate"], img[name="valimg"], .hqdxm {
    width: 48%;
    height: 35px;
    margin-top: 15px;
    outline: none;
    float: left;
}

.enter-btn {
    width: 100%;
    height: 35px;
    color: #fff;
    background: #1989fa;
    line-height: 35px;
    text-align: center;
    border: 0px;
    margin-top: 15px;
}

.foor {
    width: 100%;
    height: 20px;
    line-height: 20px;
    color: #9b9c98;
    font-size: 12px;
    margin-top: 5px;
}

.enter-btn:hover {
    cursor: pointer;
    background: #318DFF;
}

.foor div span:hover {
    cursor: pointer;
    color: #484847;
    font-weight: 100;
}

.left {
    float: left;
}

.right {
    float: right;
}

.username {
    background: url(../images/username.png) no-repeat 3% center;
    background-size: 15px 15px;
}

.pwd {
    background: url(../images/password.png) no-repeat 3% center;
    background-size: 15px 15px;
}

.validate {
    background: url(../images/validate.png) no-repeat 6% center;
    background-size: 15px 15px;
}

/* 申报类型 */

.declareItem {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /*margin-top: 2%;*/
}

.declareItem .type {
    /* width: 183px;
    height: 113px; */
    width: 165px;
    height: 100px;
    border-radius: 16px;
}

.declareItem .type p {
    text-align: center;
    font-size: 16px;
    padding-top: 40%;
}

.declareItem .type p:hover {
    color: #ffffff;
}

.type1 {
    background: rgba(241, 247, 255, 1) url(../images/type1.png) no-repeat center 25%;
}

.type1:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType1.png) no-repeat center 25%;
}

.type2 {
    background: rgba(241, 247, 255, 1) url(../images/type2.png) no-repeat center 25%;
}

.type2:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType2.png) no-repeat center 25%;
}

.type3 {
    background: rgba(241, 247, 255, 1) url(../images/type3.png) no-repeat center 25%;
}

.type3:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType3.png) no-repeat center 25%;
}

.type4 {
    background: rgba(241, 247, 255, 1) url(../images/type4.png) no-repeat center 25%;
}

.type4:hover {
    background: rgba(49, 141, 255, 1) url(../images/hoverType4.png) no-repeat center 25%;
}

.type_add1 {
    background: rgba(241, 247, 255, 1) url(../images/ppt.png) no-repeat center 25%;
}

.type_add1:hover {
    background: rgba(49, 141, 255, 1) url(../images/pptHover.png) no-repeat center 25%;
}

.type_add2 {
    background: rgba(241, 247, 255, 1) url(../images/jianguan.png) no-repeat center 25%;
}

.type_add2:hover {
    background: rgba(49, 141, 255, 1) url(../images/jianguanHover.png) no-repeat center 25%;
}

/* 申报项目 */

.ecmapbox {
    height: 500px;
    margin-top: 2%;
}

.declareDetails {
    height: 230px;
    padding: 0 40px;
    margin-bottom: 20px;
    /* position: relative; */
}

.declareDetails .declareTitle, .declareDetails .top5Title {
    color: #01479D;
    text-align: center;
    font-size: 18px;
    width: 100%;
    height: 30px;
    line-height: 30px;
    position: relative;
}

.declareTitle::before, .declareTitle::after, .top5Title::before, .top5Title::after {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-top: 1px solid #01479D;
    width: 4rem;
}

/*.declareTitle::before{*/

/*    left: 49%;*/

/*}*/

/*.declareTitle::after{*/

/*    left: 51%;*/

/*}*/

.declareTitle::before {
    left: 55%;
}

.declareTitle::after {
    left: 45%;
}

.declareTitle {
    margin-bottom: 4%;
}

.top5Title {
    margin-bottom: 3%;
}

/*.public-title{*/

/*    margin-bottom: 20px;*/

/*}*/

/*.declareTitle::before,.top5Title::before{*/

/*    */

/*}*/

.declareTitle:before, .top5Title:before {
    margin-left: -8rem;
}

.declareTitle:after, .top5Title:after {
    margin-left: 8rem;
}

.container .row div {
    /* border: 1px solid #ACACAC; */
    padding-left: 10px;
}

.container .row div p:first-child {
    font-size: 24px;
    color: #444444;
}

.container .row div p:nth-child(2) {
    font-size: 14px;
    color: #444444;
}

.container .row div p:first-child span {
    font-size: 14px;
    color: #666666;
}

/* .img {
    background: url(../images/huodongtu.png) no-repeat;
    height: 120px;
    background-size: 100% 100%;
    -moz-background-size: 100% 100%;
    -webkit-background-size: 100% 100%;
    -o-background-size: 100% 100%;
} */

.linksContent1 table, .linksContent3 table {
    border-collapse: separate;
    border-spacing: 20px;
}

.linksContent1 table tr td {
    width: 8.23%;
    height: 30px;
    line-height: 30px;
    color: #666666;
    text-align: center;
    background: rgba(234, 234, 234, 1);
    font-size: 14px;
}

.linksContent1 table tr td:hover {
    color: #ffffff;
    background-color: #318DFF;
}

.linksContent3 tr td {
    text-align: left;
}

.black {
    color: black;
}

/* 首页地图的样式 */

.map_title {
    /* width: 1125px; */
    height: 50px;
    line-height: 50px;
    margin-top: 10px;
}

#approvalResultForm .text-left {
    text-align: left;
}

.map_title div:first-child {
    float: left;
    margin-left: 350px;
    font-size: 20px;
    color: #01479D;
    font-weight: bold;
}

.map_title div:nth-child(2) {
    float: right;
    margin-right: 15px;
}

.map_title div select {
    width: 120px;
    height: 30px;
    padding-left: 20px;
}

.map_title div select:hover {
    background-color: #01479D;
    color: #fff;
}

.map_title div select option {
    background-color: #fff;
}

/* 项目指南一 表格样式 */

.xmzn1 {
    position: relative;
}

.xmzn1 tr:nth-child(1) td, .xmzn1 tr:nth-child(1) td span {
    font-weight: 700;
    font-size: 15px;
}

.xmzn1 tr td {
    border: 1px solid #ddd;
}

.xmzn1 tr td span {
    display: inline-block;
    width: 24%;
    vertical-align: middle;
    font-size: 14px;
}

.xmzn1 tr td:first-child {
    text-align: left;
    padding-left: 20px;
    background-color: #f2f7fb;
}

.xmzn1 tr td:first-child::before {
    content: "";
    width: 10px;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #1460da;
}

.xmzn1 tr td span a {
    display: inline-block;
    width: 100px;
    height: 30px;
    line-height: 30px;
    border-radius: 20px;
    color: #fff;
    background-color: #1460da;
    text-decoration: none;
}

.td_none {
    border: none !important;
    background-color: #fff !important;
}

/* .xmzn1 tr:nth-child(1) td:nth-child(2) { */

.bkgc4 {
    background-color: #e6e6e6;
}

/* .xmzn1 div{
    height: 40px;
    line-height: 40px;
}
.v_align{
    height: 40px;
    line-height: 40px;
}
 */

/* CSS让表格里的内容强制显示一行，超出长度显示省略号 */

#t0 {
    table-layout: fixed;
}

#t0 tr td {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* 项目指南二  表格样式*/

/* 奇数列背景颜色设置 */

.bkgc3 {
    background-color: #f2f7fb;
}

.xmzn2 tr td:nth-child(odd) {
    background-color: #f2f7fb;
    font-size: 14px;
}

/* 偶数列对齐方式设置 */

.xmzn2 tr td:nth-child(even) {
    text-align: left;
    padding-left: 10px;
    font-size: 14px;
}

.jys_title {
    height: 40px;
    line-height: 40px;
    padding-left: 10px;
    font-weight: 700;
    border-left: 10px solid #1160d7;
}

.jys_con {
    line-height: 35px;
    padding-left: 50px;
}

.lc_pic {
    width: 95%;
    /* height: 200px; */
    margin: 0 auto;
    /* background: url(../../static/images/lc_pic.png) no-repeat; */
    background-size: contain;
    background-position: center;
}

/* 关联主项目 模态框样式设置 */

.modal-body {
    overflow-y: auto;
    max-height: 400px;
}

/*  */

.pages {
    float: left;
    position: relative;
    left: 50%;
    z-index: 1;
    font-size: 14px;
}

.pages ul {
    float: left;
    position: relative;
    left: -40%
}

#selectTable {
    border: 1px solid #cadae5;
}

/* 设置表格中的内容垂直居中 */

#selectTable .tab {
    background: #eff2f4;
    color: #5986a6;
    font-size: 14px;
}

#selectTable th {
    vertical-align: middle;
}

#selectTable tr td {
    display: table-cell;
    vertical-align: middle;
    font-size: 14px;
    word-wrap: break-word;
    color: #666666;
}

#selectTable tr td button:nth-child(2) {
    margin-left: 10px;
}

/*新闻详情样式*/

.content-warp {
    line-height: 30px;
    padding: 0 40px;
    /*letter-spacing: 1px;*/
}

.title-h1 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

/*表格样式*/

.width-100 {
    width: 100px;
}

.time-width {
    width: 100px;
}

.id-width {
    width: 50px;
}

.width-90 {
    width: 90px;
}

.width-82 {
    width: 82px
}

.width-200 {
    width: 200px;
}

.width-120 {
    width: 120px;
}

.width-160 {
    width: 165px;
}

.department {
    width: 100%;
    border-spacing: 15px !important;
}

.department td {
    width: 25%;
    padding: 0;
}

.department tr {
    /*margin: 10px 0;*/
}

#demo1:hover {
    cursor: default;
}

.result-style thead tr {
    color: #1989fa;
    border-bottom: 2px solid #1989fa;
}

/*超出省略*/

.ellipsis {
    padding: 0 20px;
    /*超出部分隐藏*/
    overflow: hidden;
    /* 强制在同一行内显示所有文本，直到文本结束或者遭遇 br 对象。不换行 */
    word-break: keep-all;
    /* 内容超出宽度时隐藏超出部分的内容 */
    white-space: nowrap;
    /* 当对象内文本溢出时显示省略标记(...) ；需与overflow:hidden;一起使用。*/
    text-overflow: ellipsis;
}

#demo1 td {
    text-align: center;
}

#demo1 tr {
    border-bottom: 1px solid #ccc;
    width: 100%;
    cursor: pointer;
    height: 36px;
    line-height: 36px;
}

.table-warp {
    width: 100%;
    cursor: default;
    border-bottom: 1px solid #ccc;
}

.result-warp {
    height: 200px;
    overflow-y: hidden;
    width: 100%;
}

#result {
    width: 100%;
    margin-top: 10px;
}

.result-style {
    width: 100%;
    table-layout: fixed;
}

.result-style thead {
    z-index: 999;
    background: #fff;
}

.result-style thead, #result tr {
    width: 100%;
}

.result {
    width: 100%;
}

#demo1 table tr:hover {
    background: #e6f0fa;
}

.color-blue {
    color: #1989fa;
}

/*.title-warp{*/

/*    display: flex;*/

/*    justify-content: space-between;*/

/*}*/

.select-warp {
    box-sizing: border-box;
    /*padding-right: 10px;*/
    width: 330px;
    background: #e6f0fa;
}

.select-inner {
    color: #666;
    width: 170px;
    font-size: 14px;
    height: 26px;
    line-height: 27px;
}

.select-inner span {
    margin-right: 10px;
}

.select-warp select {
    padding-left: 3px;
    width: 105px;
    height: 26px;
    line-height: 26px !important;
    border: none;
    font-size: 14px;
    /*width: 80px;*/
}

.result-title {
    width: 100%;
    height: 36px;
    line-height: 36px;
    background: #e6f0fa;
}

.result-title div {
    background: #1989fa;
    width: 376px;
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.box5 .title div {
    cursor: pointer;
}

.declare-content {
    width: 100%;
    height: 130px;
}

.flex-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*background: #00aa66;*/
    height: 90px;
}

.content-top {
    margin-bottom: 10px;
}

.top-inner {
    width: 49%;
    /*background: purple;*/
    border: 1px solid #ccc;
    padding-left: 8px;
}

.inner-num {
    /*color: #1989fa;*/
    line-height: 34px;
    font-size: 20px;
    height: 34px;
    /*font-weight: bold;*/
}

.inner-num span {
    font-weight: normal;
    color: #000;
    font-size: 16px;
    padding-left: 5px;
}

.bottom-inner {
    width: 32%;
    border: 1px solid #ccc;
    padding-left: 8px;
}

/*表格右侧样式集合*/

.header-warp {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    /*height: 60px;*/
}

.click-style {
    color: #5ba1ef !important;
    cursor: pointer;
}

.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #cadae5;
}

.breadcrumb>.active a {
    color: #777;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*首页样式*/

.index-left {
    width: 660px;
}

.index-left ul li {
    border-bottom: 1px dashed #e5eaee;
}

.index-left ul li a {
    color: #000 !important;
}

.index-left ul li a:hover {
    text-decoration: underline;
    color: #337ab7;
}

.index-login {
    width: 345px;
}

.tibet {
    margin: 30px 0 10px 0;
}

.active-warp {
    width: 100%;
    padding: 0 40px;
    height: 90px;
}

.active-warp a, .active-warp a img {
    width: 100%;
    height: 100%;
}

.declareType {
    margin-top: 20px;
}

.breadcrumb>.active {
    font-size: 14px;
}

#citytree1 {
    height: 755px;
    overflow: auto;
}

.zcSpan {
    color: red;
}

.pdR7 {
    padding-right: 7px;
}

.pdL23 {
    padding-left: 23px;
}

.pdL27 {
    padding-left: 27px;
}

.mgR7 {
    margin-right: -7px;
}

.box1 .more img{
    display: inline-block;
}
