/*头部*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul,a{
    list-style: none;
    text-decoration: none;
}
body{
    font-size: 14px;
    color: #333333;
}
.home{
}
header{
    position: relative;
}
td{
    border: 1px solid #a6d0f6;
}
/*td:nth-child(2n + 1){*/
/*    background: #f3f8ff;*/
/*}*/
.center{
    display: block;
    width: 1440px;
    margin: 0 auto;
    position: relative;
    min-width: 1200px;
}
header .top{
    height: 120px;
    background: url("../images/top_logo_banner.png") no-repeat 68% bottom;
}
.banner{
    height: 70px;
    position: relative;
}
.banner_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 760px;
    width: 100%;
    background: url("../images/newbanner.png") center no-repeat;
    background-size: 100% 100%;
}
header .logo{
    background: url("../images/logo.png") no-repeat;
    width: 750px;
    height: 90px;
    position: absolute;
    top: 71px;
}
header .search{
    position: absolute;
    right: 0;
    top: 0;
}

header .search input::-ms-clear{display: none;}
header .search input::-ms-reveal{display: none;}
header .search input::-o-clear{display: none;}
header .search .searchImg{
    background: #3688D2 url("../images/search.png") 50% 50% no-repeat;
    display: inline-block;
    width: 40px;
    height: 38px;
}
nav{
    width: 100%;
    height: 50px;
    background: #0061DC;
    box-shadow: 0px 1px 10px 0px rgba(50, 51, 51, 0.35);
}
nav>div>ul {
    display: flex;
}
nav>div>ul>li{
    flex: 1;
    cursor: pointer;
    height: 50px;
    position: relative;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
}
nav>div>ul>li>ul{
    display: none;
    width: 100%;
    left: 0;
    top: 100%;
    position: absolute;
    background: #fff;
    box-shadow: 0px 5px 10px 0px rgba(0,73,149,0.2);
    z-index: 10;
}
nav>div>ul>li>ul>li{
    min-height: 30px;
    line-height: 30px;
    font-size: 14px;
}
nav>div>ul>li>ul>li:hover{
    background: #0061DC;;
}
nav>div>ul>li>ul>li:hover a{
    color: #ffffff;
}
/*nav>div>ul>li>ul a:hover{*/
/*    color: #3688D2;*/
/*}*/
nav>div>ul>li:hover ul{
    display: block;
}
nav>div>ul>li:hover{
    animation: liBackground .2s linear forwards;
}
@keyframes liBackground {
    0%{
        background: #0061DC;
    }
    100%{
        background: #ffffff;
    }
}
nav>div>ul>li:hover a{
    color: #0061DC;
}
nav>div>ul>li.show>a{
    color: #3688D2;
    /*font-weight: bold;*/
}
nav .center ul>li>i{
    text-align: center;
    color: #3688D2;
    display: none;
}
nav>div>ul .show{
    color: #0061DC;
    background: #ffffff;
}
nav>div>ul .fa.fa-caret-up{
    display: none;
}
nav>div>ul .show .fa.fa-caret-up{
    position: relative;
    bottom: 15px;
    display: block;
}


