html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline
}

html {
    line-height: 1
}

ol, ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

caption, th, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle
}

q, blockquote {
    quotes: none
}

q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none
}

a img {
    border: none
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F1F1F1
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #C1C1C1
}

::-webkit-scrollbar-thumb:hover {
    background-color: #A8A8A8
}

.confirm_background {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.5)
}

.confirmWindow_outer {
    width: 390px;
    height: 270px;
    border-radius: 4px;
    background-image: url('../images/confirm/confirm_bg.png');
    background-repeat: no-repeat
}

.confirmWindow_text_outer {
    width: 100%;
    height: 188px;
    position: relative
}

.confirmWindow_btn_outer {
    width: 100%;
    height: 82px;
    background-color: #fff;
    position: relative
}

.confirm_icon_outer {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 30px;
    left: 50%;
    margin-left: -20px
}

.confirm_text_div {
    width: 100%;
    position: absolute;
    height: 40px;
    top: 80px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    color: #fff
}

.confirm_subtext_div {
    width: 280px;
    position: absolute;
    min-height: 40px;
    top: 130px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    left: 50%;
    margin-left: -140px
}

.confirm_btn {
    width: 84px;
    height: 30px;
    border-radius: 2px;
    border: 1px solid #ea833b;
    text-align: center;
    cursor: pointer;
    line-height: 30px;
    font-size: 14px;
    font-weight: bold;
    color: #666
}

.confirm_btn:hover {
    background-color: #ea833b;
    color: #fff
}

.confirm_btn_cancel {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -94px
}

.confirm_btn_confirm {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: 12px
}

.confirm_btn_iknow {
    position: absolute;
    top: 50%;
    margin-top: -15px;
    left: 50%;
    margin-left: -42px
}

.confirm_close {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 99999
}

@-webkit-keyframes ngdialog-fadeout {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes ngdialog-fadeout {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-webkit-keyframes ngdialog-fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes ngdialog-fadein {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.ngdialog {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.ngdialog *, .ngdialog *:before, .ngdialog *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit
}

.ngdialog {
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10000000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.ngdialog em {
    font-style: italic
}

.ngdialog strong {
    font-weight: bold
}

.ngdialog.ngdialog-disabled-animation * {
    -webkit-animation: none !important;
    animation: none !important
}

.ngdialog-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadein 0.5s;
    animation: ngdialog-fadein 0.5s
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadeout 0.5s;
    animation: ngdialog-fadeout 0.5s
}

.ngdialog-content {
    background: white;
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadein 0.5s;
    animation: ngdialog-fadein 0.5s
}

.ngdialog.ngdialog-closing .ngdialog-content {
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadeout 0.5s;
    animation: ngdialog-fadeout 0.5s
}

.ngdialog-close:before {
    font-family: 'Helvetica', Arial, sans-serif;
    content: '\00D7';
    cursor: pointer
}

body.ngdialog-open {
    overflow: hidden
}

@-webkit-keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

@keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

.ngdialog.ngdialog-theme-default {
    padding-bottom: 160px;
    padding-top: 160px
}

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
    -webkit-animation: ngdialog-flyout .5s;
    animation: ngdialog-flyout .5s
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
    -webkit-animation: ngdialog-flyin .5s;
    animation: ngdialog-flyin .5s;
    background: #f0f0f0;
    border-radius: 5px;
    color: #444;
    font-family: 'Helvetica', sans-serif;
    font-size: 1.1em;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 100%;
    padding: 1em;
    position: relative;
    width: 450px
}

.ngdialog.ngdialog-theme-default .ngdialog-close {
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0
}

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
    background: transparent;
    border-radius: 3px;
    color: #bbb;
    content: '\00D7';
    font-size: 26px;
    font-weight: 400;
    height: 30px;
    line-height: 26px;
    position: absolute;
    right: 3px;
    text-align: center;
    top: 3px;
    width: 30px
}

.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before, .ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
    color: #777
}

.ngdialog.ngdialog-theme-default .ngdialog-message {
    margin-bottom: .5em
}

.ngdialog.ngdialog-theme-default .ngdialog-input {
    margin-bottom: 1em
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea, .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"], .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"], .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"], .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
    background: #fff;
    border: 0;
    border-radius: 3px;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin: 0 0 .25em;
    min-height: 2.5em;
    padding: .25em .67em;
    width: 100%
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
    -webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
    box-shadow: inset 0 0 0 2px #8dbdf1;
    outline: none
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons {
    *zoom: 1
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
    content: '';
    display: table;
    clear: both
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons span:hover {
    cursor: pointer
}

.ngdialog.ngdialog-theme-default .ngdialog-button {
    border: 0;
    border-radius: 3px;
    cursor: pointer;
    float: right;
    font-family: inherit;
    font-size: .8em;
    letter-spacing: .1em;
    line-height: 1em;
    margin: 0 0 0 .5em;
    padding: .75em 2em;
    text-transform: uppercase
}

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: ngdialog-pulse 1.1s infinite;
    animation: ngdialog-pulse 1.1s infinite;
    outline: none
}

@media (max-width: 568px) {
    .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
        -webkit-animation: none;
        animation: none
    }
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
    background: #3288e6;
    color: #fff
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
    background: #e0e0e0;
    color: #777
}

.ngdialog.ngdialog-theme-plain {
    padding-bottom: 160px;
    padding-top: 160px
}

.ngdialog.ngdialog-theme-plain .ngdialog-content {
    background: #fff;
    color: #444;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1em;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 100%;
    padding: 1em;
    position: relative;
    width: 450px
}

.ngdialog.ngdialog-theme-plain .ngdialog-content h1, .ngdialog.ngdialog-theme-plain .ngdialog-content h2, .ngdialog.ngdialog-theme-plain .ngdialog-content h3, .ngdialog.ngdialog-theme-plain .ngdialog-content h4, .ngdialog.ngdialog-theme-plain .ngdialog-content h5, .ngdialog.ngdialog-theme-plain .ngdialog-content h6, .ngdialog.ngdialog-theme-plain .ngdialog-content p, .ngdialog.ngdialog-theme-plain .ngdialog-content ul, .ngdialog.ngdialog-theme-plain .ngdialog-content li {
    color: inherit
}

.ngdialog.ngdialog-theme-plain .ngdialog-close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:before {
    background: transparent;
    color: #bbb;
    content: "\00D7";
    font-size: 26px;
    font-weight: 400;
    height: 30px;
    line-height: 26px;
    position: absolute;
    right: 3px;
    text-align: center;
    top: 3px;
    width: 30px
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before, .ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
    color: #777
}

.ngdialog.ngdialog-theme-plain .ngdialog-message {
    margin-bottom: .5em
}

.ngdialog.ngdialog-theme-plain .ngdialog-input {
    margin-bottom: 1em
}

.ngdialog.ngdialog-theme-plain .ngdialog-input textarea, .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"], .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"], .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"], .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"] {
    background: #f0f0f0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin: 0 0 .25em;
    min-height: 2.5em;
    padding: .25em .67em;
    width: 100%
}

.ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus, .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus, .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus, .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus, .ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus {
    -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    outline: none
}

.ngdialog.ngdialog-theme-plain .ngdialog-buttons:after {
    clear: both;
    content: '';
    display: table
}

.ngdialog.ngdialog-theme-plain .ngdialog-button {
    border: 0;
    cursor: pointer;
    float: right;
    font-family: inherit;
    font-size: .8em;
    letter-spacing: .1em;
    line-height: 1em;
    margin: 0 0 0 .5em;
    padding: .75em 2em;
    text-transform: uppercase
}

.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
    -webkit-animation: ngdialog-pulse 1.1s infinite;
    animation: ngdialog-pulse 1.1s infinite;
    outline: none
}

@media (max-width: 568px) {
    .ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
        -webkit-animation: none;
        animation: none
    }
}

.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary {
    background: #3288e6;
    color: #fff
}

.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary {
    background: #e0e0e0;
    color: #777
}

.ngdialog.ngdialog-theme-image {
    padding-bottom: 160px;
    padding-top: 160px
}

.ngdialog.ngdialog-theme-image .ngdialog-content {
    background: transparent;
    color: #444;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.1em;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    width: 450px
}

.ngdialog-content img {
    margin: 0;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto
}

.ngdialog.ngdialog-theme-image .ngdialog-content h1, .ngdialog.ngdialog-theme-image .ngdialog-content h2, .ngdialog.ngdialog-theme-image .ngdialog-content h3, .ngdialog.ngdialog-theme-image .ngdialog-content h4, .ngdialog.ngdialog-theme-image .ngdialog-content h5, .ngdialog.ngdialog-theme-image .ngdialog-content h6, .ngdialog.ngdialog-theme-image .ngdialog-content p, .ngdialog.ngdialog-theme-image .ngdialog-content ul, .ngdialog.ngdialog-theme-image .ngdialog-content li {
    color: inherit
}

.ngdialog.ngdialog-theme-image .ngdialog-close {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0
}

.ngdialog.ngdialog-theme-image .ngdialog-close:before {
    background-position: center center;
    right: -40px;
    top: 0px;
    content: "";
    width: 40px;
    height: 40px;
    position: absolute;
    background-image: url("../images/searchList/close_images_btn_a.png");
    background-repeat: no-repeat
}

.ngdialog.ngdialog-theme-image .ngdialog-close:hover:before, .ngdialog.ngdialog-theme-image .ngdialog-close:active:before {
    color: #777
}

.ngdialog.ngdialog-theme-image .ngdialog-input {
    margin-bottom: 1em
}

.ngdialog.ngdialog-theme-image .ngdialog-input textarea, .ngdialog.ngdialog-theme-image .ngdialog-input input[type="text"], .ngdialog.ngdialog-theme-image .ngdialog-input input[type="password"], .ngdialog.ngdialog-theme-image .ngdialog-input input[type="email"], .ngdialog.ngdialog-theme-image .ngdialog-input input[type="url"] {
    background: #f0f0f0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin: 0 0 .25em;
    min-height: 2.5em;
    padding: .25em .67em;
    width: 100%
}

.ngdialog.ngdialog-theme-image .ngdialog-input textarea:focus, .ngdialog.ngdialog-theme-image .ngdialog-input input[type="text"]:focus, .ngdialog.ngdialog-theme-image .ngdialog-input input[type="password"]:focus, .ngdialog.ngdialog-theme-image .ngdialog-input input[type="email"]:focus, .ngdialog.ngdialog-theme-image .ngdialog-input input[type="url"]:focus {
    -webkit-box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
    outline: none
}

.ngdialog.ngdialog-theme-image .ngdialog-buttons:after {
    clear: both;
    content: '';
    display: table
}

.ngdialog.ngdialog-theme-image .ngdialog-button {
    border: 0;
    cursor: pointer;
    float: right;
    font-family: inherit;
    font-size: .8em;
    letter-spacing: .1em;
    line-height: 1em;
    margin: 0 0 0 .5em;
    padding: .75em 2em;
    text-transform: uppercase
}

.ngdialog.ngdialog-theme-image .ngdialog-button:focus {
    -webkit-animation: ngdialog-pulse 1.1s infinite;
    animation: ngdialog-pulse 1.1s infinite;
    outline: none
}

@media (max-width: 568px) {
    .ngdialog.ngdialog-theme-image .ngdialog-button:focus {
        -webkit-animation: none;
        animation: none
    }
}

.ngdialog.ngdialog-theme-image .ngdialog-button.ngdialog-button-primary {
    background: #3288e6;
    color: #fff
}

.ngdialog.ngdialog-theme-image .ngdialog-button.ngdialog-button-secondary {
    background: #e0e0e0;
    color: #777
}

.ngdialog.ngdialog-theme-plain {
    padding-bottom: 0px
}

.ngdialog.ngdialog-theme-plain .ngdialog-content {
    background: none;
    padding: 0
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:before {
    background-position: center center;
    right: 12px;
    top: 0px;
    content: "";
    width: 40px;
    height: 40px;
    background-image: url('../images/searchList/close_images_btn_a.png');
    background-repeat: no-repeat
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before, .ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
    background-image: url('../images/searchList/close_images_btn_b.png')
}

.ngdialog-overlay {
    background: rgba(0, 0, 0, 0.7)
}

.bdsharebuttonbox {
    position: absolute;
    top: 222px;
    left: 33px
}

.bdsharebuttonbox a {
    color: #329acd
}

.map_address_bg {
    border-radius: 6px 0 6px 6px;
    padding: 0 10px 40px 10px;
    background-color: #ffffff;
    width: 900px
}

.map_address_bg h4 {
    font-size: 16px;
    color: #666;
    text-align: left;
    height: 50px;
    line-height: 50px;
    border-bottom: solid 1px #DDDDDD;
    margin-bottom: 10px
}

.map_address_bg b.back_origin {
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    padding-left: 42px;
    float: right;
    line-height: 30px;
    margin-top: 10px;
    width: 120px;
    height: 30px;
    background-color: #54abb7;
    border-radius: 3px;
    background-image: url('../images/searchList/ico_fhyd.png');
    background-repeat: no-repeat;
    background-position: 10px center;
    cursor: pointer
}

.map_address_bg #allmap {
    font-size: 12px
}

.indexPromptMsg {
    width: 737px;
    margin: auto;
    color: #ff3c00;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    height: 20px;
    line-height: 20px;
    display: table
}

.indexPromptMsg a {
    text-decoration: underline;
    color: #329acd
}

.cf_info_bg {
    background: #fff;
    width: 900px;
    padding: 20px 30px 50px 30px;
    height: 500px;
    overflow-y: auto;
    font-family: '微软雅黑'
}

.cf_info_bg h2 {
    text-align: center;
    font-weight: normal;
    font-size: 18px;
    font-family: '微软雅黑'
}

.cf_info_bg h3 {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    margin-top: 10px;
    font-family: '微软雅黑'
}

.cf_info_bg dl {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    color: #666;
    border-bottom: solid 1px #eee;
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-top: 10px
}

.cf_info_bg dl dt {
    float: left;
    width: 100%;
    font-weight: bold
}

.cf_info_bg dl dd {
    float: left;
    width: 100%;
    text-indent: 2em
}

.cf_info_bg small {
    float: left;
    width: 100%;
    font-size: 16px;
    text-align: right;
    color: #666;
    margin-top: 20px
}

.cf_info_bg_full {
    background: #fff;
    width: 823px;
    padding: 20px 30px 50px 30px;
    margin: 0 auto;
    font-family: '微软雅黑';
    font-size: 16px;
    line-height: 180%;
    text-indent: 2em;
    border: 1px solid #e8e8e8;
    color: #444;
    margin-top: 30px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5)
}

.cf_info_bg_full h2 {
    text-align: center;
    font-weight: normal;
    font-size: 18px
}

.cf_info_bg_full h3 {
    text-align: center;
    font-weight: normal;
    font-size: 14px;
    margin-top: 10px
}

.cf_info_bg_full dl {
    float: left;
    width: 100%;
    font-size: 14px;
    line-height: 26px;
    color: #666;
    border-bottom: solid 1px #eee;
    margin-bottom: 0;
    padding-bottom: 20px;
    padding-top: 10px
}

.cf_info_bg_full dl dt {
    float: left;
    width: 100%;
    font-weight: bold
}

.cf_info_bg_full dl dd {
    float: left;
    width: 100%;
    text-indent: 2em
}

.cf_info_bg_full small {
    float: left;
    width: 100%;
    font-size: 16px;
    text-align: right;
    color: #666;
    margin-top: 20px
}

.cf_info_bg_full strong {
    font-weight: bold
}

.cf_info_bg_full_title {
    border-bottom: solid 1px #e5e5e5;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 100%;
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
    font-weight: bold
}

#dialog_enterpriseDetail_positionFixed {
    width: 100%;
    height: 80px
}

@font-face {
    font-family: '幼圆'
}

html.fp-enabled, .fp-enabled body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent
}

#superContainer {
    height: 100%;
    position: relative;
    -ms-touch-action: none;
    touch-action: none
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.fp-slide {
    float: left
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}

.fp-slidesContainer {
    float: left;
    position: relative
}

.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff
}

.fp-scrollable {
    overflow: scroll
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)
}

#fp-nav.right {
    right: 0px
}

#fp-nav.left {
    left: 17px
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1
}

.fp-slidesNav.bottom {
    bottom: 17px
}

.fp-slidesNav.top {
    top: 17px
}

#fp-nav ul, .fp-slidesNav ul {
    margin: 0;
    padding: 0
}

#fp-nav ul li, .fp-slidesNav ul li {
    display: block;
    width: 54px;
    height: 54px;
    margin: 7px;
    position: relative
}

.fp-slidesNav ul li {
    display: inline-block
}

#fp-nav ul li a, .fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none
}

#fp-nav ul li a.active span, .fp-slidesNav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li:hover a.active span {
    background-color: #f1883b
}

#fp-nav ul li a span, .fp-slidesNav ul li a span {
    border-radius: 5px;
    background-color: #4c4b4b;
    position: absolute;
    z-index: 1;
    height: 46px;
    width: 34px;
    padding: 4px 10px;
    line-height: 23px;
    letter-spacing: 4px;
    text-align: center;
    color: #fff;
    font-size: 12px
}

#fp-nav ul li a span.first {
    line-height: 46px
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0
}

#fp-nav ul li:hover .fp-tooltip, #fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px
}

.fp-auto-height.fp-section, .fp-auto-height .fp-slide, .fp-auto-height .fp-tableCell {
    height: auto !important
}

.query_input_tips_outer {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 150px;
    left: 0px;
    top: 51px;
    z-index: 9999
}

.query_input_tips_row {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-indent: 2em;
    font-size: 14px;
    cursor: pointer;
    color: #666
}

.query_input_tips_row:hover {
    background-color: #ddd
}

.query_input_tips_zhezhao {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: transparent
}

.home_box {
    width: 100%;
    margin-top: 40px
}

.home_box .hot_box {
    width: 1242px;
    height: 352px;
    margin: auto
}

.home_box .hot_box .swiper-button-next {
    left: 734px;
    right: auto
}

.home_box .hot_box .hot-con_box {
    float: left;
    width: 100%;
    height: 350px;
    border: solid 1px #d3d3d3
}

.home_box .hot_box .hot-img {
    float: left;
    width: 770px;
    height: 350px;
    cursor: pointer
}

.home_box .hot_box .hot-img img {
    float: left;
    width: 770px;
    height: 350px
}

.home_box .hot_box .hot—right_box {
    float: left;
    width: 470px;
    height: 350px;
    padding: 20px 30px 0 30px;
    box-sizing: border-box;
    cursor: pointer
}

