@charset "utf-8";

/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: "iconfont";
    src: url('../fonts/iconfont.woff2') format('woff2'),
        url('../fonts/iconfont.woff?t=1655196422032') format('woff'),
        url('../fonts/iconfont.ttf?t=1655196422032') format('truetype');
}

.iconfont {
    font-family: "iconfont" !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: DINProM;
    src: url('../font/DINPro-Medium.eot');
    /* IE9 */
    src: url('../font/DINPro-Medium.eot?#iefix') format('embedded-opentype'),
        /* IE6-IE8 */
        url('../font/DINPro-Medium.woff') format('woff'),
        /* chrome、firefox */
        url('../font/DINPro-Medium.ttf') format('truetype'),
        /* chrome、firefox、opera、Safari、Android、IOS */
        url('../font/DINPro-Medium.svg') format('svg');
    /* ios 4.1 */
}



* {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    box-sizing: border-box;
    outline: none;
    letter-spacing: 1px;
}

body,
th,
td,
button,
input,
select,
textarea {
    /* font: 12px/1.6 "Microsoft YaHei", Arial, Tahoma, Helvetica, sans-serif !important; */
    font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    resize: none;
}

html,
body {
    position: static;
    width: 100%;
    min-width: 1240px;
    background: #F2F4F7 !important;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

ul,
ol,
li,
dl {
    list-style-type: none;
}


fieldset,
img {
    border: 0;
}

button,
h1,
h2,
h3,
h4,
h5,
h6,
input,
select,
textarea {
    font-size: 100%;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #333;
}

a:hover,
a:active,
a:focus {
    text-decoration: none;
    outline: none;
}

img {
    border: 0;
    vertical-align: middle;
}

i {
    display: inline-block;
    font-style: normal;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: "";
}

.clearfix:after {
    clear: both;
}

.clear {
    zoom: 1;
}

.clear:before,
.clear:after {
    display: table;
    line-height: 0;
    content: "";
}

.clear:after {
    clear: both;
}

i,
s,
b,
em {
    font-weight: normal;
    font-style: normal;
}

textarea.resize {
    resize: both !important;
}

input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #cdcdcd;
    font-size: 14px;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #cdcdcd;
    font-size: 14px;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #cdcdcd;
    font-size: 14px;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #cdcdcd;
    font-size: 14px;
}

input {
    border-radius: 0;
}

input,
button,
textarea,
select,
optgroup,
option {
    font-family: inherit;
    font-size: inherit;
    font-style: inherit;
    font-weight: inherit;
}

input,
button {
    overflow: visible;
    vertical-align: middle;
    outline: none;
    border: 0;
}

button,
input[type="button"],
input[type="submit"] {
    line-height: normal !important;
    cursor: pointer;
}

textarea,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="text"] {
    -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type=tel],
input[type=text] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input[type=button],
input[type=reset],
input[type=submit] {
    -webkit-appearance: none;
    border-radius: 0;
}


/* 去掉number输入框右边点击上下的小三角 */

input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

input[type="password"]+.custom-password-button {
    display: none;
}

/*placeholder 文字颜色设置*/

input::-moz-placeholder,
input::-ms-input-placeholder,
input::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea::-ms-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #999999;
}


/* Chrome浏览器会在输入控制聚集的时候添加一个蓝色的outline*/

input:focus,
textarea:focus,
select:focus {
    outline: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}

input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset !important;
}

/* 去掉select的默认样式 */

select {
    -webkit-appearance: none;
}

.flex {
    display: flex;
}

.flex_center {
    display: flex;
    align-items: center;
}

.flex_start {
    display: flex;
    align-items: flex-start;
}

/* 如果有输入内容IE会给输入框右边加一个大大的X */

input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}


/*透明度*/

.transparent {
    filter: alpha(opacity=50);
    -khtml-opacity: 0.5;
    -moz-opacity: 0.5;
    opacity: 0.5;
}

.ellipsis,
.ell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bbox {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.auto {
    margin: 0 auto;
}

.w800 {
    width: 800px !important;
}

.w12 {
    width: 1200px !important;
    margin: 0 auto;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.height_auto {
    height: auto !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}



.line20 {
    line-height: 20px !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.ml20 {
    margin-left: 20px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.margin0 {
    margin: 0 !important;
}

.input200 {
    width: 200px !important;
}

.select200 {
    width: 200px !important;
}

.select240 {
    width: 240px !important;
}

.select260 {
    width: 260px !important;
}

.radio1000 {
    width: 1000px !important;
}

.radio1050 {
    width: 1050px !important;
}

.padding20 {
    padding: 20px !important;
}


/* 单选样式 */

.jm-radio {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    vertical-align: sub;
    outline: none;
    cursor: pointer;
}

.jm-radio-wrapper:hover .jm-radio,
.jm-radio:hover .jm-radio-inner,
.jm-radio-input:focus+.jm-radio-inner {
    border-color: #1890ff;
}

.jm-radio-input:focus+.jm-radio-inner {
    -webkit-box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(24, 144, 255, 0.08);
}

.jm-radio-checked::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid #1890ff;
    border-radius: 50%;
    visibility: hidden;
    -webkit-animation: antRadioEffect 0.36s ease-in-out;
    animation: antRadioEffect 0.36s ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    content: '';
}

.jm-radio:hover::after,
.jm-radio-wrapper:hover .jm-radio::after {
    visibility: visible;
}

.jm-radio-inner {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-color: #d9d9d9;
    border-style: solid;
    border-width: 1px;
    border-radius: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.jm-radio-inner::after {
    position: absolute;
    top: 3px;
    left: 3px;
    display: table;
    width: 8px;
    height: 8px;
    background-color: #1890ff;
    border-top: 0;
    border-left: 0;
    border-radius: 8px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    content: ' ';
}

.jm-radio-input {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
}

.jm-radio-checked .jm-radio-inner {
    border-color: #1890ff;
}

.jm-radio-checked .jm-radio-inner::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
}

.jm-radio-disabled .jm-radio-inner {
    background-color: #f5f5f5;
    border-color: #d9d9d9 !important;
    cursor: not-allowed;
}

.jm-radio-disabled .jm-radio-inner::after {
    background-color: rgba(0, 0, 0, 0.2);
}

.jm-radio-disabled .jm-radio-input {
    cursor: not-allowed;
}

.jm-radio-disabled+span {
    color: rgba(0, 0, 0, 0.25);
    cursor: not-allowed;
}

span.jm-radio+* {
    padding-right: 15px;
    padding-left: 6px;
    line-height: 18px;
}


/* 复选框样式 */

.jm-checkbox-wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 14px;
    font-variant: tabular-nums;
    line-height: 1.5;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    display: inline-block;
    line-height: unset;
    cursor: pointer;
}

.jm-checkbox {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0.65);
    font-size: 12px;
    font-variant: tabular-nums;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    position: relative;
    top: -0.09em;
    display: inline-block;
    line-height: 1;
    white-space: nowrap;
    vertical-align: middle;
    outline: none;
    cursor: pointer;
}

.jm-checkbox-input {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 100% !important;
    height: 100% !important;
    cursor: pointer;
    opacity: 0;
}

.jm-checkbox-checked::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    visibility: hidden;
    -webkit-animation: antCheckboxEffect 0.36s ease-in-out;
    animation: antCheckboxEffect 0.36s ease-in-out;
    -webkit-animation-fill-mode: backwards;
    animation-fill-mode: backwards;
    content: '';
}

.jm-checkbox-inner {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 2px;
    border-collapse: separate;
}

.jm-checkbox-wrapper:hover .jm-checkbox-inner,
.jm-checkbox:hover .jm-checkbox-inner,
.jm-checkbox-input:focus+.jm-checkbox-inner {
    border-color: #00B38A;
}

@-webkit-keyframes antCheckboxEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes antCheckboxEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0;
    }
}

.jm-checkbox-wrapper:hover .jm-checkbox-inner,
.jm-checkbox:hover .jm-checkbox-inner,
.jm-checkbox-input:focus+.jm-checkbox-inner {
    border-color: #00B38A;
}

.jm-checkbox:hover::after,
.jm-checkbox-wrapper:hover .jm-checkbox::after {
    visibility: visible;
}

.jm-checkbox-inner::after {
    position: absolute;
    top: 44%;
    left: 22%;
    display: table;
    width: 5px;
    height: 9px;
    border: 1px solid #fff;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
    -ms-transform: rotate(45deg) scale(0) translate(-50%, -50%);
    transform: rotate(45deg) scale(0) translate(-50%, -50%);
    opacity: 0;
    content: ' ';
}

.jm-checkbox-checked .jm-checkbox-inner::after {
    position: absolute;
    display: table;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
    -ms-transform: rotate(45deg) scale(1) translate(-50%, -50%);
    transform: rotate(45deg) scale(1) translate(-50%, -50%);
    opacity: 1;
    content: ' ';
    width: 4px;
    height: 8px;
}

.jm-checkbox-checked .jm-checkbox-inner {
    background-color: #00B38A;
    border-color: #00B38A;
}


/* 复选框样式 */

input[type=checkbox] {
    cursor: pointer;
    position: relative;
    width: 14px;
    height: 14px;
}

input[type=checkbox]::after {
    position: absolute;
    top: 0;
    background-color: #fff;
    color: #fff;
    width: 14px;
    height: 14px;
    display: inline-block;
    visibility: visible;
    padding-left: 0px;
    text-align: center;
    content: ' ';
    border-radius: 2px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

input[type=checkbox]:checked::after {
    content: "";
    background-color: #31D2AC;
    border-color: #31D2AC;
    background-color: #31D2AC;
}

input[type=checkbox]:checked::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 1;
}

.fabu_table_lis input[type=checkbox]::after {
    position: absolute;
    top: 0;
    background-color: #fff;
    color: #fff;
    width: 16px;
    height: 16px;
    display: inline-block;
    visibility: visible;
    padding-left: 0px;
    text-align: center;
    content: ' ';
    border-radius: 2px;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.fabu_table_lis input[type=checkbox]:checked::after {
    content: "";
    background-color: #00B38A;
    border-color: #00B38A;
    background-color: #00B38A;
}

.fabu_table_lis input[type=checkbox]:checked::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 3px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    z-index: 1;
}

.border_red {
    border: 1px solid #FF7F80 !important;
}

/* 滚动条样式 */

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: rgba(204, 204, 204, 1);
    border-radius: 5px;
}

.layui-layer-btn a {
    height: auto !important;
    line-height: 30px;
}

/* reset end */













/* 公共头部 */
.header_wrap {
    position: relative;
    z-index: 900px;
}

.header_top {
    width: 100%;
    height: 50px;
    background: #fff;
}

.header_top.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 19999999;
}

.header_zw {
    display: none;
    width: 100%;
    height: 50px;
}

.nav_box .nav_item {
    float: left;
    position: relative;
}

.nav_box .nav_item.on .nav_a {
    color: #00B38A;
    font-weight: 600;
}

.nav_box .nav_item .nav_a {
    display: block;
    line-height: 50px;
    padding: 0 20px;
    font-size: 14px;
    color: #181C29;
    transition: all .3s;
}

.nav_box .nav_item:hover .nav_a {
    color: #00B38A;
}

.nav_box .nav_item:nth-child(1) .nav_a {
    padding-left: 0;
}


.nav_box .nav_item .nav_a img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -2px;
}