/*底部*/
.inter-link{
    height: 50px;
    background: #EDEDED;
}
.inter-link .center{
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-left: 160px;
}
.inter-link .center span{
    position: absolute;
    left: 0;
}
.inter-link .center select{
    height: 30px;
    width: 180px;
    margin-top: 10px;
    padding-left: 10px;
    /*margin-right: 30px;*/
    outline: none;
    border: 1px solid rgba(0,0,0,.5);
}
.inter-link .center select:last-child{
    margin-right: 0;
}
.inter-link .center div{
    width:359px;
    height:30px;
    background:rgba(255,255,255,1);
    margin: 15px 80px 15px 0;
    position: relative;
    border: 1px solid #999999;
    float: left;
}
.inter-link .center div p{
    height: 100%;
    line-height: 30px;
    padding-left: 10px;
}
.inter-link .center div i{
    display: inline-block;
    position: absolute;
    top: 7px;
    right: 5px;
    width: 17px;
    height: 9px;
}
.inter-link .center div ul{
    width: 100%;
    height: 150px;
    background: white;
    margin-top: 0.5px;
}
.inter-link .center div ul li{
    cursor: pointer;
    padding: 5px 10px;
}
.inter-link .center div ul li:hover{
    background: #6dbfff;
}
.inter-link .center div:nth-last-child(1){
    margin-right: 0;
}
.inter-link span{
    color: #333333;
    line-height: 50px;
    width: 100px;
    float: left;
    font-size: 18px;
    font-weight: bold;
}
footer .bottom{
    background: #0061DC;
    height: 180px;
}
.bottom .text{
    width: 1360px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-around;
}
/*.bottom .text li a:hover{*/
/*    opacity: .75;*/
/*}*/
.bottom .text li:first-child{
    margin-left: 0;
}
.bottom .text p{
    text-align: left;
    font-size: 12px;
    color: #fff;
    line-height: 24px;
}
.bottom .text li{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bottom .text li:nth-child(4){
    flex-direction: row;
    align-items: center;
}
.bottom .text li:nth-child(4) .imgSpan{
    width: 66px;
    height: 93px;
    background: url("../images/three_star.png") no-repeat;
}
.bottom .text li:nth-child(4) p{
    display: flex;
    flex-direction: column;
    margin: 0 0 0 30px;
}
.bottom .text li:nth-child(4) p em{
    display: flex;
    font-style: normal;
    align-items: center;
}
.bottom .text li:nth-child(4) p em i{
    width: 16px;
    height: 16px;
    background: url("../images/stat.png") no-repeat;
}
.bottom .text li:nth-child(4) div{
    padding-right: 40px;
}
.bottom .text li:nth-child(1) p i{
    background: url("../images/gongan.png") no-repeat;
    width: 20px;
    height: 20px;
    display: inline-block;
    position: relative;
}
.bottom .text .split{
    width:1px;
    height:85px;
    background:rgba(176,181,193,1);
    margin: 46px 0 0 20px ;
}
.bottom .text li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
}
.bottom .text li a span{
    margin: 5px 0 0 0;
}
.bottom .text .map{
    width: 80px;
    height: 80px;
    margin-top: 48px;
    box-shadow:2px 2px 10px #cccccc;
}
.bottom .text .cause{
    background: url("../images/industry.png") no-repeat;
    width: 71px;
    height: 80px;
    margin-top: 48px;
}
.bottom .text .error{
    background: url("../images/jiucuo.png") no-repeat;
    width: 117px;
    height: 55px;
    margin-top: 55px;
}

.file{
    border-top: 1px #ccc solid;
    margin-top: 20px;
    padding-top: 15px;
}
.file li{
    line-height: 30px;
}
.file a{
    color: blue;
    text-decoration: underline;
}
.question{
    position: relative;
    width: 1218px;
    margin: 0 auto;
    overflow: hidden;
    /*background-color: #f3f8ff;*/
    /*padding: 10px;*/
    /*font-size: smaller;*/
}
.question p{
    text-indent: 21px;
}
.content{
    word-break:break-all;
    word-wrap:break-word;
}

