html, body {
    font-family: Cambria, Arial, sans-serif, serif;
}

/** radio style top **/
input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

input[type="radio"] + label {
    float: left;
}

input[type="radio"] + label::before {
    content: "";
    height: 22px;
    width: 22px;
    display: inline-block;
    background: url("/page/pc/images/superSearch/radio-unchecked.png") no-repeat center;
    margin: 12px 9px;
    float: left;
}

.general-para-radio-group input[type="radio"] + label::before {
    margin: 4px 10px;
}

input[type="radio"]:checked + label::before {
    background: url("/page/pc/images/superSearch/radio-checked.png") no-repeat center;
}

/** radio style end **/

/** placeholder style top **/
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    font-size: 14px !important;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400 !important;
    color: rgba(153, 153, 153, 1) !important;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    font-size: 14px !important;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400 !important;
    color: rgba(153, 153, 153, 1) !important;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    font-size: 14px !important;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400 !important;
    color: rgba(153, 153, 153, 1) !important;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 14px !important;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400 !important;
    color: rgba(153, 153, 153, 1) !important;
}

/** placeholder style end **/

/** combo select top **/
.combo-select {
    float: left;
    margin: 0 !important;
    width: 274px;
    height: 46px;
    border: none !important;
}

.combo-select ul {
    border: none;
}

.combo-input {
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400;
    color: rgba(74, 74, 74, 1);
    border: 1px solid rgba(204, 204, 204, 1) !important;
    border-radius: 0 4px 4px 0 !important;
    height: 46px !important;
    padding: 12px 35px 12px 11px !important;
}

.combo-input:focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1) !important;
    border: 1px solid rgba(177, 216, 255, 1) !important;
}

.combo-focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1) !important;
    border: 1px solid rgba(177, 216, 255, 1) !important;
}

.combo-arrow {
    width: 35px !important;
}

.combo-dropdown li {
    width: 100%;
    height: auto;
}

/** combo select end **/

/** commons style top **/
.input-group-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin: 0;
    padding: 0 0;
    text-align: right;
    line-height: 46px;
    float: left;
}

.input-combo {
    float: left;
    margin-right: 10px;
}

.input-combo input {
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.input-combo input:focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1) !important;
    border: 1px solid rgba(177, 216, 255, 1) !important;
}

.more-para-title {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
}

.more-para-title-icon {
    width: 4px;
    height: 20px;
    display: inline-block;
    background-color: #2589EB;
    border-radius: 0 3px 3px 0;
    float: left;
    margin: 10px 6px;
}

.more-para-title-text {
    display: inline-block;
    font-size: 18px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(74, 74, 74, 1);
    line-height: 40px;
    float: left;
}

.select-box {
    width: 274px;
    height: 46px;
    float: left;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 4px 4px 0;
    border: 1px solid rgba(204, 204, 204, 1);
    position: relative;
}

.select-box-btn {
    display: block;
    width: 274px;
    height: 46px;
}

.select-box .select-box-text {
    width: 239px;
    height: 46px;
    float: left;
    line-height: 46px;
    padding: 0 11px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 400;
    color: rgba(153, 153, 153, 1);
}

.select-box .select-box-icon:before {
    content: " ";
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #cccccc;
    display: block;
    width: 0;
    height: 0;
    top: 0;
    right: 15px;
    bottom: 0;
    margin: auto 0;
    position: absolute;
}

.select-options {
    display: none;
    position: absolute;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    z-index: 1;
    top: 102%;
    left: 0;
    min-width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border-radius: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    box-sizing: border-box;
    color: #333;
}

.select-options li:hover {
    background: #2589eb;
    color: #fff;
}

.select-open {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1) !important;
    border: 1px solid rgba(177, 216, 255, 1) !important;
}

.select-open .select-options {
    display: block;
}

