@charset "UTF-8";
@font-face {
    font-family: 'HarmonyOS_Sans';
    src: url('../fonts/HarmonyOS_Sans/HarmonyOS_Sans_Thin.ttf?v=20260312a') format('opentype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOS_Sans';
    src: url('../fonts/HarmonyOS_Sans/HarmonyOS_Sans_Light.ttf?v=20260312a') format('opentype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOS_Sans';
    src: url('../fonts/HarmonyOS_Sans/HarmonyOS_Sans_Regular.ttf?v=20260312a') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOS_Sans';
    src: url('../fonts/HarmonyOS_Sans/HarmonyOS_Sans_Medium.ttf?v=20260312a') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'HarmonyOS_Sans';
    src: url('../fonts/HarmonyOS_Sans/HarmonyOS_Sans_Bold.ttf?v=20260312a') format('opentype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'AdventPro';
    src: url('../fonts/AdventPro/AdventPro-Bold.ttf?v=20260316a') format('opentype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'AnticDidone';
    src: url('../fonts/AnticDidone/AnticDidone-Regular.ttf?v=20260331a') format('opentype');
    font-weight: 400;
    font-style: normal;
}

:root {
    --text-black: #0A1638;
    --text-white: #fff;

    --text-base-color: #3D3D3D;
    --text-secondary-color: #636672;

    --text-warning-color: #F08535;
    --text-warning-bg: #F08535;
    --text-warning-border: #F08535;
    --text-warning-hover-bg: #ef7316;
    --text-warning-hover-border: #ee7d28;

    --text-primary-color: #0179FD;
    --text-primary-bg: #0179FD;
    --text-primary-border: #0179FD;
    --text-primary-hover-bg: #0069d9;
    --text-primary-hover-border: #0062cc;

    --text-success-color: #C8E76E;
    --text-success-bg: #C8E76E;
    --text-success-border: #C8E76E;
    --text-success-hover-bg: #b5e629;
    --text-success-hover-border: #b5e625;

    --text-danger-color: #FF8080;
    --text-danger-bg: #FF8080;
    --text-danger-border: #FF8080;
    --text-danger-hover-bg: #fe5858;
    --text-danger-hover-border: #fd5f5f;

    --text-info-color: #FAECEF;
    --text-info-bg: #FAECEF;
    --text-info-border: #FAECEF;
    --text-info-hover-bg: #fae4e9;
    --text-info-hover-border: #fae4e9;

    --linear-gradient-bg1: linear-gradient( 270deg, #D0F574 0%, #4174EE 100%);
    --linear-gradient-bg2: linear-gradient( 270deg, #F1DADF 0%, #4174EE 100%);
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    /*letter-spacing: 1px;*/
}
/*html {*/
/*    font-size: calc(100vw / 19.2);*/
/*}*/
body {
    margin: 0;
    padding: 0;
    height: auto;
    font-family: 'HarmonyOS_Sans', sans-serif;
    font-size: 0.16rem;
    font-weight: 400;
    cursor: default;
}

ul {
    list-style: none;
}
/* 隐藏滚动条，但仍可滚动 */
.hide-scrollbar {
    overflow: auto; /* 或 scroll, 但 auto 更合适 */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge 旧版 */
}

/* WebKit 内核（Chrome, Safari, Edge 等） */
.hide-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none; /* 完全隐藏滚动条 */
    /* 或者 width: 0; height: 0; 但 display: none 更彻底 */
}

a {
    text-decoration: none !important;
    outline:none !important;
}

.relative{position: relative;}
.absolute{position: absolute;}

.page-container {}

.page-main {
    /*position: absolute;*/
    /*left: calc(50% - 550px);*/
}

.page-main-w {
    width: 11.4rem;
    margin-left: auto;
    margin-right: auto;
}

/*颜色 start*/
.text-black {
    color: var(--text-black);
}
.text-white {
    color: var(--text-white);
}
.text-base {
    color: var(--text-base-color);
}
.text-secondary {
    color: var(--text-secondary-color);
}
.text-warning {
    color: var(--text-warning-color);
}
.text-warning-bg {
    background-color: var(--text-warning-color);
}
.text-primary {
    color: var(--text-primary-color);
}
.text-primary-bg {
    color: var(--text-primary-bg);
}
.text-success {
    color: var(--text-success-color);
}
.text-success-bg {
    color: var(--text-success-bg);
}
.text-danger {
    color: var(--text-danger-color);
}
.text-danger-bg {
    color: var(--text-danger-bg);
}
.text-info {
    color: var(--text-info-color);
}
.text-info-bg {
    color: var(--text-info-bg);
}


.text-linear-gradient-bg1 {
    background: var(--linear-gradient-bg1);
}

.text-linear-gradient-bg2 {
    background: var(--linear-gradient-bg2);
}
/*颜色 end*/

/*按钮 start*/
.lx-btn {
    display: inline-block;
    margin: 0;
    padding: 0.5em 1em;
    border: 0.01rem solid transparent;
    border-radius: 0.25rem;
    background: transparent;
    font-family: inherit;
    font-size: 0.16rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    transition: all 0.15s ease-in-out;
}

.lx-btn:focus {
    outline: 0;
}

.lx-btn:disabled,
.lx-btn.disabled {
    opacity: 0.65;
    pointer-events: none;
}

.lx-btn-default {
    background-color: #e0e0e0;
    border-color: #adadad;
    color: #333;
}
.lx-btn-default:hover {
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.lx-btn-primary {
    background-color: var(--text-primary-bg);
    border-color: var(--text-primary-border);
    color: var(--text-white);
}
.lx-btn-primary:hover {
    background-color: var(--text-primary-hover-bg);
    border-color: var(--text-primary-hover-border);
}
.lx-btn-outline-primary {
    background-color: transparent;
    border-color: var(--text-primary-bg);
    color: var(--text-primary-bg);
}
.lx-btn-outline-primary:hover {
    background-color: var(--text-primary-bg);
    color: #fff;
}
.lx-btn.lx-btn-warning:focus {
    box-shadow: 0 0 0 0.02rem rgba(0, 123, 255, 0.25);
}

.lx-btn-warning {
    background-color: var(--text-warning-bg);
    border-color: var(--text-warning-border);
    color: var(--text-white);
}
.lx-btn-warning:hover {
    background-color: var(--text-warning-hover-bg);
    border-color: var(--text-warning-hover-border);
}
.lx-btn.lx-btn-warning:focus {
    box-shadow: 0 0 0 0.02rem rgba(240, 133, 53, 0.25);
}
.lx-btn-outline-warning {
    background-color: transparent;
    border-color: var(--text-warning-bg);
    color: var(--text-warning-bg);
}
.lx-btn-outline-warning:hover {
    background-color: var(--text-warning-bg);
    color: #fff;
}

.lx-btn-success {
    background-color: var(--text-success-bg);
    border-color: var(--text-success-border);
    color: var(--text-white);
}
.lx-btn-success:hover {
    background-color: var(--text-success-hover-bg);
    border-color: var(--text-success-hover-border);
}
.lx-btn.lx-btn-success:focus {
    box-shadow: 0 0 0 0.02rem rgba(240, 133, 53, 0.25);
}
.lx-btn-outline-success {
    background-color: transparent;
    border-color: var(--text-success-bg);
    color: var(--text-success-bg);
}
.lx-btn-outline-success:hover {
    background-color: var(--text-success-bg);
    color: #fff;
}

.lx-btn-danger {
    background-color: var(--text-danger-bg);
    border-color: var(--text-danger-border);
    color: var(--text-white);
}
.lx-btn-danger:hover {
    background-color: var(--text-danger-hover-bg);
    border-color: var(--text-danger-hover-border);
}
.lx-btn.lx-btn-danger:focus {
    box-shadow: 0 0 0 0.02rem rgba(240, 133, 53, 0.25);
}
.lx-btn-outline-danger {
    background-color: transparent;
    border-color: var(--text-danger-bg);
    color: var(--text-danger-bg);
}
.lx-btn-outline-danger:hover {
    background-color: var(--text-danger-bg);
    color: #fff;
}

.lx-btn-info {
    background-color: var(--text-info-bg);
    border-color: var(--text-info-border);
    color: var(--text-white);
}
.lx-btn-info:hover {
    background-color: var(--text-info-hover-bg);
    border-color: var(--text-info-hover-border);
}
.lx-btn.lx-btn-info:focus {
    box-shadow: 0 0 0 0.02rem rgba(240, 133, 53, 0.25);
}
.lx-btn-outline-info {
    background-color: transparent;
    border-color: var(--text-info-bg);
    color: var(--text-info-bg);
}
.lx-btn-outline-info:hover {
    background-color: var(--text-info-bg);
    color: #fff;
}

.lx-btn-sm {
    width: 1rem;
    height: 0.5rem;
    padding: 0.25rem 0.05rem;
    border-radius: 0.02rem;
}

.lx-btn-md {
    width: 1.5rem;
    height: 0.5rem;
    padding: 0.05rem 0.1rem;
    border-radius: 0.02rem;
}

.lx-btn-lg {
    width: 2rem;
    height: 0.5rem;
    padding: 0.05rem 0.1rem;
    border-radius: 0.04rem;
}

.lx-btn-block {
    display: block;
    width: 100%;
}
/*按钮 end*/

/*banner公共样式 start*/
.page-banner-container {
    width: 100%;
    height: 8.8rem;
    position: relative;
}

.page-banner-content {
    position: absolute;
    z-index: 1;
}
/*banner公共样式 end*/

/*flex公共样式 start*/
.flex {
    display: flex;
}
.flex-col{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */

    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.flex-row{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */

    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}
.flex-grow {
    flex-grow: 1;
}
.flex-shrink {
    flex-shrink: 0;
}
.items-center {
    align-items: center;
}
.items-end {
    align-items: flex-end;
}
.justify-center {
    justify-content: center;
}
.justify-between {
    justify-content: space-between;
}
.justify-around {
    justify-content: space-around;
}
.flex1{
    box-flex:1;
    -webkit-box-flex:1;
    -moz-box-flex:1;
    -webkit-flex:1;
    flex:1;
}
.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
/*flex公共样式 end*/

/*高度公共样式 start*/
.h-full {
    height: 100%;
}
.w-full {
    width: 100%;
}
.size-full {
    width: 100%;
    height: 100%;
}
.w40 {
    width: 0.4rem;
}


.overflow-hidden {
    overflow: hidden;
}
.overflow-auto {
    overflow: auto;
}
.overflow-y-auto {
    overflow-y: auto;
}


/*高度公共样式 end*/
.hide {
    display: none;
}

.textCN {
    display: none;
}

.textEN {
    display: none;
}

/*面包屑导航栏开始*/
.nav-ul {
    padding: 0;
    position: fixed;
    right: 0.2rem;
    top: 50%;
    width: 0.12rem;
    z-index: 66666;
    margin-bottom: 0;
}

.nav-ul li {
    padding: 0;
    list-style: none;
    margin: 0.1rem 0;
    position: relative;
}

.nav-ul li::after {
    content: " ";
    display: block;
    width: 0.1rem;
    height: 0.1rem;
    border-radius: 50%;
    border: 0.01rem solid gainsboro;
    background: transparent;
    margin: 0.05rem 0;
    cursor: pointer;
}

.nav-ul li.active {
    background: transparent !important;
}

.nav-ul li.active::after {
    background: #192742;
    border-color: #192742;
    box-shadow: 0 0 0.1rem 0.03rem #192742;
}

.nav-ul li:hover::after {
    background: #192742;
    border-color: #192742;
}

.nav-ul li:hover p {
    opacity: 1;
}

.nav-ul li p {
    position: absolute;
    right: 0.2rem;
    top: -0.05rem;
    font-size: 0.14rem;
    line-height: 0.14rem;
    white-space: nowrap;
    background: #192742;
    color: #fff;
    padding: 0.05rem;
    border-radius: 0.05rem;
    transition: opacity .3s;
    opacity: 0;
    text-transform: capitalize;
}

.nav-active {
    background: #b90b2c !important;
}

.section-logos .section-logos-content img {
    width: 1.5rem;
}

/*面包屑导航栏结束*/

/*backTop开始*/
/*1200px {*/
    /*width: 45px;*/
    /*height: 45px;*/
    /*border-radius: 5px;*/
    /*position: fixed;*/
    /*bottom: 15px;*/
    /*right: 15px;*/
    /*background: #D20814;*/
    /*text-align: center;*/
    /*line-height: 45px;*/
    /*cursor: pointer;*/
    /*z-index: 999999;*/
    /*display: none;*/
/*}*/

.backTop i {
    font-size: 0.25rem;
    color: #fff;
    line-height: 0.45rem;
}

/*backTop结束*/

section {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.gray {
    background: #f7f7f7;
}

section .section-body {
    width: 1200PX;
    margin: auto;
    padding-bottom: 0.7rem;
}

/*通用链接按钮*/
.link-btn{
    border: 0.01rem gainsboro solid;
    background: #fff;
    border-radius: 0.25rem;
    height: 0.33rem;
    display: inline-block;
    position: relative;
    text-indent: 0;
    line-height: 0.15rem;
}

.link-btn i{
    border-radius: 50%;
    width: 0.15rem;
    height: 0.15rem;
    background: #192742;
    color: #fff;

    /*定位*/
    position: absolute;
    left: 0.15rem;
    top: 0.1rem;
    font-size: 0.15rem;
}
.link-btn i:before {
    content: "\e602";
    position: absolute;
    top: -0.01rem;
    left: 0;
}

.link-btn span {
    color: #000;
    font-size: 0.15rem;
    line-height: 0.35rem;
    margin: 0 0.2rem 0 0.4rem;
}
.link-btn:hover{
    border-color: #192742;
    background: #192742;
}
.link-btn:hover i {
    color: #192742;
    background: #fff;
}
.link-btn:hover span {
    color: #fff;
}
.link-btn:active{
    border-color: gainsboro;
    background: #fff;
}
.link-btn:active i {
    background: #192742;
    color: #fff;
}
.link-btn:active span {
    color: #000;
}

/*section标题栏开始*/
section .section-title {
    margin: 60PX auto;
    display: table;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: default;
}

section .section-title .section-title-EN {
    text-transform: Uppercase;
    font-size: 3.4rem;
    color: #b90b2c;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding: 0.03rem 1.2rem;
    margin: auto;
    display: table;
}

section .section-title .section-title-EN::before {
    content: '';
    height: 0.01rem;
    width: 0.3rem;
    background: #b90b2c;

    /* 定位 */
    position: absolute;
    left: 0;
    bottom: 0.25rem;
}

section .section-title .section-title-EN::after {
    content: '';
    height: 0.01rem;
    width: 0.3rem;
    background: #b90b2c;

    /* 定位 */
    position: absolute;
    right: 0;
    bottom: 0.25rem;
}

section .section-title .section-title-line {
    width: 100%;
}

section .section-title .section-title-line::before {
    content: '';
    height: 0.01rem;
    width: calc(50% - 0.15rem);
    background: rgba(128, 128, 128, 0.51);

    /* 定位 */
    position: absolute;
    left: 0;
    bottom: 0;
}

section .section-title .section-title-line::after {
    content: '';
    height: 0.01rem;
    width: calc(50% - 0.15rem);
    background: rgba(128, 128, 128, 0.51);

    /* 定位 */
    position: absolute;
    right: 0;
    bottom: 0;
}

section .section-title .section-title-CN {
    display: block;
    font-size: 2.4rem;
    color: #000000;
    text-align: center;
    font-weight: bold;
    padding-top: 0.07rem;
    position: relative;
    width: fit-content;
    margin: auto;
}
section .section-title .section-title-CN::after {
    content: '';
    height: 0.06rem;
    width: 0.06rem;
    border-radius: 0.03rem;
    background: #b90b2c;

    /* 定位 */
    position: absolute;
    left: 50%;
    top: -0.03rem;
    transform: translateX(-50%);
}

section .section-title.white .section-title-EN {
    color: white;
}

section .section-title.white .section-title-EN::before {
    background: white;
}

section .section-title.white .section-title-EN::after {
    background: white;
}

section .section-title.white .section-title-line::before {
    background: white;
}

section .section-title.white .section-title-line::after {
    background: white;
}

section .section-title.white .section-title-CN {
    color: white;
}

section .section-title.white .section-title-CN::after {
    background: white;
}

/*section标题栏结束*/

/*滚动分页器样式开始*/
.lianxin-bullet {
    display: inline-block;
    margin: 0.15rem;
    width: 0.1rem;
    height: 0.1rem;
    background-color: transparent;
    border-radius: 50%;
    border: 0.01rem solid gainsboro;
    cursor: pointer;
}

.lianxin-bullet-active {
    background-color: #192742 !important;
    border-color: #192742 !important;
}

/*滚动分页器样式结束*/



/*联信科技*/
.align-center{
    text-align: center;
}
.text-content{
    color: #606266;
    line-height: 0.3rem;
}
.flex-container{
    display: flex;/*重要*/
    justify-content: space-between;/*重要*/
}
.flex-container .three-box{
    width: 4.12rem;
    height: 2.55rem;
}
.flex-container .two-box{
    width: 5.88rem;
    height: 1.79rem;
}


.full-height{
    height: 100%;
}
.overflow{
    overflow: hidden;
}
.float{
    float: left;
}
.float-right{
    float: right;
}
.cursor-pointer{
    cursor: pointer;
}
.clearFloat{
    clear: both;
}


/*顔色*/
.title-color{
    color: #192742;
}
.content-color{
    color: #5F6464;
}


.fontweight{
    font-weight: 600;
}
.hideDom{
    display: none;
}
.showDom{
    display: block;
}
.advisory img{
    width: 0.26rem;
    height: 0.26rem;
}
.advisory .logo-img{
    width: 0.3rem;
    height: 0.3rem;
}
.linktoHaichan{
    cursor: pointer;
}
.banner-container{
    position: relative;
    min-height: 420PX;
}
.page-banner img {
    width: 100%;
    height: 30vw;
    min-height: 400PX;
}
.banner-txt{
    width: 1100PX;
    position: absolute;
    left: calc(50% - 550PX);
    top: 40%;
    font-size: 44PX;
    letter-spacing: 1PX;
}
.banner-txt .txt{
    font-size: 16PX;
    margin-top: 10PX;
}




/*海传css*/
html {width: 100%;-webkit-text-size-adjust:none;-webkit-text-size-adjust: 100%;-ms-text-size-adjust: 100%;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);height: 100%;}
* {margin: 0;padding: 0;border: 0;box-sizing: border-box;}
ul,ul li,ol,li {list-style: none outside none;}
/*img {vertical-align: middle;border: none;width: 100%;}*/
i {font: inherit;}
input,select,option {vertical-align: middle;border-radius: 0;-moz-appearance:none;-webkit-appearance:none;appearance:none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);outline: none;}
input[type="text"],input[type="button"],input[type="submit"],input[type="reset"] {-webkit-appearance: none;appearance: none;border-radius: 0;outline: none;}
.fl {float: left;display: inline;}
.fr {float: right;display: inline;}
h1,h2,h3,h4,h5,h6,i,strong {font-weight: normal;}
select::-ms-expand { display: none; }
a {color: #fff;text-decoration: none;-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
a:hover {text-decoration: none;outline: none;}
.clear {clear: both;}
.clearfix:after {content: ".";display: block;height: 0;clear: both;visibility: hidden;}
.clearfix {zoom: 1;display: block;_height: 0.01rem;clear: both;}
body,ul,ol,li,p,h1,h2,h3,h4,h5,h6,form,fieldset,table,td,img,div,dl,dt,dd,input{margin: 0;padding: 0;}

.textCenter{text-align: center;}
.textLeft{text-align: left;}
.textRight{text-align: right;}
.inlineBlock{display: inline-block;}

/*字体大小/字重/行高start*/
.f12{font-size: 0.12rem;}
.f14{font-size: 0.14rem;}
.f15{font-size: 0.15rem;}
.f16{font-size: 0.16rem;}
.f18{font-size: 0.18rem;}
.f19{font-size: 0.19rem;}
.f20{font-size: 0.2rem;}
.f22{font-size: 0.22rem;}
.f23{font-size: 0.23rem;}
.f24{font-size: 0.24rem;}
.f25{font-size: 0.25rem;}
.f26{font-size: 0.26rem;}
.f28{font-size: 0.28rem;}
.f30{font-size: 0.3rem;}
.f35{font-size: 0.35rem;}
.f36{font-size: 0.36rem;}
.f40{font-size: 0.4rem;}
.f50{font-size: 0.5rem;}
.f52{font-size: 0.52rem;}
.f56{font-size: 0.56rem;}
.f60{font-size: 0.6rem;}
.f66{font-size: 0.66rem;}
.f70{font-size: 0.7rem;}
.fw400{font-weight: 400;}
.fw500{font-weight: 500;}
.fw600{font-weight: 600;}
.line-h18 {
    line-height: 0.18rem;
}
.line-h20 {
    line-height: 0.2rem;
}
.line-h24 {
    line-height: 0.24rem;
}
.line-h26 {
    line-height: 0.26rem;
}
.line-h30 {
    line-height: 0.3rem;
}
.line-h35 {
    line-height: 0.35rem;
}
.line-h36 {
    line-height: 0.36rem;
}
.line-h44 {
    line-height: 0.44rem;
}
.line-h47 {
    line-height: 0.47rem;
}
.line-h50 {
    line-height: 0.5rem;
}
.line-h59 {
    line-height: 0.59rem;
}
.line-h61 {
    line-height: 0.61rem;
}
.line-h66 {
    line-height: 0.66rem;
}
.line-h70 {
    line-height: 0.7rem;
}
.line-h77 {
    line-height: 0.77rem;
}
/*字体大小/字重/行高end*/

.textUpper{text-transform: uppercase;}
.textLower{text-transform: lowercase;}

.flex-justifyCenter{justify-content: center;}
.flex-justifyAround{justify-content: space-around;}
.flex-justifyBetween{justify-content: space-between;}

/*间距start*/
.m-auto {
    margin-right: auto;
    margin-left: auto;
}
.m0{margin: 0;}
.mt5{margin-top: 0.05rem;}
.mt10{margin-top: 0.1rem;}
.mt13{margin-top: 0.13rem;}
.mt14{margin-top: 0.14rem;}
.mt15{margin-top: 0.15rem;}
.mt20{margin-top: 0.2rem;}
.mt25{margin-top: 0.25rem;}
.mt27{margin-top: 0.27rem;}
.mt30{margin-top: 0.3rem;}
.mt32{margin-top: 0.32rem;}
.mt35{margin-top: 0.35rem;}
.mt36{margin-top: 0.36rem;}
.mt40{margin-top: 0.4rem;}
.mt45{margin-top: 0.45rem;}
.mt50{margin-top: 0.5rem;}
.mt55{margin-top: 0.55rem;}
.mt60{margin-top: 0.6rem;}
.mt65{margin-top: 0.65rem;}
.mt100{margin-top: 1rem;}
.mb4{margin-bottom: 0.04rem;}
.mb5{margin-bottom: 0.05rem;}
.mb10{margin-bottom: 0.1rem;}
.mb13{margin-bottom: 0.13rem;}
.mb14{margin-bottom: 0.14rem;}
.mb15{margin-bottom: 0.15rem;}
.mb17{margin-bottom: 0.17rem;}
.mb18{margin-bottom: 0.18rem;}
.mb20{margin-bottom: 0.2rem;}
.mb23{margin-bottom: 0.23rem;}
.mb25{margin-bottom: 0.25rem;}
.mb30{margin-bottom: 0.3rem;}
.mb32{margin-bottom: 0.32rem;}
.mb34{margin-bottom: 0.34rem;}
.mb35{margin-bottom: 0.35rem;}
.mb40{margin-bottom: 0.4rem;}
.mb44{margin-bottom: 0.44rem;}
.mb45{margin-bottom: 0.45rem;}
.mb48{margin-bottom: 0.48rem;}
.mb50{margin-bottom: 0.5rem;}
.mb53{margin-bottom: 0.53rem;}
.mb55{margin-bottom: 0.55rem;}
.mb58{margin-bottom: 0.58rem;}
.mb60{margin-bottom: 0.6rem;}
.mb65{margin-bottom: 0.65rem;}
.mb95{margin-bottom: 0.95rem;}
.mb100{margin-bottom: 1rem;}
.ml5{margin-left: 0.05rem;}
.ml10{margin-left: 0.1rem;}
.ml15{margin-left: 0.15rem;}
.ml20{margin-left: 0.2rem;}
.ml25{margin-left: 0.25rem;}
.ml30{margin-left: 0.3rem;}
.ml35{margin-left: 0.35rem;}
.ml40{margin-left: 0.4rem;}
.ml45{margin-left: 0.45rem;}
.ml50{margin-left: 0.5rem;}
.ml55{margin-left: 0.55rem;}
.ml60{margin-left: 0.6rem;}
.ml65{margin-left: 0.65rem;}
.ml120{margin-left: 1.2rem;}
.mlAuto{margin-left: auto;}

.mr5{margin-right: 0.05rem;}
.mr0{margin-right: 0!important;}
.mr10{margin-right: 0.1rem;}
.mr12{margin-right: 0.12rem;}
.mr15{margin-right: 0.15rem;}
.mr20{margin-right: 0.2rem;}
.mr25{margin-right: 0.25rem;}
.mr30{margin-right: 0.3rem;}
.mr35{margin-right: 0.35rem;}
.mr40{margin-right: 0.4rem;}
.mr45{margin-right: 0.45rem;}
.mr50{margin-right: 0.5rem;}
.mr55{margin-right: 0.55rem;}
.mr60{margin-right: 0.6rem;}
.mr65{margin-right: 0.65rem;}
.mr100{margin-right: 1rem;}
.mrAuto{margin-right: auto;}

.p0{padding: 0!important;}
.pt5{padding-top: 0.05rem;}
.pt10{padding-top: 0.1rem;}
.pt15{padding-top: 0.15rem;}
.pt20{padding-top: 0.2rem;}
.pt25{padding-top: 0.25rem;}
.pt30{padding-top: 0.3rem;}
.pt35{padding-top: 0.35rem;}
.pt40{padding-top: 0.4rem;}
.pt45{padding-top: 0.45rem;}
.pt50{padding-top: 0.5rem;}
.pt55{padding-top: 0.55rem;}
.pt60{padding-top: 0.6rem;}
.pt65{padding-top: 0.65rem;}
.pt80{padding-top: 0.8rem;}
.pt100{padding-top: 1rem;}
.pt120{padding-top: 1.2rem;}
.pb5{padding-bottom: 0.05rem;}
.pb10{padding-bottom: 0.1rem;}
.pb15{padding-bottom: 0.15rem;}
.pb20{padding-bottom: 0.2rem;}
.pb25{padding-bottom: 0.25rem;}
.pb30{padding-bottom: 0.3rem;}
.pb35{padding-bottom: 0.35rem;}
.pb40{padding-bottom: 0.4rem;}
.pb45{padding-bottom: 0.45rem;}
.pb50{padding-bottom: 0.5rem;}
.pb55{padding-bottom: 0.55rem;}
.pb60{padding-bottom: 0.6rem;}
.pb65{padding-bottom: 0.65rem;}
.pb80{padding-bottom: 0.8rem;}
.pb100{padding-bottom: 1rem;}
.pb120{padding-bottom: 1.2rem;}
.pb150{padding-bottom: 1.5rem;}
.pl5{padding-left: 0.05rem;}
.pl10{padding-left: 0.1rem;}
.pl15{padding-left: 0.15rem;}
.pl18{padding-left: 0.18rem;}
.pl20{padding-left: 0.2rem;}
.pl25{padding-left: 0.25rem;}
.pl30{padding-left: 0.3rem;}
.pl35{padding-left: 0.35rem;}
.pl40{padding-left: 0.4rem;}
.pl45{padding-left: 0.45rem;}
.pl50{padding-left: 0.5rem;}
.pl55{padding-left: 0.55rem;}
.pl60{padding-left: 0.6rem;}
.pl65{padding-left: 0.65rem;}
.pl120{padding-left: 1.2rem;}
.pr5{padding-right: 0.05rem;}
.pr10{padding-right: 0.1rem;}
.pr15{padding-right: 0.15rem;}
.pr20{padding-right: 0.2rem;}
.pr25{padding-right: 0.25rem;}
.pr30{padding-right: 0.3rem;}
.pr35{padding-right: 0.35rem;}
.pr40{padding-right: 0.4rem;}
.pr45{padding-right: 0.45rem;}
.pr50{padding-right: 0.5rem;}
.pr55{padding-right: 0.55rem;}
.pr60{padding-right: 0.6rem;}
.pr65{padding-right: 0.65rem;}
.ptb60{padding: 0.6rem 0;}
.ptb80{padding: 0.8rem 0;}
.ptb100{padding: 1rem 0;}
.ptb120{padding: 1rem 0;}
/*间距end*/

/*一级标题颜色*/
.color1{color: #192742;}
/*二级标题颜色*/
.color1_1{color: #595757;}
/*模块文字颜色*/
.color2{color: #666B7C;}
/*数字增长颜色*/
.color3{color: #083BC8;}

/*模块背景颜色*/
.bgColor1{background: #F7F9FB;}

.transition2{
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
}
.transition5{
    transition: all 0.5s linear;
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    -o-transition: all 0.5s linear;
}

.fontBold{
    font-weight: bold;
}

/*隐藏第三方在线咨询*/
#newBridge{
    display: none;
}

@keyframes a_bg_hover_show {
    0%{ -webkit-transform:scale(1,0.5); opacity: 0;}
    100%{  -webkit-transform:scale(1,1); opacity: 1;}
}
/*合作伙伴*/
.partnerBox .swiper-pagination-custom{
    bottom: 0;
}
.partnerBox .swiper-pagination-customs{
    width:0.06rem;
    height:0.06rem;
    background:rgba(225,230,243,1);
    border-radius:50%;
}
.partnerBox .swiper-pagination-customs-active {
    width:0.2rem;
    height:0.06rem;
    background:rgba(57,103,248,1);
    border-radius:0.03rem;
}

/* 机器人 */
.swiper-pagination-custom {
    left: 0;
    width: 100%;
    text-align: center;
}
/*自定义分页器的样式，这个你自己想要什么样子自己写*/
.swiperRobot-pagination-customs {
    border: 0.01rem solid #E3E6EA;
    display:inline-block;
    color: #666B7C;
    margin: 0 0.05rem;
    outline: 0;
    font-size: 0.18rem;
    padding: 0.14rem 0.2rem;
    border-radius: 0.04rem;
    cursor: pointer;

}
/*自定义分页器激活时的样式表现*/
.swiperRobot-pagination-customs-active {
    opacity: 1;
    background: #fff;
    color: #3D6CF8;
    border: 0.01rem solid #3C6BF7;
}

/*产品试用申请*/
.layer{
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}
.layerContent{
    width: 4.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding-bottom: 0.5rem;
    border-radius: 0.14rem;
    overflow: hidden;
}
.layerContent-header {
    position: relative;
    height: 0.8rem;
    line-height: 0.8rem;
    text-align: center;
    background-color: #017DF6;
}
.layerContent h1{
    color: #fff;
    font-size: 0.28rem;
    font-weight: 600;
    font-family: "HarmonyOS_Sans", sans-serif;
}
.layerContent ul li{
    height: 0.5rem;
    margin-top: 0.2rem;
    padding: 0 0.7rem;
}
.layerContent ul li:first-child {
    margin-top: 0.24rem;
}
.layerContent ul li input,
.layerContent ul li select {
    width: 100%;
    height: 100%;
    font-size: 0.14rem;
    color: #3d3d3d;
    border: 0.02rem solid #E5E5E5;
    border-radius: 0.04rem;
    padding-left: 0.29rem;
}
.layerContent ul li select {
    color: #666;
}
.layerContent ul li select {
    appearance: none;          /* 移除默认箭头 */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 0.12rem center;
    background-size: 0.16rem;
    padding-right: 0.32rem;      /* 防止文字覆盖箭头 */
}
.layerContent ul li select option {
    font-size: 0.14rem;
    padding: 0.08rem;
    background-color: #f8f9fa;
    color: #3d3d3d;
}
.layerContent-header-img {
    height: 0.73rem;
    position: absolute;
    top: 0;
    left: 0.43rem;
}

/* 选中状态（当前激活的选项） */
.layerContent ul li select option:checked {
    background-color: var(--text-primary-color);
    color: #fff;
}
.platType .plat_item{
    margin: 0!important;
}
.platType .plat_checked{
    border: 0.02rem solid #083BC8;
}
.platType .oncheck{
    background: url(../image/index/checked_blue.png) center no-repeat;
}
.layerClose{
    position: absolute;
    right: 0.2rem;
    top: 0.26rem;
    cursor: pointer;
    color: #fff;
    font-size: 0.26rem;
    font-weight: 400;
}
.layerClose:hover{
    color: #fff;
}
.submit{
    width: calc(100% - 1.4rem);
    height: 0.5rem;
    line-height: 0.5rem;
    color: #fff;
    font-size: 0.16rem;
    background: #017DF6;
    display: block;
    cursor: pointer;
    outline: none;
    margin: 0.3rem 0.7rem 0;
    border-radius: 0.06rem;
}
.submit:hover{
    background: #284AFE;
}
.commonText{
    color: #f26a6a;
    font-size: 0.14rem;
    position: absolute;
    bottom: 0.1rem;
    left: 50%;
    transform: translate(-50%);
}
.indexFreeCon .commonText{
    bottom: -0.3rem;
}
.layerSuccess{
    display: none;
    width: 4.8rem;
    height: 3rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    padding: 0.6rem 0;
    text-align: center;
}
.layerSuccess img{
    width: 0.7rem;
}
.layerSuccess p{
    color: #000;
}
.layerSuccess span{
    color: #61677E;
}
/*右侧咨询*/
.freeImg{
    display: none;
    position: absolute;
    top: -0.68rem;
    left: -0.05rem;
    z-index: 9;
    cursor: pointer;
}
.index_kp{
    display: none;
    position: fixed;
    left: 0;
    bottom: -0.01rem;
    z-index: 99999;
}
.index_kp_c{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.index_kp_c div{
    font-size: 0.45rem;
    color: #fff;
    font-weight: bold;
}
.index_kp_c a{
    display: block;
    width: 1.2rem;
    height: 0.42rem;
    line-height: 0.42rem;
    font-size: 0.2rem;
    color: #FF1212;
    background: #fff;
    margin-left: 1.5rem;
    text-align: center;
    cursor: pointer;
}
.index_kp_c img{
    width: auto;
    position: absolute;
    top: 0.02rem;
    right: -0.23rem;
    cursor: pointer;
}
.advisory{
    position: fixed;
    right: 0.05rem;
    bottom: 0.8rem;
    z-index: 1000;
    -webkit-border-radius: 0.1rem;
    -moz-border-radius: 0.1rem;
    border-radius: 0.1rem;
}
.wechat-phone{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 0.75rem;
    background: #F9F9F9;
    border-radius: 0.14rem;
    position: relative;
    padding:0.25rem 0;
    bottom: 0.19rem;
    box-shadow: 0 0.13rem 0.28rem 0 rgba(0,0,0,.1);
}
.wechat-phone:after {
    content: "";
    position: absolute;
    width: 0.1rem;
    height: 0.1rem;
    background: #F9F9F9;
    -webkit-transform: rotate(45deg) translateX(-50%);
    transform: rotate(45deg) translateX(-50%);
    -webkit-transform-origin: center;
    transform-origin: center;
    left: 50%;
    bottom: -0.08rem;
}
.wechat-phone p {
    font-size: 0.12rem;
    color: #4C4C4C;
    line-height: 0.18rem!important;
    font-weight: bold;
}
.wechat-phone > div{
    width: 100%;
    /*height: 66px;*/
    /*position: relative;*/
    /*width:45px;
    height:45px;
    background:#eee;
    border-radius: 50%;*/
}

.phoneImg i{
    font-size: 0.24rem;
    color: #4D4D4D;
}

.wechatImg{
    /*margin-top: 8px;*/
}
.wechatImg i{
    font-size: 0.36rem;
    color: #4D4D4D;
}

.wechatImg i.iconfont, .lxccImg i.iconfont, .phoneImg i.iconfont{
    display: block;
    /*width: 29px;*/
    /*height: 23px;*/
    font-size:0.3rem;
    color:#666;
    cursor: pointer;
}
.wechatImg:hover i.iconfont, .lxccImg:hover i.iconfont, .phoneImg:hover i.iconfont{
    color:#003CC8;
}
.appImg {
    margin-top: 0.2rem;
}
.iconBox{
    width: 0.45rem;
    height: 0.45rem;
    background: rgb(238, 238, 238);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.consult-button {
    position: relative;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    /*background-color: #003be9;*/
    /*box-shadow: 0 13px 28px 0 rgba(0,0,0,.2);*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #192742;
}
.appImg-target {
    width: 0.45rem;
    height: 0.45rem;
    overflow: hidden;
    background-color: rgb(238, 238, 238);
    border-radius: 50%;
}
.appImg-target>img {
    width: 0.28rem;
    height: 0.28rem;
}
.appImg-target .nor {
    display: block;
}
.appImg-target .pre {
    display: none;
}
.contactUs{
    display: none;
    width: 1.28rem;
    height: 0.7rem;
    background: #F9F9F9;
    box-shadow: 0 0 0.3rem 0 rgba(30,65,160,0.17);
    border-radius: 0.08rem;
    right: 0.75rem;
    bottom: 0.8rem;
    font-size: 0.14rem;
    transition: all .3s;
}
.weChat,
.appCode{
    display: none;
    width: 1.25rem;
    background: #F9F9F9;
    box-shadow: 0 0 0.3rem 0 rgba(30,65,160,0.17);
    border-radius: 0.08rem;
    right: 0.75rem;
    padding: 0.08rem 0.12rem 0.12rem;
    transition: all .3s;
}
.rbutton{
    line-height: 0.15rem;
}
.appCode {
    bottom: 0;
}
.weChat {
    top: 0;
}

.jishu{
    display: none;
    width: 1rem;
    background: #fff;
    box-shadow: 0 0 0.3rem 0 rgba(30,65,160,0.17);
    border-radius: 0.1rem;
    right: 0.75rem;
    top: -0.2rem;
    padding: 0.1rem;
    height: 1.44rem;
}
.contactUs div{
    color: #091C37;
}
.contactUs div:first-child{
    margin-top: 0.1rem;
}
.jishu div{
    height: 0.2rem;
    color: #3C4359;
}
.jishu img{
    width: 0.75rem;
    margin-top: 0.05rem;
}

.weChat div{
    height: 0.2rem;
    font-size: 0.12rem;
    color: #3C4359;
}
.appCode img,
.weChat img{
    width: 100%;
    height: auto;
    margin-top: 0.05rem;
}
.appCode div {
    font-size: 0.12rem;
    color: #3C4359;
}
.appCode img {
    margin-top: 0.05rem;
}
/*
 * 首页
 * */
.swiper-containerBanner {
    height: 7.75rem;
}
.swiper-containerBanner .bannerUrl{
    display:inline-block;
    height: 100%;
    width: 100%;
}
.swiper-containerBanner .swiper-pagination-bullet{
    width: 0.28rem;
    height: 0.06rem;
    opacity: 1;
    background: #fff;
    border-radius: 0.05rem;
    margin: 0.15rem 0.11rem!important;
}
.swiper-containerBanner .swiper-pagination-bullet-active{
    background: #003CC8;
}
.swiper-containerBanner .swiper-pagination{
    bottom: 1.6rem!important;
}
.swiper-containerBanner .swiper-slide > div:first-child{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.swiper-containerBanner .swiper-slide-active > div:first-child{
    transition: all 2s ease;
    transform: scale(1.08);
}
/*四大核心*/
.swiper-containerScene{
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.swiper-containerScene .swiper-wrapper .swiper-slide{
    height: 100%;
}
.swiper-paginationScene{
    border-bottom: 0.02rem solid #fff;
    display: flex;
    justify-content: space-around;
}
.swiper-paginationScene-customs{
    width: 100%;
    font-size: 0.2rem;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    padding-bottom: 0.3rem;
    position: relative;
}
.swiper-paginationScene-customs-active {
    color: #083BC8;
}
.swiper-paginationScene-customs-active:after{
    content: '';
    width: 1rem;
    height: 0.03rem;
    position: absolute;
    bottom: -0.02rem;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 0.03rem solid #083BC8;
}
.productOther .flex > div:nth-of-type(1){
    width: 3.5rem;
    padding: 0.2rem 0;
    padding-left: 0.2rem
}
.productOther .flex > div:nth-of-type(2){
    width: 3.5rem;
    padding: 0.2rem 0;
    padding-left: 0.2rem;
}
.productOther .flex > div:nth-of-type(3){
    width: 3.5rem;
    padding: 0.2rem 0;
    padding-left: 0.2rem;
}
.productOther .flex > div:hover{
    box-shadow: 0.01rem 0.03rem 0.07rem 0.02rem #ddd;
}
.productOther img{
    width: 0.3rem;
}
.productOther h1{
    color: #2E47F3;
}
.productOther p{
    line-height: 0.18rem;
}
/*合作伙伴*/
.indexPartnerContent{
    width: 100%;
    margin: 0 auto;
}
.indexPartner .indexPartnerContent .swiper-slide{
    width: 22.8rem!important;
    height: 1.8rem;
}
.partnerItem{
    width: 1.6rem;
    background: #fff;
    margin:0 0.25rem 0.2rem 0;
}
/*产品体验*/
.indexFree{
    background: url(../image/index/home_mianfeitiyan_bg.png) no-repeat center;
    background-size: cover;
    color: #fff;
    line-height: initial;
}
.indexFreePlat{
    margin: 0.45rem 0;
}
.ex_item{
    font-size: 0.2rem;
}
.ex_item:nth-of-type(2){
    margin: 0 0.35rem;
}
.ex_item input{
    width: 1.4rem;
    height: 0.34rem;
    line-height: 0.34rem;
    font-size: 0.12rem;
    padding-left: 0.1rem;
    color: #797979;
    background: #fff;
}
.plat_item{
    font-size: 0.16rem;
    margin-right: 0.4rem;
    cursor: pointer;
}
.plat_item:first-child{
    margin-left: 0.15rem;
}
.plat_checked{
    width: 0.2rem;
    height: 0.2rem;
    display: inline-block;
    vertical-align: middle;
    border: 0.02rem solid #fff;
}
.oncheck{
    background: url(../image/index/checked.png) center no-repeat;
}
.plat_checked input{
    opacity: 0;
    cursor: pointer;
}
.submitBtn{
    width: 1.4rem;
    height: 0.4rem;
    line-height: 0.4rem;
    margin: 0 auto;
    font-size: 0.18rem;
    text-align: center;
    background: #192742;
    box-shadow: 0 0.08rem 0.24rem 0 rgba(13, 24, 47, 0.4);
}
.indexFreeBtn{
    width:1.4rem;
    height:0.4rem;
    line-height: 0.4rem;
    background:rgba(25,39,66,1);
    box-shadow:0 0.08rem 0.24rem 0 rgba(13,24,47,0.4);
    color: #fff;
    cursor: pointer;
    margin: 0 auto;
    transition: all .3s ease;
}
.indexFreeBtn:hover{
    background: #060a14;
}
/*
 * 产品
 * */
/*.productType1, */.productType2{
                       display: none;
                   }
/*呼叫中心--标准版*/
.productBanner{
    /*background: url("../image/product/HJZX/productBg.png") no-repeat center;*/
    /*background-size: cover;*/
    /*height: 670px;*/
    position: relative;
}
.banner_title{
    /*position: absolute;*/
    bottom: -0.92rem;
    left: 0;
    margin-top: -0.03rem;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color:rgba(178,187,230,.7);
}
.banner_title li {
    width: 4.35rem;
    height: 0.92rem;
    line-height: 0.92rem;
    font-size: 0.22rem;
    font-weight: normal;
    color: #FFFFFF;
    text-align: center;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}
.main_intro_cont{
    margin-top: 0.05rem;
    background-color: #ff6a00;
    padding: 0 0.1rem;
    color: white;
    letter-spacing:0.05rem;
    font-size: 0.22rem;
}
.banner_title li:hover{
    background-color: #fff;
    color: #003CC8;
}
.banner_title li img{
    margin-right: 0.1rem;
}
.bg1{
    width: 0.25rem;
    height: 0.28rem;
    margin-right: 0.1rem;
    background: url("../images/product/HJZX/bannertitledefault1.png") no-repeat;
}
.bg2{
    width: 0.25rem;
    height: 0.28rem;
    margin-right: 0.1rem;
    background: url("../images/product/HJZX/bannertitledefault2.png") no-repeat;
}
.bg3{
    width: 0.25rem;
    height: 0.28rem;
    margin-right: 0.1rem;
    background: url("../images/product/HJZX/bannertitledefault3.png") no-repeat;
}
.banner_title1:hover .bg1{
    background: url("../images/product/HJZX/bannertitle1.png") no-repeat;
}
.banner_title2:hover .bg2{
    background: url("../images/product/HJZX/bannertitle2.png") no-repeat;
}
.banner_title3:hover .bg3{
    background: url("../images/product/HJZX/bannertitle3.png") no-repeat;
}
.mian_intro{
    position: absolute;
    top:1.15rem;
    left: 20%;
    color: #192742;
    font-size: 0.24rem;
    line-height: 0.7rem;
}
.main_intro_title{
    font-size: 0.65rem;
    font-weight: bold;
    letter-spacing: 0.01rem;
    margin: 0.22rem 0;
}
.main_intro_consult{
    width: 1.63rem;
    height: 0.51rem;
    background: #FF6A00;
    color: #fff;
    font-size: 0.22rem;
    cursor: pointer;
    margin-top: 0.1rem;
}
.choose_reason{
    color: #192742;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 0.78rem 0 0.04rem 0;
}
.choose_reason h2{
    display: block;
    margin: 0 0 0.65rem 0;
    font-size: 0.3rem;
}
.choose_reason ul{
    width: 9.86rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.74rem;
}
.choose_reason ul li{
    display: flex;
    text-align: left;
}
.choose_reason ul li img{
    margin: 0.15rem 0.15rem 0 0;
}
.choose_reason_title {
    font-size: 0.2rem;
    font-weight: 400;
    color: #192742;
    line-height: 0.57rem
}
.choose_reason_cont{
    width: 3.47rem;
    height: 0.4rem;
    font-size: 0.14rem;
    font-weight: 400;
    color: #A1A3A8;
}
.programme_title{
    text-align: center;
    font-size: 0.3rem;
    color: #000;
    margin: 0.71rem 0 0.59rem 0;

}
.programme_tab{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.programme_tab_ul{
    width: 9.8rem;
    font-size: 0.2rem;
    font-weight: 400;
    border-bottom: 0.02rem solid #e8e8fa;
    margin-bottom: 0.3rem;
    display: flex;
    justify-content: space-evenly;
    margin-left: 0.67rem;


}
.programme_tab_item{
    /*width: 127px;*/
    height: 0.6rem;
    font-size: 0.2rem;
    /*font-weight: bold;*/
    color:black;
    /*margin-bottom: 81px;*/
}
.programme_tab_item_active{
    color:#003CC8;
    border-bottom: 0.03rem solid #003CC8;
}
.programme_tab_item:hover{
    color: #003CC8;
}
.programme_cont_ul{
    width: 12.26rem;
    margin: 0 auto;
}
.programme_cont_li{
    display: inline-block;
    width: 3.92rem;
    height: 2.08rem;
    color: #192742;
    box-shadow: 0 0.02rem 0.11rem 0.02rem rgba(211, 211, 224, 0.4);
    text-align: center;
    margin-bottom: 0.25rem;
    background-color: #fff;
}
.programme_cont_li img{
    width: 0.41rem;
    height: 0.41rem;
    margin-top: 0.33rem;
    margin-bottom: 0.2rem;
}
.programme_cont_li p{
    width: 3.15rem;
    margin: 0 auto;
}
.programme_cont_li:hover .programme_item_title{
    color: #003CC8;
}
.programme_cont_li:hover{
    box-shadow: 0 0.02rem 0.11rem 0.02rem rgba(0, 60, 200, 0.4);
}
.programme{

    padding: 0.01rem;
}
.programme_item_title{
    font-size: 0.2rem;
    font-weight: bold;
    color: #192742;
    margin-bottom: 0.15rem!important;
}
.programme_item_cont{
    font-size: 0.16rem;
    font-weight: 400;
    color: #A1A3A8;
}
.programme_cont_li_active{
    width: 3.9rem;
    height: 2.08rem;
    box-shadow: 0 0.02rem 0.11rem 0.02rem rgba(0, 60, 200, 0.4);
}
.manager{
    width: 100%;
    background-color: #fff;
    padding-top: 0.69rem;
}
.manager_title{
    font-size: 0.3rem;
    font-weight: 400;
    color: #192742;
    margin-bottom: 0.58rem;
    text-align: center;
}
.manager_list{
    display: flex;
    justify-content: space-between;
    width: 13rem;
    margin: 0 auto;
    color: #192742;
}
.manager_cont_item{
    width: 3.1rem;
    box-shadow: 0 0.04rem 0.26rem 0.26rem rgba(79, 79, 79, 0.05);

}
.manager_list_title{
    background-color: #003CC8;
    color: #fff;
    height: 1.02rem;
    line-height: 1.02rem;
    padding-left: 0.25rem;
    font-size: 0.21rem;
    font-weight: bold;
}
.manager_list_item{
    height: 0.9rem;
    padding-left: 0.25rem;
    padding-top: 0.2rem;
    background-color: #FAFAFA;
}
.manager_list_item:nth-child(odd){
    background-color: #fff;
}
.manager_list_item p{
    font-size: 0.16rem;
    font-weight: bold;
    color: #192742;
    line-height: 0.3rem;
}
.manager_list_item span{
    font-size: 0.14rem;
    font-weight: 400;
    color: #A1A3A8;
}
.company_intro{
    width: 12.31rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: #A1A3A8;
    font-size: 0.15rem;
    height: 4.32rem;
}
.company_li{
    width: 3.91rem;
    height: 4.31rem;
    background: #FFFFFF;
    box-shadow: 0 0 0.14rem 0.02rem rgba(195, 195, 195, 0.39);
    border-radius: 0.05rem;
    overflow: hidden;
    transition: margin-top .2s;
}
.company_li:hover{
    margin-top: -0.1rem;
}
.company_li_title{
    font-size: 0.2rem;
    font-weight: bold;
    margin-left: 0.28rem;
    color: #000;
    margin-top: 0.3rem;
}
.company_li_company{
    display: flex;
    margin-top: 0.18rem;
    margin-bottom: 0.24rem;
    padding-right: 0.28rem;
}
.company_li_company>img{
    margin: 0 0.03rem 0 0.12rem;
}
.company_li_company>img,.company_li_company>div>img{
    width: 0.1rem;
    height: 0.1rem;
}
.company_li_company>div{
    display: inline-block;
}
.company_li_footer{
    padding: 0 0.28rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.company_list{
    margin-top: 0.6rem;
    padding-bottom: 0.65rem;
}
.company_list li{
    width: 12.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.12rem;
}
.company_list li img{
    width: 1.3rem;
    height: 0.66rem;
}
.stat ul{
    width: 12.5rem;
    height: 2.09rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 0.4rem;
}
.stat p{
    font-size: 0.4rem;
    font-weight: bold;
    color: #003CC8;
}
.stat span{
    font-size: 0.16rem;
    font-weight: 400;
    color: #A1A3A8;
}
.stat p span{
    font-size: 0.3rem;
    font-weight: normal;
    color: #003CC8;
}
.productTabTitle{
    background: #fff;
    top: 0;
    width: 100%;
    z-index: 9;
}
.productTabTitle ul{
    width: 8.6rem;
    margin: 0 auto;
    border-bottom: 0.02rem solid #ECECEC;
    overflow: hidden;
}
.productTabTitle ul li{
    width: 2rem;
    cursor: pointer;
}
.productTabTitle ul li a{
    display: block;
    color: #192742;
    padding-bottom: 0.2rem;
    border-bottom: 0.04rem solid transparent;
    transition: all 0.5s linear;
}
.productTabTitle ul li:first-child{
    margin-right: 2rem;
}
.productTabTitle ul li:last-child{
    margin-right: 0;
}
.productTabTitle ul li.active a, .productTabTitle ul li:hover a, .productTabTitle ul li:active a{
    color: #083BC8;
    border-color: #083BC8;
}
.picDiv{
    width: 4.5rem;
}
.picDiv p{
    color: #595757;
    line-height: 0.3rem;
    font-size: 0.16rem;
}
.pic1{
    width: 5rem;
}
.pic2{
    width: 6rem;
}
/*服务响应*/ /*高价值客户*/
.productService ul li, .productCustom ul li{
    padding-left: 0.25rem;
    position: relative;
}
.productService ul li:after, .productCustom ul li:after{
    content: '';
    width: 0.1rem;
    height: 0.1rem;
    position: absolute;
    left: 0;
    top: 0.07rem;
    background: #0948F2;
}
.productService ul li p, .productCustom ul li p{
    color: #595757;
}
/*全面工作统计*/
.productWork{
    background: url(../image/product/quanmiangongzuotongji_bg.png) no-repeat center;
    background-size: cover;
    color: #fff;
}
.productWork img{
    width: 0.5rem;
}
/*数据*/
.productData p{
    color: #595757;
    margin-bottom: 0.05rem;
}
/*专属定制*/
.exclusive{
    width: 7.6rem;
    height: 2rem;
    box-shadow:0.01rem 0.01rem 0.39rem 0 rgba(111,132,188,0.2);
}
.standard{
    width: 3.7rem;
    height: 2rem;
    box-shadow:0.01rem 0.01rem 0.39rem 0 rgba(111,132,188,0.2);
}
.exclusive:hover, .standard:hover{
    transform: scale(1.03);
    background: #083BC8;
}
.productExclusive h1{
    color: #073BC7;
    font-size: 0.2rem;
    margin-bottom: 0.2rem;
}
.productExclusive p{
    color: #656B7B;
    font-size: 0.14rem;
    margin-bottom: 0.05rem;
}
.productExclusive a{
    display: block;
    height: 100%;
}
.productExclusive span{
    width: 0.65rem;
    display: block;
    color: #656B7B;
    font-size: 0.14rem;
    position: relative;
}
.productExclusive span:after{
    content: '';
    position: absolute;
    right: -0.05rem;
    top: 0.07rem;
    width: 0;
    height: 0;
    border-top: 0.05rem solid transparent;
    border-left: 0.07rem solid #656B7B;
    border-bottom: 0.05rem solid transparent;
}
.productExclusive a:hover{
    color: #083BC8;
}
.productExclusive .exclusive:hover h1,
.productExclusive .exclusive:hover p,
.productExclusive .exclusive:hover span,
.productExclusive .standard:hover h1,
.productExclusive .standard:hover p,
.productExclusive .standard:hover span{
    color: #fff;
}
.productExclusive .exclusive:hover span:after, .productExclusive .standard:hover span:after{
    border-left-color: #fff;
}
/*呼叫中心--专业版*/
/*减少服务风险*/
.productRisk {
    color: #595757;
}
.productRiskContent img{
    width: 10rem;
    margin: 0 auto;
}
/*在线客服--标准版*/
.productZXKF .productBanner{
    /*background: url(../image/product/banner_zxkf.png) no-repeat center;*/
}
/*机器人—语音机器人*/
.productRobot .productBanner1{
    background: url(../image/product/banner_robot.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
.productRobot .productBanner2{
    background: url(../image/product/banner_robot2.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
    display: none;
}
.productRobot .productService .pic1{
    width: 7.3rem;
    margin: 0 auto;
}
/*
* 订单系统
*/
.systemOmsBanner{
    background: url(../image/system/banner_Oms.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
/*
* 客户管理
*/
.systemCRMBanner{
    background: url(../image/system/banner_CRM.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
/*
* 智能质检
*/
.systemSeeBanner{
    background: url(../image/system/banner_See.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
.systembtm{
    width: 5.85rem;
    height: 1.8rem;
    box-shadow:0.01rem 0.02rem 0.39rem 0.01rem rgba(111,133,188,0.2);
}
.systembtm:hover{
    transform: scale(1.03);
    background: #083BC8;
}
.productExclusive .systembtm:hover h1,
.productExclusive .systembtm:hover p,
.productExclusive .systembtm:hover span{
    color: #fff;
}
.productExclusive .systembtm:hover span:after, .productExclusive .systembtm:hover span:after{
    border-left-color: #fff;
}
/*
* 催收系统
*/
.systemUrgeBanner{
    background: url(../image/system/banner_Urge.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}

/*
 *行业
 * */
.industryBanner{
    background: url(../image/industry/banner.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
/*tab*/
.industryTabTitle{
    display: none;
    background: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    border-bottom: 0.02rem solid #ECECEC;
}
.industryTabTitle ul {
    overflow: hidden;
}
.industryTabTitle ul li a{
    display: block;
    width: 0.6rem;
    border-bottom: 0.04rem solid transparent;
    color: #192742;
    padding-bottom: 0.2rem;
}
.industryTabTitle ul li.active a, .industryTabTitle ul li:hover a, .industryTabTitle ul li:active a {
    color: #083BC8;
    border-color: #083BC8;
}
.industryType{
    display: none;
}
.industryType1{
    display: block;
}
/*提高能力*/
.abilityItem{
    width: 3.7rem;
    border:0.01rem solid rgba(8,59,200,1);
}
.abilityItem div{
    color: #fff;
    height: 0.6rem;
    line-height: 0.6rem;
    background-size: cover;
}
.abilityItem:nth-of-type(1) div{
    background: url(../image/industry/01_bg.png) no-repeat center;
}
.abilityItem:nth-of-type(2) div{
    background: url(../image/industry/02_bg.png) no-repeat center;
}
.abilityItem:nth-of-type(3) div{
    background: url(../image/industry/03_bg.png) no-repeat center;
}
.abilityItem p{
    padding: 0.3rem 0.2rem;
}
/*客户上保险*/
.customItem{
    width: calc(50% - 0.2rem);
    padding: 0.4rem 0.4rem 0.4rem 0.5rem;
    background: #fff;
}
.customItem:hover{
    box-shadow:0.01rem 0.02rem 0.39rem 0.01rem rgba(111,133,188,0.2);
}
.customItem:first-child{
    margin-right: 0.4rem;
}
.customItem img{
    width: 0.4rem;
    margin-right: 0.5rem;
}
/*解决方案优势*/
.advantageItem img{
    width: 0.4rem;
}
/*行业案例*/
.caseItem{
    width: 3.8rem;
    background: #fff;
}
.caseItem:hover{
    transform: scale(1.02);
    box-shadow:0.01rem 0.02rem 0.39rem 0.01rem rgba(111,133,188,0.1);
}
.caseItem img{
    width: 100%;
    height: 2.3rem;
}
.caseItem div{
    padding: 0.3rem;
}

/*
 *服务
 * */
.serviceBanner{
    background: url(../image/service/banner.png) no-repeat center;
    background-size: cover!important;
    height: 6.7rem;
}
/*专属服务*/
.titleItem{
    width: 2.8rem;
    height: 0.66rem;
    line-height: 0.66rem;
    background: #F2F3F5;
    text-align: center;
    cursor: pointer;
    color: #595757;
    font-size: 0.18rem;
}
.titleItem.active, .titleItem:active, .titleItem:hover{
    color: #fff;
    background: #083BC8;
}
.imgItem{
    width: 0.2rem;
}
.serviceItem{
    display: none;
    padding: 0.5rem;
    background: #F2F3F5;
}
.serviceItem1{
    display: flex;
}
.serviceItem > div{
    flex: 1;
}
.serviceItem img{
    width: 0.4rem;
}
/*专属团队*/
.teamItem{
    width: 3.7rem;
    box-shadow:0.01rem 0.02rem 0.39rem 0.01rem rgba(111,133,188,0.1);
}
.teamItem div{
    color: #fff;
    height: 0.6rem;
    line-height: 0.6rem;
    background-size: cover;
}
.teamItem:nth-of-type(1) div{
    background: url(../image/service/01_bg_zixuntuandui.png) no-repeat center;
}
.teamItem:nth-of-type(2) div{
    background: url(../image/service/02_bg_yanfatuandui.png) no-repeat center;
}
.teamItem:nth-of-type(3) div{
    background: url(../image/service/03_bg_jiaofutuandui.png) no-repeat center;
}
.teamItem p{
    padding: 0.3rem 0.2rem
}
/*支持体系*/
.systemItem img{
    width: 0.4rem;
}
/*
 *我们
 * */
.aboutBanner {
    background: url(../image/about/banner.png) no-repeat center;
    background-size: cover;
    height: 6.7rem;
}
/*关于我们*/
.aboutTitle{
    padding-right: 0.5rem;
}
/*愿景*/
.aboutVision{
    background: #F7F7F7;
}
.visionL{
    width: 1.6rem;
    position: relative;
}
.visionL:after{
    content: '';
    width: 0.01rem;
    height: 2.4rem;
    position: absolute;
    left: 2.6rem;
    top: 50%;
    transform: translateY(-50%);
    background:rgba(226,228,230,1);
}
.smallTitle{
    margin-top: -0.35rem;
}
/*业务架构*/
.businessItem{
    width: 1.6rem;
    height: 1rem;
    background: #F2F3F5;
    color: #666B7C;
    cursor: default;
}
.businessItem:hover, .businessItem.active, .businessItem:active{
    color: #fff;
    background: #083BC8;
}
.line{
    background: #F2F3F5;
    left: 50%;
    top: -0.5rem;
}
.line1{
    width: 0.02rem;
    height: 0.5rem;
}
.line2{
    width: 2.6rem;
    height: 0.02rem;
}
.line3{
    width: 0.02rem;
    height: 0.8rem;
    top: -0.8rem;
}
.businessType{
    display: none;
    background: #083BC8;
    padding: 0.4rem 0.25rem;
    color: #fff;
    line-height: 0.26rem;
}
.businessType1{
    display: block;
}
/*商业成就*/
.aboutAchieve{
    background: #F7F7F7;
}
.achieveItem{
    color: #fff;
    width: 5.35rem;
    height: 0.96rem;
    line-height: 0.96rem;
    background-size: cover!important;
}
.achieveItem1{
    background: url(../image/about/01_bg.png) no-repeat center;
}
.achieveItem2{
    background: url(../image/about/02_bg.png) no-repeat center;
}
.achieveCon{
    background: #fff;
}
/*大事件*/
.aboutBig{
    color: #fff;
    background: #2749FD;
}
.bigTitle{
    color: #fff;
}
.aboutBigContent{
    overflow: hidden;
}
.bigBox{
    overflow: hidden;
    transition: left 0.3s ease 0s, right 0.3s ease 0s;
}
.bigItem{
    width: 5rem;
}
.bigItem .big-time{

}
.bigItem .big-info{
    width: 2.9rem;
    position: relative;
}
.bigItem .big-info:after{
    position: absolute;
    content: '';
    width: 0.08rem;
    height: 0.08rem;
    background: #fff;
    left: -0.2rem;
    top: 0.08rem;
}
.bigItem .big-dot{
    position: absolute;
    top: 0;
    color: #fff;
    border: 0.07rem solid #fff;
    border-radius: 50%;
}
.bigItem .big-line{
    position: absolute;
    top: 0.05rem;
    left: 0.4rem;
    width: 4.74rem;
    border: 0.015rem solid hsla(0,0%,100%,.15);
}
.btnBox .btn{
    width: 0.5rem;
    height: 0.6rem;
    margin: 0.5rem 0.12rem 0 0;
    color: #fff;
    outline: none;
    background-color: hsla(0,0%,100%,.1);
}
.btnBox .btn:hover{
    cursor: pointer;
    opacity: .8;
}
.btnBox .btn:disabled{
    cursor: not-allowed;
    opacity: .4;
}
/*免费体验*/
.about .indexFree, .case .indexFree{
    background: url(../image/about/bg.png) no-repeat center;
    background-size: cover!important;
}
.about .indexFreeBtn, .case .indexFreeBtn{
    background: #083BC8;
}
/*
* 体验中心banner
*/
.product-banner{
    background: url(../img/product/product_banner.png) no-repeat center !important;
    background-size: cover!important;
    height: 6.7rem;
}
/*
* 案例
*/
.caseBanner{
    background: url(../image/case/banner.png) no-repeat center;
    background-size: cover!important;
    height: 6.7rem;
}
.caseContent{
    background: #F7F7F7;
}
.caseTabTitle{
    width: 100%;
    background: #fff;
    z-index: 2;
}
/*.caseLeft{
    width: 200px;
    height: 620px;
    padding: 30px 20px 30px 25px;
    background: #fff;
}
.caseLeft div div{
    margin-bottom: 12px;
}
.caseLeft div div:first-child{
    margin-bottom: 20px;
}*/
.checkbox, .checkboxInput {
    display: inline-block;
    position: relative;
    white-space: nowrap;
}
.checkbox {
    color: #606266;
    font-size: 0.14rem;
    cursor: pointer;
    user-select: none;
    margin-top: 0.04rem;
}
.checkboxInput {
    cursor: pointer;
    outline: 0;
    line-height: 1;
    vertical-align: middle;
}
.checkboxInner {
    display: inline-block;
    position: relative;
    border: 0.01rem solid #dcdfe6;
    border-radius: 0.02rem;
    box-sizing: border-box;
    width: 0.16rem;
    height: 0.16rem;
    background-color: #fff;
    z-index: 1;
    transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46),background-color .25s cubic-bezier(.71,-.46,.29,1.46);
}
.checkboxInner:after {
    border: 0.02rem solid #fff;
    box-sizing: content-box;
    content: "";
    border-left: 0;
    border-top: 0;
    height: 0.07rem;
    left: 0.045rem;
    position: absolute;
    top: 0.02rem;
    width: 0.03rem;
    -webkit-transform: rotate(45deg) scaleY(1);
    transform: rotate(45deg) scaleY(1);
}
.checkboxInner:hover, .is-checked .checkboxInner:hover {
    border-color: #2027fc;
}
.is-checked .checkboxInner {
    background: #2027fc;
    border: 0.01rem solid #2027fc;
    display: flex;
    justify-content: center;
    align-items: center;
}
.checkbox-active {
    color: #2027fc;
}
.checkboxOriginal {
    opacity: 0;
    outline: 0;
    position: absolute;
    margin: 0;
    width: 0;
    height: 0;
    z-index: -1;
}
.caseRight{
    flex: 1;
}
.caseRight #newsDiv > a{
    width: 3rem;
    height: 2.5rem;
    display: block;
    float: left;
    margin-left: 0.3rem;
    margin-bottom: 0.3rem;
    background: #fff;
}
.caseRight #newsDiv > a:nth-of-type(3n+1){
    /*margin-left: 0;*/
    margin-left: 1.2rem;
}
.caseRight #newsDiv > a:hover{
    transform: translateY(-0.06rem);
    box-shadow: 0.01rem 0.02rem 0.39rem 0.01rem rgba(111,133,188,0.1);
}
.caseRight #newsDiv > a img{
    width: 100%;
    height: 1.2rem;
}
.caseRightItem{
    padding: 0.15rem 0.2rem;
    color: #192742;
    height: 1.3rem;
    position: relative;
}
.caseRightItem p{
    line-height: 0.3rem;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    display: -webkit-box;
}
.caseRightItem span{
    position: absolute;
    color: #083BC8;
    font-size: 0.14rem;
    bottom: 0.25rem;
}
.caseRightItem span:after{
    content: '';
    position: absolute;
    right: -0.12rem;
    top: 0.08rem;
    width: 0;
    height: 0;
    border-top: 0.04rem solid transparent;
    border-left: 0.06rem solid #083BC8;
    border-bottom: 0.04rem solid transparent;
}
#pagination{
    padding: 0.1rem 0;
}
#pagination li{
    display: inline;
}
#pagination li a{
    color: #192742;
    font-weight: 600;
    padding: 0.06rem;
    font-size: 0.14rem;
    margin-left: 0.04rem;
}
#pagination li.active a{
    color: #083BC8;
}
#pagination>li>a:focus,
#pagination>li>a:hover,
#pagination>li>span:focus,
#pagination>li>span:hover{
    color: #083BC8;
}
.caseCustom{
    background: #083BC8;
}
.swiper-containerCase{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}
.customContent .swiper-slide{
    width: 50%;
    height: 3rem;
    color: #666B7C;
    background: #fff;
    padding: 0.3rem;
    position: relative;
}
.customContent .swiper-slide-active p{
    color: #192742;
}
.customContent .swiper-slide img{
    width: 0.4rem;
}
.customContent .swiper-slide .bottomImg{
    position: absolute;
    right: 0.3rem;
    bottom: 0.3rem;
}
.customContent .swiper-slide .customLogo{
    width: 1.6rem;
    position: absolute;
    right: 0.7rem;
    bottom: 0.3rem;
}
.customContent .swiper-slide p{
    padding-left: 0.2rem;
    line-height: 0.28rem;
    margin-top: 0.4rem;
}
.swiper-paginationCase{
    width: 4.8rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    margin-top: 0.4rem;
}
.swiper-paginationCase-customs {
    width: 0.9rem;
    color: #fff;
    font-size: 0.16rem;
    padding-bottom: 0.05rem;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-bottom: 0.04rem solid transparent;
}
.swiper-paginationCase-customs-active {
    border-bottom-color: #fff;
}
.customContent .swiper-slide .activeImg{
    display: none;
}
.customContent .swiper-slide.swiper-slide-active .activeImg{
    display: block!important;
}
.customContent .swiper-slide.swiper-slide-active .defaultImg{
    display: none!important;
}
/*
* 法律声明
*/
.state header{
    background: #083BC8!important;
}
.state header a{
    color: #fff!important;
}
.state header .childType a {
    color: #192742!important;
}
.state header .childType a:hover {
    color: #083BC8!important;
}
.state .contain{
    background: #F7F7F7;
    padding: 1.72rem 0 1rem;
}
.stateItem p{
    font-size: 0.26rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}
.stateItem ul li{
    color: #595757;
    line-height: 0.32rem;
    margin-bottom: 0.4rem;
    padding-left: 0.4rem;
    position: relative;
    font-size: 0.18rem;
}
.stateItem ul li:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0.12rem;
    width: 0.1rem;
    height: 0.1rem;
    background: #192742;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
/*
* 隐私政策
*/
.policy p{
    line-height: 0.32rem;
}
.dics{
    padding-left: 0.4rem;
    position: relative;
}
.dics:after{
    content: '';
    position: absolute;
    left: 0;
    top: 0.07rem;
    width: 0.1rem;
    height: 0.1rem;
    background: #192742;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
/*
* 云总机
*/
.productBannerYZJ {
    background: url(../image/pro/bannerYZJ.png) no-repeat center;
}

/*
* 移动座席
*/

.productYDZX .productBanner{
    background: url(../image/pro/bannerYDZX.png) no-repeat center;
}

/*业务系统*/
.productYWXT .productBanner{
    background: url(../image/pro/bannerYWXT.png) no-repeat center;
}
/*机器人 */
.productJQR .productBanner{
    background: url(../image/product/banner_robot.png) no-repeat center;
}

/*新闻*/
.newsBanner{
    background: url(../image/news/banner.png) no-repeat center;
    background-size: cover!important;
    height: 6.7rem;
}
.newsInfo_title{
    font-size: 0.42rem;
    font-weight: bold;
}
.newsInfo_time{
    font-size: 0.16rem;
    font-weight: bold;
}
.newsInfo_time img{
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.1rem;
}
.newsInfo_line{
    width: 0.02rem;
    height: 0.18rem;
    margin: 0 0.15rem;
    background: #DCD9DE;
}


@media screen and (max-width: 1450px){
    .develop_area .slide_list{
        height: 7rem;
    }
    .develop_area .slide_list li{
        height: 7rem;
    }
}

@media screen and (max-width: 1439px){
    /* 首页 */
    .descript_area .txt{
        font-size: 0.2rem;
    }
    .detail_list li p{
        font-size: 0.26rem;
    }
    .en-us .link_area .tab_list .list_item_1 .txt{
        top: 60%;
    }
    .en-us .link_area .tab_list li.list_item_2 .txt{
        top: 62%;
    }
    .en-us .link_area .tab_list li.list_item_3 .txt{
        top: 62%;
    }
    .link_area .link_con_list .script .tit{
        font-size: 0.2rem;
    }
    .resp_area .resp_details .tit{
        font-size: 0.3rem;
    }

    .en-us .menu_list .menu_item{
        margin-left: 0.4rem;
    }
}

/*媒体查询*/
@media only screen and (min-width: 1441px) {
    .index .page-main-w {
        width:14.4rem
    }
    .index .footTop .page-main-w{
        width:12rem
    }
    .index .indexCenter_con{
        width: 7.2rem;
    }
    .index .indexCenter_con .text{
        width: 5.7rem;
    }
    .index .indexCenter_item:last-child .indexCenter_con .text {
        width: 5.1rem;
    }
}
@media only screen and (max-width: 1440px) {
    .kaiping .kaiping_close {
        width: 0.3rem;
        top: 0.15rem;
        right: 0.15rem;
    }
    .index .page-main-w {
        width:12rem
    }
    .index .indexCenter_con{
        width: 6rem;
    }
    .index .indexCenter_con .text{
        width: 5.1rem;
    }
    .index .indexCenter_item:last-child .indexCenter_con .text {
        width: 4.7rem;
    }
    .index .indexService_r{
        width: 9rem;
    }
    .index .indexService_tab {
        width: 2.4rem;
    }
    .index .kaiping div h1{
        font-size: 0.9rem;
        margin-bottom: 0.2rem;
    }
    .index .kaiping div p{
        font-size: 0.25rem;
        font-size: 25px;
    }
    .index .indexScene {
        height: 8rem;
    }
    .index .slideScene {
        left: 72%;
        width: 2.6rem;
    }
    .index .slideScene img{
        top: -1.6rem;
    }
    .index .slideScene_dc img{
        top: -1.1rem;
        max-width: 70%;
    }
    .index .slideScene_qc img{
        top: -1.3rem;
    }
}