/*.listSearch input{*/
/*    height: 30px;*/
/*    line-height: 30px;*/
/*    padding: 0 5px;*/
/*    border: 1px #ccc solid;*/
/*    margin: 0 10px 0 15px;*/
/*    vertical-align: middle;*/
/*}*/
.listSearch button{
    width: 50px;
    height: 24px;
    vertical-align: middle;
    border-radius: 1px;
    background: #0061DC;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
    margin-left: 10px;
    border: 0;
    outline: 0;
}
/*.listSearch button:hover{*/
/*    color: #0061DC;*/
/*    background: #fff;*/
/*    border: 1px solid #0061DC;*/
/*}*/
.right-quiz{
    border: 1px solid #e2e2e2;
}
.right-quiz .quizBox{
    width: 600px;
    margin: 0 auto;
}
.right-quiz label{
    display: block;
    margin-bottom: 10px;
}
.right-quiz label span{
    display: inline-block;
    width: 150px;
    text-align: right;
}
.right-quiz label span i{
    font-style: normal;
    color: red;
    margin-right: 2px;
}
.right-quiz .describe span{
    position: relative;
    bottom: 60px;
}
.right-quiz label input{
    border: 1px solid #e2e2e2;
    width: 400px;
    height: 30px;
    padding-left: 10px;
    border-radius: 5px;
}
.right-quiz label textarea{
    border: 1px solid #e2e2e2;
    width: 400px;
    height: 80px;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.right-quiz .submit{
    text-align: center;
}
.right-quiz .submit button{
    padding: 5px 10px;
    border-radius: 5px;
    border: none;
    background: red;
    color: #ffffff;
}
.datebox-button td{
    padding: 0;
}
/*网站地图*/
#webNav .href_content{
    border-bottom: 1px dashed #e9e9e9;
    padding: 10px;
    margin-bottom: 10px;
}
#webNav .href_content a{
    font-size: 14px;
    font-weight: bold;
    margin-right: 15px;
    color: #3688D2;
}
.site-map .portlet{
    border: 1px solid #E9E9E9;
    border-radius: 6px;
    margin-top: 0;
    margin-bottom: 25px;
}
.site-map .portlet:nth-child(1){
    margin-top: 15px;
}
.site-map .portlet .title{
    background: #f2f2f2;
    border-radius: 6px 6px 0 0;
    padding: 10px 15px;
    border-bottom: 0;
    margin-bottom: 0;
    min-height: inherit;
    color: #333;
    font-size: 18px;
}
.site-map .portlet .title a:hover{
    color: #3688D2;
}
.site-map .portlet .bodyMain{
    padding: 15px;
}
.site-map .portlet .bodyMain .down{
    border-bottom: 1px dashed #e9e9e9;
    padding-bottom: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.portlet .bodyMain .down .href_title{
    display: block;
    float: left;
    width: 15%;
    font-size: 14px;
    font-weight: bold;
    margin: 0 10px;
    color: #3688D2;
}
.portlet .bodyMain .down .href_content{
    float: left;
    width: 82%;
}
.portlet .bodyMain .down .href_content a{
    display: inline-block;
    margin-right: 20px;
}


/*main 顶部的导航*/
.main_nav{
    width: 1440px;
    height: 175px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: -130px;
    left: 50%;
    margin-left: -720px;
}
.main_nav dl,.bid_dialog dl{
    width: 182px;
    height: 100%;
    background: url("../images/main_nav_other_new.png") no-repeat;
    background-position: 33px calc(50% + 10px);
    display: flex;
    -webkit-transition-property: background;
    -webkit-transition-duration: 1s;
    -webkit-transition-timing-function: ease;
}
.main_nav dl:hover,.bid_dialog dl:hover{
    background: url("../images/main_nav_current_new.png") no-repeat;
    background-position: 33px calc(50% + 10px);
    color:#fff;
    font-size: 17px;
}

.main_nav dl:hover>a,.bid_dialog dl:hover>a{
    color: #ffffff;
    font-size: 17px;
}
.main_nav dl .bid_open{
    width: 100%;
    height: 160px;
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/main_nav_current_new.png");
    display: none;
}
.main_nav dl .bid_open a{
    width: 68px;
    height: 80px;
    background: #FFFFFF;
    border :2px solid #0061DC;
    display: inline-block;
    margin: 40px auto;
    text-align: center;
    line-height: 80px;
}
.main_nav dl .bid_open a:hover{
    box-shadow: inset 0px 0px 50px 5px rgb(0 0 0 / 10%);
}
.main_nav dl .bid_open a:nth-child(1){
    border-right :0;
    margin: 40px 1px 40px 23px;
}
.main_nav a,.bid_dialog a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main_nav .bid_open{
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.main_nav .bid_open_box{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.main_nav dl:nth-child(6):hover .bid_open{
    display: block;
}
.main_nav dl dt,.bid_dialog dl dt{
    width:56px;
    height:56px;
    margin: 50px auto 4px auto;
    background-size: 100% 100%;
}
/*.main_nav dl:hover dt{*/
/*    width:56px;*/
/*    height:56px;*/
/*    margin:46px auto 0px auto;*/
/*}*/
.main_nav dl dd,.bid_dialog dl dt{
    font-size: 16px;
    font-weight: 400;
}
.main_nav dl dd{
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-top: 25px;
}
.main_nav dl:nth-child(1) dt{
    background: url("../images/main_nav_1_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(2) dt{
    background: url("../images/main_nav_2_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(3) dt{
    background: url("../images/main_nav_3_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(4) dt{
    background: url("../images/main_nav_4_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(5) dt{
    background: url("../images/main_nav_5_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(6) dt,.bid_dialog dl dt{
    background: url("../images/main_nav_6_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(7) dt{
    background: url("../images/main_nav_7_new.png") no-repeat 100% 100%;
}

@keyframes dlFill {
    0% {
        background: url("../images/main_nav_1_new.png");
        transform: scale(1.0) rotate(0deg);
    }
    100%{
        background: url("../images/main_nav_1_new.png");
        transform: scale(1.0) rotate(0deg);
    }
}
.main_nav dl:nth-child(1):hover dt{
    background: url("../images/main_nav_1_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(2):hover dt{
    background: url("../images/main_nav_2_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(3):hover dt{
    background: url("../images/main_nav_3_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(4):hover dt{
    background: url("../images/main_nav_4_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(5):hover dt{
    background: url("../images/main_nav_5_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(6):hover dt{
    background: url("../images/main_nav_6_new.png") no-repeat 100% 100%;
}
.main_nav dl:nth-child(7):hover dt{
    background: url("../images/main_nav_7_new.png") no-repeat 100% 100%;
}

/*新版首页导航栏-start*/
.main_nav_new {
    display: flex;
    flex-wrap: wrap;
    width: 316px;
}
.main_nav_new dl dd,.bid_dialog dl dt{
    font-size: 16px;
    font-weight: 400;
}
.main_nav_new dl dd{
    color: black;
    font-size: 15px;
    font-weight: 600;
    margin-top: 4px;
}
.main_nav_new dl:hover dd{
    color: rgba(64, 146, 239, 1);
}
.main_nav_new dl {
    width: calc(50% - 16px);
    height: 90px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(0deg, #F9F8F8 0%, #F9F8F8 100%), #F5F5F5;
    box-shadow: 2px 4px 4px 0 #0a498d4d;
    margin-left: 16px;
    border-radius: 4px;
}
.main_nav_new dl a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main_nav_new dl dt{
    width:40px;
    height: 40px;
    margin-top: 12px;
}
.main_nav_new dl:nth-child(1) dt{
    background: url("../images/main_nav_new/nav_icon1.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(2) dt{
    background: url("../images/main_nav_new/nav_icon2.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(3) dt{
    background: url("../images/main_nav_new/nav_icon3.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(4) dt{
    background: url("../images/main_nav_new/nav_icon4.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(5) dt{
    background: url("../images/main_nav_new/nav_icon5.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(6) dt{
    background: url("../images/main_nav_new/nav_icon6.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(7) dt{
    background: url("../images/main_nav_new/nav_icon7.png") no-repeat 100% 100%;
}
.main_nav_new dl:nth-child(7){
    width: calc(100% - 16px);
}
/*新版首页导航栏-end*/
.main_cont_middle_banner img{
    width: 100%;
}
/*详情页左侧流程公示*/
.aside_step{
    position: fixed;
    width: 200px;
    height: 650px;
    left: 100px;
    top: 100px;
    background: #ffffff;
    box-shadow: 0 0 2px 2px #cccccc;
}
.table_list_wrap{
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.table_list{
    width: 100%;
    margin: 40px 0 40px 0;
    border-left: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
}
.table_list span{
    text-align: center;
    border-right: 1px solid #DBDBDB;
    border-top: 1px solid #DBDBDB;
    cursor: pointer;
    padding: 0 20px;
}

.table_list ul li{
    color: #333333;
    font-size: 16px;
}
.table_list ul li a:hover{
    color: #0061DC;
}

.table_list ul li span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.table_list ul li a{
    height: 45px;
    line-height: 45px;
    display: flex;
}
.table_list p{
    color: #333333;
    font-weight: bold;
    font-size: 16px;
    min-height: 45px;
    line-height: 45px;
    display: flex;
}
.table_list p span{
    word-wrap:break-word;
    word-break:normal;
}
.table_list ul li span:nth-child(1),.table_list p span:nth-child(1){
    width: 15%;
}
.table_list ul li span:nth-child(2),.table_list p span:nth-child(2){
    width: 45%;
}
.table_list ul li span:nth-child(3),.table_list p span:nth-child(3){
    width: 20%;
}
.table_list ul li span:nth-child(4),.table_list p span:nth-child(4){
    width: 20%;
}
/*左侧项目受理流程*/
.outer_main_aside {
    width: 290px;
    /*height:600px;*/
    /*position: fixed;*/
    /*top: 300px;*/
    /*left: 10px;*/
    border: 1px solid #cccccc;
    background: #ffffff;
    padding:10px 10px 10px 20px;
    border-radius:3px;
    display:flex;
    flex-direction:column;
    /*overflow-y:auto;*/
    margin: 0 20px 0 0;
    position: relative;
}
.outer_main_aside h4{
    font-size:18px;
    margin: 0 0 10px 0;
}
.outer_main_aside .every_step {
    border-left: 1px solid #cccccc;
    position: relative;
    padding: 0 5px 10px 10px;
}
.outer_main_aside .every_step i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(../images/every_step_icon.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: -10px;
    top: -2px;
}
.outer_main_aside .every_step p {
    color: #3A86CD;
    margin-top:0;
    line-height:inherit;
    padding: 0 0 0 10px;
}
.outer_main_aside .every_step ul {
    padding: 0 0 0 10px;
}
.outer_main_aside .every_step ul li{
    line-height:22px;
}
.outer_main_aside .participateBtn{
    position: absolute;
    right: -51px;
    bottom: 200px;
    z-index: 9;
}
.outer_main_aside .participateBtn a{
    display: block;
    width: 50px;
    background: url(../images/jt.png) 0 -141px no-repeat;
    line-height: 40px;
    color: white;
    margin-bottom: 10px;
}
@media screen and (max-width: 1680px){
    .question{
        width: 1158px;
    }
    #printPanel{
        padding: 20px 20px 70px 20px;
    }
    nav div ul li{
        font-size: 16px;
    }
    .bottom .text{
        width: 1200px;
    }
    .center{
        width: 1200px;
    }
    .inter-link .center select{
        width: 180px;
    }
    .w1010{
        width: 1200px;
    }
    .w1200-screen{
        width: 1440px;
    }
    .right-content{
        width: 915px;
    }
    .right-quiz{
        width: 915px;
    }
    .seamless-warp2{
        width: 1100px;
    }
    /*便捷导航宽度*/
    .main_nav{
        width: 1200px;
        margin-left: -600px;
    }
    /*综合信息轮播和列表宽度*/
    .main_cont .main_cont_banner{
        width: 310px;
    }
    .main_cont .main_cont_notice{
        width: 500px;
    }
    .main_nav_new{
        width: 27%;
    }
}
/*@media screen and (max-width: 1440px){*/
    /*nav div ul li{*/
    /*    font-size: 16px;*/
    /*}*/
    /*.center{*/
    /*    width: 1100px;*/
    /*    min-width: 1080px;*/
    /*}*/
    /*.inter-link .center select{*/
    /*    width: 264px;*/
    /*}*/
    /*.w1010{*/
    /*    width: 1100px;*/
    /*}*/
    /*.right-content{*/
    /*    width: 860px;*/
    /*}*/
/*}*/
