/* 头部 */

.top-nav {
    margin: auto;
    background: #f5f5f5;
    height: 34px;
    text-align: right;
    color: #666;
    border-bottom: 1px #ccc dashed;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.top-nav .top-nav-l {
    color: #000;
}

.top-nav .top-nav-c {
    flex: 1;
    display: flex;
    align-items: center;
}

.top-nav-c marquee {
    color: #044d9b;
    color: var(--main-color);
}

.top-nav .top-nav-r {
    display: flex;
    color: #333;
}

.top-nav .top-nav-r a {
    margin: 0 2px;
    color: #046CBB;
    color: var(--main-color);
    font-weight: bold;
}

.top-box {
    height: 197px;
    margin: auto;
    border-bottom: 1px dashed #7eb0e4;
    display: flex;
    align-items: center;
    opacity: .9;
    background: url(../img/banner_bg.png) no-repeat;
    background-color: #044d9b;
    background-color: var(--main-color);
    background-position: bottom right;
}

.top-title {
    margin-left: 5%;
    color: #fff;
}

.top-title p {
    font-size: 16px;
    letter-spacing: 2px;
}

.top-title h1 {
    padding: 5px 0;
    font-size: 46px;
    letter-spacing: 4px;
    text-shadow: 1px 1px 1px #333;
    font-weight: bold;
}

.top-title span {
    font-size: 16px;
    background-color: rgba(255, 255, 255, .1);
    padding: 8px 0;
    margin-top: 5px;
    display: inline-block;
    letter-spacing: 1px;
    width: 480px;
    text-align: center;
}

.menu {
    /* width: var(--max-width); */
    height: 45px;
    line-height: 45px;
    background: url(../img/nav.jpg) repeat-x;
    margin: auto;
}

.menu>ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu>ul li {
    width: 160px;
    display: flex;
    justify-content: center;
    transition: all 300ms;
}

.menu>ul li a {
    padding: 0 15px;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.menu>ul li:hover {
    background-color: #044d9b;
    background-color: var(--main-color);
}

.menu>ul li.active {
    background-color: #044d9b;
    background-color: var(--main-color);
}

.sub-menu {
    position: absolute;
    z-index: 9999;
    display: none;
}

.sub-menu ul {
    width: 100%;
    padding: 12px;
    background: #BAE4F2;
    display: flex;
    flex-wrap: wrap;
}

.sub-menu ul li {
    line-height: 25px;
    max-width: 120px;
    margin-right: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sub-menu ul li a {
    color: #044d9b;
    color: var(--main-color);
}

.sub-menu ul li a:hover {
    text-decoration: underline;
}

.today-reading {
    /* width: var(--max-width); */
    height: 35px;
    margin: auto;
    background: url(../img/tgbg.jpg) repeat-x;
    border-bottom: 1px #ccc solid;
    display: flex;
    align-items: center;
    padding: 0 12px;
    display: flex;
}

.today-l {
    color: #000;
    font-weight: bold;
}

.today-c {
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0 5px;
}

.today-r form {
    display: flex;
    align-items: center;
}

.today-r form input {
    height: 22px;
    width: 175px;
    margin-right: 10px;
}

/* 主体 */

.content {
    margin: 0 auto;
    width: var(--max-width);
    background-color: #fff;
    padding: 0 12px;
    margin-top: 12px;
}

.breakcrumb {
    padding-top: 12px;
    display: flex;
    align-items: center;
}

.breakcrumb svg {
    margin-right: 3px;
}

.breakcrumb a, .breakcrumb span {
    font-size: 12px;
    color: #044d9b;
    color: var(--main-color);
}

.breakcrumb a:hover {
    text-decoration: underline;
}

.breakcrumb span.arrow {
    padding: 0 2px;
    font-size: 16px;
}

.main {
    width: 100%;
    height: auto;
    border-top: 1px dashed #ccc;
    margin-top: 12px;
    padding: 12px 0;
}

.layui-table tr {
    cursor: pointer;
}
.approval-table tr {
    cursor: default;
}

.table-footer {
    display: flex;
    margin-top: 12px;
}

.table-footer #pageDev {
    margin-left: auto;
}

/* 底部 */

footer {
    margin: 0 auto;
}

.footer-tab {
    width: 100%;
    height: 54px;
    background: url(../img/fl.jpg) repeat-x;
    margin: 12px auto 0 auto;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
}

.footer-tab ul {
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-tab ul li {
    color: #fff;
    cursor: pointer;
    transition: all 300ms;
}

.footer-tab ul li:hover {
    color: yellow;
}

.footer-main {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-main p {
    font-size: 1em;
    line-height: 24px;
    color: #666;
}

.footer-main>img {
    width: 80px;
    height: 80px;
}

.footer-list {
    background-color: #044d9b;
    background-color: var(--main-color);
}

.footer-list ul {
    width: 100%;
    display: flex;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.footer-list ul li {
    display: inline-block;
    width: 150px;
    margin: 5px 20px;
    overflow: visible;
    white-space: nowrap;
}

.footer-list ul li a {
    color: #fff;
    transition: all 300ms;
}

.footer-list ul li a:hover {
    color: yellow;
}

/* 详情 */

.layui-elem-field legend {
    margin-left: 0 !important;
    font-size: 14px;
    color: #000;
    font-weight: bold;
    padding: 0 3px;
}

.basic-info {
    padding: 15px;
    font-size: 14px;
    margin-bottom: 0;
}

.info-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.info-form .layui-form-item {
    display: flex;
    /* flex-direction: column; */
    align-items: flex-start;
    width: 49%;
    margin-bottom: 10px;
}

.info-form .layui-input-block {
    margin-left: 0;
    flex: 1;
    min-height: 32px;
}

.info-form .layui-input-block span {
    word-break: break-all;
    font-weight: 600;
    color: #044d9b;
    color: var(--main-color);
}

.info-form .layui-form-label {
    padding: 0;
    padding-bottom: 8px;
    width: auto;
}

/* #planQueryDetail .info-form .layui-form-item:nth-of-type(even) {
    margin-left: 20px;
    width: auto;
    flex: 1;
} */

/* 不动产作废公告 */

.layui-table.real-estate tbody tr:hover {
    background-color: transparent !important;
}

.real-estate .real-title {
    text-align: left;
    display: flex;
    align-items: center;
}

.real-estate .real-title .layui-icon-triangle-r {
    color: #024c9b;
    font-size: 14px;
    margin-right: 3px;
}

.real-estate .real-title a:hover {
    text-decoration: underline;
    color: #024c9b;
}

.real-detail {
    width: 100%;
    height: 100%;
}

.real-detail>h1 {
    width: 100%;
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    color: #434343;
}

.real-detail .detail-info {
    width: 100%;
    display: flex;
    justify-content: center;
    color: #888;
    font-size: 12px;
    padding: 20px 0;
    border-bottom: 1px dashed #ccc;
}

.real-detail .info-time {
    margin: 0 16px;
}

.detail-content {
    width: 100%;
    padding-top: 20px;
}

#detailContent table th {
    background-color: #f2f2f2;
}

#detailContent table th, #detailContent table td {
    border: 1px solid #e6e6e6;
    padding: 5px 0;
    text-align: center;
    font-size: 12px;
}