@charset "utf-8";
/* ========== 全局重置 ========== */
* {
    margin: 0;
    padding: 0;
}
body {
    color: #333;
    background-color: #f9f9f9;
}
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, blockquote, p {
    margin: 0;
    padding: 0;
    font: 14px/1.5 "Microsoft Yahei", Arial, "\5FAE\8F6F\96C5\9ED1", Helvetica, sans-serif;
}
table, td, tr, th {
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 14px;
}
ol, ul {
    list-style: none;
}
li {
    list-style-type: none;
}
img {
    vertical-align: middle;
    border: 0;
}
address, cite, code, em, th, i {
    font-weight: normal;
    font-style: normal;
}
/* 清除浮动 */
.clear {
    clear: both;
    *zoom: 1;
}
.clear:after {
    display: block;
    overflow: hidden;
    clear: both;
    height: 0;
    visibility: hidden;
    content: ".";
}
/* 链接通用 */
a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
a:visited, a:hover, a:active {
    text-decoration: none;
}
/* 浮动快捷类 */
.fl {
    float: left;
}
.fr {
    float: right;
}
/* 滚动条美化 */
::-webkit-scrollbar {
    width: 0;
}
::-webkit-scrollbar-track {
    background-color: #e6e6e6;
    border-radius: 0;
}
::-webkit-scrollbar-thumb {
    background-color: #2e71b4;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:window-inactive {
    background-color: #2e71b4;
    border-radius: 4px;
}
/* 表单重置 */
input[type="button"],
input[type="submit"],
input[type="reset"],
textarea {
    -webkit-appearance: none;
}
input {
    border-radius: 0;
}
/* 通用容器宽度 */
.w1400 {
    width: 1400px;
    margin: 0 auto;
}
@media screen and (max-width: 1499px) {
    .w1400 {
        width: 95%;
    }
}

