﻿@charset "utf-8";

/****************公用样式*******************/
/** 定义布局方式 **/
* {
    box-sizing: border-box;
}

.clear-both {
    *zoom: 1
}

.clear-both:after {
    clear: both;
    content: ".";
    display: block;
    visibility: hidden;
    height: 0;
}
/****************元素样式*******************/
/* 防止用户自定义背景颜色对网页的影响，添加让用户可以自定义字体 */
html {
    color: #000;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
/** 清除内外边距 **/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}
/* 重设 HTML5 标签, IE 需要在 js 中 createElement(TAG) */
article, aside, details, figcaption, figure, footer, hgroup, nav, section {
    display: block;
}
/* HTML5 媒体文件跟 img 保持一致 */
audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}
/* 去掉各 table cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* IE bug fixed: th 不继承 text-align */
th {
    text-align: inherit;
}
/* 去除默认边框 */
fieldset, img {
    border: 0;
}
/* ie6 7 8(q) bug 显示为行内表现 */
iframe {
    display: block;
}
/* 去掉 firefox 下此元素的边框 */
abbr, acronym {
    border: 0;
    font-variant: normal;
}
/* 一致的 del 样式 */
del {
    text-decoration: line-through;
}

i {
    font-style: normal;
}

address, caption, cite, code, dfn, em, th, var {
    font-style: normal;
    font-weight: 500;
}
/* 去掉列表前的标识, li 会继承 */
ol, ul {
    list-style: none;
}
/* 对齐是排版最重要的因素, 别让什么都居中 */
caption, th {
    text-align: left;
}
/* 来自yahoo, 让标题都自定义, 适应多个系统应用 */
h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: 500;
}

h1 {
    font-size: 24px;
}

h2 {
    font-size: 16px;
}

h3, h4, h5, h6 {
    font-size: 14px;
}
/* 解决ie下重复最后字符 */
q:before, q:after {
    content: '';
}
/* 统一上标和下标 */
sub, sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}
/* 默认不显示下划线，保持页面简洁 */
ins, a {
    text-decoration: none;
}
/** 设置默认字体 要注意表单元素并不继承父级 font 的问题 **/
body, button, input, select, textarea {
    font: 14px/1.5 helvetica neue, arial, hiragino sans gb, microsoft yahei, sans-serif;
}

address, dfn, em, var {
    font-style: normal;
}

input, select, textarea {
    font-size: 100%;
}
/* 将斜体扶正 */
code, kbd, pre, samp {
    font-family: courier new, courier, monospace;
}
/* 统一等宽字体 */
small {
    font-size: 12px;
}
/* 小于 12px 的中文很难阅读，让 small 正常化 */
/** 重置文本格式元素 **/
a {
    text-decoration: none;
}

a:hover { /*text-decoration: underline;*/
    cursor: pointer;
}
/** 清除选中状态蓝色边框 **/
a, img, input, select, textarea, button {
    outline: none;
    border: none; /*-webkit-appearance: none;*/
}

button {
    cursor: pointer;
}

* {
    transition: all .2s ease;
}
/*其它公共类*/
.lf {
    float: left;
}

.rt {
    float: right;
}

.IE9 {
    line-height: 60px;
    font-size: 30px;
    font-weight: bold;
}

.indent-2em {
    text-indent: 2em;
    text-align: justify !important;
}

.ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.transition {
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    -moz-transition: all .5s ease;
    transition: all .5s ease;
}