.select-box .select-options li {
    width: 100%;
    list-style: none;
    padding: 8px 1em;
    margin: 0;
    cursor: pointer;
    border-bottom: 1px #e3e3e3 solid;
}

/** commons style end **/

.content-wrapper {
    width: 1200px;
    margin: 10px auto;
    font-family: Cambria, Arial, sans-serif, serif;
}

.title-area {
    width: 500px;
    margin: 0 auto;
    height: 70px;
    text-align: center;
}

.title-area ul {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.title-area li {
    display: inline;
    float: left;
    font-family: Cambria, Arial, sans-serif, serif;
    padding: 0 6px;
    line-height: 70px;
}

.general-para-area {
    width: 1200px;
    height: 570px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #EEEEEE;
    border-radius: 4px;
}

.general-para-header {
    width: 1200px;
    height: 54px;
    background: rgba(37, 137, 235, 1);
    border-radius: 4px 4px 0 0;
}

.general-para-icon {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: url('/page/pc/images/superSearch/general-para-icon.png') 0 0 no-repeat;
    background-size: 20px 20px;
    margin: 18px 5px 16px 30px;
    float: left;
}

.general-para-title {
    display: inline-block;
    float: left;
    font-size: 24px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin: 10px 0;
}

.general-para-body {
    width: 1200px;
    height: 516px;
    background: rgba(255, 255, 255, 1);
    border-radius: 0 0 4px 4px;
    display: inline-block;
}

.general-para-body-left {
    width: 515px;
    float: left;
    height: 516px;
    padding: 37px 92px 20px 30px;
}

.general-para-form {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.general-para-body-left .general-para-input {
    margin-bottom: 25px;
    width: 378px;
    height: 46px;
}

.general-para-combo-select .input-group-span {
    border-top: 1px solid rgba(204, 204, 204, 1);
    border-bottom: 1px solid rgba(204, 204, 204, 1);
    border-left: 1px solid rgba(204, 204, 204, 1);
    border-radius: 4px 0 0 4px;
    width: 102px;
    text-align: center;
    line-height: 44px;
}

.general-para-radio-group {
    height: 30px;
}

.radio-group-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin: 0;
    padding: 0 0;
    width: 102px;
    text-align: center;
    line-height: 30px;
    float: left;
}

.general-para-radio-group .radio-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin-right: 20px;
    padding: 0 0;
    text-align: center;
    line-height: 30px;
    float: left;
}

.general-para-radio-group input {
    margin: 0;
    line-height: 30px;
}

.general-para-body-right {
    width: 685px;
    float: left;
    height: 516px;
    padding: 37px 0 37px 30px;
}

.general-para-body-right .general-para-input {
    margin-bottom: 22px;
    width: 640px;
    height: 46px;
}

.general-para-input-group {
    height: 46px;
}

.general-para-input-group .input-group-span {
    width: 184px;
}

.general-para-input-group input {
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.general-para-input-group input:focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1) !important;
    border: 1px solid rgba(177, 216, 255, 1) !important;
}

.general-para-input-group .radio-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin-right: 20px;
    padding: 0 0;
    text-align: center;
    line-height: 46px;
    float: left;
}

.more-para-banner {
    width: 1200px;
    height: 54px;
    background: rgba(214, 235, 255, 1);
    border-radius: 4px;
    margin: 20px 0 0;
    text-align: center;
}

.more-para-btn {
    display: block;
    width: 220px;
    margin: 0 auto;
    height: 54px;
}

.more-para-banner .icon {
    display: inline-block;
    height: 20px;
    width: 20px;
    background: url("/page/pc/images/superSearch/more-para-icon.png") no-repeat center;
    background-size: 20px 20px;
    margin: 18px 5px 16px;
    float: left;
}

.more-para-banner .text {
    display: inline-block;
    font-size: 24px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(51, 51, 51, 1);
    line-height: 54px;
    float: left;
}