/* ========== 头部导航 ey_top ========== */
.ey_top {
    width: 100%;
    background: #fff;
    height: 90px;
    position: relative;
    z-index: 99;
}
.ey_top .eytop_main {
    height: 100%;
    position: relative;
    padding: 0;
}
/* Logo区域 */
.eytop_main .toplogo {
    width: auto;
    height: 58px;
    overflow: hidden;
    margin: 16px 0;
    padding: 0;
    float: left;
}
.toplogo a {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 58px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.toplogo a img {
    display: inline-block;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: 0;
    padding: 0;
}
/* 头部右侧容器 */
.ey_top .eytop_main .top_right {
    width:  calc(100% - 470px);
    float: right;
    height: 100%;
}
/* 导航菜单 */
.ey_top .eytop_main .top_right .nav {
    width: calc(100% - 50px);
    float:  left;
    height: 90px;
    transition: all 0.4s;
}
.ey_top .eytop_main .top_right#showopen .nav {
    transform: scale3d(0, 0, 0);
    width: 0;
}
.ey_top .eytop_main .top_right .nav li {
    width: 12.285%;
    height: 100%;
    float: left;
    text-align: center;
    position: relative;
}
.ey_top .eytop_main .top_right .nav li:first-child {
    width: 10%;
}
.ey_top .eytop_main .top_right .nav li > a {
    height: 100%;
    line-height: 90px;
    font-size: 18px;
    text-align: center;
    transition: .4s ease;
    display: inline-block;
    position: relative;
    z-index: 2;
}
/* 导航底部蓝色背景动画 */
.ey_top .eytop_main .top_right .nav li:after {
    display: block;
    content: "";
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color: #205da5;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 16px;
    left: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    z-index: 1;
}
.ey_top .eytop_main .top_right .nav li:hover:after,
.ey_top .eytop_main .top_right .nav li.navon:after {
    height: 58px;
}
/* 当前导航箭头 */
.ey_top .eytop_main .top_right .nav li.navon i {
    background: url(../images/topjt2.png) center no-repeat;
}
/* hover文字变色 */
.ey_top .eytop_main .top_right .nav li:hover a,
.ey_top .eytop_main .top_right .nav li.navon a {
    color: #fff;
}
/* 下拉箭头图标 */
.ey_top .eytop_main .top_right .nav li i {
    background: url(../images/topjt.png) center no-repeat;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: 15px 15px;
    vertical-align: middle;
    cursor: pointer;
    margin: -4px 0 0 5px;
    position: relative;
    z-index: 2;
}
.ey_top .eytop_main .top_right .nav li:hover i {
    background: url(../images/topjt1.png) center no-repeat;
}
.ey_top .eytop_main .top_right .nav li > i {
    position: absolute;
    top: 15px;
    right: 0;
    display: block;
    width: 30px;
    height: 30px;
    background: url(../images/topjt.png) center no-repeat;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    -ms-transition: all .4s;
    transition: all .4s;
    display: none;
}
/* 下拉菜单容器 */
.nav_item_open {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 10;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 12, 49, 0.1);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(34px);
    transform: translateY(34px);
    -webkit-transition: all .4s;
    transition: all .4s;
    overflow: hidden;
    max-height: 300px;
}
.ny_top .nav_item_open {
    background-color: #fff;
}
.ey_top .eytop_main .top_right .nav li:hover .nav_item_open {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}
.ey_top .eytop_main .top_right .nav li .subopen {
    display: none;
}
/* 子菜单列表 */
.ey_top .eytop_main .top_right .nav li .nav_item2 {
    width: 100%;
}
.ey_top .eytop_main .top_right .nav li .nav_item2 a {
    display: block;
    width: 100%;
    height: 50px;
    overflow: hidden;
    line-height: 50px;
    padding: 0 10px;
    color: #565656;
    font-size: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-align: center;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border-bottom: 1px solid rgba(85, 87, 89, 0.1);
}
.ey_top .eytop_main .top_right .nav li .nav_item2:hover a {
    color: #205da5;
}
/* 头部搜索框 */
.ey_top .eytop_main .top_search {
    float: right;
    position: relative;
    transition: all 0.5s;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    align-items: center;
}
.ey_top .eytop_main .nav-hide .top_search {
    margin-top: 19px;
}
.ey_top .eytop_main .top_search em {
    background: url(../images/search.png) center center no-repeat;
    width: 26px;
    height: 26px;
    cursor: pointer;
    display: block;
    float: right;
    overflow: hidden;
    transition: all 0.3s;
}
.ey_top .eytop_main .top_search em:hover {
    opacity: 0.8;
    filter: Alpha(opacity=80);
}
.ey_top .eytop_main #showopen .top_search em {
    opacity: 0;
    filter: Alpha(opacity=0);
}
/* 搜索弹出层 */
.ey_top .eytop_main .top_search .search_con2 {
    position: absolute;
    right: 0;
    height: 50px;
    z-index: 100;
    transform: scale3d(0, 0, 0);
    transform-origin: right center;
    transition: all 0.5s;
    opacity: 0;
    filter: Alpha(opacity=0);
    width: 500px;
    background: #fff;
}
.ey_top .eytop_main #showopen .top_search .search_con2 {
    opacity: 1;
    filter: Alpha(opacity=100);
    transform: scale3d(1, 1, 1);
}
.top_search .search_con2 .search-input {
    width: 380px;
    float: left;
    height: 48px;
    line-height: 48px;
    overflow: hidden;
    border: 1px solid #d4d4d4;
    border-radius: 5px;
    font-size: 16px;
    padding-left: 20px;
    background: #fff;
}
.top_search .search_con2 .input1 {
    height: 48px;
    line-height: 48px;
    background: none;
    border: 0;
    width: calc(100% - 57px);
    width: -webkit-calc(100% - 57px);
    width: -moz-calc(100% - 57px);
    float: left;
    outline: none;
    font-size: 16px;
    color: #666;
}
.top_search .search_con2 .bnts {
    float: right;
    width: 56px;
    height: 48px;
    background: url(../images/search.png) center center no-repeat;
    margin-right: 1px;
    cursor: pointer;
    border: none;
}
.top_search .search_con2 .bnts:hover {
    transition: all 0.3s;
    opacity: 0.8;
    filter: Alpha(opacity=80);
}
.top_search .search_con2 .moblie-search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 20px;
    height: 20px;
    background: url(../images/scguan.png) center center no-repeat;
}
.nav-hide .top_search .search_con2 .moblie-search-close {
    background-image: url(../images/scguan.png);
}