.transform {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.hover_transform {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

.text_ban {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
/****************公用样式*******************/

/*页面样式*/
html {
    background-color: #fff;
}

body {
    min-width: 1300px;
}

.container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
}

.container:before, .container:after {
    clear: both;
    content: "";
    display: table;
}

.bg-gray {
    background: #f2f2f2
}

.bg-purpop {
    background: #6c45c2
}

/*头部广告*/
.top-nav {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    width: 100%;
    min-width: 1300px;
    height: 60px;
    padding: 0 40px;
    line-height: 60px;
    font-size: 0;
    background-color: rgba(0, 0, 0, 0);
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.top-nav:hover {
    background-color: #373D41;
    border-bottom: 0
}

.top-nav .logo {
    float: left;
    height: 25px;
    margin-top: 10px;
}

.top-nav .logo img {
    height: 25px;
}

.top-nav .menu-list {
    float: right;
    position: relative;
    overflow: hidden
}

.top-nav .menu-list li {
    float: left;
}

.top-nav .menu-list li a {
    display: block;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
}

.top-nav .menu-list li a:hover {
    color: #1BD0FD;
}

.top-nav .menu-list li.empty {
    width: 1px;
    height: 26px;
    margin: 17px 20px 0px;
    background: #9D9D9D;
}

.top-nav .menu-list .menu-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: #1BD0FD;
    -webkit-transition: width .5s cubic-bezier(.4, 0, .2, 1), left .3s cubic-bezier(.4, 0, .2, 1);
    -moz-transition: width .5s cubic-bezier(.4, 0, .2, 1), left .3s cubic-bezier(.4, 0, .2, 1);
    -o-transition: width .5s cubic-bezier(.4, 0, .2, 1), left .3s cubic-bezier(.4, 0, .2, 1);
    transition: width .5s cubic-bezier(.4, 0, .2, 1), left .3s cubic-bezier(.4, 0, .2, 1)
}

.banner-box {
    height: 500px;
    background: url(../images/banner.png) no-repeat center top;
}

.banner-container {
    position: relative;
    width: 1000px;
    height: 100%;
    margin: 0 auto;
}

.banner-container .banner-content {
    position: absolute;
    left: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.banner-container .banner-content .banner-title {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    line-height: 50px;
}

.banner-container .banner-content .banner-text {
    margin: 20px auto 45px;
    line-height: 14px;
    text-align: justify;
    font-size: 14px;
    color: #fff;
}

.banner-btn {
    font-size: 0;
}

.banner-btn .button {
    display: inline-block;
    min-width: 125px;
    height: 35px;
    margin-right: 20px;
    line-height: 35px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    border: 1px solid #fff;
}

.banner-btn .button:hover {
    color: #fff;
    background-color: #feb900;
    border-color: #feb900;
}

.nav-fixed {
    position: fixed;
    top: 0px;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    background-color: #373D41;
}


/*导航栏*/
.navigation {
    width: 100%;
    height: 50px;
    line-height: 49px;
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
}

.navigation .nav-list {
    text-align: center;
    overflow: hidden;
}

.navigation .nav-list li {
    display: inline-block;
    margin: 0px 30px;
    position: relative;
}

.navigation .nav-list li.active:after {
    position: absolute;
    display: block;
    content: "";
    left: 22px;
    bottom: 8px;
    width: 20px;
    height: 2px;
    background-color: #6145b4;
}

.navigation .nav-list li a {
    display: block;
    font-size: 16px;
    color: #000;
}

.navigation .nav-list li.active a {
    color: #6145b4
}



/*简介*/
.summary {
    padding-top: 50px;
}

.summary h1 {
    line-height: 30px;
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
}

.summary .content {
    width: 1000px;
    margin: 0 auto 20px;
    line-height: 28px;
    text-align: justify;
}
/**custom**/
.custom {
    margin: 50px 0 80px 0;
}

.custom ul {
    font-size: 0;
    text-align: center;
}

.custom ul li {
    display: inline-block;
    width: 299px;
    height: 226px;
    border-radius: 7px;
    margin-right: 55px;
}

.custom ul li:last-child {
    margin-right: 0;
}

.custom ul li > div {
    height: 137px;
    background-image: linear-gradient(-90deg, #4d4398 0%, #7f47dd 100%);
    text-align: center;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.custom ul li > div img {
    height: 88px;
    margin-top: 25px;
}

.custom ul li > p {
    line-height: 89px;
    background: #f2f2f2;
    color: #333;
    font-size: 16px;
}

/******function********/
.function {
    width: 1200px;
    margin: 40px auto 0;
    padding-bottom: 80px
}

.function_nav {
    margin-bottom: 20px;
    font-size: 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.function_nav a {
    width: 33.33%;
    display: inline-block;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    border-right: 1px solid #ccc;
}

.function_nav a.active {
    color: #fff;
    background-color: #6145b4;
}

.function_nav a:last-child {
    border-right:none;
}




.nav-panel {
    position: relative;
    display: none;
}

.nav-panel.active {
    display:block;
}

.nav-panel:before, .nav-panel:after {
    clear: both;
    content: "";
    display: table;
}

.nav-panel .tab-nav {
    float: left;
    width: 410px;
    height: 511px;
    padding: 50px 55px;
    background: #fff;
    border-radius: 12px;
}

.nav-panel .tab-nav.scroll {
    overflow-y: scroll;
}

.nav-panel .tab-nav.scroll::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 2px;
}

.nav-panel .tab-nav.scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    background: #6145b4;
}

.nav-panel .tab-nav.scroll::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 2px;
    background: rgba(0,0,0,0.1);
}


.nav-panel .tab-nav li {
    height: 60px;
    line-height: 30px;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 35px;
    padding-left: 47px;
    position: relative;
}

.nav-panel .tab-nav li:last-child {
    margin-bottom: 0px;
}

.nav-panel .tab-nav li span {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    width: 27px;
    height: 27px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    margin-right: 20px;
    text-align: center;
}

.nav-panel .tab-nav li:hover, .nav-panel .tab-nav li.active {
    color: #6145b4;
}

.nav-panel .tab-nav li:hover span, .nav-panel .tab-nav li.active span {
    background: #6145b4
}

.nav-panel .tab-content {
    position: absolute;
    border-radius: 12px;
    left: 425px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    padding: 30px 20px;
    text-align: left;
    height: 511px;
    background: #fff;
}

.nav-panel .tab-content .tab-pane {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.nav-panel .tab-content .tab-pane.active {
    display: block;
}

.nav-panel .tab-content .tab-pane .nano-content {
    padding-right: 20px;
}

.nav-panel .tab-content .tab-pane .nano-content > div {
    margin-left: 20px;
}

.nav-panel .tab-content .tab-pane h2 {
    margin-top: 20px;
    margin-bottom: 10px;
    line-height: 30px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
    padding-left: 20px;
    position: relative;
}

.nav-panel .tab-content .tab-pane h2:first-child {
    margin-top: 0;
}

.nav-panel .tab-content .tab-pane h2:before {
    position: absolute;
    display: block;
    width: 5px;
    height: 5px;
    background: #333;
    content: "";
    left: 8px;
    top: 11px;
}

.nav-panel .tab-content .tab-pane p {
    line-height: 25px;
    font-size: 14px;
}

.nav-panel .tab-content .tab-pane img {
    max-width: 100%;
    margin-top: 10px;
}
/*滚动条*/
.nano .nano-pane {
    background: #eee !important;
    border-radius: 8px !important;
}

.nano .nano-slider {
    margin: 0px !important;
    background: #6145b4 !important;
    border-radius: 8px !important;
}



.partener {
    color: #fff;
}

.partener-box {
    width: 1000px;
    margin: 48px auto 33px;
}

.partener-box h2 {
    font-weight: bold;
}

.partener-box h2, .partener-box p {
    font-size: 14px;
    line-height: 30px;
}

.partener-introduce {
    width: 1200px;
    margin: 58px auto 0;
    padding-bottom: 80px;
    color: #333;
}

.partener-introduce ul.tab-nav {
    padding: 80px 55px;
}

.certification {
    width: 1000px;
    margin: 40px auto 0;
    text-align: center;
}

.certification p {
    line-height: 30px;
}

.certification_con {
    font-size: 0;
    margin-top: 65px;
    padding-bottom: 80px;
}

.certification_con_show_item {
    display: inline-block;
    margin-right: 38px;
}

.certification_con_show_item:last-child {
    margin-right: 0;
}

.certification_con_show_item_show {
    display: block;
    border: 5px solid #f2f2f2;
}

.certification_con_show_item_show img {
    display: block;
    max-width: 391px;
    max-height: 223px;
    margin: 0 auto;
}

.certification_con_show_item_name p {
    font-size: 20px;
    color: #6145b4;
    text-align: center;
    margin-top: 16px;
}



/*产品售价*/
.product-price {
    padding-top: 65px;
    background: #6c45c2;
}

.product-price .price-wrap {
    height: 350px;
}

.product-price .price-box {
    width: 1000px;
    height: 350px;
    margin: 0 auto;
    overflow: hidden;
}

.product-price .price-box .img-box {
    float: left;
}

.product-price .price-box .info-box {
    float: right;
    width: 560px;
    height: 350px;
}

.product-price .price-box .info-box .price p {
    font-size: 20px;
    color: #fff;
}

.product-price .price-box .info-box .price p:first-child {
    float: left;
    margin-top: 40px;
}

.product-price .price-box .info-box .price p:last-child {
    float: right;
}

.product-price .price-box .info-box .price span {
    font-size: 60px;
    font-weight: bold;
}

.product-price .price-box .info-box .price-list {
    margin-top: 12px;
    overflow: hidden;
}

.product-price .price-box .info-box .price-list li {
    float: left;
    width: 20%;
    height: 30px;
    margin-bottom: 18px;
    padding: 0px 6px;
    text-align: center;
}

.product-price .price-box .info-box .price-list li a {
    display: block;
    height: 30px;
    line-height: 28px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: all .3s ease;
}

.product-price .price-box .info-box .price-list li:hover a,
.product-price .price-box .info-box .price-list li.active a {
    background-color: #fff;
    color: #6c45c2;
}

.product-price .price-box .info-box .buy-btn {
    display: block;
    width: 150px;
    height: 41px;
    border-radius: 9px;
    margin: 55px 0 0 410px;
    line-height: 41px;
    text-align: center;
    color: #fff;
    background-color: #feb900;
    transition: all .3s ease;
}

.product-price .price-box .info-box .buy-btn:hover {
    background-color: #fff;
    color: #6c45c2;
}


/*售后服务*/
.customer {
    width: 100%;
    padding-top: 50px;
    margin-bottom: 20px;
}

.customer .title {
    background-color: #6c45c2;
}

.customer .title h1 {
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
}

.customer-list {
    width: 1050px;
    margin: 40px auto 0px;
    overflow: hidden;
}

.customer-list li {
    float: left;
    position: relative;
    width: 50%;
    height: 72px;
    margin-bottom: 40px;
    padding-left: 60px;
}

.customer-list li img {
    position: absolute;
    left: 0;
    top: 0;
}

.customer-list li .name {
    margin-bottom: 3px;
}

.footer {
    padding: 20px 0;
    line-height: 24px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    background-color: #000;
}

/* sideNav start  新版*/
.sideNav {
    position: absolute;
    bottom: 14%;
    right: -85px;
    width: 70px;
    background-color: #ffffff;
    border-radius: 2px;
    border: solid 1px #eaeaea;
}

.sideNav_box {
    position: fixed;
    left: 0;
    right: -1300px;
    top: 0;
    width: 1px;
    height: 100%;
    margin: 0 auto;
    z-index: 999;
}

.sideNav_item {
    display: block;
    position: relative;
    cursor: pointer;
    margin-left: -10px;
    padding-left: 10px;
}

.sideNav_item:nth-child(1) .sideNav_item_info {
    width: 300px;
}

.sideNav_item:nth-child(2) .sideNav_item_info {
    width: 220px;
}

.sideNav_item:nth-child(4) .sideNav_item_info p {
    text-align: center;
    padding-bottom: 0;
}

.sideNav_item:hover .sideNav_item_icon.icon_sideNav_tel,
.sideNav_item.active .sideNav_item_icon.icon_sideNav_tel {
    background-image: url(/images/icon_sqkf_ck.png);
}

.sideNav_item:hover .sideNav_item_icon.icon_sideNav_qq,
.sideNav_item.active .sideNav_item_icon.icon_sideNav_qq {
    background-image: url(/images/icon_shkf_ck.png);
}

.sideNav_item:hover .sideNav_item_icon.icon_sideNav_opinion,
.sideNav_item.active .sideNav_item_icon.icon_sideNav_opinion {
    background-image: url(/images/icon_yjfk_ck.png);
}

.sideNav_item:hover .sideNav_item_icon.icon_sideNav_wx,
.sideNav_item.active .sideNav_item_icon.icon_sideNav_wx {
    background-image: url(/images/icon_gzyl_ck.png);
}

.sideNav_item:hover .sideNav_item_i p.title,
.sideNav_item.active .sideNav_item_i p.title {
    color: #f6ac19;
}

.sideNav_item.active .sideNav_item_info {
    display: block;
}

.sideNav_item_icon {
    display: block;
    width: 53px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin: 0 auto;
}

.sideNav_item_icon.icon_sideNav_tel {
    background-size: 26px 26px;
    background-image: url(/images/icon_sqkf.png);
}

.sideNav_item_icon.icon_sideNav_qq {
    background-size: 28px 28px;
    background-image: url(/images/icon_shkf.png);
}

.sideNav_item_icon.icon_sideNav_opinion {
    background-size: 27px 26px;
    background-image: url(/images/icon_yjfk.png);
}

.sideNav_item_icon.icon_sideNav_wx {
    background-size: 25px 25px;
    background-image: url(/images/icon_gzyl.png);
}

.sideNav_item_i p.title {
    font-size: 14px;
    color: #666666;
    text-align: center;
    line-height: 1;
    padding-bottom: 10px;
}

.sideNav_item_i p.line {
    display: block;
    width: 53px;
    height: 1px;
    background-color: #e0e0e0;
    margin: 0 auto;
}

.sideNav_item_info {
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translate(-100%, -50%);
    display: none;
    background: #fff;
    box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
    padding: 15px;
    transition: all 0.3s;
    transition-delay: 0.1s;
}

.sideNav_item_info p {
    color: #373d41;
    font-size: 14px;
    padding-bottom: 10px;
    letter-spacing: 1px;
}

.sideNav_item_info p:last-child {
    padding-bottom: 0;
}

.sideNav_item_info a {
    cursor: pointer;
    font-size: 14px;
    color: #373d41;
}

.sideNav_item_info a:hover {
    color: #f6ac19;
}

.sideNav_item_info img {
    display: block;
    width: 150px;
}

@media screen and (max-width: 1400px) {
    .sideNav {
        position: fixed;
        right: 10px;
    }
}
/* sideBar end */