.nav_item .nav_child {
    position: absolute;
    left: 0;
    top: 120px;
    padding-top: 10px;
    display: none;
    opacity: 0;
    z-index: 9;
}

.nav_item .nav_child .box {

    width: 170px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #D5DBE8;
    padding: 10px;
}

.nav_item .nav_child_item {
    display: block;
    width: 100%;
    line-height: 38px;
    font-size: 14px;
    color: #333333;
    padding-left: 10px;
}

.nav_item .nav_child_item i {
    margin-right: 8px;
    font-size: 16px;
    color: rgba(51, 51, 51, .4);
    vertical-align: -2px;
}

.nav_item.on .nav_a i,
.nav_item.on .nav_message .jt {
    transition: all .3s;
    transform: rotate(-180deg);
}

.nav_item .nav_child_item:hover {
    background: rgba(0, 179, 138, 0.05);
    color: rgba(0, 179, 138, 1);
}

.nav_item .nav_child_item:hover i {
    color: rgba(0, 179, 138, 1);
}

.header_top_right .nav_item {
    position: relative;
}

.nav_item .appdown_icon {
    position: absolute;
    right: -22px;
    top: 0px;
    width: 44px;
    height: 18px;
    background: #FF5F00;
    border-radius: 8px 8px 8px 0px;
    text-align: center;
    line-height: 18px;
    font-size: 12px;
    color: #fff;
}















.nav_message_box .nwes_num {
    background: #FF5F00;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 12px;
    padding: 1px 4px;
    vertical-align: 2px;
    margin-left: 5px;
}

.header_top_right .nav_message_item {
    position: relative;
    display: block;
    line-height: 50px;
    font-size: 14px;
    color: #181C29;
    transition: all .3s;
    padding: 0 30px 0 0;
}

.header_top_right .nav_message_item i {
    font-size: 16px;
    color: #FF5F00;
    vertical-align: -1px;
    font-weight: 600;
}

.header_top_right .nav_message_item span {
    position: absolute;
    background: #FF5F00;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 12px;
    padding: 2px 5px;
    top: 7px;
    right: 8px;
}

.header_top_right .nav_login_box {
    position: relative;
    height: 50px;
}

.header_top_right .nav_login_box #login {
    display: block;
    width: 90px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #00B38A;
    font-size: 14px;
    color: #00B38A;
    margin-top: 9px;
    transition: all .3s;
}

.header_top_right #login:hover {
    background: rgba(0, 179, 138, 0.1);
}

.vip_state_item {
    position: relative;
    float: left;
    height: 50px;
    padding: 0 12px;
}

.vip_state_item .vip_state_a {
    display: block;
    padding: 0 12px;
    height: 28px;
    line-height: 28px;
    border-radius: 14px;
    margin-top: 11px;
}

.vip_state_item.zhou .vip_state_a {
    background: linear-gradient(129deg, #DCFFF7 0%, #D4FFF5 100%);
}

.vip_state_item.ban .vip_state_a {
    background: linear-gradient(134deg, #FFF9E7 0%, #FFD0B3 100%);
}

.vip_state_item.nian .vip_state_a {
    background: linear-gradient(129deg, #4D6EAC 0%, #100050 100%);
}

.vip_state_item.zhong .vip_state_a {
    background: linear-gradient(90deg, #717171 0%, #160F1B 67%, #3C393E 100%);
}

.vip_state_item.wkt .vip_state_a {
    background: #F7F9FD;
    border: 1px solid #D5DBE8;
    line-height: 26px;
}

.vip_state_item .sp1 {
    font-size: 12px;
    font-weight: 600;
}

.vip_state_item .sp2 {
    font-size: 12px;
}

.vip_state_item.zhou .sp1 {
    color: rgba(0, 179, 138, 1);
}

.vip_state_item.zhou .sp2 {
    color: rgba(0, 179, 138, .7);
}

.vip_state_item.ban .sp1 {
    color: rgba(255, 95, 0, 1);
}

.vip_state_item.ban .sp2 {
    color: rgba(255, 95, 0, .7);
}

.vip_state_item.nian .sp1 {
    color: rgba(255, 255, 255, 1)
}

.vip_state_item.nian .sp2 {
    color: rgba(255, 255, 255, .7)
}

.vip_state_item.zhong .sp1 {
    color: #FFEEBE;
}

.vip_state_item.zhong .sp2 {
    color: rgba(255, 238, 190, .7);
}

.vip_state_item.wkt .sp1 {
    color: rgba(99, 105, 119, 1)
}

.vip_state_item i {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../img/img_new/nav_vip.png);
    background-size: 90px 18px;
    vertical-align: -3px;
}

.vip_state_item.zhou i {
    background-position: -18px 0;
}

.vip_state_item.ban i {
    background-position: -36px 0;
}

.vip_state_item.nian i {
    background-position: -54px 0;
}

.vip_state_item.wkt i {
    background-position: 0 0;
}

.vip_state_item.zhong i {
    background-position: -72px 0;
}

.user_box {
    position: relative;
    float: left;
    height: 50px;
}

.user_box .user_item {
    display: block;
    margin-top: 11px;
}

.user_box img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.nav_login_child {
    position: absolute;
    top: 120px;
    right: -20px;
    padding-top: 10px;
    z-index: 9;
    display: none;
    opacity: 0;
}

.nav_login_child .box {
    width: 220px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #D5DBE8;
    padding: 20px 16px;
}

.nav_login_child h2 {
    font-size: 14px;
    font-weight: 600;
    color: #181C29;
    line-height: 22px;
    margin-bottom: 16px;
}

.nav_login_child p {
    position: relative;
    font-size: 12px;
    color: #333333;
    line-height: 22px;
    margin-bottom: 14px;
    padding-left: 30px;
}

.nav_login_child p:last-of-type {
    margin-bottom: 0;
}

.nav_login_child p::before {
    position: absolute;
    content: '';
    width: 22px;
    height: 22px;
    background: url(../img/img_new/wdl_icon.png);
    background-size: 88px 22px;
    left: 0;
    top: 0;
}

.nav_login_child p:nth-of-type(1)::before {
    background-position: 0 0;
}

.nav_login_child p:nth-of-type(2)::before {
    background-position: -22px 0;
}

.nav_login_child p:nth-of-type(3)::before {
    background-position: -44px 0;
}

.nav_login_child p:nth-of-type(4)::before {
    background-position: -66px 0;
}

.nav_user_child {
    position: absolute;
    top: 120px;
    right: -20px;
    padding-top: 10px;
    z-index: 9;
    display: none;
    opacity: 0;
}

.nav_user_child .box {
    width: 300px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #D5DBE8;
}

.nav_user_child .top {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.nav_user_child .top img {
    float: left;
    width: 44px;
    height: 44px;
}

.nav_user_child .top .info {
    float: left;
    padding-left: 14px;
    padding-top: 4px;
}

.nav_user_child .top .info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #181C29;
    line-height: 16px;
}

.nav_user_child .top .info p {
    font-size: 12px;
    color: #828897;
    line-height: 12px;
    margin-top: 12px;
}

.nav_user_child .top .hy {
    display: block;
    width: 100%;
    height: 24px;
    background: rgba(255, 95, 0, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 95, 0, 0.2);
    font-size: 12px;
    text-align: center;
    color: #FF5F00;
    line-height: 22px;
    margin-top: 20px;
}

.nav_user_child .list {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.nav_user_child .list .item {
    position: relative;
    width: 100%;
    height: 38px;
    border-radius: 2px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    transition: all .3s;
}

.nav_user_child .list .item .icon {
    font-size: 22px;
    color: #00B38A;
    margin-right: 10px;
}

.nav_user_child .list .item .r {
    position: absolute;
    right: 8px;
    color: rgba(0, 0, 0, 0.4);
}

.nav_user_child .list .item span {
    font-size: 14px;
    color: #333333;
    margin-right: 6px;
}

.nav_user_child .list .item:hover {
    background: rgba(0, 179, 138, 0.05);
}

.nav_user_child .list em {
    font-size: 12px;
}

.nav_user_child .list em.wrz {
    color: #FF5F00;
}

.nav_user_child .list em.yrz {
    color: #00B38A;
}

.nav_user_child .list em.fbsl {
    font-size: 14px;
    color: rgba(99, 105, 119, 1);
}

.hd_tip {
    line-height: 22px;
    background: rgba(255, 95, 0, .1);
    border-radius: 11px;
    padding: 0 8px;
    color: #FF5F00;
}

.ktvip_child {
    position: absolute;
    top: 120px;
    right: -20px;
    padding-top: 10px;
    z-index: 9;
    display: none;
    opacity: 0;
}

.ktvip_child .box {
    width: 300px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 1px solid #D5DBE8;
    padding: 8px 20px 16px 20px;
}

.ktvip_child .top {
    position: relative;
    line-height: 52px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.ktvip_child .top::before {
    position: absolute;
    content: '';
    width: 60px;
    height: 2px;
    background: #00B38A;
    left: 0;
    bottom: -1px;
}

.ktvip_child .top h2 {
    float: left;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.ktvip_child .top .xq {
    float: right;
    width: 66px;
    line-height: 26px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 12px;
    color: #333333;
    margin-top: 12px;
    transition: all .3s;
}

.ktvip_child .top .xq:hover {
    border: 1px solid #00B38A;
    background: rgba(0, 179, 138, 0.1);
    color: #00B38A;
}

.ktvip_child .list {
    padding-top: 20px;
}

.ktvip_child .list p {
    position: relative;
    font-size: 14px;
    color: #333333;
    line-height: 30px;
    margin-bottom: 14px;
    padding-left: 38px;
}

.ktvip_child p::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../img/img_new/vip_wkt_icon.png);
    background-size: 180px 30px;
    left: 0;
    top: 0;
}

.ktvip_child.hd p::before {
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    background: url(../img/img_new/vip_wkt_icon2.png);
    background-size: 180px 30px;
    left: 0;
    top: 0;
}

.ktvip_child p:nth-of-type(1)::before {
    background-position: 0px 0;
}

.ktvip_child p:nth-of-type(2)::before {
    background-position: -30px 0;
}

.ktvip_child p:nth-of-type(3)::before {
    background-position: -60px 0;
}

.ktvip_child p:nth-of-type(4)::before {
    background-position: -90px 0;
}

.ktvip_child p:nth-of-type(5)::before {
    background-position: -120px 0;
}

.ktvip_child p:nth-of-type(6)::before {
    background-position: -150px 0;
}

.ktvip_child.hd {
    margin-top: -20px;
}


.ktvip_hd h2 {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
}

.ktvip_hd .btn {
    display: block;
    width: 210px;
    height: 44px;
    background: linear-gradient(316deg, #FE0E07 0%, #FE8003 100%);
    box-shadow: 0px 3px 20px 1px rgba(210, 0, 0, 0.1);
    border-radius: 4px;
    opacity: 0.94;
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 auto;
    text-align: center;
    line-height: 44px;
    transition: all .3s;
}

.ktvip_hd .btn:hover {
    opacity: .8;
}

.hzdt_contant {
    position: absolute;
    left: 0;
    top: 120px;
    padding-top: 10px;
    display: none;
    opacity: 0;
    z-index: 9;
}

.hzdt_contant .box {
    position: relative;
    width: 770px;
    height: 362px;
    background: #FFFFFF;
    box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid #D5DBE8;
    overflow: hidden;
}

.hzdt_left {
    width: 170px;
    height: 362px;
    background: #FFFFFF;
    border-right: 1px solid #F2F4F7;
    padding: 10px;
}

.hzdt_left li {
    position: relative;
    width: 100%;
    height: 38px;
    line-height: 38px;
    border-radius: 4px;
    padding-left: 10px;
    color: #333;
    cursor: pointer;
}

.hzdt_left li .icon {
    color: rgba(51, 51, 51, .4);
    margin-right: 8px;
    font-size: 16px;
    vertical-align: -1px;
}

.hzdt_left li .r {
    position: absolute;
    right: 10px;
    top: 0;
    color: rgba(51, 51, 51, .4);
    font-size: 16px;
}

/* .hzdt_left li:hover {
    color: #00B38A;
    background: rgba(0, 179, 138, .05);
}

.hzdt_left li:hover .icon {
    color: #00B38A;
}

.hzdt_left li:hover .r {
    color: rgba(0, 179, 138, .4);
} */

.hzdt_left li.on {
    color: #00B38A;
    background: rgba(0, 179, 138, .05);
}

.hzdt_left li.on .icon {
    color: #00B38A;
}

.hzdt_left li.on .r {
    color: rgba(0, 179, 138, .4);
}

.drop_son {
    position: absolute;
    right: 0;
    top: 0;
    width: 598px;
    height: 362px;
    padding: 4px 20px 0 20px;
    display: none;
    background: #fff;
}

.drop_son .title {
    position: relative;
    line-height: 56px;
    border-bottom: 1px solid #F2F4F7;
}

.drop_son .title::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 2px;
    background: #00B38A;
    left: 0;
    bottom: -1px;
}

.drop_son .title h4 {
    float: left;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
}

.drop_son .title .xq {
    float: right;
    width: 66px;
    line-height: 26px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 12px;
    color: #333333;
    margin-top: 12px;
    transition: all .3s;
}

.drop_son .title .xq:hover {
    border: 1px solid #00B38A;
    background: rgba(0, 179, 138, 0.1);
    color: #00B38A;
}

.drop_son .drop_fl {
    width: 100%;
    height: 300px;
    overflow-y: auto;
}

.drop_son .drop_fl_item {
    padding-top: 20px;
    border-bottom: 1px solid #F2F4F7;
}

.drop_son .drop_fl_item:last-of-type {
    border-bottom: none;
}

.drop_son .drop_fl .label {
    float: left;
    font-size: 14px;
    font-weight: 600;
    color: #828897;
    line-height: 20px;
    width: 70px;
}

.drop_son .drop_fl .main {
    float: left;
    width: calc(100% - 70px);
}

.drop_son .drop_fl .main a {
    float: left;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    padding: 0 15px;
    margin-bottom: 20px;
    transition: all .3s;
}

.drop_son .drop_fl .main a:hover {
    color: #00B38A;
}

.header_main {
    width: 100%;
    padding: 20px 0;
    transition: all ease-in-out 0.02s;
}

.header_main.fixed {
    position: fixed;
    left: 0;
    background: #fff;
    padding: 5px 0 18px 0;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.07);
    z-index: 900;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0.8;
        top: 0;
    }

    to {
        opacity: 1;
        top: 50px;
    }
}

.header_main .logo {
    float: left;
    margin: 22px 55px 0 45px;
}

.header_main .logo img {
    width: 144px;
    height: 54px;
}

.seach_wrap {
    position: relative;
    width: 674px;
    height: 78px;
}

.seach_box {
    position: absolute;
    top: 24px;
    left: 0;
    width: 674px;
    height: 54px;
    background: #00B38A;
    border-radius: 8px;
    overflow: hidden;
    padding: 2px;
    z-index: 3;
}

.seach_box input {
    width: 520px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 6px;
    box-sizing: border-box;
    outline: none;
    padding-left: 16px;
    color: #333;
    font-size: 16px;
}

.seach_box .sub {
    position: absolute;
    right: 0;
    width: 150px;
    height: 50px;
    background: #00B38A;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 54px;
    text-align: center;
    border-radius: 8px;
}

.seach_box .sub i {
    font-size: 18px;
    margin-right: 9px;
}

.seach_fl {
    position: absolute;
    left: 0;
    top: 0;
    width: 218px;
    height: 34px;
    background: url(../img/img_new/seach_top.png) no-repeat center;
    background-size: cover;
    z-index: 1;
}


.seach_fl li {
    float: left;
    width: 68px;
    height: 34px;
    line-height: 26px;
    padding-left: 16px;
    color: #00B38A;
    z-index: 9;
    cursor: pointer;
    font-size: 12px;
}

.seach_fl .bg {
    position: absolute;
    top: 0;
    width: 82px;
    height: 34px;
    background: url(../img/img_new/seach_item_bg.png) no-repeat left top;
    background-size: cover;
    color: #fff;
    z-index: 1;
    line-height: 26px;
    padding-left: 16px;
    font-size: 12px;
}

.seach_hot {
    margin-top: 18px;
}

.seach_hot span {
    float: left;
    line-height: 24px;
    font-size: 14px;
    color: #636977;
    margin-right: 20px;
}

.seach_hot a {
    float: left;
    padding: 0 8px;
    line-height: 24px;
    background: #fff;
    font-size: 14px;
    color: #00B38A;
    margin-right: 14px;
    transition: all .3s;
    border-radius: 4px;
}

.seach_hot a:hover {
    background: #00B38A;
    color: #fff;
}

.header_main .mffb {
    width: 272px;
    height: 54px;
    background: #FFFFFF;
    border-radius: 8px;
    border: 1px solid #FF5F00;
    line-height: 52px;
    text-align: center;
    font-size: 16px;
    color: #FF5F00;
    margin-top: 24px;
    cursor: pointer;
    transition: all .3s;
}

.header_main .mffb i {
    margin-right: 10px;
}

.header_main .mffb:hover {
    background: #FFEFE5;
}

.fixed_seach {
    position: fixed;
    width: 100%;
    box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.07);
    top: 50px;
    right: 0;
    z-index: 8;
    background: #fff;
    padding: 20px 0 20px 0 !important;
    display: none;
    opacity: 0;
}

.fixed_seach .logo {
    margin: 0 55px 0 45px !important;
}

.fixed_seach .seach_wrap {
    height: auto !important;
}

.fixed_seach .seach_box {
    top: 0 !important;
}

.fixed_seach .mffb {
    margin-top: 0 !important;
}

.fixed_seach .seach_box input {
    padding-left: 150px;
}

.fixed_seach .seach_box {
    overflow: visible;
}

.seach_box .select {
    position: absolute;
    left: 0;
    top: 0;
    width: 118px;
    height: 100%;
    cursor: pointer;
}

.seach_box .select:after {
    position: absolute;
    content: '';
    width: 1px;
    height: 20px;
    background: #D5DBE8;
    top: 15px;
    right: 0;
}

.seach_box .select span {
    display: block;
    line-height: 50px;
    font-size: 16px;
    color: #181C29;
    padding-left: 16px;
}

.seach_box .select em {
    display: inline-block;
    width: 68px;
    line-height: 50px;
}


.seach_box .select ul {
    display: none;
    position: absolute;
    width: 118px;
    background: #fff;
    z-index: 10;
    top: 54px;
    left: 0;
    padding: 10px 0;
    border-radius: 4px;
    box-shadow: 0px 0px 12px 0px rgba(7, 17, 27, 0.1)
}

.seach_box .select li {
    text-align: center;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
    color: #333333;
    font-weight: normal;
    cursor: pointer;
    text-align: left;
    text-indent: 16px;
}

.seach_box .select li:hover {
    color: #00B38A;
    background: rgba(0, 179, 138, .1);
}

.seach_drop {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 520px;
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    opacity: 1;
    border: 1px solid #D5DBE8;
    padding: 10px 6px 10px 17px;
    z-index: 2;
}

.seach_drop ul {
    overflow-y: auto;
    max-height: 400px;
}

.seach_drop li {
    width: 100%;
    font-size: 14px;
    color: #181C29;
    line-height: 40px;
    padding-left: 8px;
    border-radius: 4px;
    cursor: pointer;
}

.seach_drop li span {
    color: #00B38A;
}

.seach_drop li:hover {
    background: rgba(0, 179, 138, 0.05);
}

.seach_drop li.active {
    background: rgba(0, 179, 138, 0.05);
}

.seach_drop ul::-webkit-scrollbar {
    width: 4px;
    height: 6px;
}

.seach_drop ul::-webkit-scrollbar-thumb {
    background: #00B38A;
    border-radius: 5px;
}









/* 首页、合作页右侧 */
.common_result_right {
    float: right;
    width: 284px;
}

.common_result_right .right_gg img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 4px;
}

