@charset "UTF-8";

/*通用*/
.color_222 {
    color: #222;
}

.color_333 {
    color: #333;
}

.color_555 {
    color: #555;
}

.color_666 {
    color: #666;
}

.color_777 {
    color: #777;
}

.color_999 {
    color: #999;
}

.color_eee {
    color: #eee;
}

.color_aaa {
    color: #aaa;
}

.color_bbb {
    color: #bbb;
}

.color_ccc {
    color: #ccc;
}

.color_ddd {
    color: #ddd;
}

.color_f00 {
    color: #f00;
}

.font14 {
    font-size: 14px;
}

.font20 {
    font-size: 20px;
}

.font25 {
    font-size: 25px;
}

.font30 {
    font-size: 30px;
}

.font36 {
    font-size: 36px;
}

.w100 {
    width: 100%;
}

.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.l-h25 {
    line-height: 25px;
}

.l-h50 {
    line-height: 50px;
}

.l-h80 {
    line-height: 80px;
}

.l-h100 {
    line-height: 100px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tc {
    text-align: center;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}
.btn {
    display: inline-block;
    height: 38px;
    line-height: 38px;
    padding: 0 18px;
    background-color: #666;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.btn:hover {
    opacity: .8;
    filter: alpha(opacity=80);
    color: #fff
}
.transition {
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}

.imgZoom img,
.imgY180 img {
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.imgZoom {
    overflow: hidden;
}

.imgZoom:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imgY180:hover img {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}


.clearfix:after,
.clearfix:before {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.el {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.user {
    line-height: 50px;
    height: 50px;
    padding-right: 50px;
}

.user ul li {
    float: left;
}

.user ul li a {
    display: block;
    font-size: 14px;
    margin: 0 5px;
    padding: 0 5px;
    color: #fff;
}

/*头部*/
.header {
    width: 100%;
    z-index: 100;
    position: relative;
    height: 95px;
    transition: all .3s ease-in;
    top: 0;
    background: #fff;
}

.header .logo {
    margin-top: 8px;
}

.header .topright {
    position: relative;
    margin-top: 25px;
    width: 835px;
    height: 50px;
    line-height: 50px;
}

.header .nav {
    padding-right: 90px;
}

.header .nav .navlist {
    position: relative;
    display: block;
}

.header .nav li {
    float: left;
    display: inline-block;
    list-style: none;
    font-size: 16px;
    text-align: center;
    position: relative;
    height: 50px;
    line-height: 50px;
}
.header .nav li.hover a{
    color: #28a7e1;
}

.header .nav li:hover a {
    color: #28a7e1;
}

.header .nav li a {
    display: block;
    text-align: center;
    position: relative;
    color: #000;
    height: 50px;
    line-height: 50px;
    padding: 0 18px;
}

.header .nav ul .subnav {
    background: #fff;
    border-top: 2px solid #E74C3C;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, 0.05);
    height: auto;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 199;
    opacity: 0;
    visibility: hidden;
    transition: all .6s ease 0s;
    transform: translate3d(0, 10px, 0);
    -moz-transform: translate3d(0, 10px, 0);
    -webkit-transform: translate3d(0, 10px, 0);
}

.header .nav ul li:hover .subnav {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.header .nav ul .subnav a {
    color: #666;
    display: block;
    font-size: 13px;
    font-weight: 500;
    height: 40px;
    line-height: 40px;
    padding: 0;
    transition: all 0.2s ease-in-out 0s;
    max-width: 100%;
    border: 0 none;
    border-bottom: 1px solid #eee;
    border-radius: initial;
}

.header .nav ul .subnav a:hover {
    color: #E74C3C;
    background: #f9f9f9;
    text-indent: 3px;
}

.header .topbtn {
    padding-right: 7%;
    position: relative;
    z-index: 10;
}

.header .search-box {
    position: absolute;
    right: 0;
    top: -25px;
    height: 80px;
    line-height: 80px;
    z-index: 99;
}

.header .search-box .butn {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    margin-top: 30px;
    background: url(../images/ico_60.png) no-repeat center;
}

.header .search-box .butn.hov {
    background: none;
}

.header .search-box .butn.hov i {
    display: block;
}

.header .search-box .butn i {
    width: 38px;
    height: 38px;
    display: none;
    background: url(../images/sou.png) no-repeat center;
    margin: 0 auto;
    border: 1px solid #52545b;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    border-radius: 30px;
}

.header .search-box .share-sub {
    position: absolute;
    right: 40px;
    top: 25px;
    width: 0;
    height: 48px;
    overflow: hidden;
    background: #ededed;
    border-radius: 5px 0 0 5px;
}

.header .search-box .share-sub .tex {
    width: 220px;
    font-size: 14px;
    height: 20px;
    line-height: 20px;
    padding: 14px 10px;
    color: #666;
    border: none;
    background: #ededed;
    outline: none;
}

.header .search-box .share-sub .sub-btn {
    border: none;
    width: 48px;
    height: 48px;
    cursor: pointer;
    outline: none;
    background: url(../images/sou.png) no-repeat center #E74C3C;
}

/*轮播图*/
.fullSlide {
    width: 100%;
    position: relative;
    height: 450px;
    background: #000;
}

.fullSlide .bd {
    margin: 0 auto;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.fullSlide .bd ul {
    width: 100% !important;
}

.fullSlide .bd li {
    width: 100% !important;
    height: 450px;
    overflow: hidden;
    text-align: center;
}

.fullSlide .bd li a {
    display: block;
    height: 600px;
}

.fullSlide .hd {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    height: 30px;
    line-height: 30px;
    top:430px;
}

.fullSlide .hd ul {
    text-align: center;
}

.fullSlide .hd ul li {
    cursor: pointer;
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 40px;
    height: 5px;
    margin: 4px;
    overflow: hidden;
    background: #fff;
    line-height: 999px;
}

.fullSlide .hd ul .on {
    background: #E74C3C;
}

.fullSlide .prev,
.fullSlide .next {
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -30px;
    left: 4%;
    z-index: 1;
    width: 40px;
    height: 60px;
    background: url(../images/slider-arrow.png) -126px -137px #000 no-repeat;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
    display: none;
}

.fullSlide .next {
    left: auto;
    right: 4%;
    background-position: -6px -137px;
}

/*首页*/
.m_til {
    text-align: center;
}

.m_til em {
    display: block;
    line-height: 60px;
    position: relative;
    font-size: 35px;
    color: #3f3f3f;
}

.m_til .enfont {
    font-family: 华文细黑;
    letter-spacing: .06em;
    transform: scale(1, 1.1);
    text-transform: uppercase;
}

.m_til em i {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 26px;
    height: 2px;
    margin-left: -13px;
    background: #E74C3C;
}

.m_til span {
    line-height: 66px;
    font-size: 24px;
    color: #292828;
}

.main_case {
    overflow: hidden;
    min-height: 500px;
    background: #f2f1f6;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.case_list {
    position: relative;
    margin-top: 40px;
}

.case_list ul li {
    overflow: hidden;
    float: left;
    width: 380px;
    margin-right: 24px;
}

.case_list ul li a {
    display: block;
}

.case_list ul li .case_a {
    padding: 25px 8% 30px;
    background-color: #e8e8e8;
    overflow: hidden;
    z-index: 2;
    display: block;
}

.case_list ul li .case_a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #e74c3c;
    left: 0;
    bottom: -100%;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    z-index: -1;
}

.case_list ul li.hover .case_a:before {
    bottom: 0;
}

.case_list ul li.hover .case_a h2,
.case_list ul li.hover .case_a .nr {
    color: #fff;
}

.case_list ul li .case_a h2 {
    font-size: 18px;
    line-height: 30px;
    font-weight: bold;
    color: #666;
}

.case_list ul li .case_a .nr {
    font-size: 14px;
    color: #666464;
    line-height: 21px;
    height: 42px;
    overflow: hidden;
    margin-top: 10px;
}

.case_list ul li .top-Floor {
    width: 100%;
    height: 100%;
    background: url(../images/black.4.png) repeat;
    z-index: 3;
    left: 0;
    top: -100%;
}

.case_list ul li.hover .top-Floor {
    top: 0;
}

.case_list ul li .top-Floor .white-cross {
    width: 60px;
    height: 60px;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -30px;
    margin-top: -30px;
    background: url(../images/whit_cross.png) no-repeat;
}

.case_list .x_arrs {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    left: -5%;
    top: 50%;
    margin-top: -25px;
    display: block;
    width: 51px;
    height: 51px;
    background: url(../images/scroll_btn_4.png) 0px 0px no-repeat;
}

.case_list .next {
    left: auto;
    right: -5%;
    background-position: right bottom;
}

.case_list .prev {
    left: -5%;
    background-position: left bottom;
}

.case_list .prev:hover {
    background-position: left top;
}

.case_list .next:hover {
    background-position: right top;
}


.main_about {
    overflow: hidden;
    min-height: 500px;
    background: #fff;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.main_about .abt_l {
    width: 33%;
    float: left;
}

.main_about .abt_l .common_index_title {
    margin: 35px 0;
    display: inline-block;
}

.main_about .abt_l .common_index_title a {
    display: block;
}

.main_about .abt_l .common_index_title .t {
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    color: #2d4455;
}

.main_about .abt_l .common_index_title .en {
    font-size: 20px;
    line-height: 1;
    font-family: 'Arial';
    color: #fa0712;
    margin-bottom: 5px;
}

.main_about .abt_l .p1 {
    line-height: 1.6;
    font-size: 14px;
    color: #2d4455;
    height: 50px;
    overflow: hidden;
    margin-bottom: 70px;
}

.main_about .abt_l .box_item {
    line-height: 1;
    margin-bottom: 50px;
}

.main_about .abt_l .box_item .item_l {
    position: relative;
}

.main_about .abt_l .box_item .item_l,
.main_about .abt_l .box_item .item_r {
    width: 50%;
    float: left;
}

.main_about .abt_l .box_item .y {
    font-size: 14px;
    margin-bottom: 5px;
}

.main_about .abt_l .box_item .s {
    font-size: 14px;
    line-height: 1;
}

.main_about .abt_l .box_item .y i {
    font-size: 40px;
    font-family: 'Impact';
    font-weight: bold;
    line-height: 1;
    margin-right: 10px;
}

.main_about .abt_l .box_item .item_l:after {
    content: '';
    position: absolute;
    right: 20%;
    height: 66px;
    width: 1px;
    background: #dfdfdf;
    top: 50%;
    margin-top: -33px;
}

.main_about .abt_r {
    width: 65%;
    float: right;
}

.main_about .abt_r .box {
    position: absolute;
    width: 430px;
    height: 186px;
    background: url(../images/index_sanjiao.png) no-repeat;
    right: 0;
    bottom: 0;
    color: #fff;
    text-align: right;
}

.main_about .abt_r .box .t {
    text-transform: uppercase;
    font-size: 30px;
    font-family: 'Arial';
    line-height: 1;
    margin-bottom: 5px;
    margin-right: 40px;
    margin-top: 110px;
}

.main_about .abt_r .box .p {
    font-size: 16px;
    margin-right: 40px;
}

.main_new {
    overflow: hidden;
    min-height: 450px;
    background: #f2f1f6 url(../images/inews_bg.gif) no-repeat center bottom;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.news_list {
    margin-top: 40px;
}

.news_list li {
    float: left;
    width: 375px;
    margin-right: 25px;
}

.news_list li ._date {
    width: 55px;
    float: left;
    height: 65px;
    background: url(../images/inews_d.png) no-repeat 0 0;
    color: #fff;
    text-align: center;
    margin-left: 2%;
}

.news_list li ._date ._d1 {
    display: block;
    font-size: 20px;
    line-height: 24px;
    padding-top: 10px;
}

.news_list li ._date ._d2 {
    display: block;
    line-height: 20px;
    font-size: 12px;
}

.news_list li ._nr {
    width: 300px;
    float: right;
}

.news_list li ._title {
    font-size: 16px;
    line-height: 25px;
    height: 50px;
    overflow: hidden;
    margin-bottom: 10px;
    margin-top: 5px;
}

.news_list li ._sum {
    line-height: 24px;
    height: 96px;
    overflow: hidden;
    margin-bottom: 30px;
    color: #555;
}

.news_list li ._more {
    display: block;
    width: 150px;
    height: 38px;
    line-height: 38px;
    border: 1px solid #898989;
    text-align: center;
    font-size: 14px;
}

.news_list li:hover ._more {
    background: #fa0712;
    border-color: #fa0712;
    color: #fff;
}

.news_list li:hover ._date {
    background-image: url(../images/inews_don.png);
}

.product_box {}

.classify-screen {
    border: 1px solid #ececec;
    font-size: 12px;
    padding: 5px 20px 0px;
    margin: 15px auto;
}

.classify-box {
    padding: 10px 0px;
}

.classify-box .classify-name {
    width: 80px;
    float: left;
    font-size: 16px;
    font-weight: 400;
    text-indent: 15px;
    line-height: 30px;
}

.classify-box .classify-screen-con {
    font-size: 16px;
    line-height: 30px;
    float: left;
    width: 980px;
}

.classify-box .classify-screen-con .classify-choose {
    width: 980px;
    float: left;
}

.classify-box .classify-screen-con a {
    position: relative;
    float: left;
    color: #666;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.classify-box .classify-screen-con a:hover {
    color: #E31939;
}

.classify-box .classify-screen-con a:after {
    content: '';
    display: block;
    width: 1px;
    height: 16px;
    background-color: #e3e3e3;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
}

.classify-box .classify-screen-con a span {
    padding: 3px 10px;
    margin: 0 10px;
}

.classify-box .classify-screen-con a.selected span {
    background: #E31939;
    color: #ffffff;
}

/*标签*/
.page_tags a {
    display: inline-block;
    margin: 0 10px 10px 0;
    color: #fff;
    background-color: #eee;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 2px;
    text-decoration: none;
}

.page_tags a em {
    font-style: normal;
    font-size: 11px;
    margin-left: 5px;
}

.page_tags a:hover {
    color: #fff;
}

.page_tags a:nth-child(8n) {
    background-color: #00a2ca;
}

.page_tags a:nth-child(8n+1) {
    background-color: #5CB85C;
}

.page_tags a:nth-child(8n+2) {
    background-color: #D9534F;
}

.page_tags a:nth-child(8n+3) {
    background-color: #FF6600;
}

.page_tags a:nth-child(8n+4) {
    background-color: #B433FF;
}

.page_tags a:nth-child(8n+5) {
    background-color: #00ABA9;
}

.page_tags a:nth-child(8n+6) {
    background-color: #B37333;
}

.page_tags a:nth-child(8n+7) {
    background-color: #5CB85C;
}







/*分页*/
#pages {
    text-align: center;
}

#pages li {
    margin: 0 2px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: #e6e6e6;
    color: #333;
    display: inline-block;
}
#pages li a{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li span{
    font-size: 14px;
    display: block;
    padding: 0 12px;
}
#pages li.active {
    text-align: center;
    background: #f90712;
    color: #fff;
    display: inline-block;
}

#pages li:hover {
    background: #f90712;
}