/* ========== 响应式 - 桌面小屏 1200px ========== */
@media screen and (max-width: 1200px) {
    .ey_top {
        height: 80px;
    }
    .eytop_main .toplogo {
        margin: 12px 0;
    }
    .ey_top .eytop_main .top_right {
        width: calc(100% - 320px);
    }
    .ey_top .eytop_main .top_right .nav {
        width: calc(100% - 30px);
        height: 80px;
    }
    .ey_top .eytop_main .top_right .nav li > a {
        font-size: 16px;
        line-height: 80px;
    }
    .ey_top .eytop_main .top_right .nav li:hover:after,
    .ey_top .eytop_main .top_right .nav li.navon:after {
        height: 48px;
    }
    .ey_top .eytop_main .top_right .nav li i {
        width: 16px;
        height: 16px;
        margin: -4px 0 0 3px;
    }
    .ey_top .eytop_main .top_right .nav li .nav_item2 a {
        height: 42px;
        line-height: 42px;
    }
    .ey_top .eytop_main .top_search .search_con2 {
        height: 45px;
    }
    .top_search .search_con2 .search-input {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
    }
    .top_search .search_con2 .input1 {
        height: 45px;
        line-height: 45px;
        font-size: 15px;
    }
}
/* 1080px */
@media screen and (max-width: 1080px) {
    .ey_top .eytop_main .top_right .nav li > a {
        font-size: 15px;
    }
    .ey_top .eytop_main .top_right .nav li .nav_item2 a {
        font-size: 14px;
    }
}
/* ========== 移动端 平板手机 1023px ========== */
@media screen and (max-width: 1023px) {
    .phonebox {
        position: fixed;
        width: 100%;
        z-index: 999999;
        background: #fff;
        top: 0;
    }
    .ey_top {
        height: 68px;
        position: relative;
    }
    .ey_top .w1400 {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
    }
    /* 移动端侧边菜单 */
    .ey_top .eytop_main .top_right {
        width: 100%;
        position: absolute;
        top: 78px;
        z-index: 9999999;
        background: #fff;
        height: 100vh;
        border-top: 1px solid #ddd;
        left: 100%;
        transition: all .5s ease;
        overflow: scroll;
    }
    .ey_top .eytop_main .top_right.open {
        left: 0;
    }
    .ey_top .eytop_main .top_right .nav {
        width: 100%;
        height: auto;
        float: none;
        margin: 0;
    }
    .ey_top .eytop_main .top_right .nav li:first-child {
        width: 90%;
    }
    .ey_top .eytop_main .top_right .nav li {
        width: 90%;
        margin: 0 auto;
        float: none;
        background: #fff;
        border-bottom: 1px dashed #ddd;
    }
    .ey_top .eytop_main .top_right .nav li > a {
        line-height: 55px;
    }
    .ey_top .eytop_main .top_right .nav li:hover:after,
    .ey_top .eytop_main .top_right .nav li.navon:after {
        height: 55px;
    }
    .ey_top .eytop_main .top_right .nav li:after {
        top: 0;
    }
    .ey_top .eytop_main .top_right .nav li::before,
    .ey_top .eytop_main .top_right .nav li.navon a::before {
        height: 0;
    }
    .ey_top .eytop_main .top_right .nav li .hide > a {
        font-size: 18px;
        line-height: 60px;
    }
    .ey_top .eytop_main .top_right .nav li > a {
        font-size: 16px;
    }
    .ey_top .eytop_main .top_right .nav li .nav_item2 a {
        font-size: 15px;
    }
    .ey_top .eytop_main .top_right .nav li i {
        display: none;
    }
    /* 移动端下拉菜单重置 */
    .nav_item_open {
        position: static;
        width: 100%;
        visibility: visible;
        opacity: 1;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
        box-shadow: none;
        display: none;
        transition: none;
    }
    .ey_top .eytop_main .top_right .nav li.on > i {
        transform: rotate(180deg);
    }
    .ey_top .eytop_main .top_right .nav li .nav_item2 {
        background-color: #f7f7f7;
        margin-bottom: 1px;
    }
    /* 移动端搜索 */
    .ey_top .eytop_main .top_search {
        width: 100%;
        height: auto;
        float: none;
        margin-left: 0;
    }
    .ey_top .eytop_main .top_search em {
        display: none;
    }
    .ey_top .eytop_main .top_search .search_con2 {
        opacity: 1;
        transform: none;
        position: static;
        width: 80%;
        margin: 40px auto 0;
    }
    .top_search .search_con2 .search-input {
        width: 100%;
    }
    .top_search .search_con2 .moblie-search-close {
        display: none;
    }
    /* 移动端汉堡菜单按钮 */
    .ey_top .nav_menu {
        position: absolute;
        right: 3%;
        margin-top: 28px;
        height: 25px;
        transition: all .5s ease;
    }
    .ey_top .nav_menu span {
        display: block;
        width: 26px;
        height: 2px;
        background: #666;
        margin-top: 7px;
    }
    .ey_top .nav_menu:before,
    .ey_top .nav_menu:after {
        content: "";
        display: block;
        width: 26px;
        height: 2px;
        background: #666;
    }
    .ey_top .nav_menu:after {
        margin-top: 7px;
    }
    .ey_top .nav_menu.open span {
        background: transparent;
        transform: translate(-50%, -50%) rotate(180deg);
    }
    .ey_top .nav_menu.open:before {
        margin-top: 10px;
        transform: rotate(45deg);
        width: 23px;
    }
    .ey_top .nav_menu.open::after {
        margin-top: -11px;
        transform: rotate(-45deg);
        width: 23px;
    }
}
/* 800px手机小屏logo适配 */
@media screen and (max-width: 800px) {
    .eytop_main .toplogo {
        height: 58px;
        margin: 10px 0;
    }
    .toplogo a {
        height: 58px;
    }
    /* 右侧悬浮客服适配 */
    .ey_view {
        width: 60px;
        border-radius: 8px;
        right: 2px;
    }
    .ey_view a.kefu-lx {
        display: none;
    }
    .ey_view ul {
        padding: 0;
    }
    .ey_view ul li:nth-child(1),
    .ey_view ul li:nth-child(4),
    .ey_view ul li:nth-child(5) {
        display: none;
    }
    .ey_view ul li p {
        display: none !important;
    }
    .ey_view ul li a {
        font-size: 12px;
    }
}
/* 767px超小手机 */
@media screen and (max-width: 767px) {
    .eytop_main .toplogo {
        height: 50px;
        margin: 10px 0;
    }
    .toplogo a {
        height: 50px;
    }
    .ey_top .eytop_main .top_right {
        top: 68px;
    }
    /* 底部移动端 */
    .ey_foot {
        padding: 25px 0 0;
    }
    .web_foot {
        padding: 0;
    }
    .webfoot_links .links_tit {
        width: 100%;
        height: 70px;
        line-height: 70px;
        font-size: 25px;
    }
    .webfoot_links .links_list {
        width: 100%;
    }
    .pc_ft_main {
        padding: 30px 0;
        text-align: center;
    }
    .pc_ft_main .ft_list,
    .pc_ft_main .con {
        display: none;
    }
    .f_ewm {
        float: none !important;
    }
    .ey_foot .foot_copy {
        text-align: center;
        padding: 15px 0;
    }
    .ey_foot .foot_copy .copy_l,
    .ey_foot .foot_copy .copy_r {
        float: none;
    }
    /* 手机隐藏右侧悬浮客服 */
    #KFRightScreen {
        display: none !important;
    }
}