.home_box .hot_box .hot—right_box b {
    font-size: 18px;
    float: left;
    width: 100%;
    margin-top: 20px;
    line-height: 24px;
    max-height: 48px;
    font-weight: bold;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.home_box .hot_box .hot—right_box div.time_box {
    font-size: 12px;
    color: #999;
    float: left;
    width: 100%;
    margin-top: 28px
}

.home_box .hot_box .hot—right_box div.time_box span {
    float: right
}

.home_box .hot_box .hot—right_box div.time_box small {
    float: right;
    margin-left: 12px
}

.home_box .hot_box .hot—right_box div.content {
    font-size: 14px;
    height: 154px;
    line-height: 22px;
    overflow: hidden;
    border-bottom: solid 1px #d2d2d2;
    float: left;
    width: 100%;
    margin-top: 20px;
    text-indent: 2em;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5
}

.home_box .hot_box .hot—right_box a {
    color: #e42326;
    font-size: 12px;
    float: right;
    margin-top: 14px
}

.home_box .imgColumn_box {
    height: 120px;
    width: 1242px;
    margin: auto;
    margin-top: 13px
}

.home_box .imgColumn_box .item {
    float: left;
    width: 166px;
    height: 120px;
    position: relative;
    margin-left: 13px;
    cursor: pointer
}

.home_box .imgColumn_box .item:nth-child(1) {
    margin-left: 0
}

.home_box .imgColumn_box .item img {
    float: left;
    width: 166px;
    height: 120px
}

.home_box .imgColumn_box .item b {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #ffffff;
    background-color: #2f2c37;
    width: 100%;
    font-size: 14px
}

.home_box .bannerOne {
    height: 238px;
    width: 1242px;
    margin: auto;
    margin-top: 13px
}

.home_box .cdyqxxgs_div {
    height: 180px;
    width: 1242px;
    margin: auto
}

.home_box .listColumn_box {
    width: 1242px;
    margin: auto;
    height: 800px
}

.home_box .listColumn_box .listColumnOne {
    float: left;
    width: 390px;
    margin-top: 40px;
    margin-right: 36px;
    height: 360px
}

.home_box .listColumn_box .listColumnOne:nth-child(3n) {
    margin-right: 0
}

.home_box .listColumn_box .listColumnOne .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.home_box .listColumn_box .listColumnOne .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.home_box .listColumn_box .listColumnOne .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.home_box .listColumn_box .listColumnOne .title b span.icon.xydt {
    background: url("../images/icon-xydt.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title b span.icon.xycn {
    background: url("../images/icon-xycn.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title b span.icon.xygg {
    background: url("../images/icon-xygg.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title b span.icon.lhjc {
    background: url("../images/icon-lhjc.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title b span.icon.zcfg {
    background: url("../images/icon-zcfg.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title b span.icon.xysj {
    background: url("../images/icon-xysj.png") no-repeat
}

.home_box .listColumn_box .listColumnOne .title a {
    float: right;
    font-size: 12px;
    color: #333333;
    cursor: pointer
}

.home_box .listColumn_box .listColumnOne ul {
    float: left;
    width: 100%
}

.home_box .listColumn_box .listColumnOne ul li {
    height: 54px;
    line-height: 54px;
    border-bottom: solid 1px #d2d2d2;
    float: left;
    width: 100%
}

.home_box .listColumn_box .listColumnOne ul li a {
    float: left;
    width: 295px;
    padding-left: 5px;
    color: #333333;
    font-size: 14px;
    height: 54px;
    overflow: hidden;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap
}

.home_box .listColumn_box .listColumnOne ul li span {
    float: left;
    width: 295px;
    padding-left: 5px;
    color: #333333;
    font-size: 14px;
    height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.home_box .listColumn_box .listColumnOne ul li small {
    float: right;
    font-size: 12px;
    color: #999999
}

.home_box .listColumn_box .listColumnThree ul li span {
    width: 220px;
    overflow: hidden
}

.home_box .listColumn_box .listColumnThree ul li small {
    float: left
}

.home_box .listColumn_box .listColumnThree ul li img {
    float: right;
    margin: 12px 0 0 0
}

.home_box .bannerTwo {
    height: 300px;
    width: 100%;
    background: #eaeaea;
    margin-top: 30px
}

.home_box .bannerTwo .bannerTwo_con {
    width: 1242px;
    margin: auto;
    height: 300px
}

.home_box .bannerTwo .bannerTwo_con div {
    position: relative;
    height: 238px;
    width: 580px;
    float: left;
    margin: 31px 20px 0
}

.home_box .bannerTwo .bannerTwo_con div img {
    float: left;
    height: 238px;
    width: 580px
}

.home_box .bannerTwo .bannerTwo_con div b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    font-size: 18px
}

.home_box .bannerTwo .bannerTwo_con div b a {
    color: #ffffff
}

.home_box .case_box_bg {
    width: 1242px;
    margin: auto;
    margin-top: 20px;
    height: 380px
}

.home_box .case_box_bg .more_box {
    width: 378px;
    float: right
}

.home_box .case_box_bg .more_box .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.home_box .case_box_bg .more_box .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.home_box .case_box_bg .more_box .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.home_box .case_box_bg .more_box .title b span.icon.gdjc {
    background: url("../images/icon-xycn.png") no-repeat
}

.home_box .case_box_bg .more_box .title a {
    float: right;
    font-size: 12px;
    color: #333333;
    cursor: pointer
}

.home_box .case_box_bg .more_box ul {
    width: 100%;
    float: left;
    margin-top: 13px
}

.home_box .case_box_bg .more_box ul li {
    width: 100%;
    height: 70px;
    line-height: 60px;
    font-size: 20px;
    margin-top: 8px;
    text-indent: 32px;
    color: #ffffff;
    font-weight: bold
}

.home_box .case_box_bg .more_box ul li.li1 {
    background: url("../images/home/more01.png") no-repeat #586068 center right
}

.home_box .case_box_bg .more_box ul li.li2 {
    background: url("../images/home/more02.png") no-repeat #4f75d1 center right
}

.home_box .case_box_bg .more_box ul li.li3 {
    background: url("../images/home/more03.png") no-repeat #ee8167 center right
}

.home_box .case_box_bg .more_box ul li.li4 {
    background: url("../images/home/more04.png") no-repeat #e65643 center right
}

.home_box .case_box_bg .more_box ul li a {
    color: #ffffff
}

.home_box .case_box_bg .case_box {
    width: 780px;
    float: left
}

.home_box .case_box_bg .case_box .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.home_box .case_box_bg .case_box .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.home_box .case_box_bg .case_box .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.home_box .case_box_bg .case_box .title b span.icon.dxal {
    background: url("../images/icon-xydt.png") no-repeat
}

.home_box .case_box_bg .case_box .title a {
    float: right;
    font-size: 12px;
    color: #333333;
    cursor: pointer
}

.home_box .case_box_bg .case_box .case_item-box {
    width: 100%;
    float: left
}

.home_box .case_box_bg .case_box .case_item {
    width: 380px;
    float: left;
    border-bottom: solid 1px #d2d2d2;
    padding-bottom: 24px;
    margin-top: 30px;
    cursor: pointer
}

.home_box .case_box_bg .case_box .case_item:nth-child(2n) {
    float: right
}

.home_box .case_box_bg .case_box .case_item.case_item_cj {
    border-bottom: none
}

.home_box .case_box_bg .case_box .case_item img {
    width: 98px;
    height: 98px;
    float: left
}

.home_box .case_box_bg .case_box .case_item div.text_box {
    width: 260px;
    float: right
}

.home_box .case_box_bg .case_box .case_item div.text_box b {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #333333;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    font-weight: bold;
    text-overflow: ellipsis;
    white-space: nowrap
}

.home_box .case_box_bg .case_box .case_item div.text_box div.content {
    width: 100%;
    float: left;
    font-size: 14px;
    color: #666666;
    height: 40px;
    line-height: 20px;
    overflow: hidden;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2
}

.home_box .case_box_bg .case_box .case_item div.text_box span {
    width: 100%;
    float: left;
    font-size: 12px;
    margin-top: 20px
}

.home_box .case_box_bg .case_box .case_item div.text_box span strong {
    color: #999999;
    font-weight: normal;
    float: left
}

.home_box .case_box_bg .case_box .case_item div.text_box span small {
    color: #999999;
    float: right
}

.home_box .myLinks_box {
    width: 1240px;
    margin: auto;
    margin-top: 20px;
    height: 380px;
    border: solid 1px #d2d2d2;
    margin-bottom: 50px;
    padding-top: 10px
}

.home_box .myLinks_box .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.home_box .myLinks_box .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.home_box .myLinks_box .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.home_box .myLinks_box .title b span.icon.yqlj {
    background: url("../images/icon-yqlj.png") no-repeat
}

.home_box .myLinks_box .link_nav {
    background: url("../images/link01.jpg") repeat-x 0 bottom;
    width: 100%;
    height: 40px;
    line-height: 39px;
    margin-top: 22px;
    float: left
}

.home_box .myLinks_box .link_nav span {
    cursor: pointer;
    color: #333;
    font-size: 14px;
    height: 39px;
    float: left;
    padding: 0 14px
}

.home_box .myLinks_box .link_nav span.active {
    color: #fd7802;
    border-bottom: solid 1px #fd7802;
    background-image: url("../images/link02.png");
    background-repeat: no-repeat;
    background-position: center 30px
}

.home_box .myLinks_box .link_con ul {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap
}

.home_box .myLinks_box .link_con ul li {
    float: left;
    width: 17%;
    height: 36px;
    line-height: 36px;
    padding-left: 35px;
    text-align: center
}

.home_box .myLinks_box .link_con ul li a {
    color: #333;
    font-size: 14px;
    text-align: left
}

.home_box .myLinks_box .link_con ul li a p {
    color: #333
}

.faith_box {
    width: 1242px;
    margin: auto;
    margin-top: 17px
}

.faith_box .banner {
    width: 100%;
    height: 450px
}

.faith_box .banner img {
    width: 100%;
    height: 450px
}

.faith_box .diangu_box, .faith_box .xiaoyuan_box {
    width: 1242px;
    margin: auto;
    margin-top: 20px;
    height: 260px
}

.faith_box .diangu_box .title, .faith_box .xiaoyuan_box .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.faith_box .diangu_box .title b, .faith_box .xiaoyuan_box .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.faith_box .diangu_box .title b span.icon, .faith_box .xiaoyuan_box .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.faith_box .diangu_box .title b span.icon.qt, .faith_box .xiaoyuan_box .title b span.icon.qt {
    background: url("../images/icon-qt.png") no-repeat
}

.faith_box .diangu_box .title a, .faith_box .xiaoyuan_box .title a {
    float: right;
    font-size: 12px;
    color: #333333;
    cursor: pointer
}

.faith_box .diangu_box .diangu_list, .faith_box .xiaoyuan_box .diangu_list {
    height: 170px;
    width: 100%;
    margin-top: 25px;
    background: #eaeaea;
    float: left
}

.faith_box .diangu_box .diangu_list ul, .faith_box .xiaoyuan_box .diangu_list ul {
    width: 100%;
    margin-top: 25px
}

.faith_box .diangu_box .diangu_list ul li, .faith_box .xiaoyuan_box .diangu_list ul li {
    float: left;
    width: 200px;
    height: 120px;
    position: relative;
    margin-left: 40px;
    cursor: pointer
}

.faith_box .diangu_box .diangu_list ul li img, .faith_box .xiaoyuan_box .diangu_list ul li img {
    width: 200px;
    height: 120px;
    float: left
}

.faith_box .diangu_box .diangu_list ul li b, .faith_box .xiaoyuan_box .diangu_list ul li b {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer
}

.faith_box .xiaoyuan_box {
    height: 380px
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_left {
    height: 280px;
    padding-right: 40px;
    border-right: solid 2px #eaeaea;
    margin-top: 16px;
    float: left;
    width: 440px
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_left img {
    width: 440px;
    height: 280px
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_left b {
    font-size: 14px;
    font-weight: normal;
    width: 100%;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    margin-top: 12px;
    float: left
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_left b a {
    color: #000000
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_left p {
    font-size: 12px;
    color: #666666;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    float: left;
    width: 100%
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_right {
    float: right;
    width: 690px
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_right ul {
    width: 100%;
    float: left;
    margin-top: 18px
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_right ul li {
    height: 48px;
    line-height: 48px;
    width: 100%;
    float: left
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_right ul li a {
    float: left;
    color: #333;
    max-width: 540px;
    overflow: hidden;
    height: 48px;
    line-height: 48px;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer
}

.faith_box .xiaoyuan_box .xiaoyuan_con .xiaoyuan_con_right ul li small {
    float: right;
    width: 100px
}

.policy_box {
    width: 1242px;
    margin: auto;
    margin-top: 17px
}

.policy_box .policyTop_box {
    width: 100%;
    height: 292px;
    padding-bottom: 40px
}

.policy_box .policyTop_box .policyTop_con {
    width: 600px;
    float: left;
    height: 290px;
    background: #fafafa;
    cursor: pointer;
    box-shadow: 0px 0px 6px rgba(3, 3, 3, 0.1)
}

.policy_box .policyTop_box .policyTop_con.right {
    float: right
}

.policy_box .policyTop_box .policyTop_con img {
    float: left;
    width: 274px;
    height: 290px
}

.policy_box .policyTop_box .policyTop_con div.bottom_con {
    float: left;
    width: 326px;
    height: 290px;
    padding: 20px 20px 0 20px;
    border-top: none;
    box-sizing: border-box
}

.policy_box .policyTop_box .policyTop_con div.bottom_con b {
    font-size: 18px;
    color: #333;
    height: 50px;
    line-height: 25px;
    width: 100%;
    float: left;
    font-weight: bold;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden
}

.policy_box .policyTop_box .policyTop_con div.bottom_con span {
    width: 100%;
    margin: 10px 0;
    float: left
}

.policy_box .policyTop_box .policyTop_con div.bottom_con span strong {
    height: 20px;
    float: left;
    background: #ea3e3e;
    font-size: 14px;
    color: #ffffff;
    line-height: 20px;
    padding: 0 8px
}

.policy_box .policyTop_box .policyTop_con div.bottom_con span em {
    background: #efefef;
    height: 20px;
    line-height: 20px;
    padding: 0 14px;
    font-size: 12px;
    color: #333;
    font-style: normal;
    float: left
}

.policy_box .policyTop_box .policyTop_con div.bottom_con span small {
    float: right;
    color: #999999;
    font-size: 12px;
    line-height: 20px;
    height: 20px
}

.policy_box .policyTop_box .policyTop_con div.bottom_con div {
    font-size: 14px;
    color: #333;
    line-height: 22px;
    height: 132px;
    margin-bottom: 10px;
    text-indent: 2em;
    width: 100%;
    float: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden
}

.policy_box .policyTop_box .policyTop_con div.bottom_con a {
    color: #ea3e3e;
    font-size: 12px;
    text-align: right;
    float: right
}

.policy_box .policyCon_box {
    width: 100%;
    display: inline-block;
    padding-bottom: 40px
}

.policy_box .policyCon_box .big_title {
    height: 42px;
    border: solid 1px #ebebeb;
    background: #fcfcfc;
    width: 1240px;
    float: left
}

.policy_box .policyCon_box .big_title b {
    background: #ea3e3e;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    float: left;
    height: 42px;
    line-height: 42px;
    padding: 0 16px
}

.policy_box .policyCon_box .policyCon {
    float: left;
    width: 100%
}

.policy_box .policyCon_box .policyCon .policy_item {
    width: 364px;
    float: left;
    margin-top: 14px;
    margin-left: 75px
}

.policy_box .policyCon_box .policyCon .policy_item:nth-child(1) {
    margin-left: 0
}

.policy_box .policyCon_box .policyCon .policy_item .title {
    float: left;
    width: 100%;
    height: 30px;
    background: url("../images/home/home01.jpg") repeat-x 0 bottom
}

.policy_box .policyCon_box .policyCon .policy_item .title b {
    font-size: 16px;
    color: #333333;
    font-weight: normal;
    float: left;
    height: 26px;
    line-height: 20px;
    border-bottom: solid 4px #e32325
}

.policy_box .policyCon_box .policyCon .policy_item .title b span.icon {
    float: left;
    width: 25px;
    height: 20px
}

.policy_box .policyCon_box .policyCon .policy_item .title b span.icon.qt {
    background: url("../images/icon-qt.png") no-repeat
}

.policy_box .policyCon_box .policyCon .policy_item .title a {
    float: right;
    font-size: 12px;
    color: #333333;
    cursor: pointer
}

.policy_box .policyCon_box .policyCon .policy_item ul {
    float: left;
    width: 100%
}

.policy_box .policyCon_box .policyCon .policy_item ul li {
    float: left;
    width: 100%;
    border-bottom: solid 1px #d2d2d2;
    height: 54px;
    line-height: 54px;
    overflow: hidden
}

.policy_box .policyCon_box .policyCon .policy_item ul li a {
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    max-width: 100%;
    color: #333;
    font-size: 14px;
    overflow: hidden;
    height: 54px;
    cursor: pointer
}

.jiangcheng_box {
    width: 1242px;
    margin: auto;
    margin-top: 18px
}

.jiangcheng_box .banner {
    width: 100%;
    height: 450px;
    margin-bottom: 40px
}

.jiangcheng_box .banner img {
    width: 100%;
    height: 450px
}

.jiangcheng_box .jiangchengTop_box {
    border: solid 1px #ddd;
    height: 350px;
    width: 1240px;
    margin-bottom: 40px
}

.jiangcheng_box .jiangchengTop_box .swiper-button-next {
    left: 734px;
    right: auto
}

.jiangcheng_box .jiangchengTop_box .cover_box {
    width: 100%;
    height: 350px;
    float: left;
    cursor: pointer
}

.jiangcheng_box .jiangchengTop_box .cover_img {
    width: 770px;
    height: 350px;
    float: left
}

.jiangcheng_box .jiangchengTop_box .cover_img img {
    width: 770px;
    height: 350px;
    float: left
}

.jiangcheng_box .jiangchengTop_box .cover_con {
    width: 412px;
    float: right;
    margin-right: 38px
}

.jiangcheng_box .jiangchengTop_box .cover_con b {
    font-size: 16px;
    float: left;
    width: 100%;
    margin-top: 20px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
    font-weight: bold
}

.jiangcheng_box .jiangchengTop_box .cover_con div.time_box {
    font-size: 12px;
    color: #999;
    float: left;
    width: 100%;
    margin-top: 28px
}

.jiangcheng_box .jiangchengTop_box .cover_con div.time_box span {
    float: right
}

.jiangcheng_box .jiangchengTop_box .cover_con div.time_box small {
    float: right;
    margin-left: 12px
}

.jiangcheng_box .jiangchengTop_box .cover_con div.content {
    font-size: 14px;
    height: 154px;
    line-height: 22px;
    overflow: hidden;
    border-bottom: solid 1px #d2d2d2;
    float: left;
    width: 100%;
    margin-top: 20px;
    text-indent: 2em;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5
}

.jiangcheng_box .jiangchengTop_box .cover_con a {
    color: #e42326;
    font-size: 12px;
    float: right;
    margin-top: 14px
}

.jiangcheng_box .jiangchengCon_box .policyCon.al .policy_item {
    width: 100%
}

.jiangcheng_box .jiangchengCon_box .policyCon.al .policy_item ul li {
    width: 586px
}

.jiangcheng_box .jiangchengCon_box .policyCon.al .policy_item ul li:nth-child(2n) {
    float: right
}

.jiangcheng_box .jiangchengCon_box .policyCon .policy_item {
    width: 586px;
    margin-left: 0
}

.jiangcheng_box .jiangchengCon_box .policyCon .policy_item:nth-child(2) {
    float: right
}

.jiangcheng_box .jiangchengCon_box .policyCon .policy_item ul li a {
    max-width: 480px;
    overflow: hidden;
    height: 54px;
    float: left
}

.jiangcheng_box .jiangchengCon_box .policyCon .policy_item ul li small {
    float: right;
    color: #9a9a9a;
    font-size: 12px
}

.right_fixed {
    position: fixed;
    width: 58px;
    right: 0;
    bottom: 20px;
    height: 512px;
    z-index: 10000
}

.right_fixed.active {
    width: 188px
}

.right_fixed .QR-Code_box {
    width: 118px;
    height: 394px;
    border: solid 1px #cccccc;
    background: #ffffff;
    float: left
}

.right_fixed .QR-Code_box ul {
    width: 98px;
    padding: 0 10px
}

.right_fixed .QR-Code_box ul li {
    width: 98px;
    float: left;
    margin-top: 10px
}

.right_fixed .QR-Code_box ul li b {
    text-align: center;
    width: 100%;
    float: left;
    line-height: 20px;
    font-weight: normal;
    font-size: 14px
}

.right_fixed .QR-Code_box ul li img {
    width: 98px;
    height: 98px;
    float: left
}

.right_fixed .QR-Code_btn_box {
    float: right;
    width: 54px;
    width: 54px;
    padding-top: 140px;
    margin-right: 4px
}

.right_fixed .QR-Code_btn_box span {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: #ffffff;
    float: left;
    margin-top: 7px;
    cursor: pointer;
    border: solid 1px #e5e5e5;
    box-sizing: border-box
}

.right_fixed .QR-Code_btn_box span.active {
    background: #e6e6e6
}

.right_fixed .QR-Code_btn_box span img {
    float: left;
    width: 30px;
    height: 30px;
    margin: 7px 0 0 12px
}

.right_fixed .QR-Code_btn_box span b {
    text-align: center;
    color: #333;
    font-size: 12px;
    width: 100%;
    float: left
}

.welcomePage {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999999;
    top: 0;
    bottom: 0
}

.change_notice {
    background-image: url("../images/background03.jpg");
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    font-family: "\5FAE\8F6F\96C5\9ED1"
}

.change_notice_logo {
    height: 80px;
    width: 100%;
    background-image: url("../images/logo3.png");
    background-repeat: no-repeat;
    background-position: 20px center;
    background-color: #000
}

.change_notice_con {
    width: 740px;
    height: 410px;
    left: 50%;
    top: 30%;
    position: absolute;
    margin: 0px 0 0 -130px;
    color: #666;
    font-size: 18px;
    line-height: 40px
}

.change_notice_con h3 {
    text-align: center;
    font-weight: bold;
    font-size: 24px
}

.change_notice_con b {
    color: #00c5c7;
    font-size: 26px;
    font-weight: normal
}

.change_notice_con span {
    font-size: 26px;
    color: #666
}

.change_notice_con small {
    color: #999
}

.change_notice_con_btn {
    background-color: #00c5c7;
    height: 70px;
    width: 200px;
    font-size: 28px;
    border-radius: 4px;
    line-height: 70px;
    text-align: center;
    color: #ffffff;
    cursor: pointer
}

.change_notice_con_btn:hover {
    opacity: 0.8
}

.regionLinkage_con {
    width: 100%
}

.regionLinkage_con .Tabs {
    width: 100%;
    height: 46px;
    line-height: 46px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat-x;
    text-align: center
}

.regionLinkage_con .Tabs a {
    color: #666;
    text-decoration: none;
    display: inline-block;
    width: 180px;
    text-align: center
}

.regionLinkage_con .Tabs a.now {
    color: #f98530
}

.regionLinkage_con .regionLinkage_basic {
    width: 1240px;
    margin: auto;
    padding: 15px 0 50px 0
}

.regionLinkage_con .regionLinkage_basic .caption {
    border-bottom: 0;
    color: #2ac0d8;
    margin-top: 14px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    font-family: "\5FAE\8F6F\96C5\9ED1";
    position: relative
}

.regionLinkage_con .regionLinkage_basic .tableOne {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    margin-top: 14px
}

.regionLinkage_con .regionLinkage_basic .tableOne caption {
    border-bottom: 0;
    height: 30px;
    color: #2ac0d8;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    font-family: "\5FAE\8F6F\96C5\9ED1";
    position: relative
}

.regionLinkage_con .regionLinkage_basic .tableOne tr th {
    background: #f2fbfd;
    color: #333;
    font-weight: 700;
    text-align: right;
    border: 1px solid #d9eaee;
    height: 29px;
    line-height: 29px;
    padding: 0 5px;
    width: 170px
}

.regionLinkage_con .regionLinkage_basic .tableOne tr td {
    color: #666;
    background: #fff;
    word-break: break-all;
    border: 1px solid #d9eaee;
    height: 29px;
    line-height: 29px;
    padding: 0 5px;
    width: 170px
}

.link_box_bg .link_box {
    width: 100%;
    float: left;
    margin-top: 20px;
    font-size: 14px
}

.regionLinkage_ngdialog .popupInfoDiv .popupInfoDivTop {
    height: 110px;
    width: 100%;
    position: relative
}

.regionLinkage_ngdialog .popupInfoDiv .popupTableBox {
    height: 480px
}

.regionLinkage_ngdialog .popupInfoDivTop .Tabs {
    width: 100%;
    position: absolute;
    bottom: 0
}

.regionLinkage_ngdialog .popupTableBox #noDataTips {
    float: left
}

.regionLinkage_ngdialog .popupTableBox .caption {
    width: 1100px;
    height: 48px;
    float: left;
    margin-left: 40px;
    line-height: 47px;
    margin-top: 14px;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    color: #f77834;
    font-size: 16px
}

.regionLinkage_ngdialog .popupTableBox .caption span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-left: 10px;
    margin-top: 10px;
    float: left
}

.regionLinkage_ngdialog .popupTableBox .caption label {
    display: inline-block;
    width: 1016px;
    text-align: center;
    float: left
}

.publicity_detail_box dl dt {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    float: left;
    width: 100%;
    line-height: 30px
}

.publicity_detail_box dl dd {
    font-size: 14px;
    text-align: left;
    float: left;
    width: 100%;
    line-height: 30px
}

.publicity_detail_box dl dd label {
    float: left;
    font-weight: bold
}

.ngdialog-message-box {
    width: 900px;
    background-color: #ffffff;
    border-radius: 6px 0 6px 6px;
    position: relative
}

.jyzxggContent {
    margin: auto;
    width: 90%;
    text-align: left
}

.jyzxggContent p {
    text-indent: 2em;
    padding-top: 40px;
    line-height: 32px;
    color: #666666;
    font-size: 16px
}

.jyzxggContent p b {
    color: #28bfc4;
    font-weight: normal
}

.jyzxggContent .newTime {
    line-height: 30px;
    text-align: right;
    margin-top: 30px;
    float: left;
    width: 100%;
    color: #666666
}

.enterpriseShow-top {
    height: 340px;
    width: 100%;
    background-image: url("../images/headbg.jpg");
    background-repeat: no-repeat;
    background-position: center -6px;
    position: relative
}

.enterpriseShow-top .top_nav {
    height: 68px;
    width: 100%
}

.enterpriseShow-top .top_nav .top_nav_bg {
    background-color: #000;
    opacity: 0.2;
    width: 100%;
    height: 68px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

.enterpriseShow-top .top_nav .top_nav_con {
    width: 1240px;
    margin: auto;
    height: 68px;
    color: #fff;
    font-size: 24px;
    line-height: 68px;
    position: relative;
    z-index: 2
}

.enterpriseShow-top .top_nav .top_nav_con a {
    color: #fff;
    font-size: 12px;
    float: right
}

.enterpriseShow-top .enterpriseShow_head {
    width: 1240px;
    margin: auto;
    position: relative
}

.enterpriseShow-top .enterpriseShow_head .head_mail {
    position: absolute;
    right: 0;
    top: 0px;
    color: #f1f1f1;
    font-size: 16px;
    width: 64px;
    cursor: pointer
}

.enterpriseShow-top .enterpriseShow_head .head_mail img {
    width: 64px;
    height: 46px;
    float: left;
    margin-bottom: 3px
}

.enterpriseShow-top .enterpriseShow_head .head_icon {
    height: 164px;
    width: 100%;
    margin-top: 20px;
    background-image: url('../images/enterpriseShow/enterpriseShow01.png');
    background-repeat: no-repeat;
    background-position: center top
}

.enterpriseShow-top .enterpriseShow_head .head_name {
    font-size: 26px;
    color: #ffffff;
    width: 100%;
    text-align: center;
    margin-top: 15px;
    letter-spacing: 3px
}

.enterpriseShow_title_outer {
    width: 1240px;
    margin: auto;
    position: relative;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    padding-top: 20px
}

.enterpriseShow_title_inner {
    width: 1240px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px
}

.enterpriseShow_title_text {
    width: 100%;
    text-align: center;
    height: 55px;
    line-height: 55px;
    font-size: 36px;
    font-family: "幼圆";
    color: #333
}

.enterpriseShow_title_englishText {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    border-top: 1px solid #CFCFCF;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #999
}

.companyProfile_con, .product_box {
    width: 1100px;
    border: solid 2px #e5e5e5;
    background: #f9f9f9;
    margin: auto;
    margin-top: 20px;
    padding: 60px 68px;
    border-radius: 2px;
    display: table
}

.product_box {
    width: 1170px;
    padding: 60px 53px 60px 13px
}

.product_list_bg {
    float: left;
    width: 100%
}

.product_list {
    width: 350px;
    float: left;
    margin-left: 40px;
    cursor: pointer
}

.product_list img {
    width: 344px;
    height: 228px
}

.product_list b {
    width: 100%;
    text-align: center;
    height: 60px;
    line-height: 60px;
    float: left;
    color: #666666;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.dynamic_box {
    width: 1240px;
    margin: auto;
    margin-top: 25px
}

.enterpriseShow_link {
    color: #0099ff;
    text-decoration: underline
}

.enterpriseShow_link:hover {
    color: #33cc33
}

.msg_content p {
    width: 100%;
    float: left;
    margin-bottom: 15px;
    font-size: 14px
}

.msg_content p label {
    float: left;
    width: 200px;
    text-align: right
}

.msg_content p input {
    float: left;
    width: 500px;
    height: 28px;
    line-height: 28px;
    padding-left: 5px
}

.msg_content p textarea {
    float: left;
    outline: none;
    width: 800px;
    height: 250px
}

.msg_content p span {
    width: 150px;
    height: 40px;
    background-color: #f29f43;
    border-radius: 20px;
    border: solid 2px #fbe3c9;
    display: inline-block;
    line-height: 35px;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer
}

.exceptionDetail_box table {
    width: 100%;
    border: solid 1px #e5e5e5;
    border-collapse: collapse;
    margin-top: 20px
}

.exceptionDetail_box table thead tr {
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat-x;
    height: 48px;
    line-height: 48px
}

.exceptionDetail_box table thead tr td {
    border: solid 1px #e5e5e5;
    text-align: center
}

.exceptionDetail_box table tbody tr td {
    border: 1px solid #e5e5e5;
    height: 40px;
    line-height: 40px
}

.exceptionDetail_box_ptName {
    display: table;
    width: 1100px;
    margin-left: 40px
}

.exceptionDetail_box_ptName span {
    width: 100%;
    height: 30px;
    line-height: 30px;
    float: left;
    text-align: left
}

.exceptionDetail_box_ptName span a {
    cursor: pointer;
    color: #2a7bbd
}

.c__clearFix {
    clear: both;
    font-size: 12px
}

body {
    font-family: '微软雅黑';
    background-color: #ffffff
}

input, button {
    outline: none
}

body {
    margin: 0;
    padding: 0
}

a {
    text-decoration: none
}

a:hover {
    text-decoration: underline
}

.list_Pagination_z {
    margin: 30px auto;
    display: table;
    height: 54px;
    line-height: 54px;
    font-size: 16px;
    color: #e42326
}

.list_Pagination_z a {
    height: 24px;
    display: inline-block;
    text-align: center;
    line-height: 22px;
    border: solid 1px #e42326;
    cursor: pointer;
    margin: 0 10px 0 0;
    background: #fff;
    box-sizing: border-box;
    padding: 0 14px;
    color: #e42326
}

.list_Pagination_z a.pageNow {
    background: #e42326;
    color: #fff
}

.list_Pagination_z .Pagination_btn {
    width: 50px;
    height: 24px;
    border: 0;
    padding: 0;
    border: solid 1px #e42326;
    color: #fff;
    background-color: #e42326;
    font-size: 16px;
    cursor: pointer
}

.list_Pagination_z .Pagination_input {
    height: 22px;
    width: 40px;
    border: solid 1px #e42326;
    padding: 0;
    margin: 0 10px;
    text-align: center
}

.layout-top {
    height: 350px;
    width: 100%;
    background-image: url('../images/headbg.jpg');
    background-repeat: no-repeat;
    background-position: center 0px;
    position: relative;
    min-width: 1240px
}

.layout-top .login_box {
    height: 30px;
    width: 100%
}

.layout-top .login_box div {
    width: 1240px;
    margin: auto;
    height: 30px
}

.layout-top .login_box div span {
    float: right;
    color: #333333;
    line-height: 30px;
    font-size: 14px;
    position: relative;
    z-index: 2
}

.layout-top .login_box div span a {
    color: #333333;
    cursor: pointer
}

.layout-top .top_nav {
    height: 90px;
    width: 100%;
    position: relative
}

.layout-top .top_nav .top_nav_bg {
    background-color: #e42326;
    width: 100%;
    height: 90px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

.layout-top .top_nav .top_nav_con {
    width: 1240px;
    margin: auto;
    height: 90px;
    position: relative;
    z-index: 2
}

.layout-top .top_nav .top_nav_con .top_nav_con_left {
    float: left;
    width: 100%;
    background: url("../images/home_001.png") repeat-x 0 center;
    height: 90px
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul {
    float: left;
    width: 100%
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li {
    color: #fff;
    font-size: 16px;
    float: left;
    cursor: pointer;
    width: 11.1%;
    box-sizing: border-box;
    text-align: center;
    margin-top: 10px;
    height: 35px;
    line-height: 24px
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li a {
    color: #fff;
    display: inline-block
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li a.current {
    border-bottom: solid 3px #f29296;
    height: 24px;
    padding-bottom: 4px
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li em {
    float: right;
    height: 24px;
    border-right: solid 1px #f19193
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li#xwgg {
    position: relative
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li#xwgg ol {
    width: 140px;
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 0
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li#xwgg ol li {
    height: 30px;
    line-height: 30px;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0
}

.layout-top .top_nav .top_nav_con .top_nav_con_left ul li#xwgg ol li a:hover {
    color: #f98530
}

.layout-top .xwgg_more_box {
    position: absolute;
    top: 40px;
    left: 0px
}

.layout-top .xwgg_more_box_bg {
    width: 140px;
    background-color: #000;
    opacity: 0.5;
    padding: 8px 0;
    border-radius: 3px;
    height: 120px;
    position: absolute;
    left: 0;
    top: 0
}

.layout-top .serach_box {
    width: 1240px;
    height: 230px;
    margin: 0 auto;
    display: table
}

.layout-top .serach_box .logo {
    margin-right: 10px;
    float: left
}

.layout-top .serach_box .logo a {
    height: 87px
}

.layout-top .serach_box .type_list {
    width: 710px;
    float: right;
    height: 37px;
    margin-top: 70px
}

.layout-top .serach_box .type_list ul li {
    width: 70px;
    height: 37px;
    margin-left: 9px;
    line-height: 37px;
    text-align: center;
    cursor: pointer;
    color: #333333;
    font-size: 14px;
    background-repeat: no-repeat;
    float: left
}

.layout-top .serach_box .type_list ul li.current {
    background-repeat: no-repeat;
    color: #e42326
}

.layout-top .serach_box .type_list ul li:nth-child(1) {
    margin-left: 0
}

.layout-top .serach_box .type_list ul li:hover {
    color: #e42326
}

.layout-top .serach_box .serach_con {
    width: 710px;
    float: right;
    margin-top: 10px;
    position: relative;
    z-index: 9999
}

.layout-top .serach_box .serach_con .serach_con_center {
    width: 708px;
    height: 49px;
    float: left;
    border: solid 1px #cccccc;
    border-radius: 4px;
    background: #ffffff
}

.layout-top .serach_box .serach_con .serach_con_center .serach_text_box {
    float: left;
    width: 610px
}

.layout-top .serach_box .serach_con .serach_con_center .serach_text_box input {
    height: 49px;
    border: none;
    background: none;
    width: 600px;
    padding-left: 20px;
    font-size: 14px;
    color: #a0a0a0
}

.layout-top .serach_box .serach_con .serach_con_center .serach_text_box input.searchTextRed {
    color: red
}

.layout-top .serach_box .serach_con .serach_con_center .serach_btn {
    background-image: url('../images/0_banner_search.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 62px;
    height: 49px;
    float: right;
    cursor: pointer;
    margin-right: 10px
}

.layout-top .serach_box .serach_con .serach_con_right {
    background-image: url('../images/home/0_banner_search_right_.9.png');
    background-repeat: no-repeat;
    width: 3px;
    height: 79px;
    float: left
}

.layout_content {
    width: 100%;
    min-height: 500px
}

.logo_inner_position {
    width: 500px;
    height: 109px;
    margin-top: 60px;
    cursor: pointer;
    background-image: url('../images/logo.png');
    background-repeat: no-repeat;
    background-position: center center
}

@media screen and (max-width: 1600px) {
    .layout-top .xwgg_more_box {
        top: 40px
    }

    .logo_inner_position {
        margin-top: 98px
    }

    .layout-top .serach_box .logo {
        height: 208px
    }

    .layout-top .serach_box .logo a {
        margin-top: 90px;
        display: block
    }

    .layout-top .serach_box .type_list {
        margin-top: 50px
    }
}

.layout_foot {
    width: 100%;
    background-color: #e42326;
    min-width: 1240px
}

.layout-foot_link {
    height: 60px;
    width: 100%;
    background-color: #e42326
}

.layout-foot_link ul {
    margin: auto;
    width: 1024px;
    height: 60px;
    line-height: 60px;
    text-align: center
}

.layout-foot_link ul li {
    float: left;
    padding: 0 28px
}

.layout-foot_link ul li a {
    color: #fff;
    font-size: 12px
}

.layout-foot_copyright {
    width: 100%;
    height: 300px
}

.layout-foot_copyright_box {
    width: 970px;
    margin: auto;
    padding-top: 80px
}

.layout-foot_copyright_left {
    float: left;
    margin-top: 30px
}

.layout-foot_copyright_right {
    color: #fff;
    line-height: 35px;
    letter-spacing: 2px;
    font-size: 12px;
    text-align: center;
    width: 760px;
    float: right
}

.zhineng_unit_type {
    color: #999
}

.gt_mask {
    z-index: 999999
}

* {
    margin: 0;
    padding: 0
}

html, body {
    margin: 0;
    height: 100%
}

#searchList_outer {
    width: 100%;
    font-family: "微软雅黑", verdana
}

#searchList_condition_outer {
    width: 100%;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat
}

#searchList_condition_inner {
    width: 1240px;
    margin: 0 auto;
    overflow: hidden;
    position: relative
}

.searchList_condition_selected_outer {
    width: 100%;
    min-height: 80px;
    overflow: hidden
}

.searchList_condition_choose_outer {
    width: 100%;
    overflow: hidden
}

.searchList_condition_extend_outer {
    width: 100%;
    overflow: hidden
}

.searchList_condition_sep_line {
    width: 100%;
    height: 0px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #FEFBFB
}

.searchList_condition_slide_outer {
    width: 1240px;
    left: 50%;
    margin-left: -620px;
    height: 100px;
    position: absolute;
    z-index: 99999
}

.condition_slide_bottomBtn_outer {
    width: 100%;
    overflow: hidden;
    text-align: center
}

.slide_title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    cursor: pointer
}

.condition_slide_bottomBtn_img {
    cursor: pointer
}

.condition_selected_block_outer {
    width: 1100px;
    padding-top: 26px;
    float: right;
    overflow: hidden
}

.condition_selected_title {
    width: 130px;
    height: 80px;
    line-height: 80px;
    text-align: left;
    float: left
}

.condition_selected_block {
    text-align: left;
    padding: 5px 40px 5px 5px;
    background-color: #F98530;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin: 0px 20px 10px 0px
}

.condition_selected_block_close {
    position: absolute;
    display: inline-block;
    width: 20px;
    text-align: center;
    right: 5px;
    top: 5px;
    cursor: pointer
}

.condition_choose_block_outer {
    width: 1100px;
    padding-top: 7px;
    float: right;
    overflow: hidden
}

.condition_choose_title {
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: left;
    float: left
}

.condition_choose_block {
    text-align: left;
    padding: 5px;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    margin-right: 20px;
    margin-bottom: 10px;
    cursor: pointer
}

.condition_choosen {
    background-color: #F98530;
    color: #fff
}

.condition_choose_row {
    width: 100%;
    overflow: hidden
}

.condition_slide_img_open {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    margin-left: 546px;
    cursor: pointer;
    z-index: 9999
}

.condition_slide_img_close {
    display: block;
    width: 48px;
    height: 48px;
    position: absolute;
    right: 0px;
    top: 20px;
    cursor: pointer
}

#resultList_outer {
    width: 100%;
    overflow: hidden
}

#resultList_inner {
    width: 1240px;
    margin: 0 auto;
    padding-top: 40px
}

#yellowPageList_inner {
    width: 1240px;
    margin: 0 auto
}

.resultList_row_outer {
    width: 1240px;
    border: 1px solid red;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 2px 0px #ddd;
    margin-bottom: 20px
}

.resultList_row_outer:hover {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 12px 0px #ccc
}

.resultList_row_icon_div {
    width: 200px;
    float: left;
    overflow: hidden;
    min-height: 200px
}

.resultList_row_icon_div img {
    margin-top: 24px;
    margin-left: 24px
}

.resultList_row_data_div {
    width: 980px;
    float: left;
    overflow: hidden;
    min-height: 200px;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 100;
    cursor: pointer
}

.resultList_row_control_div {
    width: 50px;
    float: left;
    overflow: hidden;
    min-height: 200px;
    position: relative
}

.resultList_row_data_row {
    width: 100%;
    min-height: 40px;
    overflow: hidden;
    float: left;
    line-height: 40px
}

.resultData_name {
    font-size: 18px;
    color: #333
}

.resultData_number {
    font-size: 18px;
    color: #333;
    margin-left: 20px
}

.resultData_status {
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 11px;
    color: #fff
}

.resultData_type {
    font-size: 12px;
    color: #999
}

.resultData_fadingdaibiaoren {
    font-size: 14px;
    color: #666
}

.resultData_faren_name {
    font-size: 14px;
    color: #666
}

.resultData_zhuceziben {
    font-size: 14px;
    color: #666;
    margin-left: 20px
}

.resultData_ziben_number {
    font-size: 14px;
    color: #666
}

.resultData_chengliriqi {
    font-size: 14px;
    color: #666;
    margin-left: 20px
}

.resultData_riqi_date {
    font-size: 14px;
    color: #666
}

.resultData_jingyingdizhi {
    font-size: 14px;
    color: #666
}

.resultData_address {
    font-size: 14px;
    color: #f98530;
    margin-left: 20px
}

.resultData_position_img {
    margin-left: 20px;
    cursor: pointer;
    vertical-align: middle
}

.resultData_collect_full_img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -17px;
    margin-left: -17px;
    cursor: pointer
}

.resultData_collect_empty_img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -17px;
    margin-left: -17px;
    cursor: pointer
}

.status_survive {
    background-color: #56a85d
}

.status_cunhuo {
    background-color: #52AC5F
}

.status_zaice {
    background-color: #52AC5F
}

.status_zhuxiao {
    background-color: #AEAEAE
}

.status_qianchu {
    background-color: #AEAEAE
}

.status_xieye {
    background-color: #AEAEAE
}

.status_qita {
    background-color: #AEAEAE
}

.status_diaoxiao {
    background-color: #E86749
}

.status_againstLaw {
    background-color: #e03422
}

.status_unusual {
    background-color: #f9a630
}

#searchList_page_outer {
    width: 100%;
    height: 54px;
    line-height: 54px;
    margin-top: 50px;
    margin-bottom: 50px;
    position: relative
}

.searchList_page_inner {
    margin: 0 auto;
    display: table
}

.searchList_page_btn {
    width: 54px;
    height: 54px;
    line-height: 54px;
    float: left;
    margin: 0px 25px;
    text-align: center;
    color: #fff;
    cursor: pointer
}

.page_current {
    background-image: url('../images/searchList/page_current.png')
}

.page_normal {
    background-image: url('../images/searchList/page_normal.png')
}

#news_outer {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px
}

#news_inner {
    width: 1240px;
    background-color: #F9F9F9;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 2px 0px #ddd;
    overflow: hidden
}

.news_banner {
    width: 100%;
    text-align: center;
    height: 36px;
    font-size: 36px;
    line-height: 36px;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #333;
    font-family: "幼圆"
}

.news_readMore {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    color: #F9A06A;
    background-color: #fff
}

.news_readMore_noNews {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    text-align: center;
    margin: 0 auto;
    color: #F9A06A;
    background-color: #fff
}

.newsList_row {
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #989898
}

.newsList_row:nth-child(odd) {
    background-color: #fff
}

.newsList_title {
    width: 920px;
    float: left;
    margin-left: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: #999;
    text-align: left
}

.newsList_date_outer {
    width: 90px;
    overflow: hidden;
    float: right;
    margin-right: 30px
}

.newsList_date {
    width: 180px;
    text-align: left
}

.resultList_row_detail_block {
    float: left
}

.resultList_row_detail_text {
    width: 320px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    float: left
}

.resultList_row_detail_address {
    width: 960px
}

#noDataTips {
    width: 100%;
    height: 200px;
    text-align: center;
    margin: 20px 0;
    left: 50%
}

.noData_icon {
    margin: 0 auto
}

.noDta_text {
    color: #666;
    height: 40px;
    line-height: 40px
}

.retrevalFull__hit {
    color: red
}

.result_time_outer {
    height: 30px;
    line-height: 30px;
    margin-bottom: 10px
}

.serach_con {
    position: relative
}

.query_condition_slide_btn {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none
}

.query_condition_slide_btn .f_right {
    float: right
}

.condition_choose_row_extend {
    border-top: 1px solid #ddd
}

#newsList_title_outer {
    width: 100%;
    position: relative;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-image: url('../img/subtle_grunge.png');
    background-repeat: repeat;
    padding-top: 40px
}

#newsList_title_inner {
    width: 1240px;
    height: 55px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 40px
}

#newsList_title_text {
    width: 100%;
    text-align: center;
    height: 55px;
    line-height: 55px;
    font-size: 36px;
    font-family: "幼圆";
    color: #333
}

#newsList_title_englishText {
    display: inline-block;
    padding: 0 10px;
    text-align: center;
    border-top: 1px solid #CFCFCF;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #999
}

#newsList_outer {
    width: 100%;
    overflow: hidden
}

#newsList_inner {
    width: 1240px;
    min-height: 500px;
    margin: 0 auto;
    padding-top: 40px
}

.newsPage_newsList_row {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #989898;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 2px 0px #ddd;
    margin-bottom: 10px
}

.newsPage_newsList_row:hover {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 12px 0px #ccc
}

.newsList_title {
    width: 920px;
    float: left;
    margin-left: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: #999
}

.newsList_time {
    width: 120px;
    overflow: hidden;
    height: 60px;
    float: right
}

.dialog_news_outer {
    overflow: hidden;
    padding: 10px 75px;
    height: 560px;
    overflow-y: auto
}

.dialog_news_title {
    line-height: 30px
}

.dialog_news_info {
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #E5E5E5;
    font-size: 14px;
    color: #999
}

.dialog_news_info .readNum {
    padding-left: 30px;
    height: 40px;
    float: right;
    cursor: pointer;
    color: #d59d3c;
    background: url(../images/zcjdicon.png) no-repeat 0 center
}

.dialog_news_text {
    padding-top: 20px;
    line-height: 20px;
    color: #666666;
    font-size: 14px
}

.dialog_news_text p {
    text-align: left;
    text-indent: 2em;
    margin-top: 10px;
    word-break: break-all
}

.dialog_news_text p img {
    max-width: 100%
}

.dialog_news_text p table tr td {
    border: solid 1px #000
}

.dialog_news_text div table tr td {
    border: solid 1px #ddd
}

.dialog_news_info_publishTime_span {
    margin-left: 100px
}

.exceptionList_row {
    width: 100%;
    cursor: pointer;
    display: table;
    font-size: 14px;
    color: #989898;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 2px 0px #ddd;
    margin-bottom: 10px;
    padding: 20px 0 15px 0
}

.exceptionList_row dl {
    padding-left: 40px
}

.exceptionList_row dl dt {
    height: 40px;
    line-height: 40px;
    font-size: 16px
}

.exceptionList_row dl dd {
    line-height: 30px;
    font-size: 14px
}

.exceptionList_row div {
    padding-right: 20px;
    font-size: 14px;
    width: 240px;
    float: right
}

.exceptionList_row div span {
    float: left
}

.exceptionList_row:hover {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 12px 0px #ccc
}

.redBlackList_bg {
    height: 50px;
    border-top: solid 1px #e5e5e5;
    width: 100%;
    text-align: center
}

.redBlackList_bg div {
    height: 20px;
    margin: 0 auto;
    text-align: center;
    display: table;
    padding: 15px 0;
    color: #666666
}

.redBlackList_bg div span {
    height: 20px;
    line-height: 20px;
    display: inline-block;
    margin: 0 30px;
    color: #666666;
    cursor: pointer
}

.redBlackList_bg div span.current {
    color: #f98530
}

.newInfo_box .bread_sequence {
    width: 100%;
    height: 50px;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-image: url(../images/searchList/subtle_grunge.png);
    background-repeat: repeat
}

.newInfo_box .bread_sequence .con {
    font-size: 14px;
    color: #666666;
    width: 1240px;
    margin: 0 auto;
    line-height: 50px
}

.newInfo_box .bread_sequence .con a {
    color: #666666
}

.newInfo_box .resultList_inner {
    width: 1240px;
    margin: 0 auto;
    padding-top: 40px
}

.newInfo_box .dialog_news_outer {
    height: auto
}

.newInfo_box .dialog_news_outer .dialog_news_title {
    text-align: center;
    font-size: 20px
}

.newInfo_box .dialog_news_outer .dialog_news_info {
    text-align: center
}

.creditRepair-box {
    width: 1240px;
    margin: auto;
    margin-bottom: 50px;
    line-height: 1.5
}

.creditRepair-box .article .article-title {
    margin: 25px 0;
    font-size: 24px;
    font-weight: bold;
    text-align: center
}

.creditRepair-box .article-content {
    line-height: 1.75
}

.creditRepair-box .f22 {
    font-size: 22px
}

.creditRepair-box .m-b-5 {
    margin-bottom: 5px
}

.creditRepair-box .text-justify {
    text-align: justify
}

.creditRepair-box .m-r-10 {
    margin-right: 10px
}

.creditRepair-box img {
    margin-top: 60px
}

.randomInfo_table table {
    table-layout: fixed;
    width: 100%;
    border: solid 1px #ddd
}

.randomInfo_table table caption {
    width: 100%;
    text-align: left;
    height: 48px;
    line-height: 48px;
    background-repeat: repeat;
    border-bottom: none;
    color: #f77834;
    font-size: 16px;
    font-size: 18px;
    font-weight: bold
}

.randomInfo_table table thead tr {
    background-image: url(../images/qyld/qyld01.jpg);
    background-repeat: repeat-x;
    border: solid 1px #cccccc
}

.randomInfo_table table thead tr th {
    height: 48px;
    line-height: 48px;
    text-align: center;
    border: solid 1px #ddd;
    font-weight: bold
}

.randomInfo_table table tbody tr td {
    text-align: center;
    border: solid 1px #ddd;
    height: 40px
}

.weixin_a {
    font-size: 12px;
    padding-left: 17px;
    line-height: 16px;
    height: 18px;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 6px 6px 6px 0;
    background-image: url(../images/fenxiang/weixin.png)
}

.weibo_a {
    font-size: 12px;
    padding-left: 17px;
    line-height: 16px;
    height: 18px;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 6px 6px 6px 0;
    background-image: url(../images/fenxiang/weibo.png)
}

.QQkongjian_a {
    font-size: 12px;
    padding-left: 17px;
    line-height: 16px;
    height: 18px;
    background-repeat: no-repeat;
    cursor: pointer;
    margin: 6px 6px 6px 0;
    background-image: url(../images/fenxiang/QQkongjian.png)
}

.IndustryList {
    line-height: 40px !important;
    height: 40px !important;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin: 10px 0 10px 10px !important;
    font-size: 14px;
    padding: 0 20px;
    cursor: pointer
}

.IndustryListactive {
    background: #f89043;
    color: #fff !important;
    cursor: pointer
}

.top {
    z-index: 999;
    width: 100%;
    height: 60px;
    position: relative;
    top: 0px;
    overflow: hidden
}

.ul {
    position: absolute;
    margin: 0 auto !important
}

.topclick {
    z-index: 1;
    position: absolute;
    top: 10px;
    background-color: #f89043;
    right: 0px;
    width: 80px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 10px;
    color: #fff
}

.topclick2 {
    z-index: 999;
    position: absolute;
    top: 10px;
    background-color: #f89043;
    right: 0px;
    width: 80px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 10px;
    color: #fff
}

.regionLinkage_home_head_box, .regionLinkage_home_list {
    width: 1240px;
    margin: auto
}

.regionLinkage_home_head_bg {
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    display: inline-block;
    width: 100%;
    border-bottom: solid 1px #e6e6e6;
    padding-bottom: 25px
}

.section_head {
    text-align: center;
    margin-top: 50px
}

.section_head b {
    font-family: '幼圆';
    font-size: 36px;
    font-weight: normal;
    width: 100%;
    float: left;
    color: #333333
}

.section_head small {
    color: #999999;
    border-top: solid 1px #cfcfcf;
    display: inline-block;
    margin-top: 10px;
    height: 3px;
    line-height: 34px;
    width: 180px
}

.regionalTabs {
    width: 100%;
    float: left;
    margin-top: 40px
}

.regionalTabs ul {
    height: 44px;
    border-top: 0;
    border-bottom: solid 1px #cccccc;
    border-radius: 4px;
    background-color: #eeeeee;
    float: left;
    margin-top: 20px;
    line-height: 44px
}

.regionalTabs ul li {
    float: left;
    cursor: pointer;
    background-image: url('../images/Region-linkage_btn.png');
    background-repeat: repeat-x;
    width: 118px;
    text-align: center;
    color: #333333;
    border-left: solid 1px #ffffff;
    border-right: solid 1px #cccccc
}

.regionalTabs ul li.first {
    border-left: solid 1px #cccccc
}

.regionalTabs ul li.now {
    background-image: url('../images/Region-linkage-_hover.png')
}

.regionalDescribe {
    color: #999999
}

.regionalSearch {
    width: 100%;
    float: left
}

.regionalSearch ul {
    width: 100%;
    margin: 30px 0;
    float: left
}

.regionalSearch ul li {
    float: left;
    line-height: 50px;
    height: 50px;
    color: #333333;
    margin-left: 19px
}

.regionalSearch ul li.first {
    margin-left: 0
}

.regionalSearch ul li.lasth {
    float: right;
    margin-right: 0
}

.regionalSearch ul li input {
    height: 48px;
    border: 0;
    width: 228px;
    border: solid 1px #d7d5d1;
    border-radius: 3px;
    padding-left: 5px
}

.regionalSearch ul li .screh {
    width: 110px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    background-color: #f89043;
    border: 0;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer
}

.regionalSearch .searchDescribe {
    width: 100%;
    float: left;
    line-height: 20px;
    font-size: 14px;
    color: #b6b6b6
}

.regionalSearch .searchDescribe.searchDescribeRed {
    color: red
}

.regionalContent {
    width: 100%;
    margin-top: 38px;
    display: inline-block
}

.regionalContent table {
    width: 100%
}

.regionalContent table thead tr {
    background-image: url('../images/qyld/qyld01.jpg');
    background-repeat: repeat-x;
    border: solid 1px #cccccc
}

.regionalContent table thead tr td {
    height: 50px;
    line-height: 50px;
    color: #333333;
    text-align: center
}

.regionalContent table tbody {
    border: solid 1px #e5e5e5
}

.regionalContent table tbody tr {
    cursor: pointer
}

.regionalContent table tbody tr td {
    height: 40px;
    line-height: 40px;
    color: #666666;
    text-align: center
}

.regionalContent table tbody tr.interval {
    background-color: #f9f9f9
}

.operation_box {
    float: left;
    width: 100%;
    padding: 20px 0
}

.operation_box label {
    padding: 0 15px
}

#yellowPage_outer {
    width: 100%
}