#pages li:hover a {
    color: #fff;
}

/*内页*/
.main {
    min-height: 450px;
    position: relative;
}

.headline-bg {
    position: absolute;
    width: 100%;
    top: 95px;
    left: 0;
    height: 400px;
    background: #253340 url(../images/headline-bg.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.container-h{
    margin-top: 80px;
    text-align: center;
    margin-bottom: 50px;
}
.container-h h2{
    font-size: 34px;
    color: #1b2948;
}
.container-h p{
    font-size: 14px;
    font-weight: 400;
    color: #5c6068;
    padding-bottom: 24px;
    padding-top: 10px;
    line-height: 20px;
}
.container-top {
    position: relative;
    overflow: hidden;
    padding: 116px 0 44px;
    line-height: 44px;
    margin-bottom: 16px;
}

.container-top h2 {
    font-size: 44px;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.container-top p{
    color: #fff;
    text-align: center;
    margin-top: 10px;
    font-size: 18px;
}

.container-top h2 span {
    padding-left: 28px;
    margin-left: 20px;
    background: url(../images/titlebg_01.jpg) no-repeat left center;
    font-family: Arial;
}

.bread-nav {
    float: right;
    min-width: 420px;
    color: #ffffff;
    text-align: right;
    padding-top: 5px;
}

.bread-nav a {
    color: #f3f3f3;
    margin: 0 3px;
}

.content {
    background-color: #fff;
    padding: 34px 30px 34px;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 5%);
}
.content-tw{
    margin-top: 1px;
}
.content-bodr{
    height: 114px;
    border-right: 1px solid #eee;
    padding-right: 40px;
    padding-top: 52px;
}
.content-text{
    font-size: 18px;
    padding-bottom: 24px;
    margin-left: 20px;
}
.content-text p{
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}
.content-text-p{
    float: left;
    margin-left: 90px;
}
.content-text-p li{
    font-size: 12px;
    margin-top: 16px;
    list-style: inherit;
    cursor: pointer;
}
.content-text-p li:hover{
    background: #efeeee;
    height: 30px;
    line-height: 30px;
}
.content-img img{
    width: 70px;
}
.about {
    font-size: 16px;
    line-height: 30px;
    color: #666666;
}

