@charset "utf-8";

/* 公共样式 */
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    background: #f1f4f9;
}

.w1100 {
    width: 1100px;
    margin: 0 auto;
}

a:hover {
    color: #1d5cbc;
}

.none {
    display: none;
}

.block {
    display: block;
}

/* header ===========================================================================
===================================================================================== */
.header {
    width: 100%;
    height: 160px;
    background: url(../images/banner-back.png) repeat top center;
    background-size: auto 100%;
    overflow: hidden;
}
.headerCont {
    width: 100%;
    height: 160px;
    background: url(../images/banner.png) no-repeat top center;
    background-size: auto 100%;
    overflow: hidden;
}
.logo {
    width: auto;
    height: 96px;
    margin-top: 35px;
    display: inline-block;
}

.logo img {
    width: auto;
    height: 100%;
}

/* content ===========================================================================
===================================================================================== */

.content {
    width: 100%;
    overflow: hidden;
}

/* 当前位置 */
.locationNav {
    padding: 15px;
    font-size: 14px;
    color: #666666;
}

.locationNav a {
    color: #666666;
}

.locationNavIcon {
    /* color: #f1f4f9; */
    margin: 0 3px;
}

.locationNav a:hover {
    color: #1d5cbc;
}

.contentBox {
    height: auto;
    overflow: hidden;
    border: 1px solid #dee4ee;
    background: #ffffff;
    padding: 15px;
    box-sizing: border-box;
}

.contentHead {
    width: 100%;
    height: 100px;
    overflow: hidden;
    border-radius: 10px;
}

.contentHead img {
    width: 100%;
    height: 100%;
}

.contentSearch {
    padding: 45px 0;
    text-align: center;
}

.searchIcon {
    height: 35px;
    display: inline-block;
    vertical-align: middle;
}

.searchIcon img {
    height: 100%;
    margin-right: 35px;
    vertical-align: middle;
}

.searchBox {
    height: 45px;
    line-height: 45px;
    display: inline-block;
    vertical-align: middle;
}

.searchBox input {
    width: 545px;
    height: 45px;
    line-height: 45px;
    border: 1px solid #3d7eff;
    border-radius: 3px;
    padding: 0 15px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: middle;
}