.canBeClick {
    cursor: pointer
}

#yellowPage_search_outer {
    width: 100%;
    height: 210px;
    position: relative;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-color: #f9f9f9;
    box-sizing: border-box
}

#yellowPage_search_title {
    width: 100%;
    font-size: 36px;
    font-family: "幼圆";
    text-align: center;
    color: #333;
    height: 120px;
    line-height: 120px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat
}

#yellowPage_search_title a:hover {
    text-decoration: underline
}

#yellowPage_search_input_outer {
    text-align: center;
    width: 1240px;
    margin: 0 auto;
    height: 50px;
    line-height: 50px
}

#yellowPage_search_input {
    width: 800px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #999;
    text-indent: 1em;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: inset 1px 1px 2px 1px #ddd
}

#yellowPage_search_input_inner {
    width: 330px;
    height: 50px;
    line-height: 50px;
    text-indent: 1em;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 33px;
    background-color: #F98530;
    color: #fff;
    outline: none;
    border: 0px
}

#yellowPage_search_btn {
    width: 120px;
    height: 40px;
    line-height: 40px;
    margin-left: 20px;
    background-color: #F98530;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer
}

#yellowPage_search_btn:hover {
    background-color: orangered
}

.top_info_logo {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 50%;
    margin-left: -65px;
    top: -45px
}