.content-left {
    width: 240px;
    float: left;
}

.content-right {
    width: 860px;
    float: right;
}

.content-title {
    width: 160px;
    padding-left: 80px;
    height: 80px;
    line-height: 80px;
    background: #f90712 url(../images/h2bg.png) no-repeat 25px center;
    font-size: 24px;
    color: #ffffff;
    border-bottom: 3px solid #f6f6f6;
}

.menu-list {
    width: 240px;
    background-color: #f6f6f6;
}

.menu-list a {
    display: block;
    width: 236px;
    height: 55px;
    line-height: 55px;
    border-left: 4px solid #f6f6f6;
    border-bottom: 1px solid #e8e8e8;
    text-indent: 40px;
    font-size: 16px;
    color: #333;
}

.menu-list a:hover,
.menu-list a.active {
    border-left-color: #f1151f;
    background-color: #fff;
    text-indent: 36px;
}

.content-contact {
    margin-top: 38px;
    width: 100%;
}

.content-contact .h2bg {
    height: 84px;
    width: 100%;
    line-height: 84px;
    background: url(../images/conbg.png) no-repeat center;
}

.content-contact .h2bg h2 {
    width: 146px;
    padding-left: 94px;
    background: url(../images/conico.png) no-repeat 34px center;
    font-size: 24px;
    color: #ffffff;
}

.cc-info {
    padding: 20px 20px 40px 20px;
    background-color: #f6f6f6;
}

.cc-info p {
    color: #666666;
    font-size: 14px;
    line-height: 26px;
}


/*案例*/
.case_ny_list {
    width: 100%;
    padding-top: 20px;
}

.case_ny_list li {
    margin-bottom: 20px;
    width: 270px;
    float: left;
    margin-right: 20px;
}

.case_ny_list li ._con {
    border-bottom: #f80909 solid 2px;
    overflow: hidden;
    cursor: pointer;
    height: 355px;
}

