﻿@charset "utf-8";
.fl {
    float: left;
}

.fr {
    float: right;
}
.head_log{
width:30%;
}

.head_img{
    width: 60px;
    float: left;
    /* height: 100%; */
    margin-top: 8px;
}
.head_title{
     float: left;
    margin-top: 12px;
    font-size: 24px;
    margin-left: 9px;
    color: #140461;
}
.head_content{
	float: left;
    margin-top: 37px;
    margin-left: -240px;
    color: #170663;
    font-size: 14px;
}

/* 鼠标箭头 */

.jiantou {
    cursor: default;
}


/* 隐藏video 音量按钮 */

video::-webkit-media-controls-mute-button {
    display: none !important;
}


/* 隐藏video 当前按钮 */

video::-webkit-media-controls-current-time-display {
    display: none !important;
}


/* 隐藏video 总时间 */

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}


/* 隐藏video 全屏按钮 */

video::-webkit-media-controls-fullscreen-button {
    display: none !important;
}


/* 背景主体颜色 */

body {
    background-color: #fff;
    color: #777;
    font-size: 16px;
}

a {
    font-size: 16px;
    color: #333;
}

a:hover {
    color:#0f42ec;
}


/* 图片对齐 */

img {
    vertical-align: middle;
}

i {
    display: inline-block;
    vertical-align: middle;
}

.container {
    padding: 0;
    margin: auto;
}

p {
    font-size: 18px;
    color: #777;
    line-height: 26px;
    margin: 0;
}

#bsWXBox {
    overflow: hidden !important;
    box-sizing: border-box;
    width: auto !important;
    height: auto !important;
}


/* h1logo */

h1 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}


/* h2轮播图 */

h2 {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
}


/* h3模块分隔 */

h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
}


/* h4盒子 */

h4 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}


/* h5段落*/

h5 {
    font-size: 22px;
    font-weight: 400;
    color: #333;
}


/* h6自定义 */

h6 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}


/* 单一版心媒体查询修改最大最小宽度 */

@media (min-width: 1200px) {
    .container {
        width: 1100px;
    }
}

@media screen and (min-width: 1500px) {
    .container {
        width: 1400px;
    }
}

@media screen and (max-width: 992px) {
   /* .container {
      padding: 0;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    }*/
}


/* 公共部分样式开始 */