.top_info_logo img {
    width: 90px;
    height: 90px
}

.dialog_enterpriseDetail_info_outer {
    width: 100%;
    min-height: 500px;
    overflow: hidden
}

.dialog_enterpriseDetail_info_title {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-bottom: 1px solid #E5E5E5
}

.yellowPage_detailLink {
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 11px;
    color: #fff;
    background-color: #F98530;
    cursor: pointer
}

.yellowPage_detailLink:hover {
    text-decoration: none
}

.dialog_enterpriseDetail_info_introduce {
    padding: 20px
}

.enterprise_img {
    float: left;
    margin: 0px 20px 0px 0px;
    width: 320px
}

.enterpriseDetail_introduce_text {
    text-align: left;
    text-indent: 2em;
    font-size: 12px;
    color: #999
}

.dialog_enterpriseDetail_info_trademark {
    width: 1240px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    color: #333;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    min-height: 130px;
    cursor: pointer
}

.dialog_enterpriseDetail_info_trademark:hover {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 12px 0px #ccc
}

.trademark_img_outer {
    width: 200px;
    float: left;
    margin: 10px;
    text-align: center
}

.trademark_img {
    max-height: 130px;
    max-width: 200px
}

.trademark_search_select_outer {
    width: 200px;
    height: 40px;
    margin-left: 30px;
    margin-top: 5px;
    border-radius: 4px;
    float: left;
    position: relative;
    border: 1px solid #999;
    z-index: 1
}

.yellowPage_option_list_outer_div {
    width: 1240px;
    height: 90px;
    line-height: 90px;
    margin: 0 auto;
    position: relative
}

.yellowPage_option_list_btn {
    width: 410px;
    height: 34px;
    line-height: 34px;
    float: left;
    border-radius: 2px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    margin-top: 28px;
    text-align: center;
    position: relative
}

.yellowPage_option_list_btn1 {
    width: 90px
}

.trademark_search_select_outer:hover {
    border: 1px solid #F98530
}

.trademark_search_select {
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    position: relative;
    z-index: 10
}

.trademark_search_select:hover {
    color: #F98530
}

.trademark_search_options {
    height: 160px;
    width: 200px;
    position: absolute;
    top: -1px;
    left: -1px;
    background-color: #fff;
    z-index: 9999;
    border: 1px solid #F98530;
    border-radius: 4px;
    cursor: pointer
}

.trademark_search_singleOption_current {
    color: #F98530
}

.trademark_search_singleOption {
    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center
}

.trademark_search_singleOption:hover {
    background-color: orangered;
    color: #fff
}

.triangle-bottomright {
    position: absolute;
    right: 10px;
    top: 16px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #F98530
}

.trademark_info_outer {
    width: 1000px;
    margin-top: 20px;
    margin-bottom: 20px;
    float: left
}

.trademark_info_row {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    color: #999;
    position: relative;
    z-index: 9999
}

.trademark_info_row div {
    float: left
}

.trademark_info_halfRow {
    width: 500px
}