.case_ny_list li ._img {
    height: 0;
    padding-bottom: 80%;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.case_ny_list li ._con:hover ._img {
    padding-bottom: 60%;
}

.case_ny_list li ._info {
    background: #fff;
    padding: 20px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.case_ny_list li ._info h3 {
    line-height: 2;
    font-weight: normal;
    font-size: 16px;
    color: #000;
}

.case_ny_list li ._info .txt {
    line-height: 22px;
    margin-bottom: 25px;
    height: 66px;
}

.case_ny_list li ._info ._more {
    display: block;
    width: 124px;
    height: 32px;
    line-height: 32px;
    color: #fff;
    text-align: center;
    background: #f80909;
}

.case_ny_left {
    float: left;
    width: 720px;
}

.case_ny_left h2 {
    font-weight: normal;
    font-size: 22px;
    line-height: 1.6;
}

.casePreview {
    border-top-color: #dddddd;
    border-top-width: 1px;
    border-top-style: solid;
    border-bottom-color: #dddddd;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
}

.backBtn {
    float: left;
    padding: 8px 15px 8px 15px;
    border: 1px solid #dedede;
}

.previewBtn {
    float: right;
    padding: 8px 15px 8px 15px;
    background-color: #f80909;
    color: #FFFFFF;
}

.previewBtn:hover {
    color: #fff;
    background-color: #c50606;
}

.caseTitle {
    font-size: 18px;
    border-left: 3px #f80909 solid;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 10px;
    margin-top: 30px;
}

.detaLabels {
    margin-top: 20px;
}

.labelList {
    background-color: #eeeeee;
    color: #666;
    font-size: 12px;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 8px;
    padding-right: 8px;
    display: inline-block;
    margin-left: 10px;
}

.detaIntro {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.detaBody {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.case_ny_right {
    float: right;
    width: 360px;
}

.case_ny_right h3 {
    font-weight: normal;
    line-height: 1.8;
    font-size: 24px;
    margin-bottom: 20px;
}

.newsBox {
    border-bottom: 1px dashed #eee;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.newsTitle {
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 0.5em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsIntro {
    color: #999;
    height: 3em;
    line-height: 1.5em;
    overflow: hidden;
}

/*荣誉*/
.honor {
    padding-left: 15px;
}

.honor-list {
    width: 100%;
    padding: 0 0 15px 0;
}

.honor-list li {
    float: left;
    width: 245px;
    float: left;
    margin-right: 40px;
    margin-bottom: 30px;
    -webkit-transition: 0.5s;
    -ms-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

.honor-list li .img,
.honor-list li .img img {
    display: block;
    width: 245px;
    height: 345px;
}

.honor-list li:hover {
    margin-top: -10px;
    padding-bottom: 10px;
}

.honor-list li:hover .img {
    box-shadow: 0 5px 5px #f2f2f2;
}

.honor-list li.r {
    margin-right: 0;
}

.honor-list li h3 {
    font-size: 16px;
    color: #666666;
    text-align: center;
    line-height: 32px;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.honor-list li:hover h3 {
    color: #e41a21;
}

/*新闻列表*/
.newsPage .list {
    padding-bottom: 30px;
}

.newsPage .item {
    height: 178px;
    transition: all .5s;
    border: 1px solid #f3f3f3;
    display: block;
    margin-bottom: 20px;
}

.newsPage .item a {
    padding: 26px;
    display: block;
}

.newsPage .item img {
    width: 168px;
    height: 126px;
    display: block;
    margin-right: 30px;
}

.newsPage .item h3 {
    font-weight: normal;
    font-size: 20px;
    padding: 10px 0 10px;
    -webkit-transition: all ease 300ms;
    -moz-transition: all ease 300ms;
    -ms-transition: all ease 300ms;
    -o-transition: all ease 300ms;
    transition: all ease 300ms;
    color: #000;
}

.newsPage .item .txt {
    color: #999;
    line-height: 24px;
    width: 400px;
    height: 48px;
    overflow: hidden;
}

.newsPage .item .time {
    width: 130px;
    padding: 20px 0 20px 45px;
    border-left: 1px solid #eee;
    font-family: arial;
    font-size: 18px;
    color: #999;
    text-align: center;
}

.newsPage .item .time .day {
    font-size: 30px;
    line-height: 45px;
    display: block;
}

.newsPage .item:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    margin-left: 15px;
}

.newsPage .item:hover h3 {
    color: #f90712;
}

.newsPage .item:hover .time .day span {
    background: #6d6d6d;
}

.newsPage .item:hover .time .day strong {
    background: #ff0000;
    color: #fff;
}

.viewpage {
    background: #eee;
    width: 100%;
    float: left;
    margin-bottom: 20px;
}

/*新闻详情页*/
.newsshow {
    padding-top: 25px;
}

.newsview {
    min-height: 400px;
    margin-top: 30px;
    border-top: 1px solid #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    font-size: 14px;
    line-height: 33px;
    color: #777;
}

.allow_visitor{
    font-size: 16px;
    padding: 2%;
    text-align: center;
    background: #f7f7f7;
    border: 1px solid #ddd;
}

.newsshow h2 {
    color: #333333;
    font-size: 26px;
    font-weight: normal;
}

.newsshow .date {
    font-size: 14px;
    margin-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eeeeee;
}

.newsshow .date span {
    display: block;
    float: left;
    color: #999999;
    margin-right: 30px;
    padding-left: 22px;
}

.newsshow .date .s1 {
    background: url(../images/news_icon1.jpg) no-repeat left center;
}

.newsshow .date .s2 {
    background: url(../images/news_icon2.jpg) no-repeat left center;
}

.newsshow .date .s3 {
    background: url(../images/news_icon3.jpg) no-repeat left center;
}

.main_r_nav {
    float: left;
    width: 754px;
    height: 66px;
    padding: 10px 0;
    font-size: 14px;
    margin-left: 20px;
    display: inline;
}

.main_r_nav a {
    color: #777;
    float: left;
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 33px;
    font-size: 14px;
}

.main_r_nav a:hover {
    color: #f90712;
}

.returnlist {
    width: 50px;
    height: 56px;
    padding: 15px 18px;
    display: inline;
    float: right;
    color: #fff;
    line-height: 30px;
    font-size: 12px;
    background: #2f2e2e;
}

.returnlist a {
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-family: "microsoft yahei";
    width: 100%;
    display: block;
}

/*底部*/
.footer {
    width: 100%;
    color: #fff;
}

.footer .links {
    padding: 30px 0;
    margin-bottom: 40px;
    font-size: 16px;
    border-bottom: 1px solid #353535;
}

.footer .links span {
    color: #fff;
    display: inline-block;
}

.footer .links a {
    display: inline-block;
    font-size: 14px;
    color: #999;
    padding-right: 10px;
}

.footer .botnavlist li {
    float: left;
    width: 100px;
    padding: 0 0 0 48px;
    display: block;
    list-style: none;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
    border-right: 1px solid #353535;
    overflow: hidden;
}

.footer .botnavlist li:first-child {
    padding-left: 0px;
}

.footer .botnavlist li a {
    color: #fff;
    display: block;
    line-height: 32px;
    font-size: 16px;
}

.footer .botnavlist li .drop {
    padding-top: 10px;
}

.footer .botnavlist li .drop a {
    display: block;
    line-height: 26px;
    color: #999;
    width: 100%;
    font-size: 12px;
}

.footer .botnavlist li a:hover {
    color: #E74C3C;
}

.footer .qcode {
    height: 150px;
    background: url(../images/map.png) center no-repeat;
    width: 540px;
}

.footer .btel {
    width: 320px;
    line-height: 28px;
}

.footer .btel .p1 {
    color: #fff;
}

.footer .btel .p2 {
    margin-bottom: 10px;
    padding-left: 48px;
    background: url(../images/ico_tel.png) no-repeat left center;
    font-family: "GrayDesign Regular", "arial, helvetica, sans-serif";
    font-size: 30px;
    color: #fff;
    line-height: 40px;
}

.footer .btel .p3 {
    color: #999;
    line-height: 22px;
}

.footer .qcode .ewm {
    width: 130px;
    height: 130px;
    display: block;
    border: 5px solid #666;
}

.copy {
    background: #191919;
    border-top: 1px solid #353535;
    line-height: 60px;
    color: #999;
    font-size: 12px;
    margin-bottom: 30px;
}

.tips {
    z-index: 9999999999;
    background: #000;
    width: 100%;
    line-height: 40px;
    height: 40px;
    position: fixed;
    bottom: 0;
}

.tips p {
    color: red;
}

/*搜索*/
.search {
    width: 600px;
    background: #fff;
    border: 2px solid #fa0712;
    height: 45px;
    line-height: 45px;

}

.search_box {
    margin: 0 auto;
    width: 600px;
}

.search-top-box {
    background: #fff;
    padding: 100px 0 200px 0;
}

.search_time {
    line-height: 40px;
    height: 40px;
}

.search select {
    display: none;
}

.search .select_box {
    font-size: 14px;
    color: #999999;
    width: 120px;
    line-height: 45px;
    float: left;
    position: relative;
}

.search .select_showbox {
    height: 45px;
    background: url(../images/search_ico.png) no-repeat 90px center;
    text-indent: 1.5em;
}

.search .select_showbox.active {
    background: url(../images/search_ico_hover.png) no-repeat 90px center;
}

.search .select_option {
    display: none;
    border: 2px solid #fa0712;
    border-top: none;
    display: none;
    left: -2px;
    top: 45px;
    position: absolute;
    z-index: 99;
    background: #fff;
}

.search .select_option li {
    text-indent: 1.5em;
    width: 100px;
    cursor: pointer;
}

.search .select_option li a {
    color: #666;
}

.search .select_option li.selected {
    background-color: #F3F3F3;
    color: #999;
}

.search .select_option li.hover {
    background: #BEBEBE;
    color: #fff;
}

.search input.inp_srh,
.search input.btn_srh {
    border: none;
    background: none;
    height: 45px;
    line-height: 45px;
    float: left
}

.search input.inp_srh {
    font-size: 14px;
    outline: none;
    width: 380px;
}

.search input.btn_srh {
    background: #fa0712;
    color: #FFF;
    font-family: "微软雅黑";
    font-size: 15px;
    width: 100px;
}

.search_result {
    background: #fff;
    padding: 16px 0px;
}

.search_left {
    text-align: right;
    float: left;
    width: 200px;
    margin-right: 16px;
}

.search_left h5 {
    font-weight: normal;
    font-size: 16px;
    line-height: 30px;
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0;
}

.list-group-item_gr {
    color: #999;
    font-size: 14px;
    line-height: 25px;
    position: relative;
    display: block;
    padding: 2px 0px;
}

.list-group-item_gr.active,
.list-group-item_gr.active:hover,
.list-group-item_gr.active:focus {
    z-index: 2;
    color: #fa0712;
    font-weight: 600;
}

.left-line {
    border-left: 1px solid #ddd;
}

.search_right {

    float: right;
    width: 970px;
}

.search_bd {
    min-height: 500px;
    margin-left: 16px;
}

.loadmore {
    width: 80%;
    margin: 1.5em auto;
    line-height: 1.6em;
    font-size: 14px;
    text-align: center;
}
.loadmore-line {
    border-top: 1px solid #E5E5E5;
    margin-top: 2.4em;
}
.loadmore-line .loadmore-tips {
    position: relative;
    top: -0.9em;
    padding: 0 .55em;
    background-color: #FFFFFF;
    color: #808080;
}
.loadmore-tips {
    display: inline-block;
    vertical-align: middle;
}
/*财税切换*/
.cut{
	width: 1200px;
	height:330px;
	margin: 0 auto;
	background: #fff;
	-webkit-box-shadow: 0 3px 8px 0 rgb(82 85 102 / 20%);
	box-shadow: 0 3px 8px 0 rgb(82 85 102 / 20%);
	border-radius: 4px;
}
.control{
	display: inline-block;
	vertical-align: top;
	width: 374px;
	margin: 42px 30px 0 40px;
	padding-bottom: 20px;
}
.control li{
	display: inline-block;
	width: 108px;
	height: 32px;
	line-height: 30px;
	color: #666;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	margin: 0 12px 12px 0;
	cursor: pointer;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.fun_right_div2 li{
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    width: 105px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.content-topp p{
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    width: 105px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
.active{
    background: #ffecdf !important;
    border-color: #ffecdf !important;
    color: #ff6900 !important;
}
.line{
    display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    width: 1px;
    height: 257px;
    background: #f6f8fc;
}
.show{
	position: relative;
    display: inline-block;
    width: 480px;
    height: 257px;
    vertical-align: top;
}
.content-topp{
    margin-top: 15px;
}
.__tit{
    font-size: 16px;
    color: #333;
    line-height: 30px;
}
.__line{
    width: 30px;
    height: 2px;
    background: #f60;
}

.line1{
    display: inline-block;
    vertical-align: top;
    margin-top: -48px;
    width: 1px;
    height: 257px;
    background: #f6f8fc; 
}
.cont-item ._lt{
    max-width: 90px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    float: left;
    font-size: 12px;
    color: #333;
    line-height: 20px;
}
.cont-item ._rt{
    width: 330px;
    float: left;
    font-size: 12px;
    color: #777;
    line-height: 20px;
}
.ui-btn{
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    position: absolute;
    bottom: 23px;
    left: 40px;
    width: 186px;
    height: 36px;
    color: #fff;
    background-image: -webkit-gradient(linear,left top,right top,from(#f93),to(#ff6900));
    background-image: linear-gradient(
90deg
,#f93,#ff6900);
    -webkit-box-shadow: 0 2px 6px rgb(255 105 0 / 30%);
    box-shadow: 0 2px 6px rgb(255 105 0 / 30%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    line-height: 36px;
}
.ui-btn:hover{
    color: #fff;
}
.item-detail.maybe-need{
    position: relative;
    display: inline-block;
    vertical-align: top;
    top: -254px;
    left: 441px;
    width: 215px;
}
.need-item{
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    width: 105px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}
#show1{
	display: none ;
	margin: 30px 0 0 40px;
}
.show #show1{
	display: none ;
}
/*中小微企业*/
.bieorpe{
    width: 100%;
	height:740px;
	margin: 0 auto;
	background: #fff;
	-webkit-box-shadow: 0 3px 8px 0 rgb(82 85 102 / 20%);
	box-shadow: 0 3px 8px 0 rgb(82 85 102 / 20%);
	border-radius: 4px;
    
}
.lietoe{
    width: 15%;
    height: 740px;
    background-image: linear-gradient(to top,#5c92f3,#28a7e1);
}
.lietoe .top-cp{
    margin-top: 56px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    letter-spacing: 10px;
}
.lietoe .top-qy{
    margin-top: 108px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    letter-spacing: 10px;
}
.lietoe .top-fw{
    margin-top: 220px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    letter-spacing: 10px;
}
.liesor{
    width: 80%;
    height: 500px;
}
.text-je{
    width: 100%;
    text-align: center;
    font-size: 25px;
    line-height: 130px;
    height: 129px;
}
.text-je li{
    float: left;
    margin-left:110px;
    color: #28a7e1;
}
.text-je .liepo{
    margin-left:38px;
    color: #28a7e1;
}
.text-je .liepo1{
    margin-left:110px;
    color: #28a7e1;
}
.text-je .liepo2{
    margin-left:110px;
    color: #28a7e1;
}
.oepir{
    margin-left: 43px;
    width: 100%;
    height: 200px;
}
.oepir span{
    width: 150px;
    letter-spacing: 1px;
    line-height: 20px;
    font-size: 14px;
    display: inline-table;
    margin-top: 22px;
}
.oepir span:nth-child(2){
    margin-left:100px;
}
.oepir span:nth-child(3){
    width: 200px;
    margin-left:70px;
}
.oepir span:nth-child(4){
    margin-left:110px;
}
.qiyeoe{
    background: #c4e4d538;
    height: 290px;
    width: 106.3%;
}
.deeoper{
    margin-left: 43px;
    font-size: 14px;
    padding-top: 20px;
}
.deeoper p{
    float: left;
    width: 240px;
    word-break: break-all;
    border-left: 9px dotted #4faab3;
    height: 16px;
    line-height: 8px;
    padding-left: 5px;
    margin-top: 22px;
}
.jiage{
    width: 100%;
    margin-top: 20px;
    margin-left: 42px;
}
.jiage p{
    float: left;
    width: 240px;
    font-size: 14px;
    margin-top: 20px;
}
.jiage p:nth-child(3){
    padding-top: 20px;
}
.jiage p:nth-child(4){
    padding-top: 20px;
}
.jiage p:nth-child(5){
    margin-top: 0 !important;
}
.jiage p:nth-child(6){
    margin-top: -12px !important;
}
/*标准化流程*/
.stepInfo{
    position:relative;
    background:#f2f2f2;
    margin: 80px auto 0 auto;
    width: 100%;
}
.stepInfo li{
    float: left;
    width: 33%;
    height: 1px;
    background: #45a0f3;
}
.stepIco{
    border-radius:1.4em;
    background:#45a0f3;
    text-align:center;
    line-height:1.4em;
    color:#fff;
    position:absolute;
    width:1.4em;height:1.4em;
}
.stueoe{
    border-radius: 1.4em;
    background: #45a0f32e;
    text-align: center;
    line-height: 1.4em;
    position: absolute;
    width: 2.4em;
    height: 2.4em;
}
.stepIcoo{
    border-radius: 1.4em;
    background: #45a0f3;
    text-align: center;
    line-height: 1.4em;
    color: #fff;
    position: absolute;
    width: 10px;
    height: 10px;
}
.wz1{
    top:-14px;
    left:11%
}
.wz2{
    top:-14px;
    left:26%
}
.wz3{
    top:-14px;
    left:41%
}
.wz4{
    top:-14px;
    left:56%;
}
.wz5{
    top:-14px;
    left:71%;
}
.wz6{
    top:-14px;
    left:86%;
}
.s3{
    top: 6px;
    left:21%;
}
.stepIcor{
    top: -5px;
    left: 0%;
}
.stepIcol{
    top: -5px;
    left:99%
}
.stepText p{
    top: -42px;
    position: relative;
    font-size: 16px;
    left: -5px;
    width: 62px;
}
.stepText span{
    position: absolute;
    border-left: 2px solid #eae9e9;
    height: 100px;
    display: block;
    left: 7px;
    top: 35px;
}
.stepText h1{
    position: relative;
    top: 130px;
    left: -50px;
    width: 150px;
    font-size: 16px;
    font-weight: normal;
    line-height: 21px;
}
.stepText{
    color:#666;
    margin-top:0.2em;
    width:4em;
    text-align:center;
    margin-left:-1.4em;
}
/*记账系统*/
.cn{
        width: 100%;
        height: 210px;
}
.hjeie img{
    width: 100%;
}
.process{
    background: #57acff;
}
.bg1200{
    background: url(../images/bg1200.669b0f3.png) no-repeat 100% 100%;
    height: 177px;
    background-position-x: -30px;
}
.r_l{
    float: left;
    width: 155px;
}
.r_l .r_l_title_zh{
    padding-top: 43px;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.r_l .r_l_title_en{
    font-size: 16px;
    margin-top: 10px;
    font-weight: 700;
    color: #298ef2;
}
.r_r{
    float: left;
    width: 1045px;
}
.r_box{
    padding: 50px 0 0 50px;
    float: left;
    width: 25%;
}
.r_box1{
    padding: 50px 0 0 64px;
    float: left;
    width: 25%;
}
.r_box2{
    padding: 50px 0 0 103px;
    float: left;
    width: 25%;
}
.r_box3{
    padding: 50px 0 0 134px;
    float: left;
    width: 25%;
}
.p_text{
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 17px;
}
.firstPbtn{
    color: #ff6900;
}
.p_btn{
    cursor: pointer;
    width: 88px;
    height: 25px;
    background: #fff;
    border-radius: 4px;
    display: block;
    outline: none;
    border: none;
    font-size: 12px;
    color: #228ffa;
    margin-top: 12px;
}
/*记账提供*/
.bodyCon08{
	background:none;
	width: 100%;
    height: 100px;
    background: #f9fafe;
}
.bodyCon08 .students{
	margin:0 auto;
	width:1100px;
	height:480px;
	position:relative;
}
.bodyCon08 .students p.PP{
	width:510px;
	height:50px;
	font-size:16px;
	color:#333;
	text-align:center;
	position:absolute;
	top:60px;
	left:300px;
}
#four_flash{
	position:relative;
	width:1100px;
	height:400px;
	margin:0 auto;
	position:absolute;
	bottom:40px;
}
#four_flash .flashBg{
	width:998px;
	height:400px;
	margin:0 auto;
	position:relative;
	overflow:hidden;
}
#four_flash .flashBg ul.mobile{
	width:2000%;
	height:400px;
	position:absolute;
	top:15; 
	left:0;
}
#four_flash .flashBg ul.mobile li{
	float: left;
    background: #fff;
    width: 160px;
    height: 160px;
    border-radius: 8px;
    margin-left: 20px;
}
#four_flash .flashBg ul.mobile li:hover{
	background: #5b77f1;
}
#four_flash .flashBg ul.mobile li img{
	display: block;
    width: 68px;
    height: 68px;
    margin: 30px auto 18px;
}
#four_flash .flashBg ul.mobile li p{
	line-height: 16px;
    font-size: 16px;
    color: #666;
    text-align: center;
}
#four_flash .flashBg ul.mobile li:hover p{
	color:#fff;
}
#four_flash .but_left{
	width: 50px;
    height: 100px;
    position: absolute;
    top: 66px;
    left: 0px;
}
#four_flash .but_right{
	width: 50px;
    height: 100px;
    position: absolute;
    top: 66px;
    right: -32px;
}
/*问题*/
/* 必要布局样式css */
.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.swiper-container-no-flexbox .swiper-slide {
    float: left
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 10%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.swiper-wrapper {
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -o-transform: translate(0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
	width: 530px;
    height: 240px;
    position: relative;
    padding: 0;
	box-shadow: 0 10px 30px 0 rgb(60 56 151 / 10%);
    user-select: none;
	background:#fff;
	border-radius:10px;
}

.swiper-button-next,.swiper-button-prev {
	position: absolute;
    top: 29%;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    z-index: 1001;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    -o-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    z-index: 10
}
.banner-box {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
	height: 555px;
}

.swiper-container {
    width: 100%;
    margin: 12px 0;
}

.swiper-slide {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transform: scale(.8);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transition: transform 1.0s;
    -moz-transition: transform 1.0s;
    -ms-transition: transform 1.0s;
    -o-transition: transform 1.0s;
    -webkit-transform: scale(0.7);
    -moz-box-shadow: rgba(0,0,0,.2) 0px 0px 30px;
}


.swiper-slide-active,.swiper-slide-duplicate-active {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.swiper-slide img {
    width: 100%;
    display: block;
}
@media screen and (max-width: 668px) {
    .swiper-pagination {
        position: relative;
        margin-bottom: 20px;
    }
}

.banner-arrow div:hover {
    background-color: #ffffff6e;
}

.swiper-button-prev {
    background: url("../images/grayl.png")  no-repeat;
    left: 22%;
}

.swiper-button-next {
    background: url("../images/grayr.png")  no-repeat;
	right: 22%;
}


.banner-title {
    padding: 5px 0;
}

.banner-title h1 {
    text-align: center;
    letter-spacing: 5px;
    font-size: 45px;
    font-family: "Microsoft YaHei", 微软雅黑, MicrosoftJhengHei, 华文细黑, STHeiti, MingLiu;
    font-weight: normal;
    color: rgb(68, 68, 68);
    padding-bottom: 14px;
}
.tit{
	font-size: 16px !important;
    color: #3d4450;
}
.swiper-slide p{
	font-size: 14px;
    line-height: 28px;
    width: 90%;
}
.no3{
    padding-top: 24px;
    padding-left: 30px;
}
.line11{
	width: 80px;
    height: 2px;
    background: #27a7e1;
    margin-bottom: 20px;
    margin-top: 8px;
    opacity: 1;
}
.didd{
	height: 355px;
    background: #5b77f1;
}
.title12{
    font-size: 32px;
    color: #fff;
    text-align: center;
    padding: 100px 0 27px;
}
.title-line {
    width: 50px;
    height: 3px;
    background: #c5d0ff;
    margin: 0 auto;
	margin-bottom: 60px;
}
/*您可能还需要以下服务*/
.sauew{
    width: 1200px;
    margin: 0 auto;
}
.sauew li{
    float: left;
    color: #fff;
    text-align: center;
    padding-top: 19px;
    font-size: 16px;
    margin-left: 43px;
    margin-top: 20px;
}
.edlia a{
    display: block;
    color: #fff;
    font-size: 12px;
    border: 1px solid #fbfafa;
    width: 100px;
    height: 27px;
    margin: 0 auto;
    line-height: 24px;
    margin-top: 20px;
}
.on1{
    width: 350px;
    height: 100px;
    background-image: -webkit-linear-gradient(left, #01c2e6 0%, #1160ff 100%);
    background-image: -moz-linear-gradient(left, #01c2e6 0%, #1160ff 100%);
    background-image: -moz-linear-gradient(to right, #01c2e6 0%, #1160ff 100%);
    background-image: -o-linear-gradient(to right, #01c2e6 0%, #1160ff 100%);
    background-image: linear-gradient(to right, #01c2e6 0%, #1160ff 100%);
    background-repeat: repeat;
}
.die{
    margin-bottom: 80px;
}
/* 底部 */
.foot-title {
	height: 70px;
	border-top: 1px solid #bbb;
	background-color: #ddd;
}
.foot-title__nav {
	line-height: 70px;
	text-align: center;
	font-size: 14px;
	color: #999;
}
.foot-title__nav a {
	font-size: 16px;
	margin: 20px;
}
.foot-centent {
	padding: 35px 0 30px 0;
	background: url(../images/footer-bg.png) #2e2e2e;
}
.foot-centent__head {
	height: 30px;
	width: 104px;
	background: #6e6e6e url(../images/xsj.png) no-repeat 90px center;
	background-size: 15px;
	line-height: 30px;
	color: #fff;
	text-align: center;
	padding-right: 15px;
}
.foot-centent:after {
	display: block;
	content: '';
	clear: both;
}
.foot-centent dl {
	margin: 22px 0px 0 0;
	width: 25%;
	float: left;
}
.foot-centent dl:after {
	display: block;
	content: '';
	clear: both;
}
.foot-centent dt {
	font-size: 16px;
	margin-bottom: 19px;
}
.foot-centent dt a {
	color: #fff;
	font-weight: bold;
}
.foot-centent a:hover {
	text-decoration: underline;
}
.foot-centent dd a {
	color: #afb0b4;
}
.foot-centent dd {
	float: left;
	width: 45%;
	margin-bottom: 15px;
	font-size: 15px;
	overflow: hidden;
	height: 20px;
}
.foot-bottom__line {
	background: #474a53;
	height: 1px;
}
.foot-bottom {
	background: url(../images/footer-bg.png) #2e2e2e;
	color: #aeaeae;
	padding-top: 24px;
}
.foot-bottom__nav ul li {
	width: 138px;
	display: inline;
    padding-left: 20px;
}
.foot-bottom__nav ul li a {
	line-height: 28px;
	color: #afb0b4;
	font-size: 16px;
}
.foot-bottom__img {
	margin-right: 45px;
}
.foot-bottom__img img {
	width: 102px;
}
.foot-bottom__img p {
	font-weight: bold;
	height: 20px;
	background: #fff;
	line-height: 20px;
	font-size: 12px;
	text-align: center;
}
.foot-bottom__fen_a1 {
	/*width: 255px;*/
	margin-right: 0px;
}
.jz{
    text-align: center;
}
.foot-bottom__fen_a1 span {
	font-size: 16px;
	color: #FFF;
	display: block;
	margin-bottom: 19px;
}
.foot-bottom__fen_a1 span em {
	padding-left: 45px;
	background: url(../images/lianxi1.png) 18px center no-repeat;
	background-size: 16px;
}
.foot-bottom__fen_a1 p {
	font-size: 14px;
	margin-top: 10px;
}
.foot-bottom__fen_a1 p i {
	background: url(../images/weizhi.png) no-repeat left center;
	background-size: 16px;
	display: block;
	height: 25px;
	float: left;
	width: 20px;
}
.footer p {
	line-height: 50px;
	text-align: center;
}
.foot-bottom__nav a:hover {
	text-decoration: underline;
}
.footimg {
    padding: 40px 0;
    background: #f3f3f3;
}
.clear{clear: both;}
.main1{
    width: 1200px;
    margin: auto;
}
/*工商注册*/
.gongshang-bg {
    position: absolute;
    width: 100%;
    top: 95px;
    left: 0;
    height: 400px;
    background: #253340 url(../images/gszc.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.Dkeier {
    text-align: center;
    font-size: 23px;
    letter-spacing: 2px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.lieej li{
    float: left;
}
.kdiwdw {
    padding: 42px 58px 50px 37px;
    transition: all 0.2s;
    width: 20%;
    text-align: center;
}
.kdiwdw:hover{
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 5%);
}
.kdiwdw img {
    width: 53px;
}
.kdiwdw p {
    padding-top: 10px;
}
.woeibej{
    width: 100%;
    height: 188px;
    background: #253340 url(../images/nav_sub_bg.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 60px;
}
.woeibej p{
    font-family:"Arial","MicrosoftYaHei","黑体","宋体",sans-serif;
    font-size: 26px;
    color: #fff;
    padding: 50px;
    margin-left: 156px;
}
.woeibej span{
    font-family: "Arial","MicrosoftYaHei","黑体","宋体",sans-serif;
    font-size: 26px;
    color: #fff;
    margin-left: 156px;
    position: relative;
    top: -28px;
    left: 469px;
}
.woeibej h1{
    text-transform: uppercase;
    display: block;
    font-weight: normal;
    position: relative;
    top: -55px;
    font-size: 23px;
    left: 217px;
    width: 397px;
    color: #9f6c00;
}
/*公司类型*/
.control1{
	display: inline-block;
	vertical-align: top;
	padding-bottom: 20px;
}
.ddweope p{
	display: inline-block;
	width: 108px;
	height: 32px;
	line-height: 30px;
	color: #666;
	text-align: center;
	background: #fff;
	border: 1px solid #ccc;
	margin: 0 12px 12px 0;
	cursor: pointer;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.controlkdie{
    display: inline-block;
    vertical-align: top;
    width: 265px;
    margin: 42px 0 0 40px;
}
 .controlkdie li{
    display: inline-block;
    width: 108px;
    height: 32px;
    line-height: 30px;
    color: #666;
    text-align: center;
    background: #fff;
    border: 1px solid #ccc;
    margin: 0 12px 16px 0;
    cursor: pointer;
 }
.tabbox{

}
.tabbox .tab{
    overflow:hidden;
    float: left;
}
.tabbox .tab a{
    display: block;
    text-decoration: none;
    color: #1b2948;
    width: 152px;
    height: 165px;
    text-align: center;
    padding-top: 55px;
}
.tabbox .tab a:hover{background:#888fad;color:#fff;text-decoration:none;}
.tabbox .tab a.on{
    background: #888fad;
    color: #fff;
    text-decoration: none;
    -webkit-box-shadow: inset -5px -5px 8px rgb(0 0 0 / 15%);
    height: 165px;
    text-align: center;
    padding-top: 55px;
}
.tabbox .contentloe{overflow:hidden;padding:10px;}
.texuroo{
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
}
.tueiweo{
    font-size: 14px;
    line-height: 25px;
}
.tabbox .contentloe .reoiew{display:block;}
.show1{
	position: relative;
    display: inline-block;
    width: 480px;
    height: 257px;
    vertical-align: top;
}
#show1{
	display: none ;
	margin: 30px 0 0 40px;
}
.show1 #show1{
	display: none ;
}
.icodi{
    height: 40px;
    line-height: 40px;
    background-image: linear-gradient( 90deg,#f93,#ff6900);
    text-align: center;
    color: #fff;
    margin-top: 21px;
    border-radius: 4px;
    font-size: 16px;
}
/*3天拿证攻略*/
.contbanner{
    position: relative;
    width: 100%;
    height: 311px;
    background: url(../images/process_325b54e.png) no-repeat;
    background-size: 100% 100%;
}
.item1{
    top: 20px;
    left: 66px
}
.item2{
    top: 232px;
    left: 307px;
}
.item3{
    top: 20px;
    left: 505px;
}
.item4{
    top: 232px;
    left: 762px;
}
.item5{
    top: 20px;
    left: 945px;
}
.itemloe{
    position: absolute;
}
.itemloe ._titope{
    line-height: 30px;
    font-size: 20px;
    font-weight: 700;
    color: #336;
}
 .itemloe ._des{
    width: 218px;
    font-size: 13px;
    letter-spacing: .4px;
    line-height: 22px;
    color: #666;
}
.itemloe .ui-btnmf{
    width: 100px;
    height: 32px;
    line-height: 27px;
    font-size: 12px;
    color: #f96;
    background: #fff;
    border: 1px solid #f60;
    text-align: center;
    border-radius: 4px;
    margin-top: 12px;
    cursor: pointer;
}
.cnopdss{
    height: 80px;
}
/*资质许可*/
.zizxuk-bg {
    position: absolute;
    width: 100%;
    top: 95px;
    left: 0;
    height: 400px;
    background: #253340 url(../images/zzxk.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.zzxuek {
    padding: 42px 58px 50px 37px;
    transition: all 0.2s;
    width: 25%;
    text-align: center;
}
.zzxuek:hover{
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 5%);
}
.zzxuek img {
    width: 53px;
}
.zzxuek p {
    padding-top: 10px;
    line-height: 18px;
}
.baneirue{
    background: #45a0f32e;
    height: 60px;
    text-align: center;
    width: 180px;
    color: #fff;
    padding: 5px 0px 0px 0px;
    border-radius: 4px;
}
.baneirue p{
    background: #45a0f3;
    height: 50px;
    width: 168px;
    margin: 0 auto;
    line-height: 48px;
    border-radius: 4px;
}
.ueiwke{
    color: #bcbebf;
    width: 100px;
    margin: 0 auto;
    text-align: center;
    height: 50px;
    line-height: 50px;
}
.juweoe{
    margin: 0 auto;
    width: 1040px;
    height: 100px;;
}
/*攻略问答*/
.gjwd-bg{
    position: absolute;
    width: 100%;
    top: 95px;
    left: 0;
    height: 200px;
    background: #253340 url(../images/glwd.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.content-gjwd{
    background-color: #009aff;
    overflow: hidden;
    border-radius: 20px 100px 50px;
    padding: 10px 5px 10px 30px;
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 15%);
    position: relative;
    top: -7px;
    width: 500px;
    left: 46px;
}
.uyier{
    margin-left: 10px;
}
.uyier a{
    font-size: 16px;
    color: #fff;
}
.gjwd-top{
    position: relative;
    overflow: hidden;
    padding: 81px 0 44px;
    line-height: 44px;
    margin-bottom: 16px;
}
.gjwd-top h2{
    font-size: 44px;
    color: #ffffff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.bejwe{
    background: #f4f7ff;
    margin-bottom: 100px;
    margin-top: 56px;
}
.wiue{
    width: 70%;
}
.wi84{
    width: 30%;
    height: 300px;
}
.ssloe{
    margin-right: 22px;
}
.ssloe img{
    width: 258px;
    height: 153px;
}
.roeiru{
    margin-top: 30px;
    background: #fff;
    padding: 20px 20px;
    width: 818px;
}
.ddss{
    margin-bottom: 25px;
    height: 209px;
    border-bottom: 1px solid #f4f7ff;
}
.img-utpe img{
    width: 320px;
    height: 180px;
}
.text-pe{
    width: 432px;
    height: 170px;
    padding: 10px 28px 0 40px;
}
.text-pe span{
    height: 90px;
    font: 12px/22px"微软雅黑";
    color: #999;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.text-k{
    height: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font: bold 16px/16px"微软雅黑";
    color: #222;
    margin-bottom: 14px;
}
.meta {
    height: 14px;
    font: 12px/14px"微软雅黑";
    color: #999;
    margin: 12px 0 10px;
}
.sj{
    margin-top: 25px;
}
.bieakie{
    background: #fff;
    margin-top: 30px;
    height: auto;
}
.boerrue{
    border-left: 8px solid #7196ff;
    height: 24px;
    padding-left: 10px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 13px;
}
.news-right-list{
    border-top: 1px solid #f4f7ff;
    padding: 10px 10px;
    position: relative;
}
.news-right-list img{
    width: 340px;
    height: 191px;
}
.news-right1-icon {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 46px;
    height: 27px;
    background: url(../images/Top1.png);
}
.news-right1-title {
    position: absolute;
    left: 10px;
    width: 94.3%;
    height: 52px;
    padding-top: 11px;
    background: rgba(0,0,0,0.5);
    top: 149px;
}
.news-right1-title-text {
    padding: 0 10px;
    font: 16px/24px "微软雅黑";
    color: #fff;
}
.qcfde{
    height: 112px;
}
.topei{
    border-top: 1px solid #f4f7ff;
    padding: 10px 10px;
    margin-top: 16px;
}
.wioepw{
    width: 200px;
    margin-left: 18px;
}
.img-tji{
    width: 120px;
}
.topei img{
    width: 120px;
    height: 90px;
}
.wioepw span{
    height: 20px;
    font: 12px/22px"微软雅黑";
    color: #999;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.meroe{
    height: 14px;
    font: 12px/14px"微软雅黑";
    color: #999;
    margin: 0px 0 10px;
}
.yygd{
    height: 20px;
}
/*文章内容*/
.leine{
    background: #fff;
    padding: 20px 20px;
    width: 818px;
}
.leine133{
    background: #fff;
    padding: 30px 30px;
    width: 818px;
}
.leine133 h2{
    font-size: 25px;
    line-height: 44px;
    color: #333;
    font-weight: 700;
    text-align: center;
}
.author{
    padding: 18px 0;
    font-size: 13px;
    line-height: 40px;
    color: #999999;
    text-align: center;
}
.author span{
    padding-left: 40px;
}
.liej{
    line-height: 30px;
    letter-spacing: 2px;
    font-size: 15px;
}
.article-link {
    padding: 0 25px;
    height: 72px;
    background-color: #f9f9f9;
    margin-top: 50px;
}
.article-link div span {
    float: left;
    display: block;
    font-size: 14px;
    line-height: 72px;
    color: #888f9b;
}
.article-link div a {
    color: #888f9b;
    text-decoration: none;
}
.article-link div div {
    max-width: 290px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 72px;
}
.ruije{
    font-size: 19px;
    line-height: 48px;
    color: #3d4450;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 18px;
}
.ruije::after{
    content: '';
    width: 40px;
    height: 3px;
    background-color: #359cff;
    position: absolute;
    bottom: -1px;
    left: 20px;
}
.dtop{
    background: #fff;
    margin-top: 15px;
}
.abox li {
    padding: 13px 0 13px 32px;
    border-bottom: 1px solid #eee;
    position: relative;
    font-size: 13px;
    line-height: 24px;
    color: #3d4450;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.abox li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #359cff;
    position: absolute;
    top: 23px;
    left: 12px;
    border-radius: 50%;
}
.uuop{
    background-image: linear-gradient( 90deg,#f93,#ff6900);
    width: 30%;
    display: block;
    text-align: center;
    color: #fff;
    height: 28px;
    font-size: 14px;
    margin: 0 auto;
    line-height: 28px;
    margin-top: 20px;
    border-radius: 20px;
}
.uuop:hover{
    color: #fff;
}
.owe_img{
    margin-top: 50px;
}
.owe_img img{
    width: 100%;
}
/*知识产权*/
.zscq-bg {
    position: absolute;
    width: 100%;
    top: 95px;
    left: 0;
    height: 460px;
    background: #253340 url(../images/zscq.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.container-zscq{
    position: relative;
    overflow: hidden;
    padding: 215px 0 44px;
    line-height: 44px;
    margin-bottom: 42px;
}
.container-zscq h2 {
    font-size: 65px;
    color: #00adff;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}
.kdiwdw-zscq{
    padding: 42px 58px 50px 37px;
    transition: all 0.2s;
    width: 33.3333%;
    text-align: center;
}
.kdiwdw-zscq:hover{
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 5%);
}
.kdiwdw-zscq img {
    width: 53px;
}
.kdiwdw-zscq p {
    padding-top: 10px;
}
.content-zscq{
    background-color: #fff;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 45px 0 rgb(34 34 34 / 5%);
}
.poewe{
    font-size: 18px;
    color: #00adff;
    font-weight: 600;
    letter-spacing: 3px;
}
.sbzc-b li{
    float: left;
    width: 33.33%;
    text-align: center;
    margin-top: 60px;
}
.sbzc-b p{
    color: #00adff;
    font-size: 24px;
    font-weight: 600;
}
.sbzc-b span{
    color: #999999;
    font-size: 14px;
    line-height: 30px;
}
.sbzc-b-h{
    margin-top: 80px;
    text-align: center;
}
.sbzc-b-h h2{
    font-size: 34px;
    color: #1b2948;
}
.sbzc-b-h p{
    font-size: 14px;
    font-weight: 400;
    color: #5c6068;
    padding-bottom: 24px;
    padding-top: 10px;
    line-height: 20px;
}
.bjoe{
    background: #f7f7f7;
    padding-bottom: 72px;
}
.sbzc-p{
    width: 100%;
    margin-top: 60px;
    text-align: center;
}
.sbzc-p-1{
    width: 100%;
    margin-top: 30px;
    text-align: center;
}
.sbzc-p img{
    width: 920px;
    margin-top: 55px;
}
.sbzc-banner{
    width: 100%;
    height: 380px;
    background: #253340 url(../images/zscq-banner.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    margin-top: 60px;
}
.sbzc-banner p{
    text-align: center;
    padding-top: 50px;
    font-size: 32px;
    color: #fff;
}
.sbzc-li{
    margin-top: 60px;
}
.sbzc-li li{
    float: left;
    height: 170px;
}
.sbzc-li li img{
    width: 50px;
    margin-top: 15px;
}
.sbzc-li li p{
    font-size: 14px;
    color: #fff;
    padding-top: 15px;
}
.sbzc-li li a{
    display: block;
    color: #fff;
    font-size: 12px;
    border: 1px solid #fbfafa;
    width: 100px;
    height: 27px;
    margin: 0 auto;
    line-height: 24px;
    margin-top: 20px
}
.sbzc-li1{
    background: #19e3d5;
    background: linear-gradient(135deg, #19e3d5 0%,#19c3a5 100%);
    box-shadow: 0 0 45px 0 #0000002e;
    width: 290px;
    margin-left: 10px;
    text-align: center;
    border-radius:4px;
}
.sbzc-li2{
    background: #a92df6;
    background: linear-gradient(135deg, #a92df6 0%,#6c39ff 100%);
    box-shadow: 0 0 45px 0 #0000002e;
    width: 290px;
    margin-left: 10px;
    text-align: center;
    border-radius:4px;
}
.sbzc-li3{
    background: #fba761;
    background: linear-gradient(135deg, #fba761 0%,#e84a60 100%);
    box-shadow: 0 0 45px 0 #0000002e;
    width: 290px;
    margin-left: 10px;
    text-align: center;
    border-radius:4px;
}
.sbzc-li4{
    background: #f8d046;
    background: linear-gradient(135deg, #f8d046 0%,#dd8a22 100%);
    margin: 0;
    box-shadow: 0 0 45px 0 #0000002e;
    width: 290px;
    margin-left: 10px;
    text-align: center;
    border-radius:4px;
}
/*荣誉资质*/
			.Box {position: relative;}
			.Box .content {width: 100%;margin: 0 auto;}
			.Box h2 {
			        text-align: center;
                    margin-bottom: 35px;
                    padding-top: 15px;
                    font-size: 36px;
                    font-weight: bold;
                    color: #292e2e;
			 
			}
			.Box .Box_con {position: relative;}
			.Box .Box_con .btnl {position: absolute;}
			.Box .Box_con .btn {display: block;width: 41px;height: 41px;position: absolute;top: 80px;cursor: pointer;}
			.Box .Box_con .btnl {background: url(../images/jtl02.png) no-repeat center;left: -32px;z-index: 100;}
			.Box .Box_con .btnr {background: url(../images/jtr02.png) no-repeat center;right: -32px;z-index: 100;}
			.Box .Box_con .btnl:hover {background: url(../images/jtl03.png) no-repeat center;}
			.Box .Box_con .btnr:hover {background: url(../images/jtr03.png) no-repeat center;}
			.Box .Box_con .conbox {position: relative;overflow: hidden;}
			.Box .Box_con .conbox ul {position: relative;list-style: none;}
			.Box .Box_con .conbox ul li {float: left;width: 285px;height: 200px;margin-left: 20px;overflow: hidden;}
			.Box .Box_con .conbox ul li:first-child {margin-left: 0;}
			.Box .Box_con .conbox ul li img {display: block;width: 285px;height: 200px;transition: all 0.5s;}
			.Box .Box_con .conbox ul li:hover img {transform: scale(1.1);}
/*QQ客服*/
.consult_contact{position:fixed;bottom:22%;right:0;width:114px;height:114px;cursor:pointer;z-index: 999;}
.consult_wrap{position:relative;width:114px;height:114px;}
.consult_wrap .tip{position:absolute;right:95px;top:45px;display:none;width:150px;height:24px;border-radius:3px;font-size:14px;line-height:24px;text-align:center;background:#3091f2;color:#fff;-webkit-transition:display 1s ease;transition:display 1s ease;}
.consult_wrap .tip:after{position:absolute;right:-8px;top:50%;content:"";width:0;height:0;border-top:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid transparent;border-left:4px solid #3091f2;-webkit-transform:translateY(-50%);transform:translateY(-50%);}
.consult_contact img{position:absolute;left:50%;top:50%;width:auto;-webkit-transform:translate3d(-50%, -50%, 0);transform:translate3d(-50%, -50%, 0);}
.consult_contact .staff_img{z-index:999;}
@keyframes ballRotate{0%{transform:rotate(0);}
 100%{transform:rotate(360deg);}
}
.consult_contact .ball{top:20px;width:auto;transform-origin:0 38px;animation:ballRotate 2.5s infinite linear;z-index:9999;}
@keyframes bg2Animation{0%{opacity:0;}
 50%{opacity:1;}
 100%{opacity:0;}
}
.consult_contact .bg-2{animation:bg2Animation 2.5s infinite linear;}
.consult_contact:hover .tip{display:block;}
/*友情链接*/
.links{
    width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
}
/* 关于我们 服务优势*/
.poetext{
    width: 40%;
}
.poetext span{
    width: 100%;
    margin-left: 20px;
    display: block;
    font-size: 12px;
    padding: 10px;
}
.poeteqq{
    background: #f5f5f5;
}
.koeptext{
    text-align: center;
    background: #28a7e1;
    color: #fff;
    margin-left: 20px;
    width: 100%;
}
.poeirxc{
    width: 100%;
}
.khpo{
    width: 100%;
    height: 125px;
    background: #253340 url(../images/gywmkh.jpg) no-repeat 50% top;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    margin-top: 20px;
}
.khpo h2{
    color: #fff;
    width: 100%;
    text-align: center;
    font-size: 26px;
    padding-top: 20px;
    letter-spacing: 20px;
}