.ruzhu_box {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #fff;
    padding: 0 16px;
    margin-bottom: 10px;
}

.hyp_title {
    position: relative;
    line-height: 48px;
    border-bottom: 1px solid #F2F4F7;
}

.hyp_title::before {
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    background: #00B38A;
    left: 0;
    bottom: 0;
}

.hyp_title h4 {
    float: left;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.hyp_title span {
    float: right;
    font-size: 12px;
    color: #636977;
    cursor: pointer;
}

.hyp_title span i {
    transition: all .3s;
    font-size: 16px;
    margin-right: 5px;
    vertical-align: -2px;
}

.hyp_title span:hover {
    color: #00B38A;
}

.ruzhu_box ul {
    padding-top: 16px;
    padding-bottom: 10px;
}

.ruzhu_box li {
    float: left;
    margin: 0 10px 10px 0;
}

.ruzhu_box li:nth-child(2n) {
    margin-right: 0;
}

.ruzhu_box a {
    display: block;
    width: 121px;
    height: 36px;
    line-height: 34px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #EAEDF3;
    padding-left: 10px;
    transition: all .3s;
}

.ruzhu_box li:hover a {
    border: 1px solid #00B38A;
}

.ruzhu_box a img {
    float: left;
    width: 18px;
    height: 18px;
    vertical-align: -4px;
    margin-right: 4px;
    margin-top: 8px;
}

.ruzhu_box a span {
    float: left;
    width: 85px;
    font-size: 13px;
    color: #181C29;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.youzhi_box .youzhi_tu {
    display: block;
    width: 100%;
}

.youzhi_box {
    margin-bottom: 10px;
}

.youzhi_ul {
    padding: 0 16px;
    background: #fff;
}

.youzhi_item {
    padding: 18px 0;
    border-bottom: 1px solid #F2F4F7;
}


.youzhi_item:hover .jc,
.youzhi_item:hover .gsmc {
    transition: all .3s;
    color: #00B38A;
}


.youzhi_item .infor {

    margin-bottom: 12px;
}

.youzhi_item .gslogo {
    float: left;
    width: 60px;
    height: 60px;
}

.youzhi_item .gslogo img {
    width: 100%;
}

.youzhi_item .infor_r {
    width: calc(100% - 60px);
    padding-left: 10px;
}

.youzhi_item .jc {
    width: 190px;
    font-size: 16px;
    color: #333333;
    line-height: 22px;
    margin-top: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.youzhi_item .gsmc {
    width: 190px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.com_star span {
    float: left;
    font-size: 12px;
    color: #212128;
    line-height: 20px;
}

.com_star i {
    font-size: 14px;
    color: #00B38A;
}

.youzhi_item .com_star {
    margin-top: 12px;
}

.youzhi_item .bq {
    margin-top: 14px;
}

.youzhi_item .qd_icon {
    margin-bottom: 10px;
}

.youzhi_item .qd_icon b {
    float: left;
    font-size: 12px;
    color: #999;
    line-height: 20px;
}

.youzhi_item .bq_icon {
    float: left;
    padding: 0 8px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    border-radius: 20px;
    margin-right: 8px;
}

.bq_mt {
    background-color: #E3F2FD;
    color: #0F9FFF;
}

.bq_hlw {
    background-color: #E2FCF6;
    color: #00B38A;
}

.bq_dy {
    background-color: #FFEBE2;
    color: #FA5508;
}

.star_lis {
    display: inline-block;
}

.star_lis i {
    float: left;
    width: 108px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ux_star0 {
    background-image: url(../img/img_new/zuan0.png);
}

.ux_star0-5 {
    background-image: url(../img/img_new/zuan0.5.png);
}

.ux_star1 {
    background-image: url(../img/img_new/zuan1.png);
}

.ux_star1-5 {
    background-image: url(../img/img_new/zuan1.5.png);
}

.ux_star2 {
    background-image: url(../img/img_new/zuan2.png);
}

.ux_star2-5 {
    background-image: url(../img/img_new/zuan2.5.png);
}

.ux_star3 {
    background-image: url(../img/img_new/zuan3.png);
}

.ux_star3-5 {
    background-image: url(../img/img_new/zuan3.5.png);
}

.ux_star4 {
    background-image: url(../img/img_new/zuan4.png);
}

.ux_star4-5 {
    background-image: url(../img/img_new/zuan4.5.png);
}

.ux_star5 {
    background-image: url(../img/img_new/zuan5.png);
}

.youzhi_box .btn {
    display: block;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-radius: 0px 0px 4px 4px;
    line-height: 60px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #00B38A;
}

.huoyue_box {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #fff;
    padding: 0 16px;
    margin-bottom: 10px;
}

.huoyue_box ul {
    padding: 12px 0;
}

.huoyue_box li {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.huoyue_box li:hover .name {
    color: #00B38A;
}

.huoyue_box .logo {
    position: relative;
    width: 40px;
    height: 40px;

}

.huoyue_box .logo .tx {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.huoyue_box .logo .vip_tx {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 20px;
}

.huoyue_box .infor {
    float: left;
    width: calc(100% - 40px);
    padding-left: 12px;
}

.huoyue_box .infor p {
    margin-top: 5px;
    font-size: 13px;
    color: #636977;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.huoyue_box .infor .name {
    float: left;
    font-size: 14px;
    font-weight: 600;
    color: #181C29;
    line-height: 22px;
}

.huoyue_box .infor .jhy {
    float: right;
    width: 56px;
    height: 22px;
    background: rgba(0, 179, 138, .1);
    border-radius: 11px;
    line-height: 22px;
    text-align: center;
    font-size: 12px;
    color: #00B38A;
    cursor: pointer;
}

.huoyue_box .infor .ckmp {
    float: right;
    font-size: 12px;
    color: #00B38A;
    line-height: 22px;
    cursor: pointer;
}

.gg_swiper {
    width: 100%;
    height: 426px;
    border-radius: 4px;
    margin-bottom: 10px !important;
}

.gg_swiper .swiper-slide,
.gg_swiper .swiper-slide img {
    width: 100%;
    height: 100%;
}

.help_box {
    width: 100%;
    height: auto;
    border-radius: 4px;
    background: #fff;
    padding: 0 16px;
    margin-bottom: 10px;
}

.help_box ul {
    padding: 10px 0;
}

.help_box li {
    padding: 10px 0;
}

.help_box li .hd_logo {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}

.help_box li .hd_logo img {
    transition: all .3s;
}

.help_box li:hover .hd_logo img {
    transform: scale(1.2);
    -ms-transform: scale(1.1);
}

.help_box li h2 {
    font-size: 13px;
    color: #181C29;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 4px;
    transition: all .3s;
}

.help_box li:hover h2 {
    color: #00B38A;
}

.help_box li span {
    font-size: 12px;
    color: #828897;
    line-height: 16px;
    margin-right: 8px;
}

.help_box li span i {
    color: #828897;
    font-size: 16px;
    vertical-align: -1px;
    margin-right: 3px;
}

.help_box li:hover a {
    color: #00B38A;
}

/* 首页、合作页右侧 end*/


.common_result {
    padding-bottom: 50px;
}

.common_result_left {
    float: left;
    width: 896px;
}

.common_result .wrap {
    padding: 20px;
    background: #fff;
    margin-top: 20px;
}













/* 底部 */

.footer {
    padding-top: 60px;
    width: 100%;
    text-align: center;
    background: #32373E;
}

.foot_link {
    text-align: left;
    padding: 28px 0 18px 86px;
    border-top: 1px solid rgba(216, 216, 216, .1);
}

.foot_link span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 20px;
    margin-bottom: 12px;
}

.foot_link li {
    float: left;
    margin-bottom: 10px;
    font-size: 12px;
    margin-right: 30px;
}

.foot_link li a {
    display: block;
    color: #999;
    line-height: 28px;
}

.foot_link li:hover a {
    color: #fff;
}

.footer_bot {
    padding: 22px 0 22px;
    border-top: 1px solid rgba(216, 216, 216, .1);
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 17px;
}

.footer_top {
    padding-bottom: 28px;
    display: inline-block;
    text-align: left;
}

.footer_top dl {
    float: left;
    width: 210px;
}

.footer_top dt {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
}

.footer_top dd {
    font-size: 12px;
    font-weight: 400;
    color: #999;
    line-height: 28px;
}

.footer_top dd a {
    color: #999;
}

.footer_top dd a:hover {
    color: #fff;
}

.footer_text img {
    margin-right: 16px;
    display: block;
}

.footer_text p {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 28px;
}

.footer_concat ul {
    margin-top: 25px;
}

.footer_concat li {
    margin: 0 4px;
    float: left;
    width: 84px;
    text-align: center;
}

.footer_concat li img {
    width: 67px;
    height: 67px;
}

.footer_concat li p {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    line-height: 20px;
}





/* 排序tab */

.common_px_tab {
    width: 100%;
    height: 60px;
    padding: 10px 0;
}

.common_px_tab li {
    position: relative;
    float: left;
    line-height: 40px;
    padding: 0 20px;
    font-size: 14px;
    color: #333333;
    cursor: pointer;
}

.common_px_tab li.tab_on {
    font-weight: 600;
}

.common_px_tab li.tab_on:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background: #00B38A;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.common_px_tab li.item1:hover .wh_content {
    display: block;
}

.common_px_tab .wh {
    position: absolute;
    right: 3px;
    top: 14px;
    width: 12px;
    height: 12px;
    background: url(../img/wh.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.common_px_tab .sys_new {
    position: absolute;
    right: -13px;
    top: -4px;
    width: 27px;
    height: 13px;
    background: url(../img/new.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.common_px_tab .wh_content {
    right: -80px !important;
    top: -65px !important;
}


.common_px_tab2 li {
    float: left;
    font-size: 14px;
    color: #333;
    margin-right: 36px;
    line-height: 40px;
    cursor: pointer;
}

.common_px_tab2 .tab_on {
    color: #00B38A;
    border-bottom: 2px solid #00B38A;
}

.common_l {
    width: 886px;
}

.common_r {
    width: 284px;
}

.common_box_r {
    padding: 0 20px 20px 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.common_box_r .qitian_btn {
    margin-top: 16px;
}

.r_title {
    width: 100%;
    height: 58px;
    line-height: 58px;
}

.qitian_hot {
    overflow: hidden;
    height: 230px;
}

.r_title h2 {
    position: relative;
    float: left;
    font-size: 16px;
    color: #333;
    line-height: 58px;
    padding-left: 14px;
    font-weight: 600;
}

.r_title h2:after {
    position: absolute;
    content: "";
    width: 4px;
    height: 16px;
    background: #00B38A;
    left: 0;
    top: 20px;
}

.r_title h3 {
    position: relative;
    float: left;
    font-size: 16px;
    color: #333;
    line-height: 58px;
    padding-left: 14px;
    font-weight: 600;
}

.r_title h3:after {
    position: absolute;
    content: "";
    width: 4px;
    height: 16px;
    background: #00B38A;
    left: 0;
    top: 20px;
}

.fabu_swiper {
    width: 100%;
    height: auto;
}

.fabu_icon {
    position: relative;
    width: 48px;
    margin-top: 19px;
}

.fabu_icon .iconfont {
    font-size: 20px;
    color: #e0e0e0;
    cursor: pointer;
}

.fabu_icon .iconfont:hover {
    color: #00B38A;
}

.fabu_ul li {
    margin-bottom: 16px;
}

.fabu_ul li:last-child {
    margin-bottom: 0;
}

.fabu_ul .tit {
    display: block;
    font-size: 14px;
    color: #666;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-indent: -8px;
}

.fabu_ul .tit:hover {
    color: #00B38A;
}

.kanban_swiper_content .fabu_ul .tit {
    text-indent: 0 !important;
}

.fabu_ul .time {
    display: inline-block;
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.fabu_ul .time i {
    color: #E0E0E0;
    margin-right: 5px;
}

.common_box_r .see_more {
    display: block;
    width: 244px;
    height: 36px;
    line-height: 34px;
    background: #FFFFFF;
    border: 1px solid #01B48B;
    text-align: center;
    font-size: 14px;
    color: #01B48B;
    transition: all .3s;
}

.common_box_r .see_more:hover {
    background-color: #01B48B;
    color: #fff;
}

.common_box_r .hd img {
    display: block;
    width: 100%;
}

.common_box_r .hd .p1 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
    margin-top: 14px;
    line-height: 22px;
}

.common_box_r .hd .p2 {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
    margin-bottom: 24px;
    line-height: 17px;
}


/* 分类样式 */
.classify_nav {
    margin-bottom: 6px;
    background: #fff;
    border-radius: 4px;
}

.classify_nav span {
    display: block;
    width: 105px;
    font-size: 14px;
    font-weight: 600;
    color: #181C29;
    line-height: 40px;
    padding-left: 20px;
}

.classify_nav a {
    float: left;
    height: 40px;
    padding: 0 15px;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    color: #333333;
}

.classify_nav a.on {
    color: #fff;
    font-weight: 600;
    color: #00B38A;
    border-bottom: 2px solid #00B38A;
}

.classify_nav a:hover {
    color: #fff;
    font-weight: 600;
    color: #00B38A;
}

.wrap {
    width: 100%;
    padding-top: 1px;
}

.classify_wrap {
    font-size: 12px;
    color: #999;
    background-color: #fff;
    padding: 20px 20px 8px 20px;
}

.classify_wrap .type {
    display: block;
    width: 85px;
    font-size: 14px;
    font-weight: 600;
    color: #181C29;
}

.classify_cont {
    margin-bottom: 4px;
}

.classify_cont:last-child {
    margin-bottom: 0;
}

.classify_cont li {
    float: left;
    height: 24px;
    line-height: 24px;
    margin-bottom: 12px;
    margin-right: 10px;
}

.classify_cont li:last-child {
    margin-right: 0 !important;
}

.classify_cont li:hover a {
    color: #00B38A;
}

.classify_cont a {
    display: block;
    font-size: 14px;
    color: #636977;
    padding: 0 10px;
}

.classify_cont ul {
    float: left;
    width: 1070px;
    overflow: hidden;
}

.c_on {
    background-color: #00B38A;
    color: #fff;
    border-radius: 3px;
}

.c_on a {
    color: #fff !important;
}

.classify_cont .c_more {
    line-height: 24px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.classify_cont .c_more_on {
    color: #00B38A;
}

.classify_cont .c_more_on i {
    transition: all .3s;
    color: #00B38A;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.layui_address .layui-inline {
    margin-right: 10px;
}


.layui_address_ul {
    overflow: visible !important;
    height: auto !important;
}

.layui_address .layui-inline {
    float: left;
    width: 100px;
    height: 28px;
    margin-right: 6px;
}

.layui_address .layui-inline .layui-input {
    height: 28px;
    border: 1px solid #EAEDF3;
}

.classify_content .btn {
    width: 50px;
    height: 28px;
    line-height: 26px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #00B38A;
    text-align: center;
    font-size: 12px;
    color: #00B38A;
    cursor: pointer;
    transition: all .3s;
}

.classify_content .btn:hover {
    background: rgba(0, 179, 138, 0.1);
}

.classify_content .layui-form-select dl {
    top: 30px;
    max-height: 200px !important;
}

.classify_content .layui-form-selectup dl {
    top: auto !important;
    bottom: 30px;
}

.classify_content .layui_address .layui-input:hover {
    box-shadow: 0px 0px 5px 0px rgba(0, 179, 138, 0.2);
    border: 1px solid #00B38A !important;
}

.classify_down span {
    display: block;
    width: 124px;
    height: 26px;
    background: #FFFFFF;
    border-radius: 0px 0px 14px 14px;
    margin: 0 auto;
    color: #00B38A;
    font-size: 12px;
    text-align: center;
    line-height: 26px;
    cursor: pointer;
    /* transition: all .3s; */
}


/* 分页 */

.page {
    height: 118px;
    text-align: center;
    line-height: 118px;
}


/* 面包屑 */

.bread_nav {
    line-height: 60px;
    font-size: 14px;
    color: #666;
}

.bread_nav a:hover {
    color: #00B38A;
}







/* 登录注册 */

.login_header {
    height: 60px;
    line-height: 60px;
}

.login_bod {
    width: 100%;
    height: 100vh;
    background: url("../img/login_bg.jpg") no-repeat center #00B38A;
    -webkit-background-size: auto 100vh;
    background-size: auto 100vh;
    padding-top: 60px;
}

.login_bod .w12 {
    position: relative;
}

.login_bod .w12 .logo {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.login_wrap {
    width: 440px;
    height: auto;
    background: #FFFFFF;
    box-shadow: 0px 2px 17px 0px rgba(0, 0, 0, 0.07);
    border-radius: 4px;
    padding: 0 50px 40px 50px;
}

.login_wrap input:focus {
    border: none !important;
}

.mt30 {
    margin-top: 30px;
}

.login_tab {
    position: relative;
    width: 100%;
    height: 76px;
    line-height: 75px;
    border-bottom: 1px solid #EEEEEE;
}

.login_tab .zc {
    position: absolute;
    top: 53px;
    right: 0;
    color: #00B38A;
    font-size: 12px;
    font-weight: 600;
    height: 14px;
    display: block;
    line-height: 14px;
}

.login_tab .zc b {
    color: red;
}

.login_tab li {
    float: left;
    font-size: 16px;
    color: #999;
    width: 64px;
    text-align: center;
    margin-right: 20px;
    cursor: pointer;
}

.login_tab li a {
    font-weight: 600;
}

.login_tab .on {
    position: relative;
    color: #00B38A;
}

.login_tab .on:after {
    position: absolute;
    content: "";
    width: 64px;
    height: 2px;
    background-color: #00B38A;
    left: 0;
    bottom: -1px;
}

.login_box {
    width: 100%;
    height: auto;
}

.login_box .tip {
    height: 42px;
    line-height: 42px;
    font-size: 14px;
    color: #FF7F80;
    text-align: center;
}

.login_box .logcont {
    width: 100%;
    height: 46px;
    background-color: #F4F4F4;
    margin-bottom: 12px;
    border-radius: 4px;
}

.logcont .yzm_img {
    width: 110px;
    height: 100%;
}

.login_box .login_input {
    width: 100%;
    height: 100%;
    background-color: #F4F4F4;
    font-size: 14px;
    padding-left: 30px;
}

.login_box .login_input.yzm {
    float: left;
    width: 200px;
}

.login_box .login_type {
    font-size: 12px;
    color: #00B38A;
}

.login_button {
    width: 100%;
    height: 48px;
    background: linear-gradient(90deg, #31D2AC 0%, #0CC69A 100%);
    border-radius: 4px;
    font-size: 16px;
    color: #fff;
    margin-top: 18px;
    transition: all .3s;
}

.login_button:hover {
    opacity: .8;
}

.login_memory {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
}

.login_memory input {
    float: left;
    margin: 3px 6px 0 0;
}

.login_memory .txt {
    width: 320px;
    font-size: 14px;
    color: #999;
}

.login_memory .txt a {
    color: #00B38A;
}

.login_memory_l:hover a {
    color: #00B38A;
}

.login_memory a {
    font-size: 14px;
    color: #999;
}

.memory_btn {
    font-size: 14px;
    color: #999;
}

.memory_btn:hover {
    color: #00B38A;
}

.login_wrap .dsf_cont {
    width: 110px;
    margin: 10px auto 0;
}

.login_wrap .dsf_cont p {
    text-align: center;
    font-size: 14px;
    color: #999;
}

.login_wrap .dsf_icon a {
    transition: all .3s;
    line-height: 40px;
    display: block;
    font-size: 40px;
    color: #E0E0E0;
    margin-top: 16px;
}

.login_wrap .dsf_wx:hover {
    color: #3BB430;
}

.login_wrap .dsf_qq:hover {
    color: #249BE5;
}

.get_code {
    width: 110px;
    height: 100%;
    font-size: 14px;
    color: #00B38A;
    background: rgba(0, 0, 0, 0);
}

.login_reg {
    display: none;
}

.login_box .xy {
    color: #999;
    font-size: 14px;
    margin-top: 12px;
}

.login_box .xy a {
    color: #00B38A;
}

/* layui重置 */
.jm-class {
    border-radius: 4px !important;
}

.jm-class .layui-layer-setwin .layui-layer-close2 {
    background-position: 1px -40px !important;
    right: 0px !important;
    top: 2px !important;
    width: 16px !important;
    height: 16px !important;
    margin-left: 0px !important;
}

.jm-class .layui-layer-setwin a {
    position: absolute;
    width: 32px;
    height: 40px;
    overflow: hidden;
    top: -28px;
}

.layui-form-label {
    padding: 0 !important;
}

.evaluate_pop {
    width: 480px;
    height: 381px;
    background: #FFFFFF;
    box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.evaluate_pop .tit {
    width: 100%;
    height: 56px;
    line-height: 56px;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 600;
    padding-left: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.evaluate_pop .zan_cont {
    margin: 20px auto !important;
}

.evaluate_pop .zan_t,
.evaluate_pop .zan_b {
    position: relative;
}

.zan_cont .icon {
    position: absolute;
    display: block;
    width: 28px;
    height: 14px;
    line-height: 14px;
    text-align: center;
    border-radius: 7px;
    font-size: 12px;
    color: #fff;
    top: -29px;
    left: 0;
    right: 0;
    margin: auto;
}

.zan_cont .icon1 {
    background: #F6D6CB;
}

.zan_cont .icon2 {
    background: #C0E4A5;
}

.evaluate_pop .evaluate_box {
    padding-left: 24px;
}

.evaluate_pop .tips {
    width: 432px;
    height: 40px;
    background: #FFFBE6;
    border-radius: 2px;
    border: 1px solid #FFE58F;
    font-size: 14px;
    color: #D57611;
    line-height: 38px;
    padding-left: 16px;
}

.evaluate_pop .tips i {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: -2px;
}

.zsd_lis {
    padding: 10px 0 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.zsd_lis span {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 38px;
}

.zsd_lis li {
    float: left;
    padding: 0 8px;
    height: 24px;
    line-height: 22px;
    background: #fff;
    color: #999;
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #E0E0E0;
    cursor: pointer;
}

.zsd_lis .yx_ul1 .on {
    color: #FA5508 !important;
    background: #FFEBE2 !important;
    border: 1px solid #FFCAB3 !important;
}

.zsd_lis .yx_ul2 .on {
    color: #6BBD2F !important;
    background: #E9F4E1 !important;
    border: 1px solid #B0DC90 !important;
}

.eval_btn_box {
    text-align: right;
    padding-right: 16px;
}

.eval_btn_box .qx {
    width: 65px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    font-size: 14px;
    color: #000;
    margin-top: 10px;
    transition: all .3s;
    line-height: 30px !important;
}

.eval_btn_box .qx:hover {
    color: #fff;
    background-color: #00B38A;
    border: 1px solid #00B38A;
}

.eval_btn_box .sure {
    width: 65px;
    height: 32px;
    line-height: 32px !important;
    background: #00B38A;
    border-radius: 2px;
    font-size: 14px;
    color: #fff;
    margin-top: 10px;
    margin-left: 10px;
    transition: all .3s;
}

.eval_btn_box .sure:hover {
    opacity: .8;
}


/* 免费发布弹窗 */

.fb_pop {
    background: #FFFFFF;
    border-radius: 4px;
    padding: 30px 25px 40px 25px;
}

.fb_pop h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
    line-height: 25px;
    text-align: center;
}

.fb_pop .tip {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    margin-top: 16px;
    text-align: center;
}

.fb_pop ul {
    width: 100%;
    margin-top: 30px;
}

.fb_pop li {
    position: relative;
    float: left;
    width: 220px;
    height: 110px;
    line-height: 102px;
    background: #FFFFFF;
    border: 1px solid transparent;
    transition: all .3s;
    padding: 16px 0 0 16px;
}

.fb_pop li:hover {
    color: #fff;
    background: rgba(0, 179, 138, 0.0500);
    border: 1px solid rgba(0, 179, 138, 0.3000);
}

.fb_pop li img {
    float: left;
    width: 30px;
    height: 30px;
}

.fb_pop li .hot {
    position: absolute;
    top: 0;
    right: 0;
    width: 27px;
    height: 13px;
}

.fb_pop li .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 15px;
}

.fb_pop .infor_txt {
    width: 160px;
    padding-left: 10px;
}


.fb_pop .infor_txt .p1 {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 22px;
}

.fb_pop .infor_txt .p2 {
    font-size: 12px;
    color: #666666;
    line-height: 18px;
    margin-top: 6px;
}

.rtbfb_pop {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* width: 400px;
    height: 368px; */
    background: #FFFFFF;
    border-radius: 2px;
    padding-top: 50px;
}

.rtbfb_pop img {
    width: 169px;
    height: 140px;
}

.rtbfb_pop h4 {
    font-size: 20px;
    color: #090505;
    line-height: 23px;
    margin: 30px 0 20px 0;
}

.rtbfb_pop p {
    font-size: 14px;
    color: #636977;
    line-height: 26px;
    text-align: center;
}

.rtbfb_pop p em {
    color: #FF6A00;
    font-weight: 600;
}

.rtbfb_pop2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    border-radius: 2px;
    padding-top: 40px;
}

.rtbfb_pop2 .title {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #090505;
}

.rtbfb_pop2 .title img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.rtbfb_pop2 .ewm {
    width: 169px;
    height: 140px;
    margin-top: 30px;
}

.rtbfb_pop2 .txt {
    width: 320px;
    font-size: 14px;
    color: #636977;
    line-height: 24px;
    margin-top: 20px;
    text-align: justify;
}

.rtbfb_pop2 .txt em {
    color: #FF6A00;
    font-weight: 600;
}

.rtbfb_pop2 .btn {
    width: 200px;
    height: 38px;
    background: #00B38A;
    border-radius: 4px;
    line-height: 38px;
    text-align: center;
    font-size: 14px;
    color: #FFFFFF;
    margin-top: 30px;
}

.layui-layer-btn .layui-layer-btn0 {
    border-color: #00B38A !important;
    background-color: #00B38A !important;
    color: #fff;
}

.common_nothing {
    display: none;
    width: 100%;
    background-color: #fff;
    padding: 60px 0;
}

.common_nothing .nothing_icon {
    display: block;
    width: 200px;
    margin: auto;
}

.common_nothing img {
    display: block;
    width: 100%;
}

.common_nothing p {
    font-size: 16px;
    color: #636977;
    text-align: center;
    margin-top: 30px;
}

.common_nothing a {
    display: block;
    font-weight: bold;
    font-size: 14px;
    color: #00B38A;
    line-height: 16px;
    margin-top: 14px;
    text-align: center;
}

.common_nothing a:hover {
    text-decoration: underline;
}

.jm_jhy .layui-layer-btn0 {
    background: #F7AE1B !important;
    border: none;
}

.jm_fxx input {
    width: 432px;
    height: 40px;
    border: 1px solid #F0F0F0;
    font-size: 14px;
    color: #666;
    padding-left: 10px;
}

.jm_fxx .xxnr_textarea {
    width: 432px;
    height: 175px;
    border: 1px solid #F0F0F0;
    padding: 10px;
}




/* 图片裁剪css */

.l-btn {
    display: inline-block;
    outline: none;
    resize: none;
    border: none;
    padding: 5px 10px;
    background: #00B38A;
    color: #fff;
    border: solid 1px #00B38A;
    border-radius: 3px;
    font-size: 14px;
}

.l-btn:hover {
    opacity: .8;
    animation: anniu 1s infinite;
}

.l-btn:active {
    box-shadow: 0 2px 3px rgba(0, 0, 0, .2) inset;
}

.hidden {
    display: none;
}

.tailoring-container,
.tailoring-container div,
.tailoring-container p {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.tailoring-container {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
}

.tailoring-container .black-cloth {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #111;
    opacity: .9;
    z-index: 1001;
}

.tailoring-container .tailoring-content {
    position: absolute;
    width: 768px;
    height: 560px;
    background: #fff;
    z-index: 1002;
    left: 0;
    top: 0;
    /* 水平垂直居中 浏览器版本号低的不支持transform */
    /*left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    -weblit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);*/
    border-radius: 10px;
    box-shadow: 0 0 10px #000;
    padding: 10px;
}

.tailoring-content-one {
    height: 40px;
    width: 100%;
    border-bottom: 1px solid #DDD;
}

.tailoring-content .choose-btn {
    float: left;
}

.tailoring-content .close-tailoring {
    display: inline-block;
    height: 30px;
    width: 30px;
    border-radius: 100%;
    background: #eee;
    color: #fff;
    font-size: 22px;
    text-align: center;
    line-height: 30px;
    float: right;
    cursor: pointer;
}

.tailoring-content .close-tailoring:hover {
    background: #ccc;
}

.tailoring-content .tailoring-content-two {
    width: 100%;
    height: 460px;
    position: relative;
    padding: 5px 0;
}

.tailoring-content .tailoring-box-parcel {
    width: 520px;
    height: 450px;
    position: absolute;
    left: 0;
    border: solid 1px #ddd;
}

.tailoring-content .preview-box-parcel {
    display: inline-block;
    width: 228px;
    height: 450px;
    position: absolute;
    right: 0;
    padding: 4px 14px;
}

.preview-box-parcel p {
    color: #555;
}

.previewImg {
    width: 200px;
    height: 200px;
    overflow: hidden;
}

.preview-box-parcel .square {
    margin-top: 10px;
    border: solid 1px #ddd;
}

.preview-box-parcel .circular {
    border-radius: 100%;
    margin-top: 10px;
    border: solid 1px #ddd;
}

.tailoring-content .tailoring-content-three {
    width: 100%;
    height: 40px;
    border-top: 1px solid #DDD;
    padding-top: 10px;
}

.sureCut {
    float: right;
}

@media all and (max-width: 768px) {
    .tailoring-container .tailoring-content {
        width: 100%;
        min-width: 320px;
        height: 460px;
    }

    .tailoring-content .tailoring-content-two {
        height: 360px;
    }

    .tailoring-content .tailoring-box-parcel {
        height: 350px;
    }

    .tailoring-container .tailoring-box-parcel {
        width: 100%;
    }

    .tailoring-container .preview-box-parcel {
        display: none;
    }
}

.xq_bq {
    width: 200px;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: bottom;
}


/* 绑定邮箱弹窗css */

.bangemail_pop {}

.bangemail_pop .j_lable {
    display: block;
    width: 90px;
    font-size: 14px;
    color: #333;
    line-height: 40px;
    text-align: right;
}

.bangemail_pop .form_lis {
    margin-bottom: 20px;
    padding-left: 24px;
}

.bangemail_pop .yx_input {
    width: 354px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D7D7D7;
    padding-left: 12px;
}

.bangemail_pop .yzm_input {
    width: 200px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 3px;
    border: 1px solid #D7D7D7;
    padding-left: 12px;
}

.bangemail_pop .getemail_yzm {
    width: 120px;
    height: 40px;
    background: #fff;
    border-radius: 4px;
    font-size: 14px;
    color: #00B38A;
}

.bangemail_pop .yzm_img {
    width: 120px;
    height: 40px;
    cursor: pointer;
}

.bangemail_pop .getemail_yzm:focus {
    border: none !important;
}

.bangemail_pop .yxyz_cont {
    position: relative;
    width: 354px;
    margin-left: 10px;
}

.bangemail_pop .bang_yx {
    width: 200px;
    height: 36px;
    background: #00B38A;
    border-radius: 3px;
    margin-top: 4px;
    color: #fff;
    margin-left: 124px;
}

.bangemail_pop .bang_txt {
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    line-height: 28px;
    margin: 24px 0 0 34px;
}

.bangemail_pop .tip {
    width: 100%;
    font-size: 14px;
    text-align: center;
    color: #FF7F80;
    margin-bottom: 12px;
    height: 20px;
    line-height: 20px;
}

.bangyx_class .layui-layer-title {
    padding: 0 80px 0 20px;
    height: 42px;
    line-height: 42px;
    border-bottom: 1px solid #fff;
    font-size: 16px;
    color: #333;
    overflow: hidden;
    background-color: #fff;
    border-radius: 2px 2px 0 0;
    font-weight: 500;
}

.shuidi {
    display: block;
    width: 160px;
    margin-left: 10px;
}

.shuidi img {
    width: 100%;
    height: 100%;
}

.tlx_zy {
    margin-bottom: 16px;
}

.header_top_nav .vip {
    width: 14px;
    height: 14px;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #00B38A !important;
}

.header_nav .hot {
    position: absolute;
    right: -24px;
    top: 0;
    width: 27px;
    height: 13px;
    background-image: url(../img/hot.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header_nav .hot2 {
    position: absolute;
    right: -24px;
    top: 0;
    width: 27px;
    height: 13px;
    background-image: url(../img/hot2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* 右侧导航 */

.slide_r {
    position: fixed;
    right: 30px;
    bottom: 10%;
    width: 60px;
    z-index: 99999;
}

.slide_r .cont {
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}

.slide_r .item {
    display: block;
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center;
    padding-top: 15px;
    cursor: pointer;
    background: #fff;
}

.slide_r .item:first-child {
    border-radius: 8px 8px 0 0;
}

.slide_r .item:last-child {
    border-radius: 0 0 8px 8px;
}

.slide_r .tu {
    width: 30px;
    height: 30px;
}

.slide_r .tit {
    display: block;
    color: #333333;
    font-size: 12px;
    line-height: 16px;
    margin-top: 8px;
    letter-spacing:normal;
}

.letter-normal {
    letter-spacing:normal !important; 
}

.slide_r .icon {
    display: inline-block;
    font-size: 30px;
    color: #292834;
}

.slide_r .item:hover .icon,
.slide_r .return_top:hover .icon {
    color: #00B38A;
}

.slide_r .item:hover .tit,
.slide_r .return_top:hover .tit {
    color: #00B38A;
}

.slide_r .item_box {
    position: absolute;
    right: 60px;
    bottom: 0;
    border-right: 20px solid transparent;
    display: none;
}


.slide_r .item_son {
    width: 140px;
    height: 168px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 6px 6px 6px;
    border-radius: 8px;
}

.slide_r .item_son .ewm {
    width: 122px;
    height: 122px;
}

.slide_r .item_son span {
    font-size: 12px;
    font-weight: 400;
    color: #2E2E3C;
    line-height: 30px;
    text-align: center;
}

.slide_r .item_son .sjx {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    bottom: 34px;
    right: -9px;
    border-width: 10px 0 10px 10px;
    border-color: transparent #fff transparent;
}

.slide_r .call_son {
    width: 160px;
    height: 46px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.slide_r .call_son i {
    font-size: 36px;
    color: #292834;
    margin-top: 3px;
}

.slide_r .call_son .tel {
    color: #46435B;
    font-size: 16px;
    margin-top: 13px;
    line-height: 20px;
    font-family: DINProM !important;
}

.slide_r .call_son .sjx {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    position: absolute;
    bottom: 22px;
    right: -8px;
    border-width: 10px 0 10px 10px;
    border-color: transparent #fff transparent;
}



.slide_r .return_top {
    display: none;
    width: 60px;
    height: 40px;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}




















.footer_bot a {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 17px;
}

.footer_bot img {
    width: 20px;
    height: 20px;
    vertical-align: bottom;
}

.user_common_nav .nwes_num {
    position: absolute;
    min-width: 16px;
    height: 16px;
    background: #FF5F00;
    border-radius: 16px;
    top: -6px;
    right: -14px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 17px;
    font-family: DINProM;
    padding: 0px 2px;
}

.user_slidebar .nwes_num {
    position: absolute;
    min-width: 16px;
    height: 16px;
    background: #FF5F00;
    border-radius: 16px;
    top: -6px;
    right: 50px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 17px;
    font-family: DINProM;
    padding: 0px 2px;
}

.xx_icon {
    position: absolute;
    min-width: 16px;
    height: 16px;
    background: #FF5F00;
    border-radius: 16px;
    top: 1px;
    right: 17px;
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 16px;
    font-family: DINProM;
    padding: 0px 2px;
}


/* 微信快捷登录css */

.wx_pop {
    display: none;
    background: #FFFFFF;
    border-radius: 4px;
}

.wx_pop .tit {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 60px;
    padding-left: 32px;
}

.wx_pop .ewm {
    position: relative;
    width: 170px;
    height: 170px;
    margin: 0 auto;
}

.wx_pop .ewm img {
    width: 100%;
    height: 100%;
}

.wx_pop .tip {
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 65px;
    text-align: center;
}

.wx_pop .code_mask_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.wx_pop .code_mask_wrapper p {
    line-height: 40px;
    font-size: 16px;
    color: #181C29;
}

.wx_pop .code_mask_wrapper button {
    display: block;
    width: 100px;
    height: 34px;
    background-color: #037CFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
    transition: all .3s;
}

.wx_pop .code_mask_wrapper button:hover {
    opacity: .8;
}


.drop_son_l .bzl,
.drop_son_l .tpzc {
    position: relative;
}

.drop_son_l .hot {
    position: absolute;
    width: 27px;
    height: 13px;
    background-image: url(../img/hot.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* .drop_son_l .bzl .hot {
    right: -27px;
    top: -10px;
} */

.drop_son_l dd .hot {
    right: -27px;
    top: -10px;
}

.status_xcx img {
    float: left;
    width: 120px;
    height: 120px;
}

.status_xcx {
    margin-top: 20px;
}

.status_xcx .txt {
    margin: 32px 0 0 20px;
}

.hztop_ggw_banner {
    display: block;
    width: 1200px;
    margin: 0 auto 10px;
}

.hztop_ggw_banner img {
    display: block;
    width: 100%;
    height: 60px;
    border-radius: 4px;
}

.layui_address {
    line-height: 24px;
}


/* 分页 */

#pageIndex {
    text-align: center;
    line-height: 80px;
}

#pageIndex .layui-laypage-skip {
    background: none !important;
}

#pageIndex a,
#pageIndex span {
    margin: 0 5px;
}

#pageIndex a,
#pageIndex button,
#pageIndex input,
#pageIndex select,
#pageIndex span {
    border: none;
}

#pageIndex .layui-laypage-btn:hover {
    transition: all .3s;
    color: #fff;
    background-color: #00B38A;
}

#pageIndex .layui-laypage-last {
    display: none !important;
}

.classify_content {
    position: relative;
}

#class_mb {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/classify_mb.png) no-repeat center;
    background-size: cover;
}

#class_mb p {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #666;
}

#class_mb a {
    color: #00B38A;
    margin-left: 10px;
    transition: all .3s;
}

#class_mb a:hover {
    text-decoration: underline;
}

.pp_nothing .txt {
    font-size: 14px;
    color: #999999;
    line-height: 20px;
    text-align: center;
    margin-bottom: 16px;
}

.pp_nothing {
    width: 100%;
    padding: 100px 0;
}

.pp_nothing a {
    display: inline-block;
    width: 64px;
    height: 24px;
    background: #00B38A;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 24px;
    text-align: center;
    margin-left: 16px;
}

.wh_content {
    display: none;
    position: absolute;
    right: -89px;
    top: -75px;
    width: 212px;
    height: 66px;
    background: #FFFFFF;
    padding: 8px 16px 0 16px;
    box-shadow: 0px 9px 28px 8px rgba(0, 0, 0, 0.05), 0px 6px 16px 0px rgba(0, 0, 0, 0.08), 0px 3px 6px -4px rgba(0, 0, 0, 0.12);
}

.wh_content:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
    content: "";
    width: 0;
    height: 0;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 6px solid #fff;
}

.wh_content p {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.65);
    line-height: 22px;
}


/* 代理foot */

.dl_foot {
    background: #2a3b62;
    padding: 40px 0;
}

.dl_foot .centerz {
    position: relative;
}

.linkz {
    margin-left: 130px;
}

.linez .ttz {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #fff;
    float: left;
    color: #888;
}

.linez .bdz {
    margin-left: 80px;
    padding-top: 5px;
}

.linez .bdz a {
    display: inline-block;
    vertical-align: top;
    height: 20px;
    line-height: 20px;
    color: #888;
    margin: 0 10px 5px 0;
    font-size: 14px;
}

.linez:after {
    content: '';
    display: block;
    height: 0;
    clear: both;
}

.siteinfoz {
    text-align: left;
    margin: 20px auto 0 auto;
    border-top: 1px solid #243253;
    padding: 20px 0;
    position: relative;
    color: #888;
}

.siteinfoz .item {
    display: inline-block;
    vertical-align: top;
    margin: 0 6px 10px 6px;
    color: #888;
}

.siteinfoz .rightz {
    position: absolute;
    right: 0;
    top: 30px;
}

.a5_qrcode {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 5px solid #fff;
    left: 0;
    top: 0;
    line-height: 0;
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
}

.a5_qrcode img {
    width: 100%;
    height: 100%;
}

.servicez {
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 60px;
}

.servicez .linez {
    text-align: left;
    display: block;
    color: #888;
    font-size: 16px;
    margin-bottom: 10px;
}

.servicez .linez i {
    font-family: iconfont;
    font-size: 22px;
    width: 30px;
    vertical-align: -3px;
}

.servicez .linez s {
    font-size: 16px;
    width: 85px;
    text-decoration: none;
}

.servicez .linez a {
    color: #888;
}

.servicez .linez span {
    font-family: Arial;
    width: 145px;
    text-align: left;
}

.siteinfoz .item img {
    display: inline-block;
    vertical-align: top;
    height: 20px;
    line-height: 20px;
    width: 20px;
    margin-right: 10px;
}

.star_lis {
    display: inline-block;
}

.star_lis i {
    float: left;
    width: 108px;
    height: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ux_star0 {
    background-image: url(../img/zuan0.png);
}

.ux_star0-5 {
    background-image: url(../img/zuan0.5.png);
}

.ux_star1 {
    background-image: url(../img/zuan1.png);
}

.ux_star1-5 {
    background-image: url(../img/zuan1.5.png);
}

.ux_star2 {
    background-image: url(../img/zuan2.png);
}

.ux_star2-5 {
    background-image: url(../img/zuan2.5.png);
}

.ux_star3 {
    background-image: url(../img/zuan3.png);
}

.ux_star3-5 {
    background-image: url(../img/zuan3.5.png);
}

.ux_star4 {
    background-image: url(../img/zuan4.png);
}

.ux_star4-5 {
    background-image: url(../img/zuan4.5.png);
}

.ux_star5 {
    background-image: url(../img/zuan5.png);
}

.cxlm_item {
    width: 244px;
    height: 78px;
    background: #FFFBE6;
    padding: 10px 0 0 10px;
    border: 1px solid #FFE58F;
    margin-top: 14px;
}

.cxlm_item img {
    float: left;
    width: 50px;
    height: 50px;
    margin-top: 4px;
}

.cxlm_item .cxlm_infor {
    width: 180px;
    padding-left: 5px;
}

.cxlm_item .cxlm_infor .p1 {
    font-size: 16px;
    font-weight: 500;
    color: #D57611;
    line-height: 22px;
    margin-bottom: 4px;
}

.cxlm_item .cxlm_infor .p2 {
    font-size: 12px;
    color: #D57611;
    line-height: 16px;
}

.dp_icon {
    margin-top: -4px;
}

.dp_icon i {
    float: left;
    display: block;
    width: 28px;
    height: 28px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.ux_zuan1 {
    background-image: url(../img/ux_zuan1.png);
}

.ux_zuan2 {
    background-image: url(../img/ux_zuan2.png);
}

.ux_zuan3 {
    background-image: url(../img/ux_zuan3.png);
}

.ux_zuan4 {
    background-image: url(../img/ux_zuan4.png);
}

.ux_zuan5 {
    background-image: url(../img/ux_zuan5.png);
}

.ux_qi {
    background-image: url(../img/ux_qi.png);
}

.ux_qi.on {
    background-image: url(../img/ux_qi2.png);
}

.ux_cheng {
    background-image: url(../img/ux_cheng.png);
}

.ux_cheng.on {
    background-image: url(../img/ux_cheng2.png);
}

.ux_bao {
    background-image: url(../img/ux_bao.png);
}

.ux_bao.on {
    background-image: url(../img/ux_bao2.png);
}

.ux_zi {
    background-image: url(../img/ux_zi.png);
}

.ux_zi.on {
    background-image: url(../img/ux_zi2.png);
}


/* 优质渠道评价弹窗 */

.eva_pop {
    width: 480px;
    height: 556px;
    background: #FFFFFF;
    box-shadow: 0px 12px 48px 16px rgba(0, 0, 0, 0.03), 0px 9px 28px 0px rgba(0, 0, 0, 0.05), 0px 6px 16px -8px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
}

.eva_pop .tit {
    width: 100%;
    height: 56px;
    line-height: 56px;
    padding-left: 24px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.eva_pop .tit span {
    float: left;
    font-size: 16px;
    color: rgba(0, 0, 0, 0.85);
    font-weight: 600;
}

.eva_pop .tit p {
    float: left;
    font-size: 14px;
    color: #C5C5C5;
    margin-left: 12px;
}

.eva_content {
    width: 100%;
    padding: 0 24px 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bq_cont {
    margin-top: 16px;
}

.bq_cont span,
.area_cont span {
    font-size: 14px;
    color: #333;
    font-weight: 600;
    line-height: 38px;
}

.bq_cont li {
    float: left;
    padding: 0 8px;
    height: 24px;
    line-height: 22px;
    background: #fff;
    color: #999;
    font-size: 12px;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
    border: 1px solid #E0E0E0;
    cursor: pointer;
}

.bq_cont .yx_ul1 .on {
    color: #FA5508 !important;
    background: #FFEBE2 !important;
    border: 1px solid #FFCAB3 !important;
}

.bq_cont .yx_ul2 .on {
    color: #6BBD2F !important;
    background: #E9F4E1 !important;
    border: 1px solid #B0DC90 !important;
}

.area_cont textarea {
    width: 432px;
    height: 140px;
    background: #FFFFFF;
    border-radius: 2px;
    border: 1px solid #E0E0E0;
    padding: 12px;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

.star_cont {
    clear: both;
    padding: 16px 0 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.star_cont .star_item {
    margin-bottom: 14px;
}

.star_cont .star_ul {
    float: left;
}

.star_cont span {
    float: left;
    font-size: 14px;
    color: #333333;
    line-height: 22px;
}

.star_cont .star_ul li {
    float: left;
    cursor: pointer;
    text-indent: -9999px;
    width: 18px;
    height: 17px;
    background: url(../img/star3.png) no-repeat center;
    background-size: cover;
}

.star_cont .star_ul li.on {
    background: url(../img/star1.png) no-repeat center;
    background-size: cover;
}

.details_star {
    width: 100%;
    padding: 10px 0 20px 0;
}

.details_star li {
    float: left;
    width: 25%;
    text-align: center;
}

.details_star li span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 20px;
    margin-top: 12px;
}


.common_txt_hover:hover {
    transition: all .3s;
    color: #00B38A !important;
    cursor: pointer;
}

.common_btn_hover:hover {
    transition: all .3s;
    opacity: .8;
    cursor: pointer;
}

/* 合作列表模块 */
.hz_ul .hz_li {
    margin-bottom: 10px;
}

.hz_ul .hz_ggt {
    position: relative;
    width: 100%;
    height: 142px;
}

.hz_ul .hz_ggt img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.hz_ul .hz_ggt .close_icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: rgba(0, 0, 0, .15);
    border-radius: 0px 4px 0px 4px;
    text-align: center;
    line-height: 22px;
    font-size: 12px;
    color: #fff;
    cursor: pointer;
}

.hz_ul .hz_cont {
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    padding: 26px 20px;
    transition: all .3s;
}

.hz_ul .hz_cont:hover {
    box-shadow: 0 4px 8px rgba(3, 27, 78, .12);
}

.hz_cont .h2 .tit {
    float: left;
    display: block;
    max-width: 620px;
    height: 22px;
    font-size: 16px;
    font-weight: 600;
    color: #181C29;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all .3s;
    text-indent: -8px;
}

.hz_cont:hover .h2 .tit {
    color: #00B38A;
}
.hz_cont .h2 .tits {
    height: auto !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    white-space: wrap;
    /* font-family: "HarmonyOS_Sans"; */

}

.hz_cont .h2 .yzqd_icon {
    float: left;
    width: 54px;
    height: 18px;
    margin-left: 5px;
    background: url('/p/style/web/img/public_icon/yzqd.png') no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.hz_cont .h2 .gg_icon {
    float: left;
    width: 50px;
    height: 20px;
    background: #F2F4F7;
    border-radius: 10px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    color: #636977;
}




.hz_cont .tr1 {
    margin-top: 12px;
}

.hz_cont .tr1 span {
    float: left;
    width: 25%;
    height: 20px;
    font-size: 12px;
    color: #828897;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hz_cont .tr1 span:nth-of-type(1),
.hz_cont .tr1 span:nth-of-type(4) {
    width: 30%;
}

.hz_cont .tr1 span:nth-of-type(2),
.hz_cont .tr1 span:nth-of-type(3) {
    width: 20%;
}

.hz_cont .tr1 span:nth-of-type(4) {
    text-align: right;
}





.hz_cont label {
    float: left;
    font-size: 12px;
    color: #636977;
    line-height: 20px;
}

.hz_cont .txt_xy,
.hz_cont .txt_tg {
    color: #999;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hz_cont .bq {
    float: left;
}

.hz_cont .bq a {
    float: left;
    padding: 0 10px;
    line-height: 20px;
    background: #EEEEEE;
    border-radius: 10px;
    margin: 0 10px 0 0;
    font-size: 12px;
    color: #636977;
    transition: all .3s;
}



.hz_cont .tr2,
.hz_cont .tr3 {
    margin-top: 16px;
}

.hz_cont .tr3_r i {
    font-size: 12px;
    color: #828897;
    margin-right: 5px;
}

.hz_cont .tr3_r b {
    font-size: 12px;
    color: #828897;
    margin-left: 20px;
    font-family: DINProM;
}

.hz_cont:hover .tr3_r i,
.hz_cont:hover .tr3_r b {
    color: #00B38A;
}




.hz_cont .hz_logo {
    position: absolute;
    top: 26px;
    left: 20px;
    width: 82px;
    height: 82px;
    border-radius: 4px;
    padding: 1px;
}

.hz_cont .hz_logo img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.hz_cont .vip:after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 82px;
    height: 82px;
    background: url(../img/img_new/list_vip.png) no-repeat center;
    background-size: cover;
    z-index: 1;
}

.hz_cont .find_common_r {
    width: 100%;
    height: 100%;
    padding-left: 100px;
}

.hz_cont .mprz_icon {
    position: absolute;
    left: 34px;
    top: 120px;
    width: 48px;
    height: 16px;
    background: url('/p/style/web/img/public_icon/mprz.png') no-repeat center;
    background-size: cover;
}

.hz_cont .ai_icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 77px;
    height: 24px;
    background: url(../img/img_new/list_ai.png) no-repeat center;
    background-size: cover;
}

.hz_cont .zd_icon {
    position: absolute;
    right: 0;
    top: 0;
    width: 63px;
    height: 24px;
    background: url(../img/img_new/list_zd.png) no-repeat center;
    background-size: cover;
    cursor: pointer;
}

.hz_cont .zd_icon a {
    display: none;
    position: absolute;
    top: -30px;
    right: -46px;
    width: 62px;
    height: 30px;
    background: url(../img/img_new/zd_bg.png) no-repeat center;
    background-size: cover;
    font-size: 12px;
    color: #00B38A;
    line-height: 25px;
    text-align: center;
    text-decoration: underline;
    transition: all .3s;
    z-index: 2;
}

.hz_cont .zd_icon:hover a {
    display: block;
    opacity: 1;
}

.my_result .hz_cont:hover .color1 {
    color: #FA5508 !important;
    background: #FFEBE2 !important;
}

.my_result .hz_cont:hover .color2 {
    color: #0F9FFF !important;
    background: #E3F2FD !important;
}

.my_result .hz_cont:hover .color3 {
    color: #00B38A !important;
    background: #E2FCF6 !important;
}

.my_result .hz_cont:hover .color4 {
    color: #FB990F !important;
    background: #FFF3E2 !important;
}

.my_result .hz_cont:hover .color5 {
    color: #6585FD !important;
    background: #E2E8FF !important;
}

.my_result .more_btn {
    width: 220px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid #00B38A;
    line-height: 38px;
    font-size: 14px;
    color: #00B38A;
    text-align: center;
    transition: all .3s;
    margin: 30px auto 0;
    cursor: pointer;
}

.my_result .more_btn:hover {
    background: rgba(0, 179, 138, .1);
}

/* 合作列表模块end */

/* 会员续费提示弹窗 */
.hyxf_pop {
    position: relative;
    width: 600px;
    padding-top: 46px;
}

.hyxf_pop .closeTap {
    position: absolute;
    width: 36px;
    height: 36px;
    cursor: pointer;
    top: 0;
    right: -46px;
}

.hyxf_pop .hyxf_bg {
    position: absolute;
    top: -46px;
    right: 15px;
    width: 329px;
    height: 338px;
    z-index: 1;
}

.hyxf_box {
    position: relative;
    width: 100%;
    background: linear-gradient(360deg, #FFFFFF 0%, #FFFBE8 100%);
    border-radius: 8px;
    padding: 30px;

}

.hyxf_box p {
    font-weight: 600;
}

.hyxf_box p em {
    color: #FF5F00;
    font-weight: 600;
}

.hyxf_box .p1 {
    font-size: 18px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 10px;
}

.hyxf_box .p2 {
    position: relative;
    font-size: 22px;
    color: #000000;
    line-height: 40px;
    margin-bottom: 43px;
}

.hyxf_box .p2::before {
    position: absolute;
    left: 0;
    bottom: -20px;
    content: '';
    width: 30px;
    height: 3px;
    background: #00B38A;
}

.hyxf_box .p3 {
    color: #636977;
    font-size: 14px;
    line-height: 20px;
}

.hyxf_info {
    position: relative;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, .7);
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    margin-top: 30px;
    /* filter: blur(10px); */
    z-index: 2;
}

.hyxf_info h4 {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    line-height: 16px;
}

.hyxf_info li {
    position: relative;
    float: left;
    width: 166px;
    line-height: 16px;
    font-size: 12px;
    color: #636977;
    padding-left: 20px;
    margin-top: 14px;
}

.hyxf_info li::before {
    position: absolute;
    left: 0;
    top: 1;
    content: '';
    width: 14px;
    height: 14px;
    background: url(../img/hy_gou.png) no-repeat center;
    background-size: cover;
}

.hyxf_box .btn {
    position: relative;
    display: block;
    width: 222px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: linear-gradient(127deg, #FF5F00 0%, #FF9900 100%);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 40px auto 20px;
    transition: all .3s;
}

.hyxf_box .btn:hover {
    opacity: .8;
}

.hyxf_box .btn span {
    position: absolute;
    right: -88px;
    top: -40px;
    height: 28px;
    background: linear-gradient(127deg, #FF5F00 0%, #FF9900 100%);
    border-radius: 4px;
    border: 1px solid #FFFFFF;
    font-size: 12px;
    text-align: center;
    line-height: 26px;
    padding: 0 12px;
}

.hyxf_box .btn span::before {
    position: absolute;
    top: 20px;
    left: 25px;
    content: '';
    width: 0;
    height: 0;
    border: 5px solid #0000;
    border-right-color: #FF5F00;
    border-top-color: #FF5F00;
    transform: rotate(135deg);
}

.hyxf_box .p4 {
    display: block;
    width: 146px;
    font-size: 13px;
    color: #636977;
    line-height: 18px;
    text-align: center;
    text-decoration: underline;
    cursor: pointer;
    margin: 20px auto 0;
}

.hyxf_box .p4:hover {
    color: #FF5F00;
}

.hy-class {
    background-color: transparent !important;
    box-shadow: 1px 1px 50px rgba(0, 0, 0, 0) !important;
}

.hy-class .layui-layer-content {
    overflow: inherit !important;
}

/* 会员续费提示弹窗end */

/* 顶部广告位 */
.common_top_banner {
    display: none;
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.common_top_banner img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2560px;
    height: 60px;
}

.common_top_banner span {
    position: absolute;
    right: 10px;
    top: 2px;
    z-index: 111;
    display: block;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3) url(/p/style/web/zt/img/2022hd_zt/icon_close.png) no-repeat center center;
    background-size: 60%;
    border-radius: 15px;
    cursor: pointer;
}

/* 顶部广告位end */

.common_xy {
    display: flex;
    align-items: center;
}

.common_xy .txt {
    font-size: 14px;
    color: #636977;
    margin-left: 10px;
}

.common_xy a {
    color: #00B38A;
}

/* 发布成功弹窗 */
.fbSuccessp_pop {
    width: 400px;
    
    background: #F6F6F6;
    border-radius: 2px;
    padding: 40px 30px;
}



.fbSuccessp_pop .tit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #090505;
}

.fbSuccessp_pop .tit img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
}

.fbSuccessp_pop .p2 {
    font-size: 14px;
    color: #636977;
    line-height: 24px;
    text-align: center;
    margin-top: 15px;
}

.fbSuccessp_pop .item {
    position: relative;
    display: flex;
    align-items: center;
    width: 340px;
    /* height: 74px; */
    background: linear-gradient(270deg, #FFF0C8 0%, #FFF7E5 100%);
    border-radius: 4px;
    margin: 25px auto 0;
    padding: 12px 20px;
}

.fbSuccessp_pop .item .jp {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.fbSuccessp_pop .item p {
    width: 252px;
    font-size: 14px;
    color: #301400;
    line-height: 24px;
}

.fbSuccessp_pop .item .icon {
    position: absolute;
    top: -18px;
    left: 0;
    width: 58px;
    height: 20px;
}

.fbSuccessp_pop .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 38px;
    background: #00B38A;
    border-radius: 4px;
    font-size: 14px;
    color: #FFFFFF;
    margin: 30px auto 0;
    transition: all .3s;
}

.fbSuccessp_pop .btn:hover {
    opacity: .8;
}

.mprz {
    display: block;
    float: left;
    width: 48px;
    height: 16px;
    background: url(/p/style/web/img/public_icon/mprz.png) no-repeat center;
    background-size: cover;
}

.fbSuccessp_pops .item {
    background: #FFF !important;
    border-radius: 12px 12px 12px 12px;
}

/* 弹窗 */
.check_fabu {
    background: linear-gradient( 180deg, #DCFFF7 0%, #FFFFFF 57%);
    border-radius: 4px 4px 4px 4px;
    padding: 38px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.check_fabu .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

.check_fabu .h2 {
    font-weight: 400;
    font-size: 20px;
    color: #00B38A;
    margin-bottom: 12px;
}

.check_fabu .desc {
    width: 331px;
    color: #636977;
    font-size: 12px;
    line-height: 20px;
    text-align: center;
}

.check_fabu .icons {
    width: 100%;
    height: 70px;
    margin-top: 30px;
    margin-bottom: 26px;
}
.check_fabu .btn {
    width: 208px;
    height: 36px;
    background: #00B38A;
    border-radius: 4px 4px 4px 4px;
    text-align: center;
    line-height: 36px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
}