.trademark_info_div_data {
    width: 360px;
    margin-right: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.trademark_info_div_data1 {
    width: 360px;
    margin-right: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.trademark_info_div_data2 {
    width: 860px;
    margin-right: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.trademark_logo_outer {
    width: 300px;
    height: 100px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
    overflow: hidden
}

.trademark_logo_quanguo {
    width: 100px;
    height: 100px;
    float: right;
    margin-top: 15px;
    margin-right: -25px;
    position: relative;
    z-index: 4
}

.trademark_logo_sichuansheng {
    width: 100px;
    height: 100px;
    float: right;
    margin-top: 15px;
    margin-right: -25px;
    position: relative;
    z-index: 3
}

.trademark_logo_chengdushi {
    width: 100px;
    height: 100px;
    float: right;
    margin-top: 15px;
    margin-right: -25px;
    position: relative;
    z-index: 2
}

.trademark_logo_img {
    width: 100px;
    height: 100px
}

#yellowPageDetail_outer {
    min-height: 800px;
    width: 1240px;
    margin: 0 auto;
    position: relative;
    margin-top: 50px
}

.yellowPage_enterpriseInfo_outer {
    width: 1240px;
    border: 1px solid #e5e5e5;
    overflow: hidden
}

.yellowPage_enterpriseInfo_head {
    width: 100%;
    height: 150px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    position: relative;
    font-size: 28px;
    color: #333;
    text-align: center;
    line-height: 150px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.yellowPage_enterpriseInfo_head_title {
    float: right;
    width: 70%;
    text-align: left;
    margin-right: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.yellowPage_enterpriseInfo_content {
    width: 100%
}

.yellowPage_enterpriseInfo_row {
    min-height: 40px;
    overflow: hidden;
    line-height: 40px;
    background-color: #F9F9F9;
    border-top: 1px solid #e5e5e5;
    color: #666;
    font-size: 14px
}

.ypei_table {
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
    font-size: 14px;
    color: #666
}

.ypei_table td {
    padding: 10px
}

.ypei_table tr {
    border-top: 1px solid #e5e5e5
}

.ypeiTable_half_title {
    width: 210px;
    text-align: right;
    vertical-align: top;
    line-height: 30px;
    border-right: 1px solid #e5e5e5;
    color: #333;
    background-color: #F9F9F9
}

.ypeiTable_half_title_right {
    border-left: 1px solid #e5e5e5
}

.ypeiTable_half_content {
    width: 410px;
    line-height: 30px;
    vertical-align: top
}

.ypeiTable_single_title {
    width: 210px;
    text-align: right;
    vertical-align: top;
    line-height: 30px;
    border-right: 1px solid #e5e5e5;
    color: #333;
    background-color: #F9F9F9
}

.ypeiTable_single_content {
    width: 1030px;
    line-height: 30px;
    vertical-align: top
}

.ypei_main_img {
    position: absolute;
    display: block;
    height: 100px;
    top: 25px;
    left: 25px
}

.ypei_info_outer {
    width: 1240px;
    border: 1px solid #e5e5e5;
    margin: 0 auto;
    position: relative;
    margin-bottom: 50px;
    background-color: #fdfdfd
}

.ypei_title_qiyexinxi {
    width: 100%;
    height: 110px;
    line-height: 110px;
    font-size: 28px;
    color: #333;
    text-align: center;
    letter-spacing: 10px
}

.ypei_info_imgText_outer {
    padding: 70px 50px;
    border-bottom: 1px solid #e5e5e5;
    line-height: 28px;
    color: #666;
    font-size: 14px;
    overflow: hidden
}

.ypei_info_imgText_outer p {
    text-indent: 2em
}

.ypei_info_enterpriseMainImg {
    width: 400px;
    border: 1px solid #e5e5e5;
    float: left;
    margin-right: 20px
}

.ypei_seeMoreText {
    color: #ff9900;
    text-align: right;
    height: 30px;
    line-height: 30px
}

.ypei_seeMoreText_span {
    cursor: pointer
}

.ypei_info_product_outer {
    border-bottom: 1px solid #e5e5e5
}

.ypei_chanpinzhanshi_title {
    height: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 28px;
    color: #333;
    letter-spacing: 10px
}

.ypei_chanpinzhanshi_content {
    height: 340px
}

.ypei_chanpinzhansh_inner {
    width: 100%;
    text-align: center;
    height: 270px;
    margin: 0 auto
}

.ypei_chanpinzhansh_img {
    border: 1px solid #ddd;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    margin-left: 28px;
    margin-right: 28px;
    width: 270px;
    height: 270px
}

.ypei_chanpinzhansh_description {
    position: absolute;
    bottom: -40px;
    width: 270px;
    height: 20px;
    line-height: 20px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px
}

.ypei_info_relative_outer {
    height: 500px
}

.ypei_xiangguanshangbiao_title {
    height: 110px;
    line-height: 110px;
    text-align: center;
    font-size: 28px;
    color: #333;
    letter-spacing: 10px
}

.otherMark_block {
    width: 280px;
    height: 296px;
    border: 1px solid #ddd;
    float: left;
    margin-left: 14px;
    margin-right: 14px;
    cursor: pointer
}

.otherMark_block:hover {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5)
}

.ypei_otherMark_img {
    width: 280px;
    height: 228px;
    display: block
}

.otherMark_block_shangbiaoming {
    width: 260px;
    height: 34px;
    line-height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 16px;
    text-align: center;
    margin-left: 10px
}

.otherMark_block_shangbiaozhucehao {
    width: 260px;
    height: 34px;
    line-height: 34px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    text-align: center;
    margin-left: 10px
}

.yellowPageDetail_relateTrades_outer {
    height: 290px
}

.mark_info_outer_div {
    width: 1080px;
    margin: 0 auto;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
    padding: 20px;
    background-color: #FCFCFC
}

.mark_sepLine {
    margin: 0 auto;
    width: 1080px;
    border-bottom: 1px solid #e5e5e5
}

.mark_info_img {
    width: 200px;
    margin: 0 auto;
    display: block
}

.mark_info_title {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    color: #333;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 50px
}

.ypei_markInfo_table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    background: #fff;
    font-size: 14px;
    color: #666
}

.ypei_markInfo_table td {
    padding: 10px
}

.ypei_markInfo_table .ypeiTable_half_title {
    border: 0px;
    background-color: #fff
}

.ypei_markInfo_table .ypeiTable_single_title {
    border: 0px;
    background-color: #fff
}

.mark_info_trademark_logo {
    bottom: 6px;
    right: 6px
}

.searchInput_outer {
    position: absolute;
    width: 400px;
    height: 60px;
    right: 30px;
    top: 15px;
    overflow: hidden;
    z-index: 100000;
    display: none
}

.search_icon_outer {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0px;
    top: 15px;
    background: #f98530;
    border-radius: 30px;
    cursor: pointer;
    z-index: 100000
}

.search_icon_outer:hover {
    background-color: orangered
}

.searchInput_inner {
    width: 400px;
    height: 60px;
    background-color: #f98530;
    position: absolute;
    left: 400px;
    top: 0px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px
}

.search_fullZhezhao {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.1)
}

#yellowPage_search_input_inner::-webkit-input-placeholder {
    color: #fff
}

#yellowPage_search_input_inner:-moz-input-placeholder {
    color: #fff
}

#yellowPage_search_input_inner::-moz-input-placeholder {
    color: #fff
}

#yellowPage_search_input_inner::-ms-input-placeholder {
    color: #fff
}

.yellowPage_table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.yellowPage_table thead tr td {
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9
}

.yellowPage_table tr {
    border: 1px solid #E5E5E5;
    background-color: #fff;
    height: 60px;
    line-height: 60px
}

.yellowPage_table tr td {
    text-align: center;
    padding: 5px;
    color: #666
}

.yellowPageTable_tr:hover {
    background-color: #f9f9f9;
    cursor: pointer
}

.resultList_title {
    width: 100%;
    height: 100px;
    border: 1px solid #e5e5e5;
    border-bottom: 0px
}

.result_title {
    height: 100px
}

.result_title td {
    background-color: #fff;
    position: relative
}

.result_title_type {
    position: absolute;
    font-size: 24px;
    left: 100px;
    top: 20px
}

.color_red {
    color: red
}

.Clipboard_icon {
    position: absolute;
    left: 35px;
    top: 35px
}

.yellowPage_jianjie {
    padding: 30px 0px 0px 0px;
    font-size: 18px;
    color: #666;
    line-height: 30px;
    width: 1180px;
    margin: 0 auto
}

.yellowPage_jianjie p {
    text-indent: 2em
}

.overflowEllipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.w300 {
    max-width: 300px
}

#districtDetail_head {
    min-height: 200px;
    width: 100%;
    position: relative;
    z-idnex: 1
}

#districtDetail_content {
    min-height: 500px;
    width: 100%;
    position: relative;
    z-idnex: 1
}

#districtDetail_head_inner {
    width: 1240px;
    margin: 0 auto;
    position: relative
}

#districtDetail_content_inner {
    width: 1240px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 80px;
    height: 940px
}

#districtDetail_select_outer {
    width: 200px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1
}

#districtDetail_select_input {
    min-width: 170px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #ccc;
    position: absolute;
    right: 20px;
    top: 13px;
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    background-color: #fff;
    color: #333;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat;
    border-radius: 4px
}

#districtDetail_select_input:hover {
    opacity: 0.8
}

.iconMore {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    top: 22px;
    right: 10px;
    cursor: pointer
}

#districtDetail_options_outer {
    width: 510px;
    height: 275px;
    background-color: #fff;
    position: absolute;
    z-index: 9999;
    right: 20px;
    top: 80px;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    padding: 20px
}

#districtDetail_head_title {
    width: 1240px;
    height: 95px;
    line-height: 95px;
    text-align: center;
    color: #333;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    position: relative;
    border: 1px solid #E5E5E5;
    border-top: 0px;
    box-shadow: 0px 1px 8px 0px #ddd
}

.districtDetail_head_title_text {
    font-family: "幼圆";
    letter-spacing: 12px;
    font-size: 24px
}

#districtDetail_head_img_outer {
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
    overflow: hidden
}

.districtDetail_head_img {
    width: 270px;
    height: 151.875px;
    float: left;
    margin-right: 53.333px;
    display: block
}

.districtDetail_head_img3 {
    margin-right: 0px
}

.districtDetail_content_inner_row {
    width: 100%;
    margin-top: 20px;
    float: left
}

.districtDetail_content_inner_row_left {
    width: 600px;
    height: 300px;
    float: left;
    box-shadow: 0px 2px 8px #ddd;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    position: relative
}

.districtDetail_content_inner_row_right {
    width: 600px;
    height: 300px;
    float: left;
    box-shadow: 0px 2px 8px #ddd;
    margin-left: 35px;
    background-color: #fff;
    border: 1px solid #E5E5E5;
    position: relative
}

.districtDetailBlock_title {
    width: 160px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 18px;
    text-align: center;
    background-color: #e42326
}

.districtDetailBlock_halfCircle {
    position: absolute;
    border-radius: 20px;
    left: 140px;
    width: 40px;
    height: 40px;
    top: 0px;
    background-color: #e42326
}

.districtDetailBlock_title_bgColor1 {
    background-color: #D39971
}

.districtDetailBlock_title_bgColor2 {
    background-color: #7CB6CE
}

.districtDetailBlock_title_bgColor3 {
    background-color: #CF6363
}

.districtDetailBlock_title_bgColor4 {
    background-color: #7D7373
}

.districtDetailBlock_title_bgColor5 {
    background-color: #7C97C8
}

.districtDetailBlock_title_bgColor6 {
    background-color: #D37FA4
}

.article_more {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: right;
    padding-right: 20px;
    color: #e42326;
    font-size: 14px;
    box-sizing: border-box;
    cursor: pointer
}

.article_more_btn:hover {
    color: red
}

.redList_btn {
    width: 80px;
    height: 30px;
    line-height: 30px;
    margin-left: 20px;
    float: left;
    text-align: center;
    cursor: pointer;
    color: #666
}

.blackList_btn {
    width: 80px;
    height: 30px;
    line-height: 30px;
    margin-left: 20px;
    float: left;
    text-align: center;
    cursor: pointer;
    color: #666
}

.redBlack_btn_current {
    color: orange
}

.districtDetail_article_list_outer {
    width: 100%;
    height: 200px;
    overflow-y: auto
}

.districtDetail_article_list_row {
    width: 100%;
    height: 40px;
    line-height: 40px;
    float: left;
    cursor: pointer
}

.districtDetail_article_list_row_point {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    line-height: 40px;
    float: left;
    font-size: 36px;
    text-align: center;
    margin-top: 15px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: #F98530
}

.districtDetail_article_list_row_title {
    width: 380px;
    text-indent: 1em;
    height: 40px;
    line-height: 40px;
    float: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.districtDetail_article_list_row_type {
    color: #fff;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    float: left;
    width: 40px;
    text-align: center;
    margin-left: 10px;
    background: #4f75d1;
    border-radius: 4px;
    margin-top: 10px
}

.districtDetail_article_list_row_type2 {
    color: #fff;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    float: left;
    width: 40px;
    text-align: center;
    margin-left: 10px;
    background: #4f75d1;
    border-radius: 4px;
    margin-top: 20px
}

.fullRow {
    width: 520px
}

.districtDetail_article_list_row_title:hover {
    color: mediumblue
}

.districtDetail_article_list_row_date {
    width: 120px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    float: right;
    overflow: hidden
}

.districtDetail_options_row {
    width: 100%;
    height: 50px;
    line-height: 50px;
    margin-top: 10px;
    border-bottom: 1px solid #eee;
    text-align: left
}

.districtDetail_options_btn {
    margin-right: 15px
}

.districtDetail_options_tips {
    width: 100%;
    height: 30px;
    line-height: 30px;
    text-align: right;
    font-size: 12px;
    color: #333
}

.options_canBeClick {
    color: orangered;
    cursor: pointer
}

.options_canNotClick {
    color: grey
}

.district_options_close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer
}

.noData_list_div {
    width: 600px;
    height: 230px;
    line-height: 230px;
    font-size: 16px;
    text-align: center;
    color: #333
}

.red_black_tab {
    height: 30px;
    position: absolute;
    top: 40px;
    right: 220px
}

.backToDistrictDetail_span {
    cursor: pointer
}

.backToDistrictDetail_span:hover {
    color: blue
}

.districtMoreListNav {
    width: 100%;
    height: 50px;
    line-height: 50px
}

.districtExceptionList_title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    float: left;
    margin-left: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: #333;
    font-size: 16px
}

.districtExceptionList_time {
    width: 200px;
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    text-align: right;
    float: right;
    margin-right: 50px
}

.districtExceptionList_regNo {
    width: 100%;
    height: 30px;
    line-height: 30px;
    float: left;
    margin-left: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: #999
}

.districtExceptionList_master {
    width: 100%;
    height: 30px;
    line-height: 30px;
    float: left;
    margin-left: 50px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
    color: #999
}

.districtExceptionList_row {
    width: 100%;
    overflow: hidden;
    font-size: 14px;
    color: #989898;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 1px 2px 0px #ddd;
    margin-bottom: 10px
}

.clickToSeeMore {
    color: blue;
    cursor: pointer
}

.introTxtBox_outer {
    background-color: #f9f9f9;
    position: relative;
    border: 1px solid #E5E5E5;
    box-shadow: 0px 1px 8px 0px #ddd;
    margin-top: 20px;
    overflow: hidden
}

.introTxtBox {
    overflow: hidden;
    display: block;
    height: 145px;
    width: 100%;
    font-size: 12px;
    line-height: 24px;
    padding: 20px 40px;
    text-align: left;
    text-indent: 2em;
    color: #999;
    box-sizing: border-box
}

.districtinfo_detail_btn {
    width: 100%;
    height: 30px;
    line-height: 30px
}

.introDetail {
    background-color: transparent;
    border: none;
    outline: 0;
    margin-right: 42px;
    color: #F98530;
    text-align: right;
    cursor: pointer;
    font-family: "宋体";
    font-size: 12px;
    float: right;
    margin-top: 8px
}

#districtDetail_head_introduce_outer {
    width: 100%;
    min-height: 50px;
    font-size: 12px;
    text-indent: 2em;
    line-height: 24px;
    padding: 20px 40px;
    box-sizing: border-box;
    color: #999
}

#district_map_outer {
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat
}

#district_map_inner {
    width: 1000px;
    margin: 0 auto;
    font-family: "微软雅黑";
    position: relative
}

g {
    cursor: pointer
}

.logoBox {
    position: absolute;
    left: 0px;
    top: 20px;
    padding: 0px 20px;
    height: 48px;
    line-height: 48px;
    border: 1px solid #ccc;
    color: #333;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat
}

.specialBtn_510199 {
    position: absolute;
    left: 20px;
    top: 23px;
    border: 1px solid #ccc;
    width: 120px;
    height: 48px;
    line-height: 48px;
    cursor: pointer;
    border-radius: 4px;
    color: #333;
    background-image: url(../images/cinfo/cinfo14.png);
    background-repeat: repeat
}

.specialBtn_510199:hover {
    opacity: 0.8
}

.year_tab_outer_div {
    width: 1100px;
    margin: 0 auto;
    height: 50px
}

.year_tab_btn {
    width: 160px;
    height: 40px;
    line-height: 40px;
    margin-top: 5px;
    border: 1px solid #EEEEEE;
    color: #ff9933;
    border-radius: 20px;
    background-color: #fff;
    cursor: pointer;
    float: left;
    margin-right: 20px;
    font-size: 16px
}

.year_tab_btn_current {
    border: 1px solid #FFD7AC;
    color: #fff;
    background-color: #F7983F
}

.enterpriseDetailInfoLink {
    color: orangered;
    margin-left: 20px;
    cursor: pointer
}

.year_tab_btn_disable {
    background-color: grey;
    color: #fff;
    cursor: not-allowed
}

.year_nodata_text {
    width: 100%;
    text-align: center;
    margin-top: 50px;
    color: #ff9933
}

.year_enterpriseNotice {
    width: 100%;
    height: 12px;
    line-height: 12px;
    font-size: 12px;
    text-align: right;
    color: #bbb;
    padding-right: 40px
}

#timeline {
    width: 800px;
    height: 100%;
    margin: 0 auto;
    background-color: #fff;
    position: relative
}

#timelineContent {
    width: 780px;
    min-height: 100%;
    position: relative;
    float: left;
    background-color: #fff
}

.timeline_row {
    width: 780px;
    float: left;
    overflow: hidden;
    z-index: 100;
    position: relative;
    margin-bottom: 50px
}

.changeBefore_title {
    width: 720px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    color: #FAA348;
    font-size: 12px
}

.changeBefore_text {
    width: 720px;
    overflow: hidden;
    font-size: 12px;
    color: #999
}

.changeAfter_title {
    width: 720px;
    height: 20px;
    line-height: 20px;
    overflow: hidden;
    color: #FAA348;
    font-size: 12px
}

.changeAfter_text {
    width: 720px;
    overflow: hidden;
    font-size: 12px;
    color: #999
}

.timeline_left {
    position: absolute;
    width: 50px;
    min-height: 80px;
    left: 0px;
    z-index: 1;
    overflow: hidden
}

.timeline_right {
    position: relative;
    width: 720px;
    left: 50px;
    overflow: hidden
}

.timeline_content_time {
    color: #4ccbed;
    font-size: 14px;
    font-weight: bold;
    height: 30px;
    line-height: 30px
}

.timeline_content_value {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 5px
}

.timeline_point {
    position: absolute;
    width: 10px;
    height: 10px;
    left: 20px;
    top: 10px;
    border-radius: 10px;
    background-color: #4ccbed;
    z-index: 200
}

.timeline_point2 {
    position: absolute;
    width: 14px;
    height: 14px;
    left: 18px;
    top: 8px;
    border-radius: 14px;
    background-color: #4ccbed;
    z-index: 100;
    opacity: 0.5
}

.timeline_verticalLine {
    width: 1px;
    height: 100%;
    border: 0px;
    border-right: 1px solid #D9D9D9;
    position: absolute;
    z-index: 2;
    left: 23.5px;
    top: 0px
}

#positionFix40 {
    width: 720px;
    height: 40px
}

.timeline_content_hidden {
    display: block
}

.triangle-up {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 16px solid orangered;
    position: absolute;
    top: 0px;
    left: 14px;
    z-index: 9999
}

#notice_outer_div {
    width: 1000px;
    height: 190px;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    bottom: -110px;
    left: 50%;
    margin-left: -500px;
    z-index: 999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: all 0.5s ease-in-out
}

#notice_outer_div:hover {
    bottom: 0px
}

#notice_outer_div a {
    color: #0099ff
}

#notice_outer_div a:hover {
    color: #33cc33
}

#notice_outer_div_white {
    width: 800px;
    height: 80px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -400px;
    z-index: 999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    transition: all 0.5s ease-in-out;
    box-shadow: 0px -1px 20px 0px rgba(249, 150, 77, 0.2)
}

#notice_outer_div_white .notice_content_outer .notice_title {
    margin-top: 32px
}

#notice_outer_div_white .notice_content_outer .notice_title a {
    color: #F98530
}

#notice_outer_div_white .notice_content_outer .notice_title a:hover {
    text-decoration: underline
}

@media screen and (max-width: 1259px), screen and (max-height: 699px) {
    #notice_outer_div_white {
        width: 800px;
        height: 80px;
        background-color: #fff;
        position: absolute;
        top: 700px;
        left: 50%;
        margin-left: -400px;
        z-index: 999;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        transition: all 0.5s ease-in-out;
        box-shadow: 0px -1px 20px 0px rgba(249, 150, 77, 0.2)
    }

    #notice_outer_div_white .notice_content_outer .notice_title {
        margin-top: 32px
    }

    #notice_outer_div_white .notice_content_outer .notice_title a {
        color: #F98530
    }

    #notice_outer_div_white .notice_content_outer .notice_title a:hover {
        text-decoration: underline
    }
}

.notice_top_icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    left: 50%;
    margin-left: -40px;
    top: -40px
}

.icon_notice_img {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 20px;
    margin-left: 20px;
    z-index: 100
}

.icon_notice_upBg_img {
    width: 80px;
    height: 40px;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 99
}

.notice_content_outer {
    width: 100%;
    height: 150px;
    z-index: 9999
}

.notice_title {
    width: 80%;
    margin-left: 10%;
    height: 30px;
    line-height: 30px;
    text-align: center;
    font-size: 24px;
    color: #F98530;
    margin-top: 40px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden
}