.searchBtn {
    width: 105px;
    height: 45px;
    line-height: 45px;
    border-radius: 3px;
    color: #ffffff;
    font-size: 18px;
    margin-left: 10px;
    display: inline-block;
    vertical-align: middle;
    background: linear-gradient(to right, #4b92ff, #3d85f1);
    cursor: pointer;
}

.searchBtn:hover {
    background: linear-gradient(to right, #3d85f1, #2b73e6);
}

.contSelect {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.selectNameBox {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #efefef;
    padding: 0 20px;
    box-sizing: border-box;
    border-radius: 3px;
    overflow: hidden;
}

.contSelectName {
    width: 200px;
    color: #1d5cbc;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    float: left;
}

.selectLocation {
    width: auto;
    display: inline-block;
}

.selectLocation span {
    padding: 0 45px;
    color: #000000;
    display: inline-block;
    cursor: pointer;
}

.selectLocation span.disabled-tab {
    color: #aaa;
    cursor: not-allowed;
}

.currentlySelect {
    display: inline-block;
    float: right;
    font-size: 14px;
}

.currentlySelectName {
    font-weight: bold;
}

.selectCurrent {
    background: #ffffff;
    border-top: 3px solid #1d5cbc;
}

.selectContBox {
    padding: 20px 0 10px;
    overflow: hidden;
}

.selectContBox ul {
    font-size: 0;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, height 0.4s ease;
}

.selectContBox ul.active-ul {
    opacity: 1;
    height: auto;
}

.selectContBox ul li {
    width: calc((100% - 10px * 5) / 6);
    height: 40px;
    padding: 0 5px;
    box-sizing: border-box;
    overflow: hidden;
    border: 1px solid #dddddd;
    border-radius: 2px;
    margin: 0 10px 10px 0;
    color: #777777;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    align-content: center;
}

.selectInforCurrent {
    background: #1d5cbc !important;
    color: #ffffff !important;
    border: 1px solid #1d5cbc !important;
}

.selectContBox ul li:hover {
    background: #1d5cbc !important;
    color: #ffffff !important;
    border: 1px solid #1d5cbc !important;
}

.selectContBox ul li:nth-child(6n) {
    margin-right: 0;
}

/* 展示查询到的数据 */
.contQueryDataNone {
    padding: 16px 0;
    position: relative;
    font-size: 14px;
}

.returnPage {
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(to right, #4b92ff, #3d85f1);
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 3px;
    overflow: hidden;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 10px;
}

.returnPage:hover{
    background: linear-gradient(to right, #3d85f1, #2b73e6);
}

.contQueryDataList ul {
    width: 100%;
}

.contQueryDataList ul li {
    text-align: center;
    border: none;
    border-bottom: 1px solid #e3e8ef;
    box-sizing: border-box;
    padding: 15px;
}

.contQueryDataList ul li a {
    display: block;
}

.contQueryDataList ul li span {
    display: inline-block;
    margin: 0;
    box-sizing: border-box;
}

.recordId {
    width: 15%;
}

.recordName {
    width: 30%;
}

.recordCode {
    width: 20%;
}

.recordStatus {
    width: 33%;
    /* 办公地址可能很长，超出用省略号，避免撑破布局 */
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
}

.contQueryDataListHead {
    background: #e8f0fe;
    color: #222;
    font-weight: bold;
}

.contQueryDataList .abnormalState {
    background: #f8f8f8;
    color: #999999;
}

/* 无数据提示 */
.contQueryDataList ul li.no-data {
    color: #999;
    padding: 40px 15px;
}

/* 翻页 */
.contQueryDataPagin {
    padding: 20px 0 10px;
    text-align: center;
}

.contQueryDataPagin button {
    padding: 6px 12px;
    margin: 0 4px;
    background: #f4f4f5;
    border-radius: 3px;
    cursor: pointer;
    color: #606266;
}

.contQueryDataPagin .active {
    background: #409eff;
    color: #ffffff;
}

.contQueryDataPagin .total-text {
    margin-left: 15px;
    color: #666;
    font-size: 14px;
}

.contQueryDataPagin button:hover {
    background: #409eff;
    color: #ffffff;
}

#pageNumWrap {
    display: inline-block;
}

/* 文章页 ===========================================================================
===================================================================================== */
.contentMain {
    padding: 30px;
}

.mainName {
    width: 100%;
    padding: 10px 0 30px;
    font-size: 34px;
    font-weight: bold;
    text-align: center;
}

.mainList li {
    padding: 15px 0;
    border-bottom: 1px solid #e3e8ef;
}

.mainList li:last-of-type {
    border-bottom: 0;
}

.mainList li span {
    display: inline-block;
    line-height: 1.5;
    vertical-align: middle;
}

.mainList li span:first-of-type {
    font-weight: bold;
    margin-right: 30px;
    width: 185px;
    text-align: right;
}

.violationRecord {
    width: 100%;
    border: 1px solid #b33737;
    background: #fff5f5;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 30px;
}

.violationRecord p {
    padding-left: 40px;
    font-size: 18px;
    font-weight: bold;
    color: #b33737;
    position: relative;
}

.violationRecord p::after {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    background: url(../images/icon-jingshi.png) no-repeat center center;
    background-size: 100%;
    position: absolute;
    left: 0;
    top: 3px;
}

.violationRecord ul li {
    margin-top: 15px;
    padding-left: 40px;
    color: #b33737;
}

/* footr ===========================================================================
===================================================================================== */
.footer {
    padding: 20px 0 30px;
    text-align: center;
    color: #405d9e;
    font-size: 14px;
}

.footer p {
    margin-top: 10px;
}

.footer a {
    color: #405d9e;
    margin: 0 10px;
}

.footer span {
    margin: 0 10px;
}