@charset "utf-8";
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
}

input, textarea {
    border: none;
    box-shadow: none;
    outline: none;
}

/* 设置默认字体 */
body, button, input, select, textarea {
    font: 14px/22px "Microsoft YaHei", "微软雅黑", "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
    color: #787878;
}

h1 {
    font-size: 18px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4, h5, h6 {
    font-size: 100%;
}

* h1, * h2, * h3, * h4, * h5, * h6 {
    margin: 0;
}

/*覆盖bootstrape对标题加的默认外边距*/
address, cite, dfn, var, i, em {
    font-style: normal;
}

/* 斜体扶正 */

/* 重置列表元素 */
ul, ol, li {
    list-style: none;
}

/* 重置文本格式元素 */
a {
    text-decoration: none;
    color: #787878;
    word-wrap: break-word;
}

/*英文换行*/
a:hover {
    text-decoration: none;
    color: #666;
}

/* 重置表单元素 */
legend {
    color: #000;
}

/* for ie6 */
fieldset, img {
    border: none;
}

/* img 搭车：让链接里的 img 无边框 */
/* 注：optgroup 无法扶正 */
button, input, select, textarea {
    font-size: 100%; /* 使表单元素在 ie 下能继承字体大小 */
}

/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html {
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.mi-line-one {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mi-line-two {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.mi-line-three {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.mi-line-four {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

/*设置浮动*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

/*字体大小*/
.fz12 {
    font-size: 12px;
}

.fz14 {
    font-size: 14px;
}

.fz16 {
    font-size: 16px;
}

.fz18 {
    font-size: 18px;
}

.fz20 {
    font-size: 20px;
}

.fz22 {
    font-size: 22px;
}

.clear {
    clear: both;
    height: 0;
}

.clearafter:after, .clearfix:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.content {
    width: 1280px;
    margin: 0 auto;
}

.body-color {
    background: #ffffff;
}

/*动画*/
@keyframes heart {
    from {
        transform: translate(0, 0)
    }
    to {
        transform: translate(0, 10px)
    }
}

.heart {
    animation: heart 1s ease-in-out infinite alternate;
}

/*表单弹框*/
.nsw-modal {
    width: 100%;
    height: 100%;
    background: rgba(225, 225, 225, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

.modal-dialog {
    position: fixed;
    color: #000000;
    top: 150px;
    width: 400px;
    border-radius: 3px;
    min-height: 155px;
    overflow: hidden;
    z-index: 99998;
    margin-left: -200px;
    left: 50%;
}

.modal-dialog .css-icon {
    background-image: url("../images/modal-icons.png");
}

.modal-dialog .modal-head {
    height: 30px;
    line-height: 30px;
    padding: 0px 20px;
    background: #F6EFEF;
    font-size: 14px;
}

.modal-dialog .modal-head .modal-logo {
    width: 15px;
    height: 15px;
    background-position: 1px 0px;
    margin: 8px 5px 0 0;
    float: left;
}

.modal-dialog .modal-head .close {
    float: right;
    width: 15px;
    height: 15px;
    background-position: -14px 0px;
    margin-top: 8px;
}

.modal-dialog .modal-body {
    width: 100%;
    min-height: 125px;
    background: #ffffff;
}

.modal-dialog .modal-body .modal-body-left {
    width: 140px;
    float: left;
}

.modal-dialog .modal-body .modal-body-left .icon {
    width: 64px;
    height: 64px;
    margin: 30px 0 0 48px;
}

.modal-dialog .modal-body .modal-body-left .success-message {
    background-position: 0px -14px;
}

.modal-dialog .modal-body .modal-body-left .warming-message {
    background-position: 0px -78px;
}

.modal-dialog .modal-body .modal-body-right {
    width: 260px;
    float: right;
    padding-top: 20px;
}

.modal-dialog .modal-body .modal-body-right .close-btn {
    color: #000;
    text-align: center;
    width: 90px;
    display: inline-block;
    height: 24px;
    line-height: 24px;
    background: #818079;
}

.modal-dialog .modal-body .modal-body-right p {
    line-height: 30px;
}


.head {
    background: url("../images/head_bg.jpg") no-repeat center top;
}

.content {
    width: 1280px;
    margin: 0 auto;
}

.head-top {
    height: 129px;
}

.head-logo {
    float: left;
    width: 295px;
    margin-top: 40px;
    padding-right: 22px;
    position: relative;
}

.head-logo:after {
    content: "";
    position: absolute;
    width: 1px;
    background: #c3c3c5;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}

.head-logo a,
.head-logo img {
    width: 295px;
    height: 55px;
    display: block;
}

.head-text {
    float: left;
    margin: 35px 0 0 22px;
    max-width: 500px;
}

.head-text h2 {
    height: 38px;
    line-height: 38px;
    font-size: 30px;
    font-weight: bold;
    color: #1a1a1a;
}

.head-text p {
    height: 26px;
    line-height: 26px;
    font-size: 18px;
    color: #1a1a1a;
}

.head-tel {
    float: right;
    margin-top: 37px;
    max-width: 300px;
    padding-left: 60px;
    background: url("../images/head_tel.png") no-repeat left center;
}

.head-tel em {
    display: block;
    height: 20px;
    line-height: 20px;
    font-size: 14px;
    color: #1a1a1a;
    font-style: normal;
}

.head-tel p {
    height: 30px;
    line-height: 34px;
    font-size: 30px;
    font-family: 'Arial', 'Bahnschrift';
    color: #1a1a1a;
}

.head-nav {
    background: #0141a3;
}

.head-nav ul {
    height: 60px;
}

.head-nav li {
    float: left;
    height: 60px;
    position: relative;
}

.head-nav li:after {
    content: "";
    position: absolute;
    right: 0;
    width: 2px;
    height: 16px;
    background: url("../images/head_line.png") no-repeat center;
    top: 50%;
    margin-top: -8px;
    z-index: 1;
}

.head-nav li:last-child:after {
    display: none;
}

.head-nav li:before {
    content: "";
    position: absolute;
    background: #2b81e4;
    width: 0;
    top: 0;
    bottom: 0;
    z-index: 2;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -moz-transition: all 0.3s;
}

.head-nav li > a {
    display: block;
    height: 60px;
    line-height: 60px;
    font-size: 18px;
    color: #ffffff;
    padding: 0 32px !important;
    position: relative;
    z-index: 5;
}

.head-nav li:hover:after,
.head-nav li.cur:after {
    display: none;
}

.head-nav li:hover:before,
.head-nav li.cur:before {
    width: 100%;
}

.head-nav li:hover > a,
.head-nav li > a.cur {
    font-weight: bold;
    background-color: #2b81e4;
}


.search {
    height: 70px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.search-left {
    float: left;
    width: 700px;
    line-height: 70px;
    height: 70px;
    font-size: 14px;
    color: #666666;
}

.search-left span {
    float: left;
    padding-left: 30px;
    background: url("../images/search_hot.png") no-repeat left center;
    height: 70px;
}

.search-left a {
    float: left;
    height: 70px;
    color: #666;
    margin-right: 20px;
}

.search-left a:hover {
    color: #0141a3;
}

.search-right {
    float: right;
    width: 300px;
    height: 38px;
    border: 1px solid #eeeeee;
    margin-top: 15px;
    border-radius: 25px;
    overflow: hidden;
}

.search-right .search-inp {
    float: left;
    width: 225px;
    height: 38px;
    line-height: 38px;
    font-size: 14px;
    color: #666;
    padding: 0 10px 0 20px;
}

.search-right .search-btn {
    float: left;
    width: 45px;
    height: 38px;
    background: url("../images/search_icon.png") no-repeat center;
    cursor: pointer;
}


.foot {
    padding: 75px 0 30px;
    background: #272c31;
    overflow: hidden;
}

.foot .content {
    position: relative;
}

.foot-con {
    margin-bottom: 75px;
}

.foot-left {
    float: left;
    width: 1020px;
}

.foot-left h3 {
    margin-bottom: 35px;
}

.foot-left h3 a {
    display: inline-block;
    font-weight: normal;
    padding-left: 20px;
    position: relative;
}

.foot-left h3 a:before {
    content: "";
    position: absolute;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #fff;
    top: 8px;
    left: 0;
    z-index: 1;
}

.foot-left h3 span {
    display: block;
    height: 32px;
    line-height: 32px;
    font-size: 20px;
    color: #ffffff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.foot-left h3 em {
    display: block;
    font-style: normal;
    height: 22px;
    line-height: 22px;
    font-size: 14px;
    font-family: "Arial";
    color: #ffffff;
    opacity: 0.4;
    text-transform: capitalize;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.foot-left h3:hover span,
.foot-left h3:hover em {
    color: #f1870a;
}

.foot-nav {
    float: left;
    width: 620px;
}

.foot-nav li {
    float: left;
    width: 170px;
    margin-right: 35px;
}

.foot-nav li p {
    padding-left: 20px;
}

.foot-nav li p a {
    display: block;
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.foot-nav li p a:hover {
    color: #f1870a;
    opacity: 1;
}

.foot-info {
    float: right;
    width: 390px;
}

.info-con {
    margin-bottom: 28px;
}

.info-con p {
    line-height: 36px;
    font-size: 14px;
    color: #ffffff;
    opacity: 0.7;
}

.info-con p a {
    color: #ffffff;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.info-con p a:hover {
    color: #f1870a;
    opacity: 1;
}

.info-tel p {
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    font-weight: bold;
    font-family: "Arial";
    color: #ffffff;
    padding-left: 40px;
    background: url("../images/foot_tel.png") no-repeat left center;
}

.info-tel p span {
    font-size: 16px;
    font-weight: normal;
}

.foot-right {
    float: right;
    width: 206px;
    padding-top: 12px;
}

.foot-right span {
    display: block;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.foot-right span img {
    width: 140px;
    height: 140px;
    display: block;
}

.foot-right p {
    margin-top: -50px;
    padding: 70px 10px 20px;
    line-height: 30px;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    background: #3c4145;
}

.foot-bar p {
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
    text-align: center;
}

.foot-bar p span {
    margin-right: 20px;
}

.foot-bar p em {
    font-style: normal;
    opacity: 0.4;
}

.foot-bar p a {
    color: #ffffff;
    opacity: 0.4;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

.foot-bar p a:hover {
    color: #f1870a;
    opacity: 1;
}

.goTop {
    position: absolute;
    width: 32px;
    height: 32px;
    padding: 17px;
    background: #15181a;
    border-radius: 50%;
    cursor: pointer;
    right: -32px;
    bottom: 35px;
    z-index: 10;
}

.goTop img {
    width: 32px;
    height: 32px;
    display: block;
}


.client-2 {
    position: fixed;
    right: -170px;
    top: 50%;
    z-index: 900;
}

.client-2 li a {
    text-decoration: none;
}

.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 62px;
    position: relative;
}

.client-2 li i {
    background: url(../images/fx.png) no-repeat;
    display: block;
    width: 30px;
    height: 27px;
    margin: 0px auto;
    text-align: center;
}

.client-2 li p {
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.client-2 .my-kefu-qq i {
    background-position: 4px 5px;
}

.client-2 .my-kefu-tel i {
    background-position: 0 -21px;
}

.client-2 .my-kefu-liuyan i {
    background-position: 4px -53px;
}

.client-2 .my-kefu-weixin i {
    background-position: -34px 4px;
}

.client-2 .my-kefu-weibo i {
    background-position: -30px -22px;
}

.client-2 .my-kefu-ftop {
    display: none;
}

.client-2 .my-kefu-ftop i {
    width: 33px;
    height: 31px;
    background-position: -23px -47px;
    background-size: 52px 82px;
}

.client-2 .my-kefu-ftop .my-kefu-main {
    padding-top: 6px;
}

.client-2 .my-kefu-left {
    float: left;
    width: 62px;
    height: 47px;
    position: relative;
}

.client-2 .my-kefu-tel-right {
    font-size: 16px;
    color: #fff;
    float: left;
    height: 24px;
    line-height: 22px;
    padding: 0 15px;
    border-left: 1px solid #fff;
    margin-top: 14px;
}

.client-2 .my-kefu-right {
    width: 20px;
}

.client-2 .my-kefu-tel-main {
    background: #0141a3;
    color: #fff;
    height: 53px;
    width: 230px;
    padding: 9px 0 0;
    float: left;
}

.client-2 .my-kefu-main {
    background: #0141a3;
    width: 97px;
    height: 53px;
    position: relative;
    padding: 9px 0 0;
    float: left;
}

.client-2 .my-kefu-weixin-pic {
    position: absolute;
    left: -130px;
    top: -24px;
    display: none;
    z-index: 333;
}

.my-kefu-weixin-pic img {
    width: 115px;
    height: 115px;
}
.mi-pagination{
    margin: 20px auto 40px;
}
.my-kefu-left:hover .kf-weixin{
    display: block;
    transition: all .3s;
}
.kf-weixin{
    position: absolute;
    right: 65px;
    top: -10px;
    width: 110px;
    height: 110px;
    display: none;
    transition: all .3s;
}