.notice_text {
    width: 80%;
    margin-left: 10%;
    text-align: center;
    font-size: 14px;
    color: #f5f5f5;
    margin-top: 10px;
    height: 60px;
    line-height: 30px;
    overflow: hidden
}

.notice_point_outer {
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-top: 15px
}

.notice_point {
    width: 10px;
    height: 10px;
    cursor: pointer;
    border-radius: 10px;
    background-color: #555454;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block
}

.notice_point_current {
    background-color: #F98530
}

#notice_overflow_outer_div {
    width: 1000px;
    min-height: 20px;
    position: fixed;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.8);
    left: 50%;
    margin-left: -500px;
    z-index: 999;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px
}

.notice_overflow_content_outer {
    color: #fff;
    overflow: hidden;
    width: 100%
}

.notice_overflow_point_outer {
    width: 100%;
    height: 30px
}

.notice_overflow_top_icon {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    left: 50%;
    margin-left: -40px;
    top: -40px;
    cursor: pointer
}

.notice_overflow_title {
    width: 80%;
    margin-left: 10%;
    text-align: center;
    font-size: 24px;
    color: #F98530;
    margin-top: 40px
}

.notice_overflow_text {
    width: 80%;
    margin-left: 10%;
    font-size: 14px;
    color: #f5f5f5;
    margin-top: 10px;
    min-height: 20px;
    max-height: 500px;
    overflow-y: auto
}

.notice_overflow_point_outer {
    height: 20px;
    line-height: 20px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px
}

.icon_notice_close_img {
    position: relative;
    width: 50px;
    height: 50px;
    margin-top: 15px;
    margin-left: 15px;
    z-index: 100
}

.xycn_search_bg {
    width: 1240px;
    margin: 15px auto 0;
    text-align: center
}

.yellowPage_search_input {
    width: 800px;
    height: 40px;
    line-height: 40px;
    border: 1px solid #999;
    text-indent: 1em;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    box-shadow: inset 1px 1px 2px 1px #ddd
}

.yellowPage_search_btn {
    width: 120px;
    height: 42px;
    line-height: 42px;
    margin-left: 20px;
    background-color: #F99043;
    color: #fff;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer
}

.xycn_detail_info {
    margin-top: 20px
}

.xycn_detail_info span {
    float: left;
    width: 100%;
    text-align: right;
    font-size: 14px;
    line-height: 30px
}

.aboutUs_outer {
    width: 1240px;
    box-shadow: 0px 5px 16px 0px rgba(221, 221, 221, 0.5);
    padding: 20px;
    margin: 50px auto 50px;
    border: 1px solid #e5e5e5;
    box-sizing: border-box
}

.aboutUs_inner {
    width: 100%;
    height: 450px;
    overflow-y: auto;
    background-image: url('../images/home/about_bg.png');
    background-repeat: repeat;
    box-shadow: inset 0px 3px 7px 0px rgba(204, 204, 204, 0.2);
    border: 1px solid #e5e5e5;
    box-sizing: border-box
}

.about_title {
    width: 100%;
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-top: 100px
}

.about_content {
    width: 940px;
    margin: 50px auto;
    text-align: left;
    text-indent: 2em;
    line-height: 50px;
    font-size: 16px;
    color: #666
}

.about_content p em {
    color: red;
    font-style: normal
}

.yylct {
    width: 1240px;
    margin: auto;
    margin-top: 20px
}

.appeals_search {
    width: 88%;
    height: 50px;
    margin-left: 12%;
    text-align: center
}

.appeals_search b {
    float: left;
    height: 40px;
    line-height: 40px;
    margin-top: 10px
}

.appeals_search span {
    float: left;
    margin-right: 10px;
    height: 40px;
    line-height: 40px;
    margin-top: 10px;
    padding: 0 10px;
    cursor: pointer;
    color: #f98530;
    font-size: 20px;
    margin-left: 350px
}

.appeals_search span.current {
    color: #f98530
}

.gcjc_box .bread_sequence {
    width: 100%;
    height: 50px;
    box-shadow: 0px 1px 2px 0px #ddd;
    background-image: url(../images/searchList/subtle_grunge.png);
    background-repeat: repeat
}

.gcjc_box .bread_sequence .con {
    font-size: 14px;
    color: #666666;
    width: 1240px;
    margin: 0 auto;
    line-height: 50px
}

.gcjc_box .bread_sequence .con a {
    color: #666666
}

.gcjc_box .center_con {
    width: 1240px;
    margin: 0 auto;
    padding-top: 20px
}

.gcjc_box .center_con .con_one {
    width: 100%;
    height: 352px;
    border: solid 1px #e6e6e6;
    box-sizing: border-box
}

.gcjc_box .center_con .con_one .con_one_left {
    background: url("../images/gcjs/gcjs01.jpg") no-repeat;
    width: 828px;
    height: 310px;
    float: left;
    color: #d33333;
    font-size: 36px;
    text-align: center;
    line-height: 46px;
    font-weight: bold;
    padding-top: 40px
}

.gcjc_box .center_con .con_one .con_one_right {
    float: left;
    height: 350px;
    width: 410px;
    padding: 20px 30px;
    box-sizing: border-box
}

.gcjc_box .center_con .con_one .con_one_right b {
    font-size: 18px;
    color: #000000;
    float: left;
    width: 100%;
    font-weight: bold
}

.gcjc_box .center_con .con_one .con_one_right div {
    float: left;
    width: 100%;
    margin-top: 30px
}

.gcjc_box .center_con .con_one .con_one_right div span {
    background: #eb3f3d;
    float: left;
    height: 26px;
    width: 52px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 26px
}

.gcjc_box .center_con .con_one .con_one_right div em {
    font-style: normal;
    font-size: 12px;
    height: 26px;
    width: 76px;
    text-align: center;
    float: left;
    color: #333333;
    background: #e6e6e6;
    line-height: 26px
}

.gcjc_box .center_con .con_one .con_one_right div small {
    font-size: 12px;
    float: right;
    color: #666666;
    margin-top: 10px
}

.gcjc_box .center_con .con_one .con_one_right p {
    line-height: 26px;
    font-size: 12px;
    color: #666666;
    float: left;
    width: 100%;
    margin-top: 10px
}

.gcjc_box .center_con .con_two {
    width: 100%;
    height: 500px;
    margin-top: 30px;
    padding-bottom: 100px
}

.gcjc_box .center_con .con_two a {
    width: 360px;
    height: 110px;
    float: left;
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    padding-top: 50px;
    padding-left: 20px;
    cursor: pointer;
    margin-top: 20px
}

.gcjc_box .center_con .con_two a:hover {
    text-decoration: none
}

.gcjc_box .center_con .con_two a.hmdzd {
    background: url("../images/gcjs/gcjs05.png") no-repeat #df6e5f 250px center
}

.gcjc_box .center_con .con_two a.cf {
    margin-left: 50px;
    margin-right: 50px;
    background: url("../images/gcjs/gcjs03.png") no-repeat #4ca0e8 250px center
}

.gcjc_box .center_con .con_two a.cn {
    background: url("../images/gcjs/gcjs02.png") no-repeat #f5a51c 250px center
}

.gcjc_box .center_con .con_two a.hmd {
    background: url("../images/gcjs/gcjs04.png") no-repeat #4cc9e9 250px center
}

.gcjc_box .center_con .con_two a.xypj {
    margin-left: 50px;
    margin-right: 50px;
    background: url("../images/gcjs/gcjs06.png") no-repeat #a57acd 250px center
}

.gcjc_box .center_con .con_two a.zjjg {
    background: url("../images/gcjs/gcjs07.png") no-repeat #6488ff 250px center
}

.gcjc_box .center_con .con_two a.xmsqr {
    background: url("../images/gcjs/gcjs08.png") no-repeat #f5bf1c 250px center
}

.gcjc_box .center_con .con_two a.gcxyk {
    margin-left: 50px;
    margin-right: 50px;
    background: url("../images/gcjs/gcxyk.png") no-repeat #ff6c58 250px center
}

.gcjc_box .xypj_box {
    width: 1240px;
    margin: 0 auto;
    padding-top: 20px
}

.gcjc_box .xypj_box b {
    height: 100px;
    line-height: 100px;
    text-align: center;
    width: 100%;
    border-bottom: solid 1px #ddd;
    display: inline-block
}

.gcjc_box .xypj_box ul {
    width: 100%;
    display: inline-block;
    padding-bottom: 50px
}

.gcjc_box .xypj_box ul li {
    float: left;
    width: 300px;
    margin: 25px 0 15px 82px
}

.gcjc_box .xypj_box ul li a img {
    float: left;
    width: 300px;
    height: 110px
}

.gcjc_box .xypj_box ul li a span {
    font-size: 14px;
    color: #333333;
    float: left;
    line-height: 24px
}

.big_title {
    width: 100%;
    height: 80px;
    background: #fff;
    overflow: hidden
}

.big_title .title_title {
    margin: 42px auto;
    width: 1200px;
    height: 34px;
    font-size: 20px
}

.big_title .title_title .title {
    float: left;
    border-bottom: 7px solid #ea3e3e
}

.big_title .title_title .title i {
    vertical-align: top;
    margin-right: 4px;
    display: inline-block;
    width: 10px;
    height: 24px;
    background: #ea3e3e
}

.big_title .title_title .title_right {
    float: right;
    margin-top: 10px;
    font-size: 16px;
    color: #b3b3b3
}

.big_title .title_title .title_right span {
    color: #333
}

.government_content {
    width: 100%;
    background: #f2f1f1
}

.government_content .government_ul {
    width: 1200px;
    margin: 0 auto
}

.government_content .government_ul ul {
    overflow: hidden;
    margin-left: 20px;
    padding-top: 30px;
    padding-bottom: 30px
}

.government_content .government_ul ul li {
    float: left;
    width: 295px;
    height: 77px
}

.government_content .government_ul ul li .department {
    margin-top: 15px;
    color: #333;
    font-size: 18px
}

.government_content .government_ul ul li .platform {
    font-size: 14px;
    color: #999
}

.government_content .government_ul ul li .platform a {
    color: #999
}

.government_content .government_ul ul li .platform a:hover {
    text-decoration: none
}

.government_content .blue ul li .platform {
    color: #3192c4
}

.government_content .blue .more {
    text-align: right;
    font-size: 18px;
    color: #ea3e3e
}

.act {
    display: none
}

.creditServices_box {
    width: 1240px;
    margin: 0 auto;
    padding-top: 40px
}

.creditServices_box ul {
    float: left;
    width: 100%;
    padding: 40px 0
}

.creditServices_box ul li {
    float: left;
    width: 280px;
    margin-right: 30px;
    margin-bottom: 20px
}

.creditServices_box ul li:nth-child(4n), .creditServices_box ul li.li4 {
    margin-right: 0
}

.creditServices_box ul li a span {
    width: 280px;
    height: 160px;
    float: left
}

.creditServices_box ul li a span img {
    width: 280px;
    height: 160px;
    float: left
}

.creditServices_box ul li a span.span1 {
    background-color: #54a0eb
}

.creditServices_box ul li a span.span2 {
    background-color: #7ca8d5
}

.creditServices_box ul li a span.span3 {
    background-color: #e4688d
}

.creditServices_box ul li a span.span4 {
    background-color: #6bcaac
}

.creditServices_box ul li a span.span5 {
    background-color: #1dbfcc
}

.creditServices_box ul li a span.span6 {
    background-color: #85dac5
}

.creditServices_box ul li a span.span7 {
    background-color: #79d2fa
}

.creditServices_box ul li a span.span8 {
    background-color: #54a0eb
}

.creditServices_box ul li a span.span9 {
    background-color: #79d2fa
}

.creditServices_box ul li a span.span10 {
    background-color: #3a89d6
}

.creditServices_box ul li a span.span11 {
    background-color: #4972aa
}

.creditServices_box ul li a span.span12 {
    background-color: #26b4f4
}

.creditServices_box ul li a span.span13 {
    background-color: #2e94d2
}

.creditServices_box ul li a span.span14 {
    background-color: #00d0b0
}

.creditServices_box ul li a span.span15 {
    background-color: #7ca8d5
}

.creditServices_box ul li a span.span16 {
    background-color: #85dac5
}

.creditServices_box ul li a span.span17 {
    background-color: #1dbfcc
}

.creditServices_box ul li a span.span18 {
    background-color: #00d0b0
}

.creditServices_box ul li a span.span19 {
    background-color: #88a9ff
}

.creditServices_box ul li a span.span20 {
    background-color: #468cff
}

.creditServices_box ul li a b {
    background: #f2f2f2;
    width: 100%;
    height: 80px;
    line-height: 50px;
    color: #333333;
    text-indent: 1em;
    float: left;
    font-weight: bold;
    font-size: 16px
}

.easily_plus_box {
    width: 1240px;
    height: 950px;
    margin: 0 auto
}

.easily_plus_box .districtDetail_content_inner_row {
    margin-top: 0
}

.easily_plus_box .districtDetail_content_inner_row_left, .easily_plus_box .districtDetail_content_inner_row_right {
    margin-top: 30px
}

.easily_plus_box .districtDetail_content_inner_row_left .red_black_tab, .easily_plus_box .districtDetail_content_inner_row_right .red_black_tab {
    top: 6px;
    left: 200px;
    right: 0
}

.easily_plus_box .districtDetail_content_inner_row_left .red_black_tab div, .easily_plus_box .districtDetail_content_inner_row_right .red_black_tab div {
    width: 70px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    float: left;
    margin-left: 14px;
    cursor: pointer
}

.easily_plus_box .districtDetail_content_inner_row_left .red_black_tab div.current, .easily_plus_box .districtDetail_content_inner_row_right .red_black_tab div.current {
    color: orange
}

.easily_plus_box .easily_plusbanner {
    padding-bottom: 0;
    margin-top: 30px
}

.easily_plusbanner {
    width: 1240px;
    height: 240px;
    padding-bottom: 30px
}

.easily_plusbanner img {
    width: 1240px;
    height: 240px;
    float: left
}

.commonList_box {
    width: 1000px;
    margin: auto
}

.commonList_box .bread_box {
    height: 52px;
    line-height: 52px;
    width: 100%;
    float: left;
    font-size: 12px;
    color: #999999
}

.commonList_box .bread_box a {
    color: #999999
}

.commonList_box .commonList_con {
    width: 100%;
    display: inline-block;
    margin-bottom: 50px
}

.commonList_box .commonList_con .commonList_nav {
    width: 240px;
    float: left
}

.commonList_box .commonList_con .commonList_nav b {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #e42326;
    color: #ffffff;
    font-size: 16px;
    float: left
}

.commonList_box .commonList_con .commonList_nav ul {
    width: 190px;
    padding: 0 24px 40px 24px;
    border: solid 1px #f2f2f2;
    border-top: none;
    float: left
}

.commonList_box .commonList_con .commonList_nav ul li {
    height: 40px;
    line-height: 40px;
    background-color: #f7f8fa;
    font-size: 16px;
    color: #333;
    float: left;
    width: 100%;
    margin-top: 16px;
    cursor: pointer
}

.commonList_box .commonList_con .commonList_nav ul li.active {
    color: #e42326;
    background-image: url("../images/common01.png");
    background-repeat: no-repeat;
    background-position: 164px center
}

.commonList_box .commonList_con .commonList_nav ul li em {
    width: 160px;
    overflow: hidden;
    height: 40px;
    line-height: 40px;
    font-style: normal;
    float: left;
    text-indent: 1em;
    text-overflow: ellipsis;
    white-space: nowrap
}

.commonList_box .commonList_con .commonList_list {
    width: 740px;
    float: right;
    border: solid 1px #f2f2f2
}

.commonList_box .commonList_con .commonList_list.ssjList_list ul li {
    cursor: pointer
}

.commonList_box .commonList_con .commonList_list.ssjList_list ul li a {
    width: 350px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.commonList_box .commonList_con .commonList_list.ssjList_list ul li span {
    width: 200px;
    height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left
}

.commonList_box .commonList_con .commonList_list.ssjList_list ul li small {
    width: 90px;
    text-align: right
}

.commonList_box .commonList_con .commonList_list b {
    width: 100%;
    height: 82px;
    line-height: 82px;
    text-align: center;
    font-size: 20px;
    color: #333;
    font-weight: normal;
    border-bottom: solid 1px #f2f2f2;
    float: left
}

.commonList_box .commonList_con .commonList_list ul {
    width: 650px;
    float: left;
    margin: 0 0 0 45px;
    padding-bottom: 20px
}

.commonList_box .commonList_con .commonList_list ul li {
    float: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    font-size: 16px;
    color: #666
}

.commonList_box .commonList_con .commonList_list ul li:nth-child(5n) {
    border-bottom: #9a9a9a 1px dashed
}

.commonList_box .commonList_con .commonList_list ul li a {
    float: left;
    color: #666;
    max-width: 550px;
    overflow: hidden
}

.commonList_box .commonList_con .commonList_list ul li small {
    float: right;
    font-size: 16px
}

.commonList_box .commonList_con .commonList_list div.content {
    float: left;
    width: 100%;
    padding: 20px 30px;
    box-sizing: border-box
}

.gerenxinyong_con {
    width: 1242px;
    margin: auto;
    padding-bottom: 40px;
    padding-top: 10px
}

.gerenxinyong_con .personal-part-one {
    margin-top: 20px
}

.gerenxinyong_con .personal-part--search-title {
    height: 42px;
    background: #f8f8f8;
    line-height: 42px;
    font-size: 16px
}

.gerenxinyong_con .personal-part--search-title i {
    vertical-align: top;
    margin-right: 20px;
    display: inline-block;
    width: 6px;
    height: 42px;
    background: #e42326
}

.personal-part-ul {
    margin-top: 10px
}

.personal-part-ul ul {
    overflow: hidden
}

.personal-part-ul ul li {
    width: 185px;
    height: 64px;
    float: left;
    border: 1px solid #bebebe;
    border-top: 2px solid #e22323;
    text-align: center;
    margin-right: 13px;
    margin-bottom: 20px
}

.personal-part-ul ul li .search-name {
    font-size: 16px;
    color: #0c0300;
    margin-top: 8px;
    font-weight: bold
}

.personal-part-ul ul li .search-name img {
    vertical-align: middle;
    margin-right: 5px
}

.personal-part-ul ul li .search-name-detail {
    font-size: 12px;
    color: #777
}

.ssjDetail_box {
    margin-top: 20px
}

.ssjDetail_box table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%
}

.ssjDetail_box table thead tr td {
    border: solid 1px #ddd;
    height: 50px;
    font-weight: bold;
    background: url(../images/cinfo/cinfo14.png) repeat-x;
    text-align: center
}

.ssjDetail_box table thead tr td.w90 {
    width: 90px
}

.ssjDetail_box table thead tr td.w140 {
    width: 140px
}

.ssjDetail_box table thead tr td.w200 {
    width: 200px
}

.ssjDetail_box table thead tr td.w300 {
    width: 300px
}

.ssjDetail_box table tbody tr td {
    border: solid 1px #ddd;
    text-align: center;
    height: 40px;
    overflow: hidden;
    word-wrap: break-word
}

.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition-property: -webkit-transform;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.swiper-container-multirow > .swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

.swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    background-size: 27px 44px;
    background-position: 50%;
    background-repeat: no-repeat
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23007aff'/%3E%3C/svg%3E");
    left: 10px;
    right: auto
}

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z'/%3E%3C/svg%3E")
}

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M0 22L22 0l2.1 2.1L4.2 22l19.9 19.9L22 44 0 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23007aff'/%3E%3C/svg%3E");
    right: 10px;
    left: auto
}

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z'/%3E%3C/svg%3E")
}

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 27 44'%3E%3Cpath d='M27 22L5 44l-2.1-2.1L22.8 22 2.9 2.1 5 0l22 22z' fill='%23fff'/%3E%3C/svg%3E")
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #fff;
    opacity: .8
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000
}

.swiper-container-vertical > .swiper-pagination {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0)
}

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
    margin: 5px 0;
    display: block
}

.swiper-container-horizontal > .swiper-pagination {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
    margin: 0 5px
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0))
}

.swiper-container-coverflow .swiper-wrapper {
    -ms-perspective: 1200px
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide, .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

.swiper-container-cube .swiper-slide {
    pointer-events: none;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    height: 100%
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .6;
    -webkit-filter: blur(50px);
    filter: blur(50px)
}

.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow {
    z-index: 0
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: a 1s steps(12, end) infinite;
    animation: a 1s steps(12, end) infinite
}

.swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%236c6c6c' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat
}