.more-para-banner .arrow {
    display: inline-block;
    height: 25px;
    width: 25px;
    background: url("/page/pc/images/superSearch/more-para-btn.png") no-repeat center;
    background-size: 27px 16px;
    margin: 15px 5px 14px;
    float: left;
}

.more-para-left-area {
    width: 512px;
    height: 1247px;
    float: left;
    margin: 20px 22px 0 0;
}

.more-para-right-area {
    width: 665px;
    height: 1247px;
    float: left;
    margin-top: 20px;
}

.more-para-bottom-area {
    width: 100%;
    height: 230px;
    margin-top: 25px;
    float: left;
}

.flame-rating-area {
    width: 512px;
    height: 508px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #eeeeee;
    margin-bottom: 25px;
    padding: 30px 40px;
}

.flame-rating-area ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flame-rating-area li {
    margin-bottom: 17px;
    width: 432px;
    height: 40px;
}

.flame-rating-select {
    width: 432px;
    height: 40px;
}

.flame-rating-select div {
    display: block;
    height: 20px;
    width: 432px;
}

.flame-rating-select-title {
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
    line-height: 20px;
    margin: 0 22px 0 6px;
    display: inline-block;
    float: left;
}

.flame-rating-select-icon {
    display: inline-block;
    height: 16px;
    width: 16px;
    margin: 3px 0;
    border: 1px solid #cccccc;
    border-radius: 100%;
    padding: 1px;
    float: left;
    position: relative;
}

.flame-rating-select-icon:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    border: 3px solid #cccccc;
    border-radius: 100%;
    width: 5px;
    height: 5px;
    background: rgba(204, 204, 204, 1);
}

.flame-rating-selected {
    border-color: #2589eb;
    background: #2589eb;
}

.flame-rating-selected:after {
    border: 3px solid #FFF;
}

.flame-rating-select-line {
    width: 42px;
    height: 2px;
    border: 1px solid #cccccc;
    display: inline-block;
    margin: 9px 0 8px;
    float: left;
}

.flame-rating-select .flame-rating-text-container {
    padding-left: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 22px;
    width: 395px;
}

.flame-rating-select-text {
    font-size: 12px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(153, 153, 153, 1);
    line-height: 20px;
    display: inline-block;
}

.flame-rating-input {
    height: 40px;
    width: 432px;
}

.flame-rating-input .flame-rating-label {
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(153, 153, 153, 1);
    line-height: 44px;
    text-align: right;
    display: inline-block;
    padding: 0 10px;
    width: 100px;
    float: left;
}

