
html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Microsoft YaHei', Arial;
    background-color: #F3F3F3;
}

body {
    overflow-y: auto;
    --color-main: #003E6C;
    --color-accent: #D0021B;
    --color-dim: #112d4e;
    --color-light: #0263B7;
    --color-sub: #0d799a;
    --color-sub-dim: #0b4b98;
}

/** 黑白效果，添加到html的class，
  * 注意：必须添加在html元素上，否则会造成浮动失效
  **/
html.gray {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.container {
    padding: 0px 10px;
    margin: 0px auto;
    box-sizing: border-box;
    font-size: 16px;
}

.main {
    width: 100%;
}

.main .header {
    width: 100%;
    height: 294px;
    background-image: url(../img/header_blur.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 294px;
    text-align: center;
    overflow: hidden;
    user-select: none;
}

.main .header .container .top-syx {
    color: #fff;
    display: inline-block;
    width: 80px;
    height: 30px;
    line-height: 27px;
    background-color: #dd0900;
    border-radius: 15px;
    float: right;
    top: 10px;
    margin-right: 10px;
    position: relative;
    font-size: 18px;
}

.main .header .top-bar {
    background-color: #003E6C;
    background-color: var(--color-main);
    padding: 8px 0px;
    height: 37px;
    font-size: 14px;
    box-sizing: border-box;
}

.main .header .top-bar .slogan {
    float: left;
    color: #FFFFFF;
}

.main .header .top-bar .links {
    float: right;
}

.main .header .top-bar .link {
    height: 20px;
    text-align: center;
    cursor: pointer;
    position: static;
    display: inline-block;
    padding: 0px 10px;
}

.main .header .top-bar .link:last-child {
    padding-right: 0px;
}

.main .header .top-bar .link a {
    color: #FFFFFF;
    display: block;
    position: relative;
    text-decoration: none;
}

.main .header .top-bar .link:not(:last-child) a:after {
    content: '';
    position: absolute;
    background-color: white;
    height: 12px;
    width: 1.2px;
    right: -10px;
    top: 4px;
}

.main .header .top-bar .link a:hover {
    color: #46a1ef;
}

.main .header .title {
    margin: 0 auto;
    float: left;
}

.main .header .title img {
    height: 120px;
    max-width: 100%;
    object-fit: contain;
}

.main .header .search-bar {
    height: 44px;
    max-width: 500px;
    margin: 0px auto;
    margin-top: 40px;
    opacity: 0.75;
    float: right;
    width: 35%;
}

.main .header .search-bar .search-input {
    float: left;
    width: calc(100% - 50px);
    height: 44px;
    border: 0px;
    outline: none;
    padding: 5px;
    padding-left: 10px;
    border-radius: 5px 0 0 5px;
    color: #8b91a0;
    transition: all 0.3s ease-in-out;
    background-color: rgba(255, 255, 255, 0.6);
}

.main .header .search-bar .search-input:focus {
    border-color: #E6E8E8 !important;
    background-color: #ffffe5 !important;
}

.main .header .search-bar .search-button {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 50px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 22px;
    color: #4A90E2;
    border: 0px;
    border-radius: 0px 5px 5px 0px;
    outline: none;
    cursor: pointer;
}

.main .header .search-bar .search-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.main .header .search-bar .search-button:active {
    background-color: rgba(255, 255, 255, 0.6);
}

.top-menu-wrapper {
    width: 100%;
    height: 53px;
}

.top-menu {
    height: 53px;
    user-select: none;
}

.top-menu a {
    color: #FFFFFF;
    text-decoration: none;
}

.top-menu .menu-group {
    height: 50px;
    background-color: #003E6C;
    background-color: var(--color-main);
}

.top-menu .menu-group li {
    list-style: none;
}

.top-menu .menu-group .menu-item {
    line-height: 40px;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #003E6C;
    background-color: var(--color-main);
    overflow: hidden;
}

.top-menu .menu-group .menu-item > a {
    margin: 5px;
    height: 40px;
    width: calc(100% - 10px);
    display: block;
}

.top-menu .menu-group .large .menu-item {
    height: 53px;
    position: relative;
    background-color: rgba(255, 255, 255, 0);
    overflow: visible;
}

.top-menu .menu-group .menu-item.active {
    background-color: #D0021B;
    background-color: var(--color-accent);
}

.top-menu .menu-group .menu-item:hover {
    background-color: #D0021B;
    background-color: var(--color-accent);
}

.top-menu .menu-group .menu-item .submenu {
    background-color: #FFFFFF;
    width: 100%;
    margin: 0px;
    padding: 0px;
    overflow: hidden;
}

.top-menu .menu-group .large .menu-item .submenu {
    position: absolute;
    top: calc(100% - 3px);
    left: 0px;
    z-index: 1000;
    transition: all 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.top-menu .menu-group .menu-item .submenu li {
    height: 50px;
    line-height: 50px;
    font-weight: normal;
    word-break: keep-all;
}

.top-menu .menu-group .menu-item .submenu li:hover {
    background-color: #f5f5f5;
}

.top-menu .menu-group .menu-item .submenu li a {
    width: 100%;
    height: 100%;
    display: block;
}

.top-menu .menu-group .menu-item .submenu a {
    color: black;
}

.top-menu .menu-group .small {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-menu .menu-group .logo {
    margin: 5px;
    width: 40px;
    height: 40px;
    float: left;
}

.top-menu .menu-group .logo img {
    height: 40px;
}

.top-menu .menu-group .search-bar {
    height: 40px;
    margin: 5px;
    width: calc(100% - 125px);
    float: left;
}

.top-menu .menu-group .search-bar .search-input {
    float: left;
    width: calc(100% - 50px);
    height: 40px;
    border: 0px;
    outline: none;
    padding-left: 10px;
    border-radius: 5px 0 0 5px;
}

.top-menu .menu-group .search-bar .search-button {
    float: left;
    margin: 0px;
    padding: 0px;
    width: 50px;
    height: 40px;
    background-color: #0d799a;
    background-color: var(--color-sub);
    font-size: 16px;
    color: #fff;
    border: 0px;
    border-radius: 0px 5px 5px 0px;
    outline: none;
    cursor: pointer;
}

.top-menu .menu-group .search-bar .search-button:hover {
    background-color: #112d4e;
    background-color: var(--color-dim);
}

.top-menu .menu-group .search-bar .search-button:active {
    background-color: #0b4b98;
    background-color: var(--color-sub-dim);
}

.top-menu .menu-group .menu-button {
    margin: 5px;
    margin-right: 20px;
    float: right;
    line-height: 40px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    color: #FFFFFF;
    text-align: center;
    background-color: #0d799a;
    background-color: var(--color-sub);
    border-radius: 5px;
    cursor: pointer;
}

.top-menu .menu-group .menu-button:hover {
    background-color: #112d4e;
    background-color: var(--color-dim);
}

.top-menu .menu-group .menu-button:active {
    background-color: #0b4b98;
    background-color: var(--color-sub-dim);
}

.top-menu .menu-group .right-menu {
    overflow-x: hidden;
    overflow-y: auto;
    width: 0px;
    min-height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1001;
    transition: all 0.3s;
}

.top-menu .menu-group .right-menu .mask {
    width: calc(100% - 202px);
    height: 100%;
    float: left;
}

.top-menu .menu-group .right-menu .menus {
    width: 202px;
    min-height: 100%;
    box-sizing: border-box;
    float: left;
    background-color: #003E6C;
    background-color: var(--color-dim);
    border: 1px solid #0b4b98;
    border: 1px solid var(--color-sub-dim);
}


.top-menu .menu-group .right-menu .menu-item {
    width: 200px;
}

.top-menu .menu-group .right-menu .menu-item {
    background-color: #003E6C;
    background-color: var(--color-main);
}

.top-menu .menu-group .right-menu .menu-item:hover {
    background-color: #D0021B;
    background-color: var(--color-accent);
}

.top-menu .menu-group .right-menu .menu-item.active {
    background-color: #D0021B;
    background-color: var(--color-accent);
}

.top-menu .menu-group .right-menu .menu-item > a {
    position: relative;
}

.top-menu .menu-group .right-menu .menu-item.up > a:before {
    content: ' ';
    position: relative;
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
    border-left-color: #989898;
    display: inline-block;
}

.top-menu .menu-group .right-menu .menu-item.down > a:before {
    content: ' ';
    position: relative;
    width: 0px;
    height: 0px;
    border: 5px solid transparent;
    border-top-color: #989898;
    display: inline-block;
    left: -3px;
}

.top-menu .menu-group .right-menu .submenu {
    background-color: #0d799a;
    background-color: var(--color-sub);
    transition: all 0.3s;
}

.top-menu .menu-group .right-menu .submenu a {
    color: #FFFFFF;
}

.top-menu .menu-group .right-menu .submenu li {
    height: 40px;
    line-height: 40px;
    font-size: 16px;
}

.top-menu .menu-group .right-menu .submenu li:hover {
    background-color: #0b4b98;
    background-color: var(--color-sub-dim);
}

.top-menu .menu-group .right-menu .submenu li a {
    width: 100%;
    height: 100%;
    display: block;
}

.top-menu.fixed {
    width: 100%;
    position: fixed;
    top: 0px;
    z-index: 999;
}

.top-menu.fixed .right-menu {
    right: 0%;
}

.main .home-page .home-nav {
    padding-left: 15px;
    padding-right: 5px;
}

.main .home-page .home-nav li {
    background: #003E6C;
    height: 50px;
    line-height: 50px;
    text-align: center;
    position: relative;
    font-size: 18px;
    color: #fff;
    width: 25%;
    font-weight: bold;
    box-sizing: border-box;
    cursor: pointer;
    border-right: 2px solid #FFFFFF;
    float: left;
    list-style: none;
}

.main .home-page .home-nav li.active {
    background: #D0021B;
    color: #fff;
}

.main .home-page .home-sub-nav li {
    float: left;
    line-height: 35px;
    height: 40px;
    cursor: pointer;
    padding-right: 14px;
    margin-right: 13px;
    color: #0054A7;
    font-size: 20px;
    padding-top: 5px;
}

.main .home-page .home-sub-nav li a {
    color: #0054A7;
    font-size: 18px;
}

.main .home-page .home-sub-nav li.active {
    color: #0054A7;
    font-weight: bold;
}


.main .home-page .home-sub-nav li.active a {
    color: #0054A7;
    border-bottom: #0054A7 3px solid;
    line-height: 35px;
    height: 35px;
    display: block;
    font-size: 18px;
}

.main .home-page .home-sub-content-panel {
    padding-top: 0px;
}

.main .home-page .modules .home-cxfw {
    display: grid;
    grid-template-columns: repeat(auto-fill, 215px);
    grid-gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 35px;
}

.main .home-page .modules .home-cxfw .home-cxfw-div {
    border-radius: 3px;
    cursor: pointer;
    background-color: #fff;
    width: 213px;
    height: 160px;
    border: none;
}

.main .home-page .modules .home-cxfw .home-cxfw-div div img {
    width: 100%;
}

.main .home-page .modules .home-cxfw .home-cxfw-div .content {
    height: 30px;
    padding: 10px;
    text-align: center;
}

.main .home-page .modules .home-cxfw .home-cxfw-div .content .content-title {
    text-align: center;
    font-weight: 700;
    display: block;
    color: #0d1c28;
    font-size: 16px;
    line-height: 32px;
    margin-bottom: 4px;
}

.main .home-page .modules .home-cxfw .home-cxfw-div .content .content-description {
    display: block;
    color: #6e777e;
    font-size: 14px;
    line-height: 26px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.main .home-page .modules .cxfw-scrolling {
    margin: 0px auto;
    width: 150px;
    z-index: 100;
}

.main .home-page .modules .cxfw-scrolling ul {
    display: block;
    overflow: hidden;
}

.main .home-page .modules .cxfw-scrolling ul li{
    display:block;
    width:12px;
    height:12px;
    border-radius:10px;
    background-color:#003E6C;
    margin:0 5px;
    float:left;
    overflow:hidden;
    cursor:pointer;
}

.main .home-page .modules .cxfw-scrolling ul li.on {
    width: 50px;
    background-color:#003E6C;
}

.main .modules {
    overflow: hidden;
    margin: 0px auto;
    margin-top: 20px;
}

.main .modules .module {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.picture-area {
    height: 360px;
    overflow: hidden;
}

.picture-area .pictures {
    height: 100%;
    position: relative;
    transition: all 1s;
}

.picture-area .pictures a {
    color: #FFFFFF;
    text-decoration: none;
}

.picture-area .pictures .item {
    height: 100%;
    width: 100%;
    float: left;
}

.picture-area .pictures .item img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.picture-area .pictures .item .title {
    position: relative;
    top: -45px;
    width: 100%;
    height: 40px;
    background-color: rgba(100, 100, 100, 0.8);
    line-height: 40px;
    color: #FFFFFF;
    font-weight: bold;
    padding: 0px 100px 0px 10px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.picture-area .bottom-bar {
    width: 80px;
    height: 20px;
    position: relative;
    top: -36px;
    left: calc(100% - 100px);
    display: inline-block;
}

.picture-area .bottom-bar .pointer {
    margin: 5px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #CDCDCD;
    float: left;
    cursor: pointer;
}

.picture-area .bottom-bar .pointer.active {
    background-color: #FFFFFF;
}

.picture-area .left-arrow, .picture-area .right-arrow {
    display: inline-block;
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 40px;
    color: #FFFFFF;
    position: relative;
    top: -200px;
    color: #EDEDED;
    text-align: center;
    cursor: pointer;
}

.picture-area .left-arrow:hover, .picture-area .right-arrow:hover {
    color: #CDCDCD;
}

.picture-area .left-arrow {
    left: -80px;
}

.picture-area .right-arrow {
    left: calc(100% - 161px);
}

.homeTabRight {
    width: 200px;
    height: 70px;
    background-color: #EDF4FA;
    color: #0054a7;
    vertical-align: middle;
    border-radius: 10px;
    display: inline-block;
    line-height: 65px;
    text-align: center;
    margin: 26px 34px;
    font-weight: bold;
    border: 2px #CCE2F0 solid;
    cursor: pointer;
    font-size: 16px;
}

.content-panel {
    box-sizing: border-box;
    padding: 10px;
    margin-top: 20px;
    min-height: 380px;
    background-color: #FFFFFF;
}

.content-panel a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
}

.content-panel a:hover {
    color: #003E6C;
    color: var(--color-main);
}

.content-panel .panel-header {
    height: 31px;
    margin-bottom: 15px;
    border-bottom: solid 2px #EEEEEE;
}

.content-panel .home-sub-panel-header {
    height: 42px;
    margin-bottom: 15px;
    border-bottom: solid 2px #EEEEEE;
}

.content-panel .home-sub-panel-header .more {
    height: 40px !important;
    line-height: 40px !important;
    margin-top: 5px;
}

.content-panel .panel-header .more .more-icon {
    margin-left: 3px;
    position: relative;
    top: 1px;
    font-size: 16px;
}

.content-panel .panel-header .label {
    font-size: 18px;
    font-weight: bold;
    height: 30px;
    line-height: 20px;
    float: left;
    border-bottom: 2px solid #003E6C;
    border-bottom: 2px solid var(--color-main);
    color: #003E6C;
    color: var(--color-main);
    letter-spacing: 1px;
}

.content-panel .panel-header ul {
    padding-left: 0px;
}

.content-panel .panel-header ul li {
    float: left;
    font-size: 20px;
    line-height: 35px;
    height: 40px;
    cursor: pointer;
    padding-right: 14px;
    margin-right: 13px;
    list-style: none;
    color: #0054A7;
}

.content-panel .panel-header ul li:last-child {
    background: none;
}

.content-panel .panel-header .more {
    width: 40px;
    height: 30px;
    line-height: 30px;
    float: right;
    font-size: 12px;
}

.content-panel .panel-header .more a {
    font-size: 12px;
    color: #989898;
}

.content-panel .panel-brief {
    width: 100%;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    padding: 0px 20px;
    white-space: nowrap;
    overflow: hidden;
    color: #0263B7;
    color: var(--color-light);
    white-space: nowrap;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.content-panel .panel-brief a {
    font-size: 18px;
    color: #0263B7;
    color: var(--color-light);
}

.content-panel .panel-list {
    line-height: 38px;
    overflow: hidden;
    list-style: none;
    padding-inline-start: 0px;
    font-size: 16px;
}

.content-panel .panel-list li {
    list-style-type: none;
    width: 99%;
    height: 100%;
}

.content-panel .panel-list li.zd-li {
    list-style: none;
    width: 99%;
    height: 38px;
    background-image: url("../img/zd.webp");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 15px 15px;
    padding-left: 17px;
    position: relative;
    left: 0px;
}

.content-panel .panel-list li.zd-li .data-item-title {
    color: #D0021B !important;
}

.content-panel .panel-list .content {
    float: left;
    width: calc(78%);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.content-panel .panel-list li {
    color: #999;
}

.content-panel .panel-list .data-item {
    height: 38px;
    cursor: pointer;
    position: relative;
    left: 5px;
}

.content-panel .panel-list .data-item .li-icon {
    font-size: 6px;
    position: relative;
    vertical-align: top;
    margin-right: 7px;
    color: #c3c2c2;
}

.content-panel .panel-list .data-item .data-item-title:hover {
    color: #D0021B;
}

.content-panel .panel-list .data-item-title {
    width: calc(100% - 105px);
    display: inline-block;
    color: #4A4A4A;
    height: 38px;
}

.content-panel .panel-list .data-item-title .lay-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    max-width: calc(100% - 80px);
    font-size: 16px;
}

.home-page .content-panel .panel-list .data-item-title.lay-ellipsis {
    text-overflow: unset !important;
}

.content-panel .panel-list .data-item-title .lay-data-update {
    display: inline-block;
    font-size: 12px;
    color: #d03050;
    margin-left: 5px;
    background-color: rgba(208, 48, 80, 0.1);
    padding: 2px 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    height: 20px;
    line-height: 20px;
    position: relative;
    top: -8px;
}

.content-panel .panel-list .content {
    color: #4A4A4A
}

.content-panel .panel-list .content:hover {
    color: #D0021B;
    color: var(--color-accent);
}

.content-panel .panel-list .date {
    font-family: arial;
    opacity: 0.7;
    color: #999;
    font-size: 14px;
    /*float: right;*/
    display: inline-block;
    width: 85px;
    height: 38px;
    line-height: 38px;
    text-align: right;
    vertical-align: top;
}

.panel {
    width: 100%;
    box-sizing: border-box;
    padding: 13px;
    margin-bottom: 20px;
    background-color: #FFFFFF;
}

.main-title-1 {
    position: relative;
    height: 26px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: left;
}

.main-title-1 span {
    width: max-content;
    height: 26px;
    line-height: 26px;
    margin: 0px auto;
    background-color: #FFFFFF;
    position: relative;
    padding: 0px 30px;
    font-size: 26px;
    color: #003E6C;
    color: var(--color-main);
    text-align: center;
}

.query-service {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.query-service .query-tab {
    padding: 10px;
    width: 100%;
}

.query-service .query-tab .card {
    position: relative;
    padding: 10px;
    overflow: hidden;
}

.query-service .query-tab .card a {
    text-decoration: none;
    color: #4A4A4A;
    display: block;
    overflow: hidden;
}

.query-service .query-tab .card a:hover {
    background-color: #0263B7;
    background-color: var(--color-light);
    color: #FFFFFF;
    transform: translate3d(0, -0.3rem, 0);
    transition: all 0.3s;
}

.query-service .query-tab .card .card-picture {
    width: 100%;
}

.query-service .query-tab .card .card-picture img {
    width: 100%;
}

.query-service .query-tab .card .content {
    width: 100%;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
}

.query-service .query-tab .card .content .title {
    width: 100%;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
    font-weight: bold;

}

.query-service .query-tab .card .content .describe {
    width: 100%;
    height: 40px;
    line-height: 20px;
    font-size: 14px;
}


.query-service .query-more {
    overflow: hidden;
    padding: 20px;
}

.query-service .query-more .label {
    text-align: center;
    font-size: 14px;
    color: #4A4A4A;
}

.query-service .query-tab .card {
    width: 17.5%;
    display: inline-block;
}

.query-service .query-more {
    padding: 10px !important;
}

.query-service .query-more .content {
    width: 100%;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
}

.query-service .query-more .content .title {
    width: 100%;
    height: 40px;
    line-height: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #4A4A4A;
}

.query-service .query-more .content .describe {
    width: 100%;
    height: 40px;
    line-height: 20px;
    font-size: 14px;
    color: #4A4A4A;
}

.query-service .query-more .qrcode {
    width: 100%;
}

.query-service .query-more .qrcode img {
    width: 100%;
}

.query-service .query-form {
    padding: 10px;
}

.query-service .query-form .form-item {
    width: 100%;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}

.query-service .query-form .form-item .label {
    float: left;
    width: 100px;
    text-align: center;
}

.query-service .query-form .form-item input,
.query-service .query-form .form-item select {
    float: left;
    width: calc(100% - 110px);
    height: 30px;
    margin-top: 10px;
}

.query-service .query-form .form-item button {
    width: 100%;
    background-color: #003E6C;
    background-color: var(--color-main);
    height: 40px;
    margin-top: 5px;
    border: 0px;
    border-radius: 5px;
    color: #FFFFFF;
}

.query-service .query-form .form-item button:hover {
    background-color: #112d4e;
    background-color: var(--color-dim);
}

.query-service .query-form .form-item button:active {
    background-color: #0b4b98;
    background-color: var(--color-sub-dim);
}


.footer-img {
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin: 0px auto;
    padding: 0px 10px;
    box-sizing: border-box;
}

.footer-img .item {
    height: 50px;
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle;
    background-color: #003E6C;
    background-color: var(--color-main);
    box-sizing: border-box;
}

.footer-img .item .icon-box {
    height: 50px;
    font-size: 40px;
    color: #FFFFFF;
    text-align: center;
    line-height: 50px;
    display: inline-block;
    vertical-align: middle;
}

.footer-img .item .text-box {
    min-width: 120px;
    height: 50px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

.footer-img .item .text-box .main-label {
    display: block;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.footer-img .item .text-box .second-label {
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.outlinks {
    width: 100%;
    overflow: hidden;
    padding: 10px 0px;
    background-color: #9B9B9B;
    margin-top: 20px;
}

.outlinks a {
    height: 20px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
}

.footer {
    width: 100%;
    height: 78px;
    background-color: #4A4A4A;
    color: #ffffff;
    font-size: 12px;
    padding: 30px 0px;
    margin-top: 10px;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer .container .left-content {
    font-size: 12px;
}

.footer .container .left-content div {
    color: #FFFFFF;
    vertical-align: middle;
    line-height: 20px;
    overflow: hidden;
    min-height: 30px;
    margin-top: 10px;
}

.footer img.gh {
    width: 20px;
    height: 20px;
    display: inline-block;
}

.footer .container {
    padding: 0px 0px;
}

.footer .container .right-address div {
    color: #FFFFFF;
    vertical-align: middle;
    line-height: 20px;
    overflow: hidden;
    min-height: 30px;
}

.footer .container .right-content div {
    float: left;
    height: 50px;
    margin: 5px;
}

.footer .container .right-content div img {
    height: 100%;
}

.footer .container .right-content .weibo,
.footer .container .right-content .weixin {
    padding: 3px;
    box-sizing: border-box;
    width: 60px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    text-align: center;
}

.footer .container .right-content .weibo span,
.footer .container .right-content .weixin span {
    display: block;
    font-size: 12px;
}

.footer .container .right-content .weixin {
    background-color: #5cb85c;
    position: relative;
}

.footer .container .right-content .weibo {
    background-color: #d9534f;
}

.footer .container .right-content .weixin .qrcode {
    box-shadow: 0px 0px 15px 1px #bcbcbc;
    background-color: #FFFFFF;
    width: 200px;
    height: 200px;
    padding: 15px;
    box-sizing: border-box;
    position: absolute;
    bottom: 60px;
    left: -70px;
}

.footer .container .right-content .weixin .qrcode img {
    width: 170px;
    height: 170px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0px;
    margin: 15px 0px 15px 0px;
    box-sizing: border-box;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
}

.breadcrumb a {
    display: inline-block;
    color: #A7ACB1;
    text-decoration: none;
}

.breadcrumb a + a:before {
    padding: 0 5px;
    color: #A7ACB1;
    content: "/\00a0";
}

.list-area {
    box-sizing: border-box;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 15px 0px 0px 0px;
    min-height: 621px;
}

.list-area .list-menu {
    box-sizing: border-box;
    background-color: #FFFFFF;
    width: 25%;
    float: left;
    border: 1px solid #ccc;
    padding-bottom: 10px;
}

.list-area .list-menu a {
    text-decoration: none;
    font-size: 16px;
    color: #003E6C;
    color: var(--color-main);
    width: 100%;
    height: 34px;
    box-sizing: border-box;
    text-align: center;
    display: block;
    line-height: 34px;
}

.list-area .list-menu a.active {
    font-weight: bold;
}

.list-area .list-menu a:hover {
    color: #D0021B;
    color: var(--color-accent);
}

.list-area .list-menu .title {
    height: 50;
    margin-bottom: 15px;
    background-color: #003E6C;
    background-color: var(--color-main);
    color: #FFFFFF;
    line-height: 50px;
    font-weight: bold;
    text-align: center;

}

.list-area .list-menu .sub a {
    height: 20px;
    line-height: 20px;
    font-size: 14px;
}

.list-area .content-area {
    /*margin-left: 20px;*/
    box-sizing: border-box;
    padding: 20px;
    background-color: #FFFFFF;
    /*width: calc(75% - 20px);*/
    width: 100%;
    float: left;
    border: 1px solid #ccc;
    min-height: 621px;
}

.list-area .content-area {
    min-height: 621px;
}

.list-area .content-area .area-title {
    font-size: 18px;
    padding-left: 20px;
    font-weight: bold;
    color: #003E6C;
    color: var(--color-main);
    height: 40px;
    line-height: 40px;
    border-bottom: 2px solid #EEEEEE;
    margin-bottom: 20px;
}

.list-area .content-area .area-title:before {
    content: ' ';
    width: 12px;
    height: 12px;
    background-color: #003E6C;
    background-color: var(--color-main);
    transform: rotate(45deg);
    display: inline-block;
    position: relative;
    left: -10px;
    top: 0px;
}

.list-area .content-area .content {

}

.list-area .content-area .content .text {
    text-indent: 36px;
    font-size: 18px;
    line-height: 36px;
    font-family: '宋体';
}

.list-area .content-area .content .person-list .person {
    margin-bottom: 20px;
    height: 150px;
    overflow: hidden;
}

.list-area .content-area .content .person-list .person .avatar {
    float: left;
    width: 110px;
    height: 150px;
    padding: 5px;
    box-sizing: border-box;
    overflow: hidden;
}

.list-area .content-area .content .person-list .person .avatar img {
    width: 100px;
    height: 140px;
    object-fit: fill;
}

.list-area .content-area .content .person-list .person .infos {
    height: 150px;
    float: left;
    vertical-align: middle;
    width: calc(100% - 130px);
    position: relative;
    left: 20px;
}

.list-area .content-area .content .person-list .person .infos .name {
    font-size: 22px;
    font-weight: bold;
    line-height: 50px;
}

.list-area .content-area .content .person-list .person .infos .info {
    line-height: 30px;
}

.list-area .content-area .content .article-page a {
    color: #4A4A4A;
    text-decoration: none;
}

.list-area .content-area .content .article-page a:hover {
    color: #D0021B;
    color: var(--color-accent);
}

.list-area .content-area .content .article-page .item {
    width: calc(100% - 10px);
    box-sizing: border-box;
    margin: 0px 5px;
    height: 45px;
    line-height: 44px;
    border-bottom: 1px solid lightgray;
}

.list-area .content-area .content .article-page .item .label {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    float: left;
    width: calc(100% - 100px);
}

.list-area .content-area .content .article-page .item .label:before {
    content: ' ';
    width: 6px;
    height: 6px;
    background-color: #c3c2c2;
    border-radius: 1px;
    display: inline-block;
    position: relative;
    top: -2px;
}

.list-area .content-area .content .article-page .item .date {
    float: right;
    width: 80px;
    opacity: .7;
    font-family: arial;
    color: #999;
    font-size: 14px;
    line-height: 40px;
}

.list-area .content-area .content .article-pager {
    margin: 0px auto;
    margin-top: 20px;
}

.list-area .content-area .content .article-pager a {
    height: 32px;
    line-height: 30px;
    color: #4A4A4A;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0px 10px;
    display: block;
    float: left;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    margin: 5px;
    border-color: #4A4A4A;
}

.list-area .content-area .content .article-pager a:hover {
    background-color: #003E6C;
    background-color: var(--color-main);
    color: #FFFFFF;
}

.list-area .content-area .content .article-pager a.current {
    background-color: #003E6C;
    border-color: var(--color-main);
    color: #FFFFFF;
}

.list-area .content-area .content .article-pager > a {
    text-align: center;
}

.list-area .content-area .content .article-pager .pages {
    overflow: hidden;
    float: left;
    max-width: 210px;
}

.list-area .content-area .content .article-pager span {
    display: block;
    float: right;
    height: 32px;
    line-height: 32px;
}

.list-area .content-area .content .organizations {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fill, 260px);
    grid-gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.list-area .content-area .content .title {
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    padding: 0px 10px;
}

.list-area .content-area.article-area .content .article {
    text-indent: 32px;
}

.list-area .content-area.article-area .content .article p {
    margin: 10px;
}

.list-area .content-area.article-area .content .infos {
    text-align: center;
    margin: 20px 0px;
    font-size: 14px;
    color: #666;
    border-bottom: dashed 1px #d5d5d5;
    padding-bottom: 5px;
}

.list-area .content-area.article-area .content .infos div {
    display: inline-block;
}

.list-area .content-area .content .organizations a {
    color: #4A4A4A;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    margin: 16px;
    font-size: 16px;
    border: 1px solid #EEEEEE;
    line-height: 50px;
}

.list-area .content-area .content .organizations a:hover {
    color: #0263B7;
}

.list-area .query-area {
    min-height: 621px !important;
}

.query-area {
    width: 100%;
    background-color: #FFFFFF;
    margin: 10px 0px;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 500px;
}

.query-area .condition-area,
.query-area .result-area {
    width: 100%;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.query-area .condition-area {
    background-color: #F8F8F8;
}

.query-area .condition-area .conditions,
.query-area .condition-area .operations {
    overflow: hidden;
}

.query-area .condition-area .operations {
    width: 100%;
    box-sizing: border-box;
    padding: 5px 10px 5px 90px;
    height: 40px
}

.query-area .condition-area .tips {
    width: 100%;
    line-height: 30px;
    color: #FF0000;
}

.query-area .condition-area .conditions .form-item,
.query-area .condition-area .operations .form-item {
    overflow: hidden;

}

.query-area .condition-area .conditions .form-item .label {
    box-sizing: border-box;
    padding: 5px;
    float: left;
    display: block;
    width: 80px;
    height: 40px;
    text-align: right;
    line-height: 30px;
    font-size: 14px;
    color: rgb(31, 34, 37);
}

.query-area .condition-area .conditions .form-item .label.label-wide {
    width: 120px;
}

.query-area .condition-area .conditions .form-item .item {
    width: calc(100% - 80px);
    height: 40px;
    float: left;
    display: block;
}

.query-area .condition-area .conditions .form-item .item-2 {
    width: calc(50% - 40px);
    box-sizing: border-box;
    padding-right: 5px;
    height: 40px;
    float: left;
    display: block;
}

.query-area .condition-area .conditions .form-item .item-2:last-child {
    padding-left: 5px;
    padding-right: 0px;
}

.query-area .condition-area .conditions .form-item .item-3 {
    box-sizing: border-box;
    width: calc(100% - 80px);
    overflow: hidden;
    float: left;
    display: block;
}

.query-area .condition-area .conditions .form-item .item-4 {
    width: calc(80% - 80px);
    box-sizing: border-box;
    padding-right: 5px;
    height: 40px;
    float: left;
    display: block;
    max-width: 300px;
    padding: 0px 5px;
}

.query-area .condition-area .conditions .form-item .item-4-btn {
    width: 20%;
    height: 40px;
    float: left;
    overflow: hidden;
    box-sizing: border-box;
    padding: 5px;
    max-width: 100px;
}

.query-area .condition-area .conditions .form-item .item-4-btn button {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-color: #003E6C;
    background-color: var(--color-light);
    border: 0px;
    color: #FFFFFF;
    height: 30px;
    cursor: pointer;
}

.query-area .condition-area .conditions .form-item .label.label-wide + .item {
    width: calc(100% - 120px);
}

.query-area .condition-area .conditions .form-item .label.label-wide + .item-2 {
    width: calc(50% - 60px);
}

.query-area .condition-area .conditions .form-item .label.label-wide + .item-3 {
    width: calc(100% - 120px);
}

.query-area .condition-area .conditions .form-item .item-3 .checkbox {
    width: 25%;
    height: 30px;
    box-sizing: border-box;
    overflow: hidden;
    float: left;
    display: block;
}

.query-area .condition-area .conditions .form-item .item-3 .checkbox label {
    width: calc(100% - 28px);
    box-sizing: border-box;
}

.query-area .condition-area .conditions .form-item .item-3 .single-select {
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    float: left;
    box-sizing: border-box;
    margin: 5px;
    cursor: pointer;
    padding: 0px 5px;
    border: 1px solid transparent;
    word-break: keep-all;
    white-space: nowrap;
}


.query-area .condition-area .conditions .form-item .item-code {
    width: calc(100% - 185px);
    float: left;
}

.query-area .condition-area .conditions .form-item .item-code-img {
    width: 100px;
    height: 30px;
    float: left;
    margin: 5px 0px 5px 5px;
}

.query-area .condition-area .conditions .form-item .label.label-wide + .item-code {
    width: calc(100% - 258px);
}

.query-area .condition-area .conditions .form-item .item-code-img img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.query-area .condition-area .conditions .form-item .item-3 .single-select:hover {
    color: #0263B7;
}

.query-area .condition-area .conditions .form-item .item-3 .single-select.selected {
    background-color: #0263B7;
    background-color: var(--color-light);
    color: #FFFFFF;
}

.query-area .condition-area .conditions .form-item input[type=text],
.query-area .condition-area .conditions .form-item select {
    width: 100%;
    height: 30px;
    box-sizing: border-box;
    padding: 4px 10px;
    font-size: 14px;
    border: 1px solid #989898;
    color: #616161;
    border-radius: 5px;
    outline: none;
    margin: 5px 0px;
}

.query-area .condition-area .conditions .form-item input[type=text].no-radius,
.query-area .condition-area .conditions .form-item select.no-radius {
    border-radius: unset;
}

.query-area .condition-area .conditions .form-item input[type=checkbox] {
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid #989898;
    margin: 10px 2px;
    float: left;
    cursor: pointer;
}

.query-area .condition-area .conditions .form-item input[type=checkbox]:checked + label {
    color: #003E6C;
    color: var(--color-main);
}

.query-area .condition-area .conditions .form-item label {
    margin: 2px;
    height: 36px;
    line-height: 36px;
    display: inline-block;
    float: left;
    user-select: none;
    cursor: pointer;
}

.query-area .condition-area .conditions .form-item .item-2 input,
.query-area .condition-area .conditions .form-item .item-2 select {
    border-radius: 5px;
}

.query-area .condition-area .conditions .form-item input:focus,
.query-area .condition-area .conditions .form-item select:focus {
    border: 1px solid #616161 !important;
}

.query-area .condition-area .operations button {
    width: 20%;
    height: 100%;
    box-sizing: border-box;
    background-color: #2080F0;
    /*background-color: var(--color-light);*/
    border: 0px;
    color: #FFFFFF;
    height: 36px;
    cursor: pointer;
    float: right;
    border-radius: 5px;
    font-size: 14px;
}

.query-area .condition-area .operations button:hover {
    background-color: #003E6C;
    background-color: var(--color-main);
}

.query-area .condition-area .operations button:active {
    background-color: #112d4e;
    background-color: var(--color-dim);
}

.query-area .result-area a {
    color: #000000;
}

.query-area .result-area a:visited {
    color: #000000;
}

.query-area .result-area .results {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.query-area .result-area .results .no-result {
    width: 100%;
    height: 100px;
    text-align: center;
    box-sizing: border-box;
}


.query-area .result-area .results .result {
    border: 1px solid #003E6C;
    border: 1px solid var(--color-dim);
    margin: 20px auto;
    width: calc(100% - 42px);
    cursor: pointer;
    overflow: hidden;
    min-height: 190px;
    box-sizing: border-box;
}

.query-area .result-area .results .result .logo-area {
    width: 160px;
    height: 190px;
    box-sizing: border-box;
    padding: 20px 5px;
    vertical-align: middle;
    text-align: center;
    float: left;
    display: block;
    position: relative;
}

.query-area .result-area .results .result .logo-area .logo {
    width: 150px;
    height: 150px;
}

.query-area .result-area .results .result .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.query-area .result-area .results .result .infos {
    float: left;
    width: calc(100% - 160px);
    padding: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.query-area .result-area .results .result .infos > div {
    box-sizing: border-box;
    width: 50%;
    float: left;
    padding: 10px;
    overflow: hidden;
}

.query-area .result-area .results .result .infos .name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    overflow: hidden;
    width: 100% !important;
    float: left;
    word-break: break-all;
}

.query-area .result-area .results .result .infos > div .label {
    width: 80px;
    float: left;
}

.query-area .result-area .results .result .infos > div .info {
    width: calc(100% - 80px);
    float: left;
    overflow: hidden;
    word-break: break-all;
}

.query-area .result-area .result-pager {
    margin: 0px auto;
    margin-top: 20px;
    overflow: hidden;
    width: 96%;
}

.query-area .result-area .result-pager a {
    height: 32px;
    line-height: 30px;
    color: #003E6C;
    color: var(--color-main);
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0px 10px;
    display: block;
    float: left;
    cursor: pointer;
    border: 1px solid #FFFFFF;
    margin: 5px;
    border-color: #003E6C;
    border-color: var(--color-main);
}

.query-area .result-area .result-pager a:hover {
    background-color: #003E6C;
    background-color: var(--color-main);
    color: #FFFFFF;
}

.query-area .result-area .result-pager a.current {
    background-color: #003E6C;
    background-color: var(--color-main);
    color: #FFFFFF;
}

.query-area .result-area .result-pager > a {
    width: 70px;
    text-align: center;
}

.query-area .result-area .result-pager .pages {
    overflow: hidden;
    float: left;
    max-width: 210px;
}

.query-area .result-area .result-pager span {
    display: block;
    float: right;
    height: 32px;
    line-height: 32px;
}

.query-area .result-area .results .content-table {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #003E6C;
    border-color: var(--color-main);
    border-width: 1px 0px 0px 1px;
}

.query-area .result-area .results * {
    border-collapse: collapse;
}

.query-area .result-area .results .content-table .label,
.query-area .result-area .results .content-table .value {
    border: 1px solid #003E6C;
    border-color: var(--color-main);
    border-width: 0px 1px 1px 0px;
    box-sizing: border-box;
    overflow: hidden;
    line-height: 20px;
    word-break: keep-all;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.query-area .result-area .results .content-table {
    width: 100%;
}

.query-area .result-area .results .content-table .line {
    min-height: 40px;
    overflow: hidden;
}

.query-area .result-area .results .content-table .line div {
    box-sizing: border-box;
    padding: 10px;
    font-size: 14px;
    float: left;
    height: 100%;
    min-height: 41px;
}

.query-area .result-area .results .content-table .line .label {
    width: 100px;
    text-align: center;
    font-size: 16px;
}

.query-area .result-area .results .content-table .line .value {
    width: calc(50% - 100px);
}


.query-area .result-area .results .content-table .line .label.label-2 {
    width: 180px;
}

.query-area .result-area .results .content-table .line .value.value-2 {
    width: calc(100% - 180px);
}

.query-area .result-area .results .content-table .zsTable {
    width: 100%;
}

.query-area .result-area .results .content-table .zsTable .label {
    width: 10%;
    text-align: center;
}

.query-area .result-area .results .content-table .zsTable .label-2 {
    width: 15%;
    text-align: center;
}

.query-area .result-area .results .content-table .zsTable .value {
    width: 40%;
}

.query-area .result-area .results .content-table .zsTable tbody tr {
    min-height: 40px;
}

.query-area .result-area .results .content-table .zsTable tbody tr td {
    padding: 10px;
    border: 1px solid #003E6C;
}

.query-area .result-area .results .btns {
    width: 100%;
    overflow: hidden;
    text-align: center;
}

.query-area .result-area .results .btns .oper-button {
    margin-top: 20px;
    width: 300px;
    max-width: 100%;
    height: 50px;
    background-color: #0263B7;
    background-color: var(--color-light);
    color: #FFFFFF;
    border: 0px;
    border-radius: 10px;
    font-size: 20px;
    cursor: pointer;
}

.query-area .result-area .results .btns .oper-button:hover {
    background-color: #003E6C;
    background-color: var(--color-main);
}

.query-area .result-area .results .btns .oper-button:active {
    background-color: #112d4e;
    background-color: var(--color-dim);
}


.mechanism-area {
    width: 100%;
    box-sizing: border-box;
    background-color: #FFFFFF;
    padding: 20px;
    overflow: hidden;
    border: 1px solid #ccc;
}

.mechanism-area .mechanism-panel {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px dotted #003E6C;
    border-bottom-color: var(--color-main);
}

.mechanism-area .mechanism-panel:last-child {
    border-bottom-width: 0px;
}

.mechanism-area .mechanism-panel .title {
    padding: 10px;
    box-sizing: border-box;
    border-bottom: 1px dotted #003E6C;
    border-bottom-color: var(--color-main);
    overflow: hidden;
    font-weight: bold;
}

.mechanism-area .mechanism-panel .content {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 10px;
    font-size: 14px;
}

.mechanism-area .mechanism-panel .content .logo-left .logo {
    box-sizing: border-box;
    width: 50%;
    overflow: hidden;
    position: relative;
    margin: 0px auto;
}

.mechanism-area .mechanism-panel .content .logo-left .logo:after {
    content: ' ';
    display: block;
    margin-top: 100%;
}

.mechanism-area .mechanism-panel .content .logo-left .logo img {
    position: absolute;
    width: 80%;
    height: 80%;
    left: 10%;
    top: 10%;
}

.mechanism-area .mechanism-panel .content .logo-left .name {
    width: 90%;
    margin: 0px auto;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.mechanism-area .mechanism-panel .content .info-right .info-sub-col {
    box-sizing: border-box;
    padding: 10px 0px;
    font-size: 14px;
}

.mechanism-area .mechanism-panel .content .info-right .info-sub-col .label {
    width: 140px;
    float: left;
}

.mechanism-area .mechanism-panel .content .info-right .info-sub-col .value {
    width: calc(100% - 140px);
    float: left;
    overflow: hidden;
    word-break: break-all;
}

.mechanism-area .mechanism-panel .content .mechanism-table {
    width: 100%;
    min-height: 200px;
    overflow: hidden;
}

.mechanism-area .mechanism-panel .content .mechanism-table table {
    width: 100%;
}

.mechanism-area .mechanism-panel .content .mechanism-table table td {
    text-align: center;
}

.mechanism-area .mechanism-panel .content .mechanism-table .mechanism-table-header {
    width: 100%;
    height: 40px;
    font-weight: bold;
}

.mechanism-area .mechanism-panel .content .mechanism-table .mechanism-table-data-area {
    min-height: 160px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
}


/**
 * 栅格
 */
.row {
    width: 100%;
    box-sizing: border-box;
}

.row:after {
    content: " ";
    clear: both;
    width: 100%;
}

.row .col-1,
.row .col-2,
.row .col-3,
.row .col-4,
.row .col-5,
.row .col-6,
.row .col-7,
.row .col-8,
.row .col-9,
.row .col-10,
.row .col-11,
.row .col-12 {
    float: left;
    box-sizing: border-box;
    padding: 0px 10px;
}

.row .col-1 {
    width: 8.33333333%;
}

.row .col-2 {
    width: 16.66666667%;
}

.menu-row .col-2 {
    width: 14.25%;
}

.row .col-3 {
    width: 25%;
}

.row .col-4 {
    width: 33.33333333%;
}

.row .col-5 {
    width: 41.66666667%;
}

.row .col-6 {
    width: 50%;
}

.row .col-7 {
    width: 58.33333333%;
}

.row .col-8 {
    width: 66.66666667%;
}

.row .col-9 {
    width: 75%;
}

.row .col-10 {
    width: 83.33333333%;
}

.row .col-11 {
    width: 91.66666667%;
}

.row .col-12 {
    width: 100%;
}

@media screen and (min-width: 1024px) {
    .container {
        width: 1000px;
    }

    .modules {
        max-width: 1000px;
    }

    .footer-img {
        max-width: 1000px;
    }

    .panel {
        max-width: 1000px;
    }

    .row .col-1,
    .row .col-2,
    .row .col-3,
    .row .col-4,
    .row .col-5,
    .row .col-6,
    .row .col-7,
    .row .col-8,
    .row .col-9,
    .row .col-10,
    .row .col-11,
    .row .col-12 {
        box-sizing: border-box;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width: 1180px;
    }

    .modules {
        max-width: 1180px;
    }

    .footer-img {
        max-width: 1180px;
    }

    .panel {
        max-width: 1180px;
    }

    .query-area .result-area .results .result .logo-area {
        width: 200px;
        padding: 20px 25px;
    }

    .query-area .result-area .results .result .infos {
        width: calc(100% - 200px);
    }
}

@media screen and (max-width: 768px) {
    .row .col-1,
    .row .col-2,
    .row .col-3,
    .row .col-4,
    .row .col-5,
    .row .col-6,
    .row .col-7,
    .row .col-8,
    .row .col-9,
    .row .col-10,
    .row .col-11,
    .row .col-12 {
        width: 100%;
    }

    .main .header .top-bar {
        padding-right: 20px;
    }

    .main .header .top-bar .link {
        width: 60px;
        font-size: 12px;
    }

    .list-area .list-menu, .list-area .content-area {
        margin: 20px;
        width: calc(100% - 40px);
    }

    .list-area .content-area .content .organizations a {
        width: calc(100% - 40px);
        margin: 20px;
    }

    .query-area .result-area .results .result .infos > div .label {
        width: 100%;
    }

    .query-area .result-area .results .result .infos > div .info {
        width: 100%;
    }

    .query-area .result-area .results .content-table .line .value {
        width: calc(100% - 100px);
    }

    .query-area .result-area .results .content-table .line .label.label-2 {
        height: 60px;
        width: 100px;
        word-break: break-all;
        white-space: break-spaces;
    }

    .query-area .result-area .results .content-table .line .value.value-2 {
        height: 60px;
        width: calc(100% - 100px);
        word-break: break-all;
        white-space: break-spaces;
    }
}

@media screen and (max-width: 850px) {

    .list-area .content-area .content .article-pager > a {
        display: block;
        margin: 5px auto;
        float: none;
    }

    .list-area .content-area .content .article-pager .pages {
        float: none;
        margin: 0px auto;
    }

    .list-area .content-area .content .article-pager span {
        float: none;
        display: block;
        margin: 0px auto;
        width: max-content;
    }

    .query-area .condition-area .conditions .form-item .item-3 .checkbox {
        width: 50%;
    }

    .query-area .condition-area .operations button {
        width: 33.33%;
    }
}

@media screen and (max-width: 610px) {
    .query-area .result-area .results .result .infos > div {
        width: 100%;
    }

    .query-area .condition-area .operations {
    }

    .query-area .condition-area .operations button {
        width: 100%;
    }

    .query-area .result-area .result-pager > a {
        display: block;
        margin: 5px auto;
        float: none;
    }

    .query-area .result-area .result-pager .pages {
        float: none;
        margin: 0px auto;
    }

    .query-area .result-area .result-pager span {
        float: none;
        display: block;
        margin: 0px auto;
        width: max-content;
    }

    .list-area {
        padding: 0px;
    }
}

@media screen and (max-width: 468px) {
    .query-area .condition-area .conditions .form-item .item-3 .checkbox {
        width: 100%;
    }

    .query-area .result-area .results .result .logo-area {
        width: 100%;
        text-align: center;
    }

    .query-area .result-area .results .result .logo-area .logo {
        width: 100%;
        height: 100%;
    }

    .query-area .result-area .results .result .infos {
        width: 100%;
    }
}

.hide {
    display: none !important;
}

.brightenColor {
    color: #FF7F50;
}

.brightenBgColor {
    background-color: #9ec9e9;
}

a {
    cursor: pointer;
}

.article-page {
    min-height: 450px;
}

.field, .address {
    width: 95% !important;
}

.mustInputColor {
    color: red;
}

.loadingPage, .loadingRight, .loadingJdt, .loadingPanel, .loadingBottom {
    background: url('../img/loading.gif') center center no-repeat #fff;
    width: 100%;
    z-index: 100;
    position: relative;
    opacity: 0.6;
}

.loadingPage {
    min-height: 600px;
    height: 70%;
}

.loadingRight {
    min-height: 621px;
}

.loadingJdt {
    height: 350px;
}

.loadingPanel {
    height: 270px;
}

.loadingBottom {
    min-height: 100px;
    height: 70%;
}