.swiper-lazy-preloader-white:after {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cdefs%3E%3Cpath id='a' stroke='%23fff' stroke-width='11' stroke-linecap='round' d='M60 7v20'/%3E%3C/defs%3E%3Cuse xlink:href='%23a' opacity='.27'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(30 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(60 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(90 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(120 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.27' transform='rotate(150 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.37' transform='rotate(180 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.46' transform='rotate(210 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.56' transform='rotate(240 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.66' transform='rotate(270 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.75' transform='rotate(300 60 60)'/%3E%3Cuse xlink:href='%23a' opacity='.85' transform='rotate(330 60 60)'/%3E%3C/svg%3E")
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        transform: rotate(1turn)
    }
}

.swiper-container {
    width: 100%;
    height: 100%
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-position: 50%;
    background-size: cover
}

#socialEnterprise_outer {
    width: 100%
}

#socialEnterprise_search_title {
    width: 100%;
    font-size: 36px;
    font-family: "幼圆";
    text-align: center;
    color: #333;
    height: 120px;
    line-height: 120px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat
}

#socialEnterprise_search_title a:hover {
    text-decoration: underline
}

.socialEnterprise_table {
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.socialEnterprise_table thead tr td {
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9
}

.socialEnterprise_table tr {
    border: 1px solid #E5E5E5;
    background-color: #fff;
    height: 60px;
    line-height: 60px
}

.socialEnterprise_table tr td {
    text-align: center;
    color: #666
}

.socialEnterpriseTable_tr:hover {
    background-color: #f9f9f9;
    cursor: pointer
}

.overflowEllipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis
}

.w200 {
    max-width: 200px
}

.baseInfo_containter {
    padding-bottom: 90px;
    font-family: "微软雅黑"
}

.baseInfoCode {
    width: 1240px;
    margin: auto;
    text-align: right;
    height: 0
}

.baseInfoCode a {
    width: 160px;
    height: 48px;
    display: block;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat;
    border: 1px solid #e5e5e5;
    text-align: center;
    line-height: 48px;
    color: #f78734;
    float: right;
    position: relative;
    top: 44px;
    text-decoration: none;
    cursor: pointer
}

.baseInfoCode p input {
    width: 270px;
    padding-left: 10px;
    height: 48px;
    border: 1px solid #e5e5e5;
    position: relative;
    top: 44px;
    font-size: 16px;
    color: #666;
    border-right: none
}

.baseInfoCode p a {
    width: 130px;
    top: 44px
}

.BaseInfoTop {
    width: 1240px;
    margin: 110px auto 10px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    background-position: center center;
    height: 260px;
    border: 1px solid #e5e5e5;
    position: relative
}

.BaseInfoTop .baseInfoDivBottom {
    width: 100%;
    position: absolute;
    bottom: 0px;
    border-top: 1px solid #e5e5e5;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #666;
    text-align: center
}

.BaseInfoTop .baseInfoDivBottom span {
    display: inline-block;
    text-align: center;
    margin: 0 50px
}

.BaseInfoTop .baseInfoDivBottom .baseInfo_fadingdaibiaoren_span {
    margin-right: 10px
}

.BaseInfoTop .baseInfoDivBottom .baseInfo_xiangguanqiye_span {
    margin-left: 0px;
    cursor: pointer;
    color: #F7983F
}

.baseDeatailInfo {
    width: 1240px;
    margin: 10px auto 10px;
    background-color: #f7f7f7;
    box-shadow: 0.5px 0.866px 5px 0px #ddd
}

.baseDeatailInfo table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px
}

.baseDeatailInfo table tr th {
    text-align: right;
    width: 200px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    color: #333;
    padding-right: 6px
}

.baseDeatailInfo table tr td {
    width: 410px;
    height: 30px;
    border: 1px solid #e5e5e5;
    text-align: left;
    background-color: #fff;
    color: #666;
    padding-left: 5px;
    line-height: 20px;
    padding: 5px
}

.baseInfoMiddleImg {
    position: absolute;
    left: 50%;
    margin-left: -76px;
    margin-top: -76px
}

.baseInfoTopLeftImg {
    float: left;
    position: absolute;
    left: 0;
    top: 0
}

.baseInfoTopLeftImg a {
    float: left;
    margin: 10px 0px 0px 10px
}

.baseInfoTopLeftImg img:hover {
    cursor: pointer
}

.baseInfoTopRightImg {
    position: absolute;
    right: 0;
    top: 0
}

.baseInfoTopRightImg a {
    float: right;
    margin: 10px 0px 0px 10px
}

.baseInfoTopRightImg img:hover {
    cursor: pointer
}

.baseInfoPrint {
    display: inline-block;
    width: 44px;
    height: 44px;
    border: 1px solid #ccc;
    color: #ff9900;
    font-size: 12px;
    background: #fff;
    border-radius: 4px;
    margin-right: 10px;
    text-align: center;
    cursor: pointer
}

.baseInfoPrint span {
    display: inline-block;
    margin-top: 10px
}

.baseInfoTopLeftImg > img:hover, #backImg > img::hover, .baseInfoTopRightImg > img:hover {
    cursor: pointer
}

#backImg {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../images/cinfo/cinfo4.png');
    background-repeat: no-repeat;
    background-position: center center;
    line-height: 50px;
    text-align: center;
    float: left;
    margin: 10px 0px 0px 10px
}

#backImg img {
    margin-top: 8px
}

.baseInfoDiv {
    width: 100%;
    position: absolute;
    top: 140px;
    text-align: center
}

.baseInfoDiv .bigFont {
    color: #333;
    font-size: 18px;
    margin: 0px
}

.baseInfoDiv .bigFont span {
    margin-left: 50px
}

.baseInfoDiv p {
    color: #a0a0a0;
    margin: 20px 0px;
    font-size: 12px
}

.baseInfoStateTop_bg {
    position: absolute;
    top: 0px;
    right: 0px
}

.baseInfoStateTop {
    height: 60px;
    color: #ff9900;
    cursor: pointer;
    background: #f3eee7;
    box-shadow: 0px 1px 3px 0px rgba(170, 170, 170, 0.4);
    padding-right: 30px;
    font-size: 14px;
    line-height: 60px;
    overflow: inherit;
    margin-bottom: 10px;
    position: relative
}

.baseInfoStateTop img {
    position: absolute;
    top: -9px;
    left: 10px
}

.baseInfoStateTop p {
    margin-left: 80px;
    text-decoration: underline
}

.baseInfoStateTop span {
    color: #ff9900
}

.baseInfoStateTop.yzwf_box {
    color: #ff4e00;
    margin-bottom: 0px;
    cursor: default
}

.baseInfoStateTop.yzwf_box p {
    text-decoration: none
}

.baseInfoState {
    clear: both;
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: absolute;
    top: 90px
}

.baseInfoState .resultData_status {
    padding: 4px 10px;
    border-radius: 4px;
    margin-left: 11px;
    color: #fff
}

.baseInfoState .status_survive {
    background-color: #56a85d
}

.baseInfoState .status_cunhuo {
    background-color: #52AC5F
}

.baseInfoState .status_zaice {
    background-color: #52AC5F
}

.baseInfoState .status_zhuxiao {
    background-color: #AEAEAE
}

.baseInfoState .status_qianchu {
    background-color: #AEAEAE
}

.baseInfoState .status_xieye {
    background-color: #AEAEAE
}

.baseInfoState .status_qita {
    background-color: #AEAEAE
}

.baseInfoState .status_diaoxiao {
    background-color: #E86749
}

.baseInfoState .status_againstLaw {
    background-color: #e03422
}

.baseInfoState .status_unusual {
    background-color: #f9a630
}

.baseInfoState .status_blue {
    background-color: blue
}

.baseInfoState ol li {
    margin: 0 5px;
    display: inline-block;
    color: #fff;
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
    border-radius: 5px
}

.baseInfoState ol li.yellow {
    background-color: #f9a630
}

.baseInfoState ol .ng-binding {
    background-color: #56a85d
}

.baseInfoLinkImgDiv {
    width: 1240px;
    margin: 50px auto 10px;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
    box-shadow: 0.5px 0.866px 5px 0px #ddd;
    position: relative;
    padding-bottom: 40px
}

.baseInfoLinkImgDiv .baseInfoLinkImgDivTop {
    height: 160px;
    line-height: 160px;
    text-align: center;
    width: 100%
}

.baseInfoLinkImgDiv .baseInfoLinkImgDivTop span {
    font-family: "幼圆";
    font-size: 36px;
    color: #333
}

.baseInfoLinkImgDiv .baseInfoLinkImgDivTop .leftImg {
    float: left;
    position: relative;
    bottom: 44px;
    right: 58px
}

.baseInfoLinkImgDiv .baseInfoLinkImgDivTop .rightImg {
    float: right;
    position: relative;
    bottom: 44px;
    left: 58px
}

.baseInfoLinkImgDiv .linkImgDiv {
    width: 160px;
    height: 160px;
    text-align: center;
    margin: 40px 70px;
    display: inline-block;
    cursor: pointer
}

.baseInfoLinkImgDiv .linkImgDiv span {
    float: right;
    width: 32px;
    height: 32px;
    background-image: url('../images/cinfo/cinfo10.png');
    background-repeat: no-repeat;
    background-position: center center;
    color: #fff;
    line-height: 32px;
    position: relative;
    bottom: 152px;
    right: 4px
}

.baseInfoLinkImgDiv .linkImgDiv span.bigIcon {
    background-image: url('../images/cinfo/xy_bg.png');
    width: 42px;
    height: 42px;
    line-height: 42px;
    right: 0;
    bottom: 160px
}

.baseInfoLinkImgDiv .linkImgDiv p {
    font-size: 16px;
    color: #666
}

.popupInfoDiv {
    width: 1180px;
    height: 700px;
    background-color: #fff;
    box-shadow: 2px 3.464px 40px 0px #3b3735
}

.popupInfoDivTop {
    width: 1180;
    text-align: center;
    height: 100px
}

.popupInfoDivTop .popupInfoMiddleImg {
    width: 90px;
    height: 90px;
    float: left;
    position: relative;
    left: 50%;
    margin-left: -45px;
    bottom: 45px
}

.popupInfoDivTop p {
    clear: both;
    font-size: 18px;
    color: #333;
    position: relative;
    bottom: 15px
}

.popupTableBox {
    width: 1180px;
    margin-top: 30px;
    height: 560px;
    overflow-y: auto
}

.popupTableBox .fldh {
    position: absolute;
    top: 5px;
    left: 40px
}

.popupTableBox .fldh span {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: #ccc;
    margin-right: 10px
}

.popupTableBox .fldh span:hover {
    cursor: pointer;
    opacity: 0.8
}

.popupTableBox .fldh .fldh_current_span {
    background-color: #ff9933
}

.popupTableBox .caption {
    width: 1100px;
    height: 48px;
    line-height: 48px;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat;
    border: 1px solid #e5e5e5;
    border-bottom: none;
    color: #f77834;
    margin-left: 40px;
    font-size: 16px
}

.popupTableBox .caption span {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-top: 10px
}

.popupTableBox .caption label {
    display: inline-block;
    width: 1046px;
    padding-right: 40px;
    text-align: center
}

.popupTableBox .baseInfoTable {
    margin-bottom: 10px;
    width: 1100px;
    margin-left: 40px;
    border-collapse: collapse;
    font-size: 14px
}

.popupTableBox .baseInfoTable tr th {
    text-align: right;
    width: 200px;
    height: 40px;
    border: 1px solid #e5e5e5;
    background-color: #f9f9f9;
    color: #333;
    padding-right: 6px
}

.popupTableBox .baseInfoTable tr th .index_span {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-left: 2px;
    float: left;
    color: #f77834
}

.popupTableBox .baseInfoTable tr td {
    width: 341px;
    height: 30px;
    border: 1px solid #e5e5e5;
    text-align: left;
    background-color: #fff;
    color: #666;
    padding-left: 5px;
    line-height: 20px;
    padding: 5px
}

.userImg {
    width: 50px;
    height: 50px;
    position: relative;
    top: 18px
}

.logoContent {
    position: absolute;
    font-family: "微软雅黑";
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/home/2.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%
}

.logoContentDiv {
    width: 470px;
    height: 556px
}

.logoContentDiv .logoContentDivTop {
    color: #999;
    height: 0
}

.logoContentDiv .logoContentDivTop a {
    display: block;
    float: right;
    width: 138px;
    height: 38px;
    border: 1px solid #7c7e79;
    border-radius: 2px;
    text-align: center;
    line-height: 38px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer
}

.logoContentDiv .logoContentDivTop span {
    position: relative;
    bottom: 30px
}

.logoContentDiv .logoContentDivBottom {
    text-align: center;
    width: 470px;
    height: 580px;
    border: 1px solid #7c7e79;
    border-radius: 2px;
    background-color: rgba(39, 48, 54, 0.9)
}

.logoContentDiv .logoContentDivBottom .login_logo {
    margin-top: 30px;
    margin-bottom: 4px
}

.logoContentDiv .logoContentDivBottom .logon {
    width: 290px;
    height: 38px;
    background-color: #9f6f4d;
    color: #fff;
    display: block;
    margin: 10px auto;
    border-radius: 4px;
    line-height: 38px;
    letter-spacing: 20px;
    cursor: pointer;
    text-decoration: none
}

.logoContentDiv .logoContentDivBottom .webUser {
    width: 296px;
    margin: auto
}

.logoContentDiv .logoContentDivBottom .webUser p {
    width: 100%;
    margin-top: 10px
}

.logoContentDiv .logoContentDivBottom .webUser p input {
    width: 290px;
    padding-left: 6px;
    height: 38px;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    background-color: #c8c8c7;
    color: #333
}

.logoContentDiv .logoContentDivBottom .webUser .marTop15 {
    margin-left: 3px;
    height: 38px
}

.logoContentDiv .logoContentDivBottom .webUser .marTop15 input {
    width: 180px;
    border-radius: 4px 0 0 4px;
    float: left;
    border-right: 1px solid #aaa
}

.logoContentDiv .logoContentDivBottom #sryzm {
    width: 180px;
    border-radius: 4px 0 0 4px;
    position: relative;
    bottom: 0px;
    border-right: 1px solid #aaa
}

.logoContentDiv .logoContentDivBottom #hqyzm {
    width: 110px;
    height: 40px;
    border-radius: 0 4px 4px 0;
    border: 1px solid #d4d4d4;
    border-left: none;
    position: relative;
    top: 0px;
    cursor: pointer
}

.logoContentDiv .logoContentDivBottom #hqyzm:focus {
    background-color: #c8c8c7
}

.logoContentDiv .logoContentDivBottom .webUser .marTop15 img {
    float: left;
    width: 110px;
    height: 38px;
    border-radius: 0 4px 4px 0;
    border: 1px solid #d4d4d4;
    border-left: none;
    cursor: pointer
}

.logoContentDiv .logoContentDivBottom .webUser p input:focus {
    background-color: #fff
}

.logoContentDiv .logoContentDivBottom .hrefP {
    display: block;
    width: 296px;
    margin: 10px auto
}

.logoContentDiv .logoContentDivBottom .hrefP a {
    color: #999;
    text-decoration: none;
    font-size: 16px
}

.logoContentDiv .logoContentDivBottom .hrefP .logon-register {
    float: left;
    cursor: pointer
}

.logoContentDiv .logoContentDivBottom .hrefP .forgetPwd {
    float: right;
    cursor: pointer
}

.logoContentDiv .logoContentDivBottom .errorShow {
    display: block;
    width: 296px;
    font-size: 12px;
    margin: 0px auto;
    color: #fff;
    text-align: left
}

.logoContentDiv .logoContentDivBottom .errorShow small {
    color: #fd635b
}

.logoContentDiv .logoContentDivBottom .dsfLogon {
    color: #ddd;
    clear: both;
    color: #ddd;
    width: 296px;
    font-size: 16px;
    margin: 70px auto 20px;
    text-align: left
}

.logoContentDiv .logoContentDivBottom .dsfLogonDiv span {
    margin: 0px 20px
}

.logoContentDiv .logoContentDivBottom .dsfLogonDiv span:hover {
    cursor: pointer;
    opacity: 0.8
}

.logoContentDiv .logoContentDivBottom ::-webkit-input-placeholder {
    color: #666
}

.logoContentDiv .logoContentDivBottom :-moz-placeholder {
    color: #666
}

.logoContentDiv .logoContentDivBottom ::-moz-placeholder {
    color: #666
}

.logoContentDiv .logoContentDivBottom :-ms-input-placeholder {
    color: #666
}

.images_small {
    width: 100px;
    cursor: pointer
}

.enterprise_link_span {
    color: blue;
    cursor: pointer
}

.cinfo_pinpai_link_img {
    margin: 13px
}

.printReport_div {
    width: 400px;
    height: 350px;
    background: #fff;
    border: 1px solid #ccc
}

.printReport_div .printReport_div_top {
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    text-align: center;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd
}

.printReport_div dl {
    float: left;
    width: 94%;
    padding-top: 10px;
    padding-left: 3%
}

.printReport_div dl dt {
    float: left;
    width: 100%;
    font-size: 14px
}

.printReport_div dl dd {
    float: left;
    width: 33%;
    font-size: 14px;
    margin: 0px
}

.printReport_div .ridioLabel_title_span {
    margin-left: 30px
}

.printReport_div .ridioLabel {
    display: inline-block;
    height: 40px;
    cursor: pointer
}

.printReport_div .ridioLabelIn2 {
    background-image: url('../images/cinfo/dan2.png');
    background-repeat: no-repeat
}

.printReport_div .ridioLabelOut2 {
    background-image: url('../images/cinfo/dan1.png');
    background-repeat: no-repeat
}

.printReport_div .printDateTypeNumBg {
    width: 94%;
    margin-left: 3%;
    position: relative;
    float: left;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    margin-top: 20px
}

.printReport_div .printDateTypeNumBg input {
    outline: none;
    position: absolute;
    left: 10px;
    top: 0;
    z-index: 0;
    border: solid 1px #ddd;
    height: 40px;
    line-height: 40px;
    width: 400px;
    padding-left: 5px
}

.printReport_div .printDateTypeNumBg label {
    position: absolute;
    left: 16px;
    top: 0;
    height: 26px;
    line-height: 26px;
    color: #DDDDDD;
    font-size: 12px;
    z-index: 9
}

.printReport_div .printReport_div_downloads {
    width: 360px;
    height: 40px;
    line-height: 40px;
    background: #f98530;
    color: #fff;
    border-radius: 4px;
    clear: both;
    margin: 200px 0 0 22px;
    text-align: center
}

.printReport_div .printReport_div_downloads a {
    text-decoration: none;
    font-size: 14px
}

.printReport_div .printReport_div_downloads:hover {
    cursor: pointer;
    opacity: .8
}

.iconPrint {
    position: fixed;
    top: 0px;
    right: 0;
    z-index: 999;
    width: 66px;
    height: 86px;
    background: url(../images/icon_print1.png) no-repeat;
    font: 16px/154px Microsoft YaHei;
    color: #000;
    text-align: center;
    cursor: pointer;
    margin-right: 2px;
    margin-top: 40px;
    text-decoration: none
}

.print_cover {
    height: 900px;
    text-align: center;
    position: relative
}

.print_cover .titleP1 {
    font: bold 60px Microsoft YaHei;
    color: #000;
    text-align: center;
    margin-top: 200px
}

.print_cover .titleInfo {
    margin: 120px auto 0 auto;
    width: 700px
}

.print_cover .titleInfo th {
    font: bold 25px Microsoft YaHei;
    color: #000;
    text-align: left;
    padding: 8px 0 8px 0;
    width: 40%
}

.print_cover .titleInfo td {
    font: 400 25px Microsoft YaHei;
    color: #000;
    text-align: left;
    padding: 8px 0;
    width: 60%
}

.print_cover .pint_foot {
    text-align: center;
    margin-top: 300px;
    margin-bottom: 10px;
    font: 400 15px Microsoft YaHei;
    color: #000
}

.pint_foot2 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font: 400 14px Microsoft YaHei;
    color: #000
}

.table_box_three {
    margin-top: 10px;
    margin-bottom: 20px;
    width: 100%;
    background: url("../images/shuiyin.png") repeat
}

.table_box_three div.title {
    text-align: center;
    color: #318dce;
    height: 50px;
    line-height: 50px;
    font-size: 24px
}