.flame-rating-input input {
    color: rgba(74, 74, 74, 1);
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.flame-rating-input input:disabled {
    background: #f9f9f9;
}

.flame-rating-input input:focus {
    box-shadow: 0 0 5px 0 rgba(177, 216, 255, 1);
    border: 1px solid rgba(177, 216, 255, 1);
}

.flame-rating-input input.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.flame-rating-input .flame-rating-unit {
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(74, 74, 74, 1);
    line-height: 40px;
    margin: 0 15px;
}

.electrical-area {
    width: 512px;
    height: 714px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #eeeeee;
    padding: 30px 40px;
}

.electrical-input-area {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.electrical-input-area li {
    margin-bottom: 15px;
    width: 432px;
    height: 46px;
}

.electrical-input-group {
    height: 46px;
}

.electrical-input-group .input-group-span {
    width: 100px;
}

.electrical-input-group input {
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.electrical-input-group input:focus {
    border: 1px solid rgba(37, 137, 235, 1);
}

.electrical-btn-area {
    width: 460px;
    margin-top: 30px;
}

.electrical-item {
    height: 90px;
    width: 100%;
}

.electrical-item span {
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
    display: block;
    height: 30px;
}

.electrical-item ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    height: 40px;
}

.electrical-item li {
    padding: 3px 0;
    float: left;
    margin-right: 9px;
}

.electrical-item button {
    width: 67px;
    height: 34px;
    background: rgba(255, 255, 255, 1);
    border-radius: 4px;
    border: 1px solid rgba(204, 204, 204, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(102, 102, 102, 1);
}

.electrical-btn-selected {
    color: rgba(255, 255, 255, 1) !important;
    background: rgba(37, 137, 235, 1) !important;
    border: 1px solid rgba(37, 137, 235, 1) !important;
}

.mechanical-area {
    width: 665px;
    height: 880px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #eeeeee;
    padding: 30px 0 30px 40px;
    margin-bottom: 25px;
}

.mechanical-area ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mechanical-area li {
    margin-left: 15px;
    margin-bottom: 25px;
    width: 615px;
    height: 46px;
}

.mechanical-input-group {
    height: 46px;
}

.mechanical-input-group .input-group-span {
    width: 140px;
}

.mechanical-input-group input {
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.mechanical-input-group .radio-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin-right: 20px;
    padding: 0 0;
    text-align: center;
    line-height: 46px;
    float: left;
}

.optical-area {
    width: 665px;
    height: 342px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #eeeeee;
    padding: 30px 40px;
}

.optical-input-group {
    height: 46px;
}

.optical-input-group input {
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.optical-input-group .input-group-span {
    width: 155px;
}

.optical-area ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.optical-area li {
    margin-bottom: 25px;
    width: 100%;
    height: 46px;
}

.thermal-area {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 8px 0 #eeeeee;
    padding: 30px 40px;
}

.thermal-area ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.thermal-area li {
    margin-bottom: 34px;
    width: 50%;
    height: 46px;
    float: left;
}

.thermal-area .radio-span {
    color: rgba(74, 74, 74, 1);
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    display: inline-block;
    margin-right: 10px;
    padding: 0 0;
    text-align: center;
    line-height: 46px;
    float: left;
}

.thermal-input-group .input-group-span {
    width: 144px;
}

.thermal-input-group input {
    width: 90px;
    height: 36px;
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    margin: 4px 10px;
    padding: 0 9px;
}

.search-result-tips {
    display: none;
    margin: 30px 0 15px;
    padding: 0 10px;
}

.search-result-tips span {
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: #333;
    line-height: 36px;
}

.search-result-tips a {
    font-family: Cambria, Arial, sans-serif, serif;
    color: #2589eb;
}

.search-result-area {
    display: none;
}

.result-table {
    box-shadow: 0 0 4px 0 rgba(204, 204, 204, 1);
}

.result-table tr {
    color: #333;
}

.result-table tr.guass-blur  {
    filter: blur(5px);
}

.result-table tr th {
    text-align: center;
    border: 1px solid #ebebeb;
    min-width: 55px;
}

.result-table tr td {
    padding: 8px !important;
    background-color: #fff;
    border: 1px solid #ebebeb;
    display: table-cell !important;
    vertical-align: middle !important;
}

.result-table tr:hover td {
    border-top: 1px solid #2589EB;
    border-bottom: 1px solid #2589EB;
}

.result-table tr td a:hover {
    text-decoration: none;
}

.cert-icon {
    display: table-cell;
    vertical-align: middle;
}

.cert-area {
    max-width: 65px;
    width: fit-content;
    text-align: left;
    margin: auto;
    max-height: 55px;
    min-height: 25px;
}

.cert-area .cert-link {
    display: inline-block;
    margin: 0 1px;
}

.cert-area .cert-span {
    width: 26px;
    height: 25px;
    margin: 1px 1px 0;
    display: inline-block;
    cursor: pointer;
}

.cert-area .cert-more {
    display: inline-block;
    margin: -10px 6px 0;
}

.resultless-tips, .apply-succeed-tips {
    height: 270px;
    width: 800px;
    margin: 0 auto;
}

.resultless-tips img, .apply-succeed-tips img {
    display: inline-block;
    margin: 72px 0 71px;
    float: left;
}

.resultless-tips span, .apply-succeed-tips span {
    display: inline-block;
    max-width: 600px;
    float: right;
    font-size: 18px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(153, 153, 153, 1);
    line-height: 30px;
    margin: 105px 0;
}

.detail-requirement {
    height: 210px;
    width: 1200px;
    margin-bottom: 30px;
}

.contact-info {
    height: 130px;
    width: 1200px;
}

.contact-input-group {
    margin-left: 40px;
}

.contact-input-group .input-combo input {
    width: 180px;
}

.submit-btn-area {
    width: 1200px;
    text-align: center;
    margin-bottom: 40px;
}

.custom-made-btn {
    width: 250px;
    height: 35px;
    background: rgba(37, 137, 235, 1);
    border-radius: 4px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    border: none;
}

.succeed-btn-area {
    width: 1200px;
    text-align: center;
    margin-top: 2px;
    margin-bottom: 40px;
}

.succeed-btn-area .return-btn {
    width: 250px;
    height: 35px;
    background: rgba(216, 216, 216, 1);
    border-radius: 4px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(106, 106, 106, 1);
    border: none;
    margin: 0 90px;
}

.succeed-btn-area .check-btn {
    width: 250px;
    height: 35px;
    background: rgba(37, 137, 235, 1);
    border-radius: 4px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    border: none;
    margin: 0 90px;
}

.resultless-area .more-para-title {
    margin-left: 12px;
}

.fixed-search-area {
    position: fixed;
    min-width: 1200px;
    width: 100%;
    height: 95px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.05);
    bottom: 0;
    text-align: center;
    padding: 30px 0 30px;
    z-index: 2;
}

.static-search-area {
    /*height: 35px !important;*/
    /*padding: 0 !important;*/
    position: static !important;
    box-shadow: none !important;
}

.fixed-search-area .fixed-reset-btn {
    width: 250px;
    height: 35px;
    background: rgba(216, 216, 216, 1);
    border-radius: 4px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(106, 106, 106, 1);
    margin: 0 150px;
    border: none;
}

.fixed-search-area .fixed-search-btn {
    width: 250px;
    height: 35px;
    background: rgba(37, 137, 235, 1);
    border-radius: 4px;
    font-size: 14px;
    font-family: Cambria, Arial, sans-serif, serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 1);
    margin: 0 150px;
    border: none;
}

.page {
    position: relative;
    display: none;
}

.page.display {
    position: relative;
    display: block;
}

.page #page {
    margin-right: 10px;
}

.page .page-info {
    position: absolute;
    top: 30px;
}

.permission-masking-container {
    width: 1200px;
    min-height: 180px;
    position: absolute;
    display: none;
    z-index: 1;
    padding-top: 37px;
}

.permission-masking-container.display {
    display: block;
}

.permission-masking {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    background: rgba(255, 255, 255, 0.8);
}

.permission-masking span {
    font-size: 18px;
    font-family: PingFangSC, serif;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
    line-height: 25px;
    margin: 12px 0;
}

.permission-masking button {
    width: 120px;
    height: 34px;
    background: linear-gradient(140deg, rgba(37, 137, 235, 1) 0%, rgba(50, 93, 236, 1) 100%);
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border: none;
    margin: 12px 0;
}

.permission-masking button:hover {
    background: linear-gradient(-90deg, #25aceb 0%, #327bec 100%);
}

/*超级搜索上方广告位*/
.cjsxAdvert-wrapper{
    width: 1200px;
    height: 80px;
    margin: 20px auto 0 auto;
    /*	background: #fff;*/
}
.cjsxAdvert-chart {
    display: flex;
    height: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.cjsxAdvert-chart-body{
    height: 100%;
    width: 360px;
}
.cjsxAdvert-chart-body-add{
    background: rgb(36,136,235);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items:center;
}
.cjsxAdvert-chart-body-show{
    height: 100%;
    width: 360px;
}