.head {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
    padding: 0 50px;
    background-color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.head_zw {
    height: 100px;
}

.head_box {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head_nav {
    display: flex;
    align-items: center;
}

.head_nav_item {
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
}

.head_nav_itemdw {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: calc(100% + 80px);
    transform: translateX(-40px);
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.head_nav_itemdw>a {
    display: block;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-top: 1px solid #d1d1d1;
    font-size: 14px;
}

.head_nav_itemdw>a:hover {
    transform: translateX(3px);
}

.head_nav_itemdw>a:first-child {
    margin-top: 12px;
    border-top: none;
}

.head_nav_itemdw>a:last-child {
    margin-bottom: 12px;
}

.head_nav_itemdw>a:hover {
    color: #0f42ec;
}

.head_nav_item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 12px;
    background-color: #aaaaaa;
    transform: rotate(18deg) translateY(-50%);
}

.head_nav_item::after {
    display: block;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -30%);
    width: 76%;
    height: 30px;
    border-radius: 15px;
    z-index: -1;
    transition: all .3s;
    -webkit-transform: translate(-50%, -30%);
    -moz-transform: translate(-50%, -30%);
    -ms-transform: translate(-50%, -30%);
    -o-transform: translate(-50%, -30%);
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}

.head_nav .head_nav_item:hover::after {
    background-image: -webkit-gradient(linear, -20% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
    transform: translate(-50%, -50%);
    background: -moz-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -ms-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -o-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.head_nav .head_nav_item.active::after {
    background-image: -webkit-gradient(linear, -20% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
    background: -moz-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -ms-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -o-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.head_nav_item.active>a {
    color: #fff;
}

.head_nav_item:last-child::before {
    display: none;
}

.head_nav_item>a {
    padding: 0 40px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 30px;
    color: #333;
    transition: all 0s;
}

.head_nav_item.on>a {
    color: #fff;
}

.head_nav_item:hover>a {
    color: #fff;
}

.head_nav_item.on::after {
    background-image: -webkit-gradient(linear, -20% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
}

.head_r {
    display: flex;
    align-items: center;
}

.head_lang>a {
    display: flex;
    align-items: center;
}

.head_lang span {
    margin-left: 12px;
    color: #333;
}

.head_lang img {
    display: none;
}

.head_mes {
    margin-left: 45px;
}

.head_mes>a {
    width: 165px;
    height: 40px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px transparent solid;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.head_mes>a::before {
    content: '';
    position: absolute;
    top: -2px;
    bottom: -2px;
    left: -2px;
    right: -2px;
    background: linear-gradient(135deg, #0f42ec, #3fbbfe);
    border-radius: 20px;
    z-index: -1;
}

.head_mes * {
    transition: all .3s;
}

.head_mes>a i {
    font-size: 20px;
    color: #0f42ec;
    transform: translateY(3px);
}

.head_mes>a span {
    margin-left: 8px;
    font-size: 14px;
    color: #333;
}

.head_mes:hover i {
    transform: scale(1.1) translateY(3px)
}

.head_mes:hover span {
    transform: translateX(3px)
}

.mb_btn {
    display: none;
    height: 100px;
    line-height: 100px;
    width: 60px;
    text-align: center;
    margin-left: 10px;
    cursor: pointer;
}

.mb_btn i {
    font-size: 26px;
    color: #333;
}


/* 头部媒体查询 */

@media screen and (max-width: 1500px) {
    .head {
        padding: 0 1%;
    }
    .head_nav_item>a {
        padding: 0 30px;
    }
    .head_nav_itemdw {
        width: calc(100% + 60px);
        transform: translateX(-30px)
    }
}

@media screen and (max-width: 1200px) {
    .head_nav {
        display: none;
    }
    .mb_btn {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .head_zw {
        height: 70px;
    }
    .head_box {
        height: 70px;
    }
    .head_log {
           width: 228px;
  
    margin-top: -23px;
    }
    .head_mes {
        display: none;
    }
    /* .head_lang span {
        display: none;
    }
    .head_lang img {
        display: block;
    } */
}


/* 底部 */

.foot {
    background-color: #333333;
}

.foot_box {
    position: relative;
    padding-top: 40px;
    padding-bottom: 20px;
}

.foot_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 127px;
    height: 127px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transform: translateY(-50%);
    box-shadow: 6px 5px 30px 0px rgba(0, 0, 0, 0.2);
}

.foot_img>img {
    transform: translateX(3px);
}

.foot_link {
    display: flex;
    justify-content: flex-end;
}

.foot_link_item {
    display: flex;
    align-items: center;
}

.foot_link_item a {
    font-size: 15px;
    color: #b9b9b9;
    transition: all .4s;
}

.foot_link_item a:hover {
    color: #fff;
}

.foot_link_item span {
    width: 1px;
    height: 14px;
    background-color: #484848;
    transform: rotate(14deg);
    margin: 0 25px;
}

.foot_link_item:last-child span {
    display: none;
}

.foot_lianxi {
    padding: 45px 0 65px;
    display: flex;
    border-bottom: 1px solid #484848;
}

.foot_lianxi_gs {
    width: 16%;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.foot_lianxi_fs {
    width: 46%;
}

.foot_lianxi_fs div {
    color: #b9b9b9;
    transition: all .4s;
    line-height: 28px;
}

.foot_lianxi_fs div:hover {
    color: #fff;
}

.foot_lianxi_ma {
    display: flex;
    margin-left: -349px;
    width: 107px;
    float: left;
    justify-content: start;
}

.foot_lianxi_ma>div {
    width: 15%;
    margin-left: 10px;
}

.copy {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copy_txt {
    font-size: 14px;
    color: #999999;
}

.copy_txt a {
    font-size: 14px;
    color: #999999;
}

.copy_txt span,
.copy_txt b,
.copy_txt a {
    transition: all .4s;
}

.copy_txt span:hover,
.copy_txt b:hover,
.copy_txt a:hover {
    color: #fff;
}

@media screen and (max-width: 992px) {
    .foot_img {
        display: none;
    }
    .foot_lianxi_gs {
        display: none;
    }
    .foot_lianxi>div {
        width: 50%;
    }
    .foot_link {
        display: none;
    }
    .copy_fx {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .foot_box {
        margin-top: 0;
    }
    .foot_lianxi {
        padding: 20px 0;
    }
    .foot_lianxi {
      flex-wrap: inherit;
    display: block;
    }
    .foot_lianxi>div {
         width: 100%;
    overflow: hidden;
    text-align: center;
    margin-left: 0;
    display: block;
    float: none;
    }
    .foot_lianxi_ma {
        margin-top: 20px;
        justify-content: flex-start;
    }
	.sjI{
width: 100px;
    margin: 0 auto;
	}
    .copy_txt {
        display: flex;
        flex-wrap: wrap;
    }
    .copy_txt span,
    .copy_txt b,
    .copy_txt a {
        width: 100%;
    }
}


/* 移动端展开导航 */

.nav_side {
    position: fixed;
    height: 100%;
    top: 0;
    right: 0;
    /* 等下改 */
    width: 0%;
    z-index: 9999;
}

.nav_lf {
    width: 40%;
    height: 100%;
    background-color: #000;
    opacity: 0.7;
}

.nav_lf:hover {
    cursor: pointer;
}

.mb_cha {
    display: none;
    color: #fff;
    font-size: 60px;
    transition: all .4s;
}

.mb_cha:hover {
    transform: scale(1.1);
}

.nav_rt {
    width: 60%;
    height: 100%;
    background-color: #fff;
}

.nav_rt_list {
    margin: 40px 30px 0;
}

.list_zk li .list_zk_wz {
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.list_zk i {
    width: 5%;
    text-align: center;
    font-size: 25px;
    color: #333;
}

.list_zk_wz a {
    width: 95%;
    color: #333;
}

.click_zk {
    display: none;
    background-color: #efefef;
    padding: 20px;
}

.click_zk a {
    display: block;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #444;
    border-bottom: 1px dotted #c1c1c1;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.click_zk a:first-child {
    box-sizing: content-box;
    /* padding-top: 10px; */
}

.click_zk a:last-child {
    box-sizing: content-box;
    /* padding-bottom: 20px; */
}

@media screen and (max-width: 768px) {
    .list_zk i {
        font-size: 20px;
        width: 10%;
    }
    .list_zk_wz a {
        width: 90%;
    }
}


/* 内页通栏背景 */

.tlbg {
    height: 80px;
    /*    background: linear-gradient(to right, #0f42ec, #f1a573);*/
    background-image: -webkit-gradient(linear, 0% 0%, 130% 0%, from(#0f42ec), to(#3fbbfe));
    background: -moz-linear-gradient(left, #0f42ec 65%, #3fbbfe);
    background: -ms-linear-gradient(left, #0f42ec 65%, #3fbbfe);
    background: -o-linear-gradient(left, #0f42ec 65%, #3fbbfe);
}

.tlbg_box {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tlbg_title {
    font-size: 22px;
    color: #fff;
}

.tlbg_nav {
    display: flex;
    align-items: center;
	color:#fff;
}

.tlbg_nav i {
    font-size: 13px;
    color: #fff;
    margin: 0 3px;
}

.tlbg_nav a {
    font-size: 14px;
    color: #fff;
}

.syicon {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .tlbg_title {
        display: none;
    }
    .tlbg_nav {
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: auto;
    }
    .tlbg_nav::-webkit-scrollbar {
        display: none;
    }
}


/* 内页tab */

.nytab {
    padding: 65px 0;
    display: flex;
    justify-content: center;
}

.nytab>a {
    width: 18%;
    border: 1px solid #d9d9d9;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 5px;
    margin-right: 25px;
    transition: all .4s;
    text-align: center;
    justify-content: space-around;
}

.nytab>a:last-child {
    margin-right: 0;
}

.nytab_txt {
    font-size: 18px;
    color: #333;
}

.nytab>a:hover {
    border: 1px solid #0f42ec;
}

.nytab>a.on {
    border: 1px solid #0f42ec;
}

.nytab>a.on i {
    transform: scale(1.1);
}

.nytab_i i {
    color: #0f42ec;
    -ms-color: #0f42ec;
    -o-color: #0f42ec;
    -moz-color: #0f42ec;
    font-size: 46px;
    background-image: -webkit-gradient(linear, 100% 90%, 60% 20%, from(#3fbbfe), to(#0f42ec));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all .4s;
}

.nytab>a:hover i {
    transform: scale(1.1);
}

.company_img1 {
    display: none;
}

@media screen and (max-width: 992px) {
    .nytab {
        padding: 50px 0;
    }
}

@media screen and (max-width: 768px) {
    .nytab {
   width: 100%;
    padding: 2rem 0 2rem;
    justify-content: flex-start;
    white-space: nowrap;
    overflow-x: auto;
    overflow: hidden;
    }
    .nytab>a {
          width: 32%;
    flex-shrink: 0;
    margin-right: 0.5rem;
    padding: 0;
    line-height: 3.5rem;
    }
    .nytab_txt {
        font-size: 14px;
    }
    /* .nytab::scrollbar {
        display: block;
    } */
    /*  定位滚动条整体的大小及背景*/
    .nytab::-webkit-scrollbar {
        width: 100%;
        height: 5px;
        background-color: #111111;
        border-radius: 5px;
    }
    /* 定义滚动条内阴影和圆角 */
    .nytab::-webkit-scrollbar-track {
        /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
        border-radius: 5px;
        /* background-color: #555; */
    }
    /* 定义滑块的内阴影和圆角 */
    .nytab::-webkit-scrollbar-thumb {
        border-radius: 5px;
        /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
        background-color: #0f42ec;
    }
    .nytab_i i {
        display: none;
    }
    .company_img {
        display: none;
    }
    .company_img1 {
        display: block;
        margin-top: 20px;
    }
}


/* 内页滚动按钮区 */

.company {
    position: relative;
    display: flex;
}

.company .company_deyuan {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -30px);
    width: 76px;
    height: 76px;
    border-radius: 100%;
    background: linear-gradient(to bottom, #f2a973, #d64e7a);
    background: -moz-linear-gradient(top bottom, #f2a973, #0f42ec);
    background: -ms-linear-gradient(top bottom, #f2a973, #0f42ec);
    background: -o-linear-gradient(top bottom, #f2a973, #0f42ec);
    text-align: center;
    line-height: 76px;
    cursor: pointer;
    transition: all .4s;
}

.company_deyuan i {
    color: #fff;
    font-size: 42px;
}

.company .company_deyuan:hover {
    padding-top: 8px;
}

.company>div {
    width: 50%;
}

.company_txt {
    background-color: #333333;
    padding: 90px 0 156px;
}

.company_title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.company_gd {
    margin-top: 35px;
    padding-right: 10%;
}

.company_gd .sly.zdy1 {
    height: 285px;
}

.company_gd>div {
    height: 100%;
}


/* 滚动条样式 */

.scrollbar.zdy1 {
    background: #111111;
    border-radius: 3px;
    border: none;
    border-top-color: rgb(197, 238, 50);
    line-height: normal;
}


/* 整体滚动条的宽度 */

#vertical .scrollbar.zdy1 {
    /* display: none; */
    width: 5px;
}


/* 大滚动条的高度 */

#vertical .example2.zdy1 .scrollbar {
    height: 308px;
}


/* 小滚动条的样式 */

#vertical .scrollbar.zdy1 .handle {
    background-color: #0f42ec;
    width: 100%;
}


/* 整体滚动条的左右位置和高度的设置 */

#vertical .example2.zdy1 .scrollbar {
    position: absolute;
    top: 0;
    right: 0;
}


/* 文章大距离右侧的距离和高度(必须绝对值)背景颜色为 */

#vertical .example2.zdy1 .sly {
    margin-right: 5px;
    height: 308px;
    background: transparent;
}


/* 文章的内边距 */

#vertical .example2.zdy1 .sly>div {
    padding: 0 20px 0 0;
}

.zdy1_ct p {
    font-size: 14px;
    color: #b9b9b9;
    text-indent: 2rem;
}

.company_container {
    width: 100%;
    height: 100%;
}

.company_slide {
    width: 100%;
    height: auto;
    padding-right: 20px;
}

.company_slide p {
    font-size: 14px;
    color: #b9b9b9;
    margin-bottom: 10px;
    text-indent: 2rem;
}

.company_scrollbar {
    background-color: black;
}

.company_scrollbar .swiper-scrollbar-drag {
    background-color: #0f42ec;
}

.company_img,
.company_img1 {
    background-position: left center;
    background-repeat: no-repeat;
    background-size: cover;
}

.company_img>img {
    display: none;
}


/* 样式补充 */

.anbg_txt h3 {
    color: #fff;
}

.anbg_txt p {
    margin-top: 10px;
    font-size: 16px;
    color: #b9b9b9;
}

.anbg_box {
    margin-top: 40px;
    padding-right: 10%;
}

.anbg_box_bg {
    padding: 0 5%;
    border-radius: 10px;
    background-color: #222222;
    border: 1px solid #111;
}

.anbg_bg_item {
    display: flex;
    align-items: center;
    padding: 35px 0;
    border-bottom: 1px solid #111;
}

.anbg_box_bg .anbg_bg_item:last-child {
    border-bottom: none;
}

.anbg_bg_ty {
    width: 40%;
    text-align: center;
    padding: 10px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(to right, #f2a973, #d64e7a);
    background: -moz-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -ms-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    background: -o-linear-gradient(left, #3fbbfe -40%, #0f42ec);
    border-radius: 22px;
}

.anbg_bg_tx {
    width: 60%;
    margin-left: 4%;
    color: #b9b9b9;
}

@media screen and (max-width: 992px) {
    .company {
        flex-wrap: wrap;
    }
    .company>div {
        width: 100%;
    }
    .company_img>img {
        display: block;
        width: 100%;
    }
    .company_deyuan {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .company_txt {
        padding: 30px 10px 77px!important;
    }
    .company_gd {
        padding: 0;
    }
    .company_title {
        font-size: 24px;
        text-align: center;
    }
    .anbg_bg_item {
        flex-wrap: wrap;
    }
    .anbg_bg_item>div {
        width: 100%;
    }
    .anbg_box {
        padding: 0;
    }
    .anbg_txt h3 {
        font-size: 24px;
        text-align: center;
    }
    .anbg_txt p {
        text-align: center;
    }
    .anbg_bg_tx {
        margin: 0;
        padding-top: 10px;
    }
    .anbg_box {
        margin-top: 25px;
    }
    .anbg_bg_ty {
        font-size: 18px;
    }
    .anbg_bg_tx {
        font-size: 14px;
    }
    .anbg_bg_item {
        padding: 24px 0;
    }
}


/* 内页通栏背景区 */

.nytlbg {
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.nytlbg_txt {
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nytlbg_txt h3 {
    color: #fff;
	font-size: 36px;
    font-weight: 700;
}

.nytlbg_txt p {
    margin-top: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, .7);
}

.nytlbg_nav {
    height: 60px;
	color:#fff;
    display: flex;
    align-items: center;
    padding-left: 20px;
    border-radius: 10px 10px 0 0;
    background-image: -webkit-gradient(linear, 0% 0%, 130% 0%, from(#0f42ec), to(#3fbbfe));
    background: -moz-linear-gradient(left, #0f42ec 40%, #3fbbfe);
    background: -ms-linear-gradient(left, #0f42ec 40%, #3fbbfe);
    background: -o-linear-gradient(left, #0f42ec 40%, #3fbbfe);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow-x: auto;
}

.nytlbg_nav::-webkit-scrollbar {
    display: none;
}

.nytlbg_nav i {
    font-size: 13px;
    color: #fff;
    margin: 0 4px;
}

.nytlbg_nav a {
    font-size: 14px;
    color: #fff;
}

@media screen and (max-width:768px) {
    .nytlbg_txt h3 {
        font-size: 24px;
    }
    .nytlbg_txt p {
        font-size: 14px;
    }
    .nytlbg {
        height: 168px;
    }
    .nytlbg_txt {
        height: 128px;
    }
    .nytlbg_nav {
        height: 40px;
    }
    .contactway_ly_title h4 {
        font-size: 20px;
        text-align: center;
    }
    .contactway>div {
        margin-top: 30px;
    }
    .contactway_ly_title p {
        font-size: 16px;
    }
    .contactway_ly_input input {
        font-size: 14px;
    }
    .contactway_ly_textarea textarea {
        font-size: 14px;
    }
}

input::-webkit-input-placeholder {
    /* WebKit browsers 适配谷歌 */
    color: #a9a9a9;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #a9a9a9;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ 适配火狐 */
    color: #a9a9a9;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10+  适配ie*/
    color: #a9a9a9;
}

textarea::-webkit-input-placeholder {
    /* WebKit browsers 适配谷歌 */
    color: #a9a9a9;
}

textarea:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 适配火狐 */
    color: #a9a9a9;
}

textarea::-moz-placeholder {
    /* Mozilla Firefox 19+ 适配火狐 */
    color: #a9a9a9;
}

textarea:-ms-input-placeholder {
    /* Internet Explorer 10+  适配ie*/
    color: #a9a9a9;
}


/* 自定义横向滚动样式 */

.zdy1.container {
    width: 100%;
}


/* 内页tab */

.list_tab {
    padding: 80px 0 60px;
    display: flex;
    justify-content: center;
	width:1440px;
	margin:0 auto;    overflow: hidden;
}

.list_tab .list_tab_item {
    width: 14%;
    padding: 10px;
    text-align: center;
    border-radius: 31px;
    background-color: #fff;
    font-size: 16px;
    color: #777;
    margin: 0 8px;
    transition: all .4s;
    border: 1px solid #d1d1d1;
}

.list_tab .list_tab_item.on {
    background-image: -webkit-gradient(linear, -20% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
    background: -moz-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    background: -ms-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    background: -o-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    color: #fff;
  
}

.list_tab .list_tab_item:hover {
    background-image: -webkit-gradient(linear, -20% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
    background: -moz-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    background: -ms-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    background: -o-linear-gradient(left, #3fbbfe -20%, #0f42ec);
    color: #fff;
}

@media screen and (max-width: 1500px) {
    .list_tab .list_tab_item {
        width: 16%;
    }
}

@media screen and (max-width: 1200px) {
    .list_tab .list_tab_item {
        width: 18%;
    }
}

@media screen and (max-width: 992px) {
    .list_tab {
        padding: 50px 0;
    }
}

@media screen and (max-width: 768px) {
     .head_title{
	     float: left;
    margin-top: 24px;
    font-size: 18px;
    margin-left: 5px;
    color: #140461;
    font-weight: bold;
	 }
   .head_img{
       width: 34px;
    float: left;
    margin-top: 22px;
   }
   .head_content{
   display:none;
   }
    
    .list_tab {
         width: 100%;
    justify-content: flex-start;
    padding: 0;
    display: block;
    }
    .list_tab .list_tab_item {
         width: 28%;
    margin: 2%;
    flex-shrink: 0;
    display: block;
    float: left;
    padding: 0;
    line-height: 35px;    overflow: hidden;
    height: 35px;
    }
    /*  定位滚动条整体的大小及背景*/
    .list_tab::-webkit-scrollbar {
        width: 100%;
        height: 5px;
        background-color: #111111;
        border-radius: 5px;
    }
    /* 定义滚动条内阴影和圆角 */
    .list_tab::-webkit-scrollbar-track {
        /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
        border-radius: 5px;
        /* background-color: #555; */
    }
    /* 定义滑块的内阴影和圆角 */
    .list_tab::-webkit-scrollbar-thumb {
        border-radius: 5px;
        /* box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); */
        background-color: #0f42ec;
    }
    .cndns-right .cndns-right-meau.pc {
        display: none!important;
    }
}

.cndns-right .cndns-right-btn span {
    color: #000;
}

#baguetteBox-overlay .full-image figcaption {
    line-height: 3.8;
    background-image: -webkit-gradient(linear, -40% 0%, 60% 0%, from(#3fbbfe), to(#0f42ec));
    color: #fff;
}

.btnsx {
    transition: all .3s
}

.btnsx:hover {
    transform: scale(.95)
}

@media screen and (max-width: 768px) {
    .boxflex {
        display: flex;
        justify-content: center
    }
}


/* 通用分页样式 */

.pages {
    height: 26px;
    padding: 5px 0;
    margin-top: 5px;
    clear: both;
    text-align: center;
    margin-bottom: 200px;
}

.pages:after {
    content: '.';
    clear: both;
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
}

.pages ul {
    padding: 0;
    list-style: none;
    margin: 0 auto;
    display: inline-block;
}

.pages li {
    float: left;
    margin-right: 5px;
}

.pages li a {
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
    height: 24px;
    line-height: 24px;
    color: #666;
    border-radius: 5px;
}

@media screen and (max-width: 768px) {
    .pages li a {
        padding: 5px 8px;
    }
}

.pages li a:hover {
    border: 1px solid #0f42ec;
    background: #0f42ec;
    color: #fff;
    text-decoration: none;
}

.pages li span {
    border: 1px solid #e1e1e1;
    height: 24px;
    line-height: 24px;
    color: #c4c4c4;
    border-radius: 5px;
    padding: 5px 10px;
}

.pages .current a {
    border: 1px solid #0f42ec;
    background: #0f42ec;
    color: #fff;
    border-radius: 5px;
}


/* 下方分享样式修改 */

.foot .bshare-custom .bshare-more.more-style-addthis {
    display: none;
}

.foot .bshare-custom .bshare-share-count {
    display: none;
}

.foot .bshare-custom>a {
    width: 30px;
    height: 30px;
    background-size: cover;
}

.ov {
    overflow: hidden;
}

.dizhi_box {
    width: 80%;
}

* {
    touch-action: auto!important;
}

.zw_slybox {
    margin-bottom: -130px;
}
.pro_one_boxs a:hover{
   color:#0f42ec
}

  
    .p101-fdh-1 dt {
        padding: 0 4%;
    }
    
    .p101-fdh-1 dt a {
        display: block;
        height: 3.7rem;
        line-height: 3.7rem;
        font-size: 1.5rem;
        color: #333333;
    }
    
    .p101-fdh-1 dd {
        background: #f1f1f1;
    }
    
    .p101-fdh-1 dd p {
        height: 3.8rem;
        padding: 0 4%;
        border-bottom: 0.1rem dotted #e6e6e6;
        position: relative;
    }
    
    .p101-fdh-1 dd p:last-child {
        border-bottom: 0;
    }
    
    .p101-fdh-1 dd a {
        float: left;
        width: 47%;
        height: 3.8rem;
        line-height: 3.8rem;
        font-size: 1.3rem;
        color: #666666;
        padding-left: 3%;
        position: relative;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .p101-fdh-1 dd a:before {
        content: '';
        position: absolute;
        width: 0.05rem;
        height: 0.25rem;
        background: #6a6a6a;
        left: 0;
        top: 50%;
        margin-top: -0.125rem;
    }
    
    .p101-fdh-1 dd a:after {
        content: '';
        position: absolute;
        border-top: 0.125rem solid transparent;
        border-bottom: 0.125rem solid transparent;
        border-left: 0.15rem solid #6a6a6a;
        left: 0.1rem;
        top: 50%;
        margin-top: -0.125rem;
    }


        .p101-pro-1-pic {
            position: relative;
            overflow: hidden;
        }
        .p101-pro-1-pic a {
        position: absolute;
        width: 2.8rem;
        height: 2.8rem;
        background: rgba(0, 0, 0, 0.34);
        border-radius: 100%;
        top: 2rem;
        left: 4%;
        z-index: 50;
    }
    
    .p101-pro-1-pic a:after {
        content: "";
        width: 1rem;
        height: 1rem;
        border: 0.15rem solid #fff;
        border-style: solid none none solid;
        border-radius: 0.1rem;
        position: absolute;
        top: 50%;
        right: 0.6rem;
        margin-top: -0.5rem;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
        
        .p101-pro-1-pic li img {
            width: 100%;
            display: block;
        }
        
        .p101-pro-1-pic .p101-pro-1-page {
            font-size: 1.4rem;
            width: 12%;
            height: 2rem;
            font-family: 'Arial';
            border-radius: 1.5rem;
            background: rgba(0, 0, 0, 0.7);
            font-weight: normal;
            line-height: 2rem;
            color: #fff;
            position: absolute;
            left: 84%;
            bottom: 2rem;
            text-align: center;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
            z-index: 2;
        }
        
        .p101-pro-1-pic .p101-pro-1-page i {
            font-family: "SimHei";
        }
        
        .p101-pro-1-con {
            padding: 1.75rem 4% 2rem;
            border-bottom: 0.75rem solid #ececec;
        }
        
        .p101-pro-1-con-title {
            height: 3rem;
            line-height: 3rem;
            font-size: 1.8rem;
            color: #333333;
            font-weight: bold;
        }
        
        .p101-pro-1-con-desc {
            padding-top: 0.8rem;
            line-height: 2.5rem;
            font-size: 1.5rem;
            color: #666666;
            text-align: justify;
        }
    

        .p101-pro-1-content {
            padding: 1.5rem 4%;
            font-size: 1.5rem;
            line-height: 2.7rem;
            color: #444;
            text-align: justify;
            border-bottom: 0.75rem solid #ececec;
        }
    .p101-pro-1-con-desc p{
	    font-size: 16px;
  	  	color: #777;
    	line-height: 26px;
    	margin: 0;
	}

.tit {
        clear: both;
        height: 140px;
        text-align: center;
    }
    
    .tit span {
        font-size: 28px;
        font-weight: bold;
        letter-spacing: 5px;
        display: block;
        color: #282828;
        padding-top: 40px;
    }
    
    .tit span b {
        color: #0f42ec;
    }
    
    .tit em {
        display: block;
        font-size: 14px;
        color: #666666;
        font-weight: normal;
        font-style: normal;
        letter-spacing: 0;
        margin-top: 5px;
        text-transform: uppercase;
        font-family: Times New Roman;}
 .tit {
        clear: both;
    }
.container ..partner {
    margin-top: 0;
} 

    .lx {}
    
    .lx h2,
    .lx1 h2 {
        font-size: 34px;
        font-weight: normal;
        text-align: center;
        margin: 50px auto 40px;
        color: #333;
    }
    
    .lx p {
        background:url(../images/7fc35584ebd54eb98b5f0d8aaddd9485_12.jpg?ver=11) no-repeat;
        height: 181px;
        padding: 20px 20px 0px 250px;
    }
    
    .lx p b {
        font-size: 24px;
        color: #0f42ec;
        display: block;
        margin: 17px auto;
        font-weight: normal;
    }
    
    .lx p em {
        font-style: normal;
        color: #000;
    }
    
    .lx li {
        float: left;
        border: 1px solid #eee;
        width: 285px;
        height: 190px;
        text-align: center;
        margin-right: 20px;
        color: #666;
        line-height: 160%;
        padding: 0 10px;
        font-family: 微软雅黑;
    }
    
    .lx li.last {
        float: right;
        margin-right: 0px
    }
    
    .lx li img {
        margin-top: 20px;
        width: 52px;
       margin-left:104px;
    }
    
    .lx li i {
        display: block;
        font-size: 18px;
        color: #222;
        padding-bottom: 8px;
        font-style: normal;
        padding-top: 10px;
    }
    
    .lx li span {
        display: block;
        font-size: 16px;
        color: #333;
        margin-top: 5px;
    }
    
    .lx li.last span {
        font-size: 15px;
    }

@media screen and (max-width: 768px){
.blk-main {
width: 100%;
    margin: 0 auto;
    overflow: hidden;
}
	.partner_img_item>div img {
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    height: auto !important;
}
.container  .partner>div {
    width: 96%;
    margin: 20px auto auto auto;
}
	.endit-content p {
    margin: 0 auto;
    font-size: 13px !important;
    text-align: left !important;
    width: 96%;
}
	.p12-aboutinfo-1-nr iframe{width: 100% !important;}
.tit {
        clear: both;
        height: 80px;
        text-align: center;
    }
    
    .tit span {
            font-size: 28px;
    font-weight: bold;
    letter-spacing: 5px;
    display: block;
    color: #282828;
    padding-top: 10px;
    }
    
    .tit span b {
        color: #0f42ec;
    }
    
    .tit em {
        display: block;
        font-size: 14px;
        color: #666666;
        font-weight: normal;
        font-style: normal;
        letter-spacing: 0;
        margin-top: 5px;
        text-transform: uppercase;
        font-family: Times New Roman;}
 .tit {
        clear: both;
    }
    
    .lx {}
    
    .lx h2,
    .lx1 h2 {
        font-size: 34px;
        font-weight: normal;
        text-align: center;
        margin: 50px auto 40px;
        color: #333;
    }
    
    .lx p {
      background: none;
    height: auto;
    padding: 0;
    width: 96%;
    margin: 0 auto;
    }
    
    .lx p b {
       font-size: 20px;
    color: #0f42ec;
    display: block;
    margin: 0;
    font-weight: normal;
    line-height: 40px;
    }
    
    .lx p em {
       font-style: normal;
    color: #000;
    font-size: 14px;
    }
    
    .lx li {
        float: left;
        border: 1px solid #eee;
        width: 285px;
        height: 190px;
        text-align: center;
        margin-right: 20px;
        color: #666;
        line-height: 160%;
        padding: 0 10px;
        font-family: 微软雅黑;
    }
    
    .lx li.last {
        float: right;
        margin-right: 0px
    }
    
    .lx li img {
        margin-top: 20px;
        width: 52px;
       margin-left:104px;
    }
    
    .lx li i {
        display: block;
        font-size: 18px;
        color: #222;
        padding-bottom: 8px;
        font-style: normal;
        padding-top: 10px;
    }
    
    .lx li span {
        display: block;
        font-size: 16px;
        color: #333;
        margin-top: 5px;
    }
    
    .lx li.last span {
        font-size: 15px;
    }
div.cpcc-ts-01-left {
    position: relative;
    width: 95%;
    float: none;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    margin-left: 0;
    margin: 0 auto;
}
div.cpcc-ts-01-right {
    width: 96%;
    float: none;
    margin-right: 0;
    margin: 0 auto;
}
div.pc-cx-tel-1 {
    width: 96%;
    height: 56px;
    border-top: 2px solid #e6e6e6;
    padding-top: 10px;
    position: absolute;
    bottom: 16px;
    right: 3%;
}
div.endit-content img {
    max-width: 100%;
    width: 100% !important;
    height: auto !important;
}
div.xgcp-zs-01-list dl {
    float: left;
    width: 48%;
    border: 1px solid #dfdfdf;
    margin: 1%;
    position: relative;
    overflow: hidden;
}
}