/* ========== 底部 ey_foot ========== */
.ey_foot {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 60px 0 0;
    background-color: #232323;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}
.web_foot {
    padding: 0;
}
/* 底部链接横幅 */
.ey_foot .webfoot_links {
    overflow: hidden;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.webfoot_links .links_tit {
    width: 135px;
    height: 90px;
    background: #205da5;
    float: left;
    line-height: 90px;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    color: #fff;
    font-size: 30px;
    font-family: "思源宋体";
    font-weight: bold;
    text-align: center;
}
.webfoot_links .links_list {
    width: calc(100% - 135px);
    background: #2a2a2a url(../images/lkbg.png) repeat;
    float: right;
    height: 90px;
    overflow: hidden;
    line-height: 35px;
    color: #fff;
    font-size: 16px;
    margin: 0;
    padding: 10px 0 0 40px;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll;
}
.webfoot_links .links_list a {
    display: inline-block;
    height: 35px;
    line-height: 35px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    margin: 0 20px 0 0;
    padding: 0;
}
.webfoot_links .links_list a:hover {
    color: #fff;
}
/* 底部链接滚动条 */
.links_list::-webkit-scrollbar {
    width: 2px;
}
.links_list::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 0;
}
.links_list::-webkit-scrollbar-thumb {
    background-color: #205da5;
}
.links_list::-webkit-scrollbar-thumb:window-inactive {
    background-color: #205da5;
}
/* 底部主体内容 */
.pc_ft_main {
    padding: 60px 0;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.pc_ft_main .ft_list {
    float: left;
    overflow: hidden;
    padding: 0;
    width: 60%;
    margin-right: 3%;
}
.ft_list ul li {
    width: 21.25%;
    height: 196px;
    overflow: hidden;
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    margin-right: 5%;
}
.ft_list ul li:nth-child(4) {
    margin-right: 0;
}
.ft_list ul li b {
    width: 100%;
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    color: #fff;
    font-size: 18px;
    margin: 0 auto 10px;
    padding: 0 0 5px 0;
    display: block;
    position: relative;
    font-weight: normal;
}
.ft_list ul li em {
    display: block;
    width: 36px;
    height: 1px;
    background: #205da5;
    margin-bottom: 20px;
}
.ft_list ul li a {
    display: block;
    width: 100%;
    height: 35px;
    overflow: hidden;
    line-height: 35px;
    font-size: 14px;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: rgba(255, 255, 255, .45);
}
.ft_list ul li a:hover {
    color: #fff;
}
/* 二维码区域 */
.f_ewm {
    margin-top: 10px;
}
.f_ewm img {
    width: 126px;
}
.f_ewm p {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .45);
}
/* 底部右侧联系方式 */
.pc_ft_main .con {
    width: 25%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.pc_ft_main .con .ico9 {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    line-height: 25px;
    background: url(../images/foot_ico1.png) left no-repeat;
    padding-left: 25px;
}
.pc_ft_main .con .dtel {
    display: block;
    font-family: fantasy;
    font-size: 42px;
    color: #205da5;
    margin: 5px 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, .20);
    padding-bottom: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.pc_ft_main .con span {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .45);
    margin: 10px 0 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pc_ft_main .con span img {
    display: inline-block;
    margin: -4px 10px 0 0;
}
/* 版权栏 */
.ey_foot .foot_copy {
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 25px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .15);
    font-size: 14px;
}
.ey_foot .foot_copy a {
    color: rgba(255, 255, 255, .15);
}
.ey_foot .foot_copy a:hover {
    color: #fff;
}
.foot_copy .copy_l {
    text-align: center;
}
/* 底部响应式大屏适配 */
@media (max-width: 1366px) {
    .pc_ft_main .ft_list {
        width: 50%;
    }
    .pc_ft_main .con {
        width: 30%;
    }
    .pc_ft_main {
        padding: 50px 0 60px;
    }
}
@media (max-width: 1200px) {
    .ey_foot {
        padding: 55px 0 0;
    }
    .pc_ft_main .ft_list {
        width: 50%;
    }
    .pc_ft_main .con {
        width: 30%;
    }
    .pc_ft_main {
        padding: 40px 0 50px;
    }
    .pc_ft_main .con .dtel {
        font-size: 40px;
    }
}
@media (max-width: 1079px) {
    .ey_foot {
        padding: 45px 0 0;
    }
    .pc_ft_main {
        padding: 30px 0 40px;
    }
    .pc_ft_main .con .dtel {
        font-size: 38px;
    }
}
@media (max-width: 1023px) {
    .ey_foot {
        padding: 35px 0 0;
    }
    .pc_ft_main .ft_list {
        display: none;
    }
    .pc_ft_main {
        padding: 20px 0 30px;
    }
    .pc_ft_main .con {
        width: 50%;
        padding: 0;
        float: left;
        margin-left: 50px;
    }
    .ey_foot .foot_copy {
        padding: 15px 0;
    }
    .ey_foot .foot_copy .copy_l,
    .ey_foot .foot_copy .copy_r {
        float: none;
    }
}

/* ========== 右侧悬浮客服 ey_view ========== */
.ey_view {
    background-color: #205da5;
    border: 2px solid #205da5;
    position: fixed;
    width: 80px;
    top: 20%;
    right: 10px;
    text-align: center;
    display: block;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    font-size: 12px;
    z-index: 999;
}
.ey_view ul {
    margin: 0;
    padding-top: 45px;
    color: #fff;
}
.ey_view ul li {
    position: relative;
}
.ey_view ul li:nth-of-type(1),
.ey_view ul li:nth-of-type(4),
.ey_view ul li:nth-of-type(6) {
    display: none;
}
.ey_view ul li a {
    display: block;
    color: #FFF;
    text-decoration: none;
    overflow: hidden;
    height: auto;
    width: 100%;
    padding: 43px 0 12px;
    background: url(../images/kefu-tb.png) no-repeat top center;
}
.ey_view ul li a:hover {
    background-color: #137141;
}
.ey_view a.kefu-lx {
    background-image: url(../images/kefu.png);
    background-repeat: no-repeat;
    background-position: center top;
    position: absolute;
    top: -40px;
    text-indent: -9999px;
    height: 80px;
    width: 80px;
    z-index: 999999;
    left: 0;
    border-width: 0;
    overflow: hidden;
}
.ey_view a.kefu-lx:hover {
    background-color: rgba(255, 255, 255, 0);
}
.ey_view ul li a.kf {
    display: block;
    padding: 10px 0;
}
.ey_view ul li a.kefu-tel {
    background-position: center -79px;
}
.ey_view ul li a.kefu-qq {
    background-position: center -150px;
}
.ey_view ul li a.kefu-wx {
    background-position: center -220px;
}
.ey_view ul li a.kefu_bottom {
    background-position: center -288px;
    padding: 30px 0 10px 0;
    border-radius: 0 0 8px 8px;
}
.ey_view ul li a.kefu_top {
    background-position: center -15px;
    padding: 30px 0 10px 0;
}
.ey_view:hover ul li a {
    display: block;
}
/* 悬浮提示文字 */
.ey_view ul li p {
    position: absolute;
    top: -72px;
    right: 82px;
    width: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    text-align: left;
    color: #fff;
    background: #205da5;
    display: block;
    opacity: 0;
    transition: all .4s ease-in-out .1s;
    overflow: hidden;
    z-index: 201;
}
.ey_view ul li:nth-of-type(3) p {
    top: 0;
}
.ey_view ul li:hover p {
    width: 120px;
    padding: 15px;
    opacity: 1;
}
.ey_view ul li .wechat p {}