body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}

body,
button,
input,
select,
textarea {
    font: 12px/1.5tahoma, arial, \5b8b\4f53;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

h1 {
    font-size: 36px;
    line-height: 56px;
    letter-spacing: 1px;
}

h2 {
    font-size: 28px;
    line-height: 42px;
    letter-spacing: 0.6px;
}

address,
cite,
dfn,
em,
var {
    font-style: normal;
}

code,
kbd,
pre,
samp {
    font-family: couriernew, courier, monospace;
}

small {
    font-size: 12px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

legend {
    color: #000;
}

fieldset,
img {
    border: 0;
}

button,
input,
select,
textarea {
    font-size: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input {
    color: #44494b;
    box-sizing: border-box;
    height: 48px;
    width: 380px;
    border: 2px solid #218bfc;
    text-indent: 10px;
    border-radius: 4px 0 0 4px;
}

input:focus {
    background: #f2f8ff;
}

strong {
    font-size: 200px;
    position: absolute;
}

::-webkit-input-placeholder {
    /* Chrome */
    color: #758e98;
}

:-ms-input-placeholder {
    /* IE 10+ */
    color: #758e98;
}

::-moz-placeholder {
    /* Firefox 19+ */
    color: #758e98;
    opacity: 1;
}

:-moz-placeholder {
    /* Firefox 4 - 18 */
    color: #758e98;
    opacity: 1;
}

body {
    /*text-align: center;*/
    /*font-family:Arial, "Helvetica Neue", Helvetica,PingFang SC,Microsoft YaHei, sans-serif;*/
    /*font-family:"PingFang SC","Lantinghei SC","Microsoft YaHei",
	"HanHei SC","Helvetica Neue","Open Sans",Arial,"Hiragino Sans GB",
	"微软雅黑",STHeiti,"WenQuanYi Micro Hei",SimSun,sans-serif;*/
    /*font-family: -apple-system,BlinkMacSystemFont, "Segoe UI", Roboto,
             "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
             SimSun, sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
}

input {
    outline: none;
}

a {
    cursor: pointer;
}

.hide{
    display: none;
}

/*文字14号常规色，（字间距按钮中为1，长字段行间距24）*/

.letter14nor {
    font-size: 14px;
    letter-spacing: 0.5px;
    color: #1f2122;
    line-height: 22px;
}


/*文字链接*/

a {
    color: #1798fc;
    /*letter-spacing: 1px;*/
}

a:hover {
    text-decoration: none;
    color: #4eb1fd;
}

a:active {
    color: #127fdc;
}


/*侧边栏*/

.sidebar {
    position: fixed;
    z-index: 10000;
    right: 0px;
    top: 50%;
    margin-top: -105px;
    width: 60px;
    height: 280px;
    text-align: center;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 12px;
    color: #ffffff;
    letter-spacing: 0.63px;
}

.sidebar .side {
    width: 60px;
    height: 70px;
    background: #1798fc;
    /*box-shadow: 0px 1px 2px rgba(0,0,0,.1);*/
    box-shadow: inset 0 1px 0 0 #49affc;
    cursor: pointer;
    position: absolute;
    z-index: 10;
}

.sidebar .side:hover {
    background: #4eb1fd;
}

.sidebar .side:active {
    background: #127fdc;
}

.sidebar .side1 {
    top: 70px;
    /*box-shadow: none;*/
}

.sidebar .side2 {
    top: 140px;
}

.sidebar .side3 {
    border-radius: 2px 2px 0 0;
    top: 0px;
}

.sidebar .side4 {
    border-radius: 0 0 2px 2px;
    top: 210px;
}

.sidebar .side3 a.gotry {
    width: 100%;
    height: 100%;
    color: #ffffff;
}

.describe .blue_line,
.describe .yellow_line {
    display: none;
}

.sidebar .sideimg {
    width: 36px;
    height: 36px;
    padding: 8px 12px 4px 12px;
}

.sidebar .sideimg1 {
    background: url(../img/headfoot/side1.png);
    background-image: url(../img/headfoot/side1.svg), none;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar .sideimg2 {
    background: url(../img/headfoot/side2.png);
    background-image: url(../img/headfoot/side2.svg), none;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar .nothing {
    display: inline-block;
    width: 12px;
    height: 70px;
    /*border: 1px solid lawngreen;*/
    margin: -70px 0 0 -42px;
    position: absolute;
}

@keyframes scaleDraw {
    /*定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称*/
    0% {
        transform: scale(1);
        /*开始为原始大小*/
    }
    25% {
        transform: scale(1.2);
        /*放大1.1倍*/
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.2);
    }
}

.heart_jump {
    animation-name: scaleDraw;
    /*关键帧名称*/
    animation-timing-function: ease-in-out;
    /*动画的速度曲线*/
    animation-iteration-count: infinite;
    /*动画播放的次数*/
    animation-duration: 1.5s;
    /*动画所花费的时间*/
    -webkit-animation-name: scaleDraw;
    /*关键帧名称*/
    -webkit-animation-timing-function: ease-in-out;
    /*动画的速度曲线*/
    -webkit-animation-iteration-count: infinite;
    /*动画播放的次数*/
    -webkit-animation-duration: 1.5s;
    /*动画所花费的时间*/
}

.sidebar .sideimg3 {
    background: url(../img/headfoot/side3.png);
    background-image: url(../img/headfoot/side3.svg), none;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar .sideimg4 {
    width: 22px;
    height: 12px;
    padding: 24px 19px;
    background: url(../img/headfoot/side4.png);
    background-image: url(../img/headfoot/side4.svg), none;
    background-repeat: no-repeat;
    background-position: center 29px;
}

.sidebar .phoneAsk,
.sidebar .web_watch {
    position: absolute;
    /*margin: -70px -274px;*/
    width: 264px;
    height: 70px;
    background: #ffffff;
    box-shadow: 0 0 10px 0 rgba(74, 144, 226, 0.4);
    border-radius: 2px;
    border: 1px solid #e1e4e6;
}

.sidebar .web_watch {
    top: 0px;
    left: -90px;
    opacity: 0;
    /*left: -274px;*/
}

.sidebar .phoneAsk {
    top: 140px;
    left: -90px;
    opacity: 0;
    /*left: -274px;*/
}

.sidebar .call,
.sidebar .watch {
    /*width: 180px;
	height: 24px;*/
    padding: 11px 0 0 15px;
}

.sidebar .span1,
.sidebar .watch1 {
    float: left;
}

.sidebar .call .span1 input,
.sidebar .input-webwatch {
    width: 161px;
    height: 32px;
    padding-left: 8px;
    box-sizing: border-box;
    font-size: 14px;
}

.sidebar input {
    text-indent: 0px;
}

.sidebar .calltome,
.sidebar .clicktoweb {
    float: left;
    font-size: 14px;
    width: 72px;
    height: 32px;
    box-sizing: border-box;
    background: #1798fc;
    border-radius: 0 2px 2px 0;
    color: #ffffff;
    letter-spacing: -0.18px;
    line-height: 32px;
    cursor: pointer;
    display: inline-block;
    border: none;
}

.sidebar .phoneAsk p,
.sidebar .web_watch p {
    margin-top: 5px;
    float: left;
    font-size: 12px;
    letter-spacing: 0.63px;
}

.sidebar .phoneAsk p.tip,
.sidebar .phoneAsk p.waittip,
.sidebar .watch_tip {
    color: #43484a;
}


/* 版心 */

.contant {
    margin: auto;
    width: 960px;
    max-width: 960px;
}

.header {
    z-index: 9999;
    position: fixed;
    top: 0;
    width: 100%;
}

.header .contant {
    width: 960px;
    margin: auto;
}

.qiye-num {
    display: inline-block;
    height: 28px;
}

.trust-num {
    display: none;
}

.info-item .info-item-logout {
    border-bottom: 0px !important;
}

.about_box li:last-child a {
    border-bottom: 0px !important;
}

.top_scroll_list {
    float: left;
    position: absolute;
    top: 0px;
}

.top_scroll_list li {
    height: 28px;
    line-height: 28px;
    text-align: left;
}

.top_scroll_list li span {
    float: none;
}

.top_scroll_list li a {
    float: none;
    margin-left: 0px;
    color: #1798fc;
}

.head1 .top_scroll_list li a:hover {
    color: #1798fc;
    text-decoration: underline;
    margin-left: 0px;
}

.head1 {
    width: 100%;
    height: 28px;
    background: #f2f2f2;
    color: #758e98;
    font-size: 12px;
    letter-spacing: 0.5px;
    line-height: 28px;
    margin: auto;
}

.head1 .contant {
    position: relative;
    overflow: hidden;
}

.head1 a {
    color: #758e98;
    float: right;
    margin-left: 24px;
}

.head1 a:hover {
    color: #43484a;
    margin-left: 24px;
}

.head1 span {
    float: right;
}

.head2 {
    position: relative;
}

.head2 .nav ul li.actived a {
    color: #1798fc;
}

.head2 .letter14nor {
    letter-spacing: 0px;
}

.head2 .nav ul li.product {
    width: 100px;
}

.head2 .nav ul li a {
    color: #1f2122;
    letter-spacing: 0px;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.head2 .nav ul li:hover a {
    color: #4eb1fd;
}

.head2 .nav ul li:active a {
    color: #127fdc;
}


/*产品，下拉图标*/

.head2 li.product a {
    display: inline-block;
}

.head2 li.product label {
    padding-left: 24px;
    background: url(../img/headfoot/black.png);
    background-image: url(../img/headfoot/black.svg), none;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.head2 li.product:hover label {
    padding-left: 24px;
    background: url(../img/headfoot/up.png);
    background-image: url(../img/headfoot/up.svg), none;
    background-position: center;
    background-repeat: no-repeat;
}

.head2 .nav ul li.about {
    /* width: 100px; */
}

.head2 li.about label {
    padding-left: 24px;
    background: url(../img/headfoot/black.png);
    background-image: url(../img/headfoot/black.svg), none;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.head2 li.about:hover label {
    padding-left: 24px;
    background: url(../img/headfoot/up.png);
    background-image: url(../img/headfoot/up.svg), none;
    background-position: center;
    background-repeat: no-repeat;
}

.head2 li.about:hover .about_box li a {
    color: #43484a;
}

.head2 li.about:hover .about_box {
    display: block;
}

.head2 li.actived label {
    padding-left: 24px;
    background: url(../img/headfoot/down.png);
    background-image: url(../img/headfoot/down.svg), none;
    background-position: center;
    background-repeat: no-repeat;
}

.head2 ul.about_box {
    width: 160px;
    /* height: 96px; */
    background: #fff;
    position: absolute;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 200;
    display: none;
}

.head2 ul.about_box li a {
    color: #43484a;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.head2 ul.about_box li:hover {
    background: #f2f8ff;
}


/*导航栏，产品下的*/

.head2 ul.productMenu {
    width: 960px;
    display: flex;
    justify-content: center;
    margin-left: -250px;
    height: 0px;
    transition: height 0.1s;
    z-index: 120;
    position: absolute;
    background: #fff;
    overflow: hidden;
}

.head2 li.product ul.productMenu li a {
    display: inline-block;
    width: 100%;
    height: 100%;
    line-height: normal;
}

.head2 ul.productMenu li {
    margin: 16px 38px 0 38px;
    width: 86px;
    height: 72px;
}

.head2 ul.productMenu li:nth-child(2) {
    width: 70px;
}

.head2 li.product:hover ul.productMenu li:hover p {
    color: black;
    opacity: 1;
}

.head2 li.product ul.productMenu li p.productLi {
    line-height: 30px;
    letter-spacing: 0px;
    white-space: nowrap;
}

.head2 li.product ul.productMenu li p.selected {
    color: black;
    opacity: 1;
}

.head2 li.product ul.productMenu {
    cursor: default;
}

.head2 {
    box-sizing: border-box;
    height: 60px;
    background: #ffffff;
    box-shadow: 0 -1px 0 #e1e4e6 inset;
}

.head2 ul.letter14nor {
    letter-spacing: 0px;
}

.head2 .productMenu li p {
    color: #44494b;
    opacity: 0.6;
}

.head2 .logo-img {
    float: left;
    width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 24px;
}

.header #white_bg {
    width: 100%;
    position: absolute;
    background: #ffffff;
    top: 100%;
    margin: 0px 0 0 0;
    z-index: 60;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.head2 .login-all {
    float: right;
    color: #1f2122;
    font-size: 14px;
    cursor: pointer;
    line-height: 16px;
    display: flex;
    align-items: center;
}

.head2 .login-all .letter14nor {
    /* line-height: 20px;
  display: flex;
  align-items: center; */
    text-decoration: none;
    height: 60px;
    line-height: 60px;
    float: right;
    color: #1f2122;
    font-size: 14px;
    text-align: center;
}

.zhecebox .zhece {
    color: #ffffff !important;
}

.head2 .user-all {
    cursor: pointer;
    float: right;
    margin-top: 14px;
    position: relative;
}

.head2 .user {
    float: right;
    border-radius: 50%;
    position: relative;
    width: 32px;
    height: 32px;
    background: url(../img/headfoot/headpic.png) no-repeat;
    background-image: url(../img/headfoot/headpic.svg);
    background-size: 100%;
}

.head2 .user .nothing {
    position: absolute;
    margin: 30px 0 0 -125px;
    width: 160px;
    height: 16px;
    display: none;
}

.head2 .user-box {
    display: none;
}

.head2 .user-all .item1 {
    height: 48px;
    line-height: 48px;
}

.head2 .user-all .info-item {
    text-align: left;
    line-height: 40px;
    padding-left: 16px;
    padding-right: 16px;
    height: 40px;
    box-sizing: border-box;
    width: 100%;
}

.head2 .nav ul li {
    float: left;
    /* width: 76px; */
    padding: 0 16px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    cursor: pointer;
}

.head2 ul.about_box li {
    width: 100%;
    height: 48px;
    font-size: 14px;
    text-align: left;
    line-height: 48px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
}

.head2 .user:after {
    content: "1";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: red;
    text-align: center;
    line-height: 16px;
    color: #fff;
    position: absolute;
    right: -6px;
    top: -6px;
    display: none;
}

.isFirstLogin .head2 .user:after {
    display: block;
}

.head2 .user-space {
    padding: 6px 16px;
    box-sizing: border-box;
    border-radius: 2px;
    font-size: 14px;
    line-height: 19px;
    color: #ffffff;
    letter-spacing: 0;
    float: right;
    margin-right: 10px;
    background: #ffbf02;
}

.red_dian {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f04134;
    position: absolute;
    right: 0px;
    bottom: 22px;
}

.head2 a:hover {
    text-decoration: none;
}

.head2 .zhecebox {
    width: 88px;
    height: 60px;
    line-height: 60px;
    background: #1798fc;
    display: inline-block;
}

.head2 .zhece {
    margin-left: 16px;
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: inline-block;
}

.mid1 .zhuce-a:hover,
.mid1 .zhuce-btn:hover,
.head2 .mb-login-all:hover,
.head2 .zhecebox:hover,
.price-btn:hover {
    color: white;
    background: #4eb1fd;
}

.mid1 .zhuce-a:active,
.mid1 .zhuce-btn:active,
.head2 .mb-login-all:active,
.head2 .zhecebox:active,
.price-btn:active {
    background: #127fdc;
}

.head2 .login {
    margin-right: 24px;
    color: #1f2122;
}

.head2 .login:hover {
    color: #4eb1fd;
}

.head2 .user:hover .nothing {
    display: block;
}

.head2 .user:hover .user-box {
    display: block;
}

.head2 .user-all ul.user-info {
    z-index: 100;
    position: absolute;
    margin: 46px 0 0 -125px;
    background: #ffffff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #43484a;
    letter-spacing: 0;
    left: 76px;
    width: 130px;
}

.head2 .user-all ul li {
    width: 144px;
}

.head2 .user-all .user .user-box .info-item a {
    display: inline-block;
    width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    box-sizing: border-box;
    color: #1f2122;
}

.head2 .user-all .user .user-box .info-item a.info-item-mykf {
    padding-left: 26px;
    background: url(../img/headfoot/info-item-mykf.png) left center no-repeat;
    background-image: url(../img/headfoot/info-item-mykf.svg), none;
    position: relative;
}

.head2 .user-all .user .user-box .info-item a.info-item-mykf:after {
    content: "new";
    width: 27px;
    height: 16px;
    border-radius: 8px;
    background: red;
    text-align: center;
    line-height: 16px;
    color: #fff;
    position: absolute;
    font-size: 12px;
    right: 0;
    top: 16px;
    display: none;
}

.isFirstLogin .head2 .user-all .user .user-box .info-item a.info-item-mykf:after {
    display: block;
}

.head2 .user-all .user .user-box .info-item a.info-item-selfInfo {
    padding-left: 26px;
    background: url(../img/headfoot/info-item-selfInfo.png) left center no-repeat;
    background-image: url(../img/headfoot/info-item-selfInfo.svg), none;
}

.head2 .user-all .item2 a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.head2 .user .user-info .info-item:hover {
    color: #1f2122;
    background: #f2f8ff;
}

.head2 .user-all a ul.hide {
    display: none;
}

.head2 .mb-login-all {
    display: none;
}

.active {
    background-color: #218bfc;
    color: white !important;
}

.moblie-nav {
    display: none;
}

.meddle {
    min-width: 960px;
}

.price_pc,
.price_yd {
    padding: 48px 0;
    text-align: center;
}

.price_pc .mb-h2 {
    display: none;
}

.price-btn {
    display: block;
    width: 197px;
    height: 44px;
    background-color: #218bfc;
    line-height: 44px;
    margin: 24px auto 0;
    color: #ffffff;
    border-radius: 2px;
    font-size: 16px;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
    color: #ffffff;
}

.comment {
    padding: 48px 0 0 0;
    text-align: center;
}

.trust-logo-pc {
    display: flex;
    justify-content: space-around;
    margin: 40px 0 40px 0;
}

.trust-logo-pc .logo-item {
    background-color: #f6f7fc;
    width: 145px;
    height: 56px;
}

.trust-logo-pc img {
    width: 100%;
    height: 100%;
}

.trust-logo-m {
    display: none;
}

.comment-detail {
    background: #f6f7fc;
    padding: 48px 0 48px 0;
    position: relative;
}

.comment .mb-comment {
    display: none;
}

.comment-detail .contant {
    display: flex;
    /* justify-content: space-around; */
    text-align: left;
    justify-content: center;
    flex-wrap: wrap;
    align-items: baseline;
    margin-top: 40px;
    padding: 0 8px;
    flex-wrap: wrap;
}

.detail-line {
    position: relative;
    /* no need */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.line-item {
    /* text-align: left; */
    /* box-sizing: border-box;
    padding: 16px;
    border: 1px solid #d3d9e0;
    text-align: left; */
    box-sizing: border-box;
    background: #ffffff;
    padding: 16px;
    border: 1px solid #d3d9e0;
    width: 304px;
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 16px;
    border-radius: 2px;
}


/* .line-item:nth-of-type(2) {
    margin-top: 16px;
} */

.line-item p:nth-child(1) {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    line-height: 22px;
}

.line-item p:nth-child(2) {
    display: inline-block;
    background-color: #eef6ff;
    color: rgba(40, 51, 75, 0.8);
    font-size: 12px;
    height: 24px;
    padding: 0 8px;
    margin-top: 10px;
    line-height: 24px;
    border-radius: 2px;
}

.footer {
    min-width: 960px;
}

.product-lists {
    background: #0c1f47;
    padding-top: 48px;
    padding-bottom: 40px;
    font-size: 14px;
    letter-spacing: 0.73px;
    line-height: 19px;
    color: #ffffff;
}

.product-lists .contant {
    display: flex;
    justify-content: space-around;
}

.product-lists .contant::after {
    content: "";
    clear: both;
    display: block;
}

.product-lists .list-item {
    width: 208px;
    min-height: 120px;
}

.product-lists .list-item::after {
    content: "";
    clear: both;
    display: block;
}

.product-lists .list-first {
    width: 336px;
}

.product-lists .list-item a div.img-placeholder {
    margin-left: 3px;
    height: 50px;
    background: url(../img/headfoot/footlogo.png);
    background-image: url(../img/headfoot/footlogo.svg), none;
    background-repeat: no-repeat;
}

.product-lists .list-first>div {
    height: 36px;
    line-height: 36px;
    color: #62778c;
    margin-top: 8px;
}

.product-lists .list-first .icon img {
    width: 100%;
    height: 100%;
}

.product-lists .list-first .icon {
    width: 36px;
    height: 36px;
    float: left;
    margin-right: 14px;
}

.product-lists .list-item>* {
    height: 22px;
    line-height: 22px;
}

.product-lists .footer-title {
    margin-bottom: 8px;
    font-size: 12px;
    color: #62778c;
    letter-spacing: 1px;
    align-items: flex-start;
    height: 18px;
    line-height: 18px;
}

.product-lists .list-item a.list__item:hover,
.product-lists .list-item a.list__item:visited {
    opacity: 0.8;
}

.product-lists .list-item a.list__item {
    letter-spacing: 1px;
    color: #ffffff;
    display: block;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-lists .list-item img {
    height: 134px;
}

.copyright {
    width: 100%;
    height: 56px;
    background: #08142e;
    position: relative;
    min-width: 960px;
}

.copyright span {
    color: #ffffff;
    opacity: 0.6;
    letter-spacing: 0.6px;
    line-height: 56px;
    font-size: 12px;
}

.copyright span a {
    color: #ffffff;
    text-decoration: underline;
}

.copyright .icons {
    float: right;
    margin-top: 16px;
}

.copyright .icon {
    width: 24px;
    height: 24px;
    margin-right: 17px;
    display: inline-block;
}

.copyright .icon1 {
    opacity: 1;
    background: url(../img/headfoot/2-1.png) no-repeat;
    background-size: 100% 100%;
}

.copyright .icon2 {
    opacity: 1;
    background: url(../img/headfoot/2-2.png) no-repeat;
    background-size: 100% 100%;
}

.copyright .icon3 {
    opacity: 1;
    background: url(../img/headfoot/2-3.png) no-repeat;
    background-size: 100% 100%;
}

.copyright .icon1:hover::after {
    position: absolute;
    margin-left: -39px;
    margin-top: -32px;
    background: #fff;
    color: #1f2122;
    content: "浙公网安备";
    font-size: 12px;
    padding: 3px;
    border-radius: 1px;
}

.copyright .icon2:hover::after {
    position: absolute;
    margin-left: -39px;
    margin-top: -32px;
    background: #fff;
    color: #1f2122;
    content: "工商监管";
    font-size: 12px;
    padding: 3px;
    border-radius: 1px;
}

.copyright .icon3:hover::after {
    position: absolute;
    margin-left: -39px;
    margin-top: -32px;
    background: #fff;
    color: #1f2122;
    content: "信用评级";
    font-size: 12px;
    padding: 3px;
    border-radius: 1px;
}

.mb-bussiness-how {
    display: none;
}

.footer-img {
    display: none;
}

.fix-bottom {
    display: none;
}

.consult {
    /* width: 0.48rem;
  height: 0.48rem;

  background: #ffffff;
  box-shadow: 0px 0px 6px 0px rgba(40, 51, 75, 0.4);
  border-radius: 50%;
  position: fixed;
  bottom: 0.64rem;
  right: 0.16rem; */
    display: none;
}

/* 投诉举报 样式*/
.ic_complain{
    position: fixed;
    bottom: calc(50% + 110px);
    right: 0px;
    width: 60px;
    height: 36px;
    background: #FC1717;
    border-radius: 4px;
    cursor: pointer;
    z-index: 9999;
}
.ic_complain img{
    display: block;
    float: left;
    width: 22px;
    height: 28px;
    margin-top: 4px;
    margin-bottom: 4px;
    margin-left: 4px;
}
.ic_complain span{
    display: block;
    float: left;
    margin-top: 4px;
    margin-left: 4px;
    width: 26px;
    height: 28px;
    font-size: 12px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 14px;
    letter-spacing: 0px;
}

/* 移动端样式 */

@media screen and (max-width: 768px) {
    .footer-d {
        display: none;
    }
    html {
        font-size: 26.666666666666666vw;
        margin: 0;
        padding: 0;
        height: 100%;
        width: 100%;
    }
    .head2 .login-all .letter14nor {
        /* line-height: 20px;
    display: flex;
    align-items: center; */
        text-decoration: none;
        width: 1.2rem;
        height: 0.64rem;
        line-height: 0.64rem;
        float: right;
        background: #3b99fc;
        color: #ffffff;
        font-size: 0.14rem;
        text-align: center;
    }
    h2 {
        font-size: 0.28rem;
        line-height: 0.42rem;
        letter-spacing: 0.006rem;
    }
    .head1 {
        display: none;
    }
    .header .contant {
        width: 3.43rem;
    }
    .navbox .contant {
        float: right;
        width: 100%;
        height: 0.64rem;
    }
    .contant {
        width: 3.43rem;
    }
    .nav ul {
        display: none;
    }
    .meddle {
        margin-top: 0.64rem;
        min-width: 100%;
    }
    .head2 {
        /* height: 0.44rem; */
        position: fixed;
        top: 0;
        box-sizing: border-box;
        background: #ffffff;
        width: 100%;
        height: 0.64rem;
        line-height: 0.64rem;
        font-size: 0.14rem;
        z-index: 99999;
    }
    .head2 .logo-img {
        margin: 0rem 0.08rem 0 0.12rem;
        height: 0.64rem;
        width: 1.45rem;
    }
    .head2 .logo-img img {
        width: 100%;
        height: 0.25rem;
    }
    .head2 .login-all {
        height: 0.44rem;
    }
    .head2 .zhecebox {
        width: 1.2rem;
        height: 100%;
        line-height: 0.44rem;
    }
    .head2 .user-all {
        display: none;
    }
    .head2 .mb-login-all {
        display: flex;
        background-color: #1798fc;
        width: 1.2rem;
        height: 0.44rem;
        float: right;
    }
    .head2 .mb-login-all .zhece {
        margin: 0 auto;
        line-height: 0.44rem;
        font-size: 0.14rem;
        width: auto;
    }
    .moblie-nav {
        float: left;
        font-size: 0.14rem;
        display: flex;
        align-items: center;
        width: 0.82rem;
        height: 0.64rem;
    }
    .moblie-nav .vertical-line {
        height: 0.2rem;
        width: 0.01rem;
        background: #28334b;
        border-radius: 1px;
        margin-right: 0.08rem;
    }
    .moblie-nav span {
        height: 0.25rem;
        line-height: 0.25rem;
    }
    .login-all .login {
        display: none !important;
    }
    .login-all .zhece {
        margin: 0;
        font-size: 0.14rem;
        justify-content: center;
    }
    .footer {
        min-width: 100%;
    }
    .footer .price_yd {
        padding: 0.48rem 0;
    }
    .footer .price_yd .pc-h2 {
        display: none;
    }
    .footer .price_yd .mb-h2 {
        display: block;
    }
    .price-btn {
        width: 1.97rem;
        height: 0.44rem;
        font-size: 0.16rem;
        line-height: 0.44rem;
        margin-top: 0.24rem;
    }
    .trust-logo-pc {
        display: none;
    }
    .trust-logo-m {
        display: flex;
        justify-content: space-around;
        margin: 40px 0 40px 0;
        /* display: block; */
        margin: 0 0 0.16rem 0;
        flex-wrap: wrap;
    }
    .trust-logo-m .logo-item {
        width: 1.09rem;
        height: 0.48rem;
        position: relative;
        margin-bottom: 0.08rem;
    }
    .trust-logo-m .logo-item img {
        width: 1.09rem;
        height: 0.48rem;
        position: absolute;
        left: 0;
        top: 0;
    }
    .comment .comment-detail {
        display: none;
    }
    .comment .mb-comment {
        display: block;
        background: #f6f7fc;
        padding: 0.24rem 0.16rem 0.7rem 0.16rem;
    }
    .comment .mb-detail {
        display: flex;
        overflow-x: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .comment .mb-detail::-webkit-scrollbar {
        width: 0 !important;
    }
    .comment .mb-detail .mb-item {
        width: 2.78rem;
        padding: 0.16rem 0.16rem 0.18rem 0.16rem;
        flex-shrink: 0;
        background-color: white;
        margin-right: 0.16rem;
        align-self: baseline;
        text-align: left;
        font-size: 0;
        border-radius: 0.08rem;
    }
    .comment .mb-detail p:nth-child(1) {
        font-size: 0.14rem;
        color: rgba(0, 0, 0, 0.8);
        line-height: 0.22rem;
    }
    .comment .mb-detail p:nth-child(2) {
        display: inline-block;
        height: 0.24rem;
        font-size: 0.12rem;
        line-height: 0.24rem;
        background: #eef6ff;
        color: rgba(40, 51, 75, 0.8);
        margin-top: 0.1rem;
        padding: 2px 8px;
    }
    .product-lists {
        display: none;
    }
    .copyright {
        display: none;
    }
    .footer-img {
        display: block;
        position: relative;
        height: 4.97rem;
        margin-bottom: 0.44rem;
    }
    .footer-img span {
        position: absolute;
        bottom: 0.1rem;
        right: 0.2rem;
        font-size: 0.12rem;
        color: #28334b;
    }
    .footer-img img {
        width: 100%;
        height: 100%;
    }
    .footer-img p {
        font-size: 0.24rem;
        line-height: 0.36rem;
        color: #28334b;
        width: 3.27rem;
        text-align: center;
        position: absolute;
        top: 0.7rem;
        left: 0.16rem;
        letter-spacing: 0.01rem;
    }
    .footer-img a {
        display: block;
        font-size: 0.14rem;
        width: 1.97rem;
        height: 0.44rem;
        background-color: #3b99fc;
        line-height: 0.32rem;
        text-align: center;
        color: #ffffff;
        border-radius: 2px;
        position: absolute;
        top: 1.6rem;
        line-height: 0.44rem;
        left: 50%;
        transform: translate(-50%, 0);
    }
    .fix-bottom {
        height: 0.48rem;
        width: 100%;
        position: fixed;
        z-index: 9999;
        bottom: 0;
        display: flex;
        font-size: 0.1rem;
        background-color: #ffffff;
        align-items: center;
        box-shadow: 0 0 0 1px #e1e4e6;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .fix-bottom li {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        /* width: 1.25rem; */
        display: flex;
        /* box-sizing: border-box; */
        /* flex-direction: column; */
        height: 0.48rem;
        text-align: center;
        align-items: center;
        color: #62778c;
        cursor: pointer;
        font-size: 0.16rem;
        font-family: PingFangSC-Regular, PingFang SC;
        font-weight: 400;
        color: #28334b;
        border-top: 3px solid #ffff !important;
        box-shadow: 0px 1px 0px 0px #d8dfea;
    }
    .fix-bottom .active {
        background-color: #fff;
        border-top: 3px solid #218bfc !important;
        color: #218bfc !important;
    }
    /* .fix-bottom li:hover */
    .fix-bottom li img {
        width: 0.24rem;
        height: 0.24rem;
        margin-top: 0.03rem;
    }
    .fix-bottom li p {
        font-size: 0.16rem;
    }
    .consult {
        width: 0.48rem;
        height: 0.48rem;
        background: #ffffff;
        box-shadow: 0px 0px 6px 0px rgba(40, 51, 75, 0.4);
        border-radius: 50%;
        position: fixed;
        bottom: 0.64rem;
        right: 0.16rem;
        display: block;
        z-index: 20;
    }
    .consult img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 0.21rem;
        height: 0.21rem;
        /* background-color: red; */
    }
    .consult div {
        width: 0.16rem;
        height: 0.16rem;
        border-radius: 50%;
        background: #ff311a;
        position: absolute;
        text-align: center;
        line-height: 0.14rem;
        top: -0.02rem;
        right: -0.02rem;
        font-size: 0.1rem;
        display: none;
        color: white;
    }
    .bussiness-how {
        display: none;
    }
    .mb-bussiness-how {
        display: block;
        box-shadow: 0px 0px 14px -2px rgba(0, 0, 0, 0.12);
        height: 4.16rem;
        padding-top: 0.24rem;
        width: 3.43rem;
        height: 4.11rem;
        margin: 0.5rem auto;
    }
    .mb-bussiness-how .swiper-container {
        /* height: 4.64rem; */
        height: 5.16rem;
        --swiper-theme-color: black;
    }
    .mb-bussiness-how .swiper-slide h3 {
        font-size: 0.16rem;
        color: #28334b;
    }
    .mb-bussiness-how .swiper-slide p {
        font-size: 0.14rem;
        color: #62778c;
        text-align: center;
        padding: 0 0.16rem;
        line-height: 0.2rem;
        letter-spacing: 0.012rem;
        margin: 0.08rem 0 0.16rem 0;
        height: 0.6rem;
    }
    .mb-bussiness-how .swiper-slide img {
        width: 3.43rem;
        height: 3.08rem;
    }
    .mb-bussiness-how .swiper-slide video {
        width: 3.43rem;
        height: 3.08rem;
    }
    .swiper-pagination {
        bottom: 0.4rem !important;
    }
    .swiper-pagination-bullet {
        width: 8px !important;
        height: 8px !important;
        margin: 0 4px !important;
    }
    .trust-num {
        display: block;
    }

    /* 侧边栏 投诉举报 样式*/
    .sidebar{
        display: none;
    }
    .ic_complain{
        width: 0.48rem;
        height: 0.48rem;
        background: #ffffff;
        box-shadow: 0px 0px 6px 0px rgb(40 51 75 / 40%);
        border-radius: 50%;
        position: fixed;
        bottom: 1.2rem;
        right: 0.16rem;
        display: block;
        z-index: 9999;
    }
    .ic_complain img{
        display: none;
    }
    .ic_complain span{
        display: block;
        width: 26px;
        height: 28px;
        margin: 0;
        font-size: 12px;
        font-weight: 400;
        padding-top: 0.10rem;
        padding-left: 0.10rem;
        text-align: center;
        color: #FC1717;
        line-height: 14px;
    }
}