.table_box_three div.caption {
    text-align: center;
    color: #fd7e2d;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    border: solid 1px #e5e5e5;
    border-bottom: none;
    background-image: url("../images/searchList/search_title.png");
    background-repeat: repeat-x
}

.table_box_three div.caption_year {
    text-align: left;
    text-indent: 1em;
    color: #000;
    font-size: 16px;
    border: none;
    height: 50px;
    line-height: 50px
}

.table_box_three div.noData {
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-size: 16px
}

.table_box_three table {
    width: 100%;
    text-align: left;
    font-size: 14px;
    table-layout: fixed;
    border-collapse: collapse;
    margin-bottom: 10px
}

.table_box_three table tr {
    height: 39px;
    line-height: 39px
}

.table_box_three table tr th {
    border: solid 1px #e5e5e5;
    text-align: right;
    color: #333;
    font-weight: normal
}

.table_box_three table tr td {
    border: solid 1px #e5e5e5;
    padding-left: 5px;
    word-wrap: break-word;
    color: #666
}

.table_box_three table tr td img.images_small {
    max-height: 100px
}

.table_box_three table .serialNumber {
    width: 40px;
    text-align: center;
    color: #fc7c3f
}

.cinfo_news_box .newsList_title {
    width: 700px
}

.cinfo_news_box .newsList_source {
    float: left;
    width: 180px
}

.objection_box {
    width: 1240px;
    margin: auto;
    height: 1px;
    position: relative
}

.objection_box .objection_btn {
    width: 160px;
    height: 48px;
    display: block;
    background-image: url(../images/cinfo/cinfo14.png);
    background-repeat: repeat;
    border: 1px solid #e5e5e5;
    text-align: center;
    line-height: 48px;
    color: #f78734;
    float: left;
    position: relative;
    top: 44px;
    left: 0px;
    text-decoration: none;
    cursor: pointer
}

.objectionAppeal_box {
    padding: 0 10px 0 100px
}

.objectionAppeal_box h3 {
    font-size: 28px
}

.objectionAppeal_box .objection_item {
    float: left;
    width: 100%
}

.objectionAppeal_box .objection_item div {
    float: left;
    width: 100%;
    margin-top: 15px;
    text-align: left;
    font-size: 14px
}

.objectionAppeal_box .objection_item div label {
    float: left;
    width: 200px;
    text-align: right;
    font-size: 14px;
    font-weight: bold
}

.objectionAppeal_box .objection_item div input {
    float: left;
    width: 600px;
    height: 32px;
    line-height: 32px;
    padding: 0 5px;
    background: #efefef;
    border: solid 1px #bebebe;
    color: #333
}

.objectionAppeal_box .objection_item div input.warning {
    border-color: red
}

.objectionAppeal_box .objection_item div textarea {
    resize: none;
    width: 600px;
    height: 100px;
    float: left;
    outline: none;
    line-height: 18px;
    padding: 5px 5px;
    background: #efefef;
    border: solid 1px #bebebe;
    color: #333
}

.objectionAppeal_box .objection_item div textarea.warning {
    border-color: red
}

.objectionAppeal_box .objection_item div em {
    color: red;
    font-style: normal;
    float: left;
    padding-left: 10px;
    line-height: 32px;
    font-size: 18px
}

.objectionAppeal_box .objection_item div span {
    background: url("../images/cinfo/cuohao.png") no-repeat 8px center;
    height: 32px;
    line-height: 32px;
    float: left;
    padding-left: 30px;
    font-size: 14px;
    color: red
}

.objectionAppeal_box .save_btn {
    text-align: center;
    margin-top: 20px;
    float: left;
    width: 100%
}

.objectionAppeal_box .save_btn span {
    background-color: #F99043;
    height: 42px;
    text-align: center;
    line-height: 42px;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    width: 120px;
    cursor: pointer
}

#popup-captcha {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 10000
}

#popup-captcha .mask_bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2)
}

.slide-box {
    display: block;
    width: 290px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -95px 0 0 -145px
}

.scroll-background {
    background-image: url("../images/sprite.3.2.0.png");
    background-repeat: no-repeat
}

.scroll-bar {
    margin-left: 15px;
    width: 261px;
    background-position: 0 0;
    height: 28px;
    position: relative
}

.slide-btn {
    height: 44px;
    width: 44px;
    background-position: 0 -84px;
    cursor: pointer;
    display: block;
    position: absolute;
    left: 0;
    top: -9px;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 13px;
    z-index: 399
}

.slide-title {
    cursor: default;
    position: absolute;
    left: 35px;
    font-size: 12px !important;
    color: #486c80;
    opacity: 1;
    filter: alpha(opacity=100);
    height: 28px;
    line-height: 28px !important;
    text-align: center;
    width: 220px;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none
}

.slide-img-div {
    width: 260px;
    height: 116px;
    padding: 0 15px 2px 13px;
    position: relative;
    background-color: #f2ece1;
    border-left: 1px solid #e4ddd1;
    border-right: 1px solid #e4ddd1
}

.slide-img-div img {
    width: 100%;
    height: 100%
}

.slide-top {
    height: 14px;
    width: 290px;
    background-position: 0 -1341px;
    position: relative
}

.slide-bottom {
    height: 28px;
    width: 290px;
    background-position: 0 -56px;
    line-height: 14px !important;
    position: relative;
    text-align: left;
    overflow: visible
}

.slide-bottom-no-logo {
    margin-right: 15px;
    width: 65px;
    height: 16px;
    position: absolute;
    right: 0;
    top: 6px;
    background-color: #f2ece1 !important;
    cursor: default
}

.slide-bottom-refresh {
    overflow: visible;
    display: block;
    zoom: 1;
    display: inline-block;
    vertical-align: bottom;
    cursor: pointer;
    margin-right: 16px !important;
    background-color: #f1e9de;
    margin: 6px 0 0 18px !important;
    height: 14px;
    width: 14px;
    background-position: 0 -1179px
}

.slide-box-shadow {
    display: none;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5) inset
}

.slide-block {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 2px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-repeat: no-repeat;
    background-attachment: scroll;
    border: 1px solid rgba(255, 255, 0, 0.8);
    background-size: 260px 116px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4), 0 0 10px 0 rgba(90, 90, 90, 0.4);
    box-sizing: border-box;
    z-index: 10
}

.slide-img-nopadding {
    position: relative;
    width: 100%;
    height: 100%
}

.slide-icon {
    float: left;
    height: 22px;
    width: 26px
}

.slide-img-hint {
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 12px !important;
    line-height: 22px !important;
    margin: 0 auto;
    position: relative
}

.slide-text {
    text-align: left !important;
    color: #4b3f33
}

.slide-img-hint-info {
    height: 22px;
    width: 260px;
    background-position: 0 -674px;
    height: 0;
    overflow: hidden;
    position: absolute;
    bottom: 1px;
    transition: height 0.3s;
    z-index: 11
}

.redColor {
    color: red
}

.greenColor {
    color: green
}

.slide-img-border {
    margin-bottom: 3px
}

.resetMain {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #f0f0f0
}

.resetMain .resetContentDiv {
    width: 800px;
    height: 660px;
    position: absolute;
    top: 50%;
    margin-top: -350px;
    left: 50%;
    margin-left: -400px
}

.resetMain .resetContentDiv .reset_content {
    background: #fff;
    width: 800px;
    height: 600px;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc
}

.reset-top a {
    float: right;
    color: #f98530;
    margin-top: 45px
}

.reset-top a:hover {
    cursor: pointer;
    color: #fe7f03
}

.zfmmContent {
    width: 780px;
    padding: 0 9px 30px;
    float: left;
    margin-top: 10px
}

.zfmmContent img {
    margin: 30px 336px
}

.zfmmContent h2 {
    border-bottom: solid 1px #ccc;
    margin-top: 21px;
    height: 52px;
    line-height: 52px;
    color: #000;
    font-size: 20px;
    margin-bottom: 42px;
    font-family: "\5FAE\8F6F\96C5\9ED1";
    text-align: center
}

.registerContent p {
    width: 100%;
    text-align: center;
    float: left;
    position: relative;
    height: 40px;
    margin-top: 8px
}

.registerContent p .red {
    color: #ff3a3a;
    font-size: 14px
}

.registerContent p label {
    color: #ccc;
    left: 253px;
    height: 40px;
    z-index: 1;
    font-size: 12px;
    position: absolute;
    line-height: 40px
}

.registerContent p span {
    color: #333;
    font-size: 14px;
    font-family: "\5FAE\8F6F\96C5\9ED1";
    left: 240px;
    position: absolute;
    line-height: 40px
}

.registerContent p input {
    width: 286px;
    padding-left: 12px;
    height: 38px;
    line-height: 38px;
    border-radius: 3px;
    border: 1px solid #ccc;
    position: absolute;
    left: 240px;
    top: 0;
    outline: 0;
    z-index: 0
}

.registerContent p a {
    display: block;
    width: 300px;
    background: #f98530;
    height: 40px;
    border-radius: 3px;
    left: 240px;
    top: 0;
    color: #fff;
    cursor: pointer;
    position: absolute;
    line-height: 40px;
    text-decoration: none
}

.registerContent p .logon {
    background: #f98530;
    color: #fff;
    width: 140px;
    left: 316px
}

.registerContent p #hqyzm {
    width: 110px;
    left: 430px;
    height: 40px;
    border-radius: 0 3px 3px 0;
    padding-left: 0
}

.registerContent p #tjyzm {
    width: 177px;
    border-radius: 3px 0 0 3px;
    border-right: none
}

.qyAuthCodeDiv {
    width: 1240px;
    margin: auto
}

.qyAuthCodeDiv .serach_con_text {
    color: #999;
    line-height: 24px;
    font-size: 14px;
    margin: 10px 0 0 235px;
    width: 780px;
    background-image: url('../images/tip.png');
    background-repeat: no-repeat;
    padding-left: 30px
}

.qyAuthCodeDiv .serach_con {
    width: 780px;
    margin-left: 235px;
    height: 79px
}

.qyAuthCodeDiv .serach_con .serach_con_left {
    background-image: url('../images/home/0_banner_search_left_.9.png');
    background-repeat: no-repeat;
    width: 3px;
    height: 79px;
    float: left
}

.qyAuthCodeDiv .serach_con .serach_con_center {
    background-image: url('../images/home/0_banner_search_center_.9.png');
    background-repeat: repeat-x;
    width: 770px;
    height: 79px;
    float: left
}

.qyAuthCodeDiv .serach_con .serach_con_center .serach_text_box {
    float: left;
    margin-top: 10px;
    width: 700px
}

.qyAuthCodeDiv .serach_con .serach_con_center .serach_text_box input {
    height: 59px;
    border: none;
    background: none;
    width: 690px;
    padding-left: 20px;
    font-size: 14px;
    color: #a0a0a0
}

.qyAuthCodeDiv .serach_con .serach_con_center .serach_btn {
    background-image: url('../images/home/0_banner_search.png');
    background-repeat: no-repeat;
    width: 62px;
    height: 62px;
    float: left;
    margin-top: 8px;
    cursor: pointer
}

.qyAuthCodeDiv .serach_con .serach_con_right {
    background-image: url('../images/home/0_banner_search_right_.9.png');
    background-repeat: no-repeat;
    width: 3px;
    height: 79px;
    float: left
}

.qyAuthCodeDiv .process {
    background-image: url('../images/process.png');
    background-repeat: no-repeat;
    width: 700px;
    height: 200px;
    margin: 20px auto 0
}

.dtLoading__box {
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.dtLoading__background {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 0;
    background-color: transparent
}

.dtLoading__icon {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    top: 50%;
    z-index: 1;
    overflow: hidden;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px
}

.dtLoading__icon--background {
    position: absolute;
    width: 100px;
    height: 100px;
    left: 0;
    top: 0;
    z-index: 0;
    background-color: black;
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
    opacity: .7
}

.dtLoading__icon--img {
    width: 100px;
    height: 100px;
    background-image: url('../images/loading1.gif');
    background-repeat: no-repeat;
    position: relative;
    z-index: 1
}

.personCenter_container {
    font-family: "微软雅黑";
    background-image: url('../images/headbg.jpg');
    background-repeat: no-repeat;
    background-position: center 0;
    width: 100%
}

.personCenter_container .grzxTop {
    width: 100%;
    height: 40px;
    color: #fff
}

.personCenter_container .grzxTop .top_nav_bg {
    background-color: #000;
    opacity: 0.2;
    width: 100%;
    height: 40px;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1
}

.personCenter_container .grzxTop .grzxTop_content {
    width: 1240px;
    position: relative;
    z-index: 2;
    height: 40px;
    margin: auto;
    line-height: 40px
}

.personCenter_container .grzxTop .grzxTop_content span {
    float: left;
    font-size: 18px
}

.personCenter_container .grzxTop .grzxTop_content a {
    float: right;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    color: #fff
}

.personCenter_container .grzxTop .grzxTop_content a:hover {
    text-decoration: underline
}

.personCenter_container .grzxImg {
    width: 100%;
    height: 190px;
    background-repeat: no-repeat;
    background-position: center center;
    text-align: center;
    color: #fff
}

.personCenter_container .grzxImg p {
    margin-top: 15px
}

.personCenter_container .grzxTab {
    width: 100%;
    height: 46px;
    background-image: url('../images/searchList/subtle_grunge.png');
    background-repeat: repeat;
    background-position: center center;
    border-bottom: 1px solid #d4d4d4;
    text-align: center;
    line-height: 46px;
    margin-bottom: 50px;
    color: #666
}

.personCenter_container .grzxTab a {
    color: #666;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    width: 180px;
    text-align: center
}

.personCenter_container .grzxTab a.current {
    color: #f98530
}

.personCenter_container .myCollectDiv {
    width: 1240px;
    margin: auto
}

.personCenter_container .myCollectDiv .collectItem {
    margin-bottom: 20px;
    width: 100%;
    height: 106px;
    border: 1px solid #d4d4d4;
    box-shadow: 0.5px 0.866px 5px 0px #ddd;
    background-color: #f9f9f9
}

.personCenter_container .myCollectDiv .collectItem .selectLeft {
    width: 1000px;
    cursor: pointer;
    height: 100px;
    float: left
}

.personCenter_container .myCollectDiv .collectItem .selectLeft a {
    margin: 30px 30px 10px 30px;
    color: #333;
    text-decoration: none;
    display: block
}

.personCenter_container .myCollectDiv .collectItem .selectLeft label {
    margin: 0px 30px;
    font-size: 14px;
    color: #999
}

.personCenter_container .myCollectDiv .collectItem .selectRight {
    text-align: right;
    margin-right: 20px;
    width: 200px;
    height: 100px;
    float: right
}

.personCenter_container .myCollectDiv .collectItem .selectRight a {
    display: block;
    margin-top: 30px;
    cursor: pointer
}

.personCenter_container .myCollectDiv .collectItem .selectRight span {
    font-size: 14px;
    color: #999;
    display: block;
    margin-top: 10px
}

.personCenter_container .pwdModify {
    width: 350px;
    height: 306px;
    margin: 50px auto
}

.personCenter_container .pwdModify p {
    color: #999;
    font-size: 14px
}

.personCenter_container .pwdModify input {
    width: 340px;
    padding-left: 8px;
    border-radius: 2px;
    border: 1px solid #e4e4e4;
    height: 38px;
    margin: 10px 0;
    color: #666
}

.personCenter_container .pwdModify .btn_primary {
    display: block;
    width: 348px;
    height: 38px;
    color: #f98530;
    text-decoration: none;
    line-height: 38px;
    text-align: center;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat;
    border: 1px solid #e5e5e5;
    margin-top: 10px;
    cursor: pointer
}

.personCenter_container .pwdModify .errorShow {
    color: #ff6730
}

.checkRightDiv {
    float: right;
    position: absolute;
    right: 100px;
    top: 0px;
    width: 32px;
    padding: 10px;
    height: 32px;
    background-color: #f98530;
    color: #fff;
    border-radius: 4px;
    text-align: center
}

.checkRightDiv p {
    height: 16px;
    font-size: 14px;
    line-height: 16px
}

.checkRightDiv:hover {
    cursor: pointer;
    opacity: .8
}

.checkMarkDiv {
    width: 1240px;
    position: relative;
    margin: auto
}

.checkMarkDiv .serach_con_text {
    color: #999;
    line-height: 24px;
    font-size: 14px;
    margin: 0px 0 15px 235px;
    width: 780px;
    background-image: url('../images/tip.png');
    background-repeat: no-repeat;
    padding-left: 30px
}

.checkMarkDiv .checkMarkInfo {
    width: 740px;
    display: table;
    padding-bottom: 50px;
    margin: auto
}

.checkMarkDiv .checkMarkInfo .searchCheckMarkTS {
    color: #ff3f3f;
    font-size: 14px;
    position: relative;
    top: 15px;
    left: 50px
}

.checkMarkDiv .checkMarkInfo .searchCheckMark {
    margin-left: 50px
}

.checkMarkDiv .checkMarkInfo .searchCheckMark p {
    line-height: 30px;
    height: 30px;
    color: #999;
    font-size: 14px
}

.checkMarkDiv .checkMarkInfo .searchCheckMark input {
    height: 44px;
    outline: none;
    width: 612px;
    padding-left: 10px;
    border: solid 1px #d7d5d1;
    border-radius: 3px;
    color: #666
}

.checkMarkDiv .checkMarkInfo .searchCheckMark textarea {
    height: 100px;
    outline: none;
    width: 612px;
    padding-left: 10px;
    border: solid 1px #d7d5d1;
    border-radius: 3px;
    resize: none;
    color: #666
}

.checkMarkDiv .checkMarkInfo .searchCheckMark .searchBtn {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    height: 44px;
    width: 622px;
    text-align: center;
    line-height: 44px;
    color: #f89043;
    border: solid 1px #d7d5d1;
    border-radius: 3px;
    font-size: 16px;
    position: relative;
    top: 2px;
    margin-top: 20px;
    background-image: url('../images/cinfo/cinfo14.png');
    background-repeat: repeat
}

.checkMarkDiv .checkMarkInfo .searchCheckMark .first {
    margin-left: 0
}

.checkMarkDiv .checkMarkInfo .checkMarkDescribe {
    background-image: url('../images/tip.png');
    background-repeat: no-repeat;
    padding-left: 30px;
    margin-left: 50px;
    margin-top: 15px;
    line-height: 20px;
    font-size: 14px;
    color: #b6b6b6
}

.checkCode {
    width: 1240px;
    position: relative;
    margin: auto;
    font-family: "微软雅黑"
}

.checkCode dl {
    margin: auto;
    width: 720px;
    padding: 0 10px
}

.checkCode dt {
    margin-bottom: 14px
}

.checkCode textarea {
    width: 710px;
    height: 64px;
    padding: 10px 5px;
    outline: none;
    border: solid 1px #d7d5d1;
    margin-bottom: 15px;
    resize: none;
    border-radius: 5px;
    background-color: #f9f9f9;
    color: #787878
}

.checkCode input {
    width: 84px;
    height: 34px;
    cursor: pointer;
    color: #ff6730;
    background-color: #fff;
    border: solid 1px #d7d5d1;
    outline: none;
    font-size: 14px;
    border-radius: 4px;
    float: right
}

.checkCode dd a {
    display: block;
    margin: auto;
    width: 118px
}

.checkCode .checkCodeDiv {
    width: 1060px;
    margin: 0 auto 20px;
    font-size: 14px;
    color: #999;
    border-bottom: solid 1px #d7d5d1
}

.checkCode .checkCodeDiv .qyInfo {
    width: 720px;
    margin: auto;
    padding: 18px 10px 10px;
    border: solid 1px #d7d5d1;
    border-radius: 14px;
    margin-bottom: 20px
}

.checkCode .checkCodeDiv .qyInfo p {
    word-break: break-all;
    line-height: 26px;
    padding-left: 20px
}

.checkCode .checkCodeDiv .qyInfo p span {
    display: inline-block;
    padding-right: 10px;
    text-align: right;
    color: #333
}

.checkCode .checkCodeDiv .preview {
    clear: both
}

.checkCode .checkCodeDiv label {
    margin-left: 970px;
    margin-bottom: 10px;
    display: inline-block;
    color: #989898;
    font-size: 14px
}

.checkMark_mustWrite_img {
    margin-bottom: 2px;
    margin-right: 5px;
    margin-left: 2px
}

.searchCheckMark_title {
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px
}