/**
* @software         [JiJinCMS]
* @author           [上海集锦信息科技有限公司]
* @website          [http://www.jijinweb.com]
* @email            [sunny@jijinweb.com]
**/



@font-face {
    font-family: 'bahnschrift';
    src: url(../font/bahnschrift.ttf);
}




input[type="button"],
input[type="submit"],
input[type="reset"] {
    -webkit-appearance: none;
}

textarea {
    -webkit-appearance: none;
}

body {
    font-family: "微软雅黑";
    overflow-x: hidden;
    overflow-y: auto;
}

a {
    margin: 0px;
    padding: 0px;
    border: 0px;
    text-decoration: none;
    color: #555555;
    font-size: 13px;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

a:hover {
    text-decoration: none;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

* {
    padding: 0px;
    margin: 0px;
    border: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

/* background:rgba(0,0,0,0);filter:progid:DXImageTransform.Microsoft.gradient(startcolorstr=#7F000000,endcolorstr=#7F000000);*/
li {
    list-style: none;
}

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

.clear {
    zoom: 1;
}

/* 触发 hasLayout */
img {
    vertical-align: middle;
}

input:focus {
    outline: none;
}

/*去除按钮选中的高亮标签*/
textarea:focus {
    outline: none;
}

/*去除文本框选中的高亮标签*/
button:focus {
    outline: none;
}

/*去除按钮选中的高亮标签*/
select:focus {
    outline: none;
}

/*去除下拉框选中的高亮标签*/
img {
    vertical-align: middle;
}

div,
p,
table,
td,
ul,
li,
span,
a,
ol,
input,
label {
    padding: 0px;
    margin: 0px;
    border: 0px;
}

input[type="submit"] {
    cursor: pointer;
}

input::-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #bcbcbc;
    font-size: 14px;
}

input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #bcbcbc;
    font-size: 14px;
}

input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bcbcbc;
    font-size: 14px;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bcbcbc;
    font-size: 14px;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bcbcbc;
    font-size: 14px;
}

textarea::-webkit-input-placeholder {
    color: #bcbcbc;
    font-size: 14px;
    font-family: "微软雅黑", "14px";
}

textarea {
    font-family: "微软雅黑";
}



.search input::-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #89a4d5;
    font-size: 13px;
}

.search input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #89a4d5;
    font-size: 13px;
}

.search input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #89a4d5;
    font-size: 13px;
}

.search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #89a4d5;
    font-size: 13px;
}

.search input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #89a4d5;
    font-size: 13px;
}



video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-enclosure {
    overflow: hidden;
}

video::-webkit-media-controls-panel {
    width: calc(100% + 30px);
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

/* 滚动条的滑轨背景颜色 */

::-webkit-scrollbar-thumb {
    background: #1a7ec8;
}

/* 滑块颜色 */

::-webkit-scrollbar-button {
    background-color: #fff;
}

/* 滑轨两头的监听按钮颜色 */

::-webkit-scrollbar-corner {
    background-color: #fff;
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    border-radius: 3px;
}

/* 这是针对缺省样式 (必须的)*/


input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}


.fl {
    float: left;
}

.fr {
    float: right;
}

/*渐变从左向右*/
.jianbian2 {
    height: 200px;
    background: -webkit-linear-gradient(to right, blue, yellow);
    /* Safari 5.1 - 6.0 */
    background: -o-linear-gradient(to right, blue, yellow);
    /* Opera 11.1 - 12.0 */
    background: -moz-linear-gradient(to right, blue, yellow);
    /* Firefox 3.6 - 15 */
    background: linear-gradient(to right, white, yellow);
    /* 标准的语法（必须放在最后） */
}

/*黑白照片*/
.gray {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
    filter: gray;
}

.gray:hover {
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    -ms-filter: grayscale(0%);
    -o-filter: grayscale(0%);
    filter: grayscale(0%);
    filter: gray;
}

/*图片变大*/
.tra {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;

}

.tra:hover {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    filter: scale(1.15);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;


}

/*图片翻转*/
.flip {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.flip:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    cursor: pointer;
}


.pc_all .pc_all_content {
    max-width: 1500px;
    margin: 0 auto;
}



.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 3%;
    height: 80px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    background: #fff;
    position: relative;
    z-index: 6;
}

.header .header_logo {
    display: flex;
    align-items: center;
}

.header .header_logo .header_logo_dd {
    margin-right: 30px;
}

.header .header_logo .header_logo_dt {
    cursor: pointer;
    display: none;
}

.header .header_nav {
    display: flex;
    align-items: center;
}

.header .header_nav .header_nav_left {
    display: flex;
    align-items: center;
}

.header .header_nav .header_nav_left .nav_left_list {
    margin-right: 46px;
}

.header .header_nav .header_nav_left .nav_left_list:last-child {
    margin-right: 35px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_title {
    font-size: 16px;
    color: #333333;
    display: flex;
    align-items: center;
    height: 80px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down {
    width: 94%;
    position: absolute;
    left: 0;
    top: 100%;
    background: #fff;
    overflow: hidden;
    height: 0px;
    padding: 0px;
    overflow: hidden;
    transition: all ease 0.6s;
    border-top: 0px solid #dcdcdc;
    right: 0;
    margin: 0 auto;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down:before {
    content: "";
    display: inline-block;
    width: 50%;
    height: 100%;
    background: #fff;
    left: 0;
    top: 0;
    position: absolute;
    display: none;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li {
    float: left;
    margin-right: 95px;
    position: relative;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li:before {
    content: "";
    position: absolute;
    right: -50px;
    height: 100%;
    width: 1px;
    background: #dcdcdc;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li:last-child:before {
    display: none;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li:last-child {
    margin-right: 0px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dd {
    margin-bottom: 20px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dd a {
    font-weight: bolder;
    font-size: 18px;
    color: #333;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt {
    position: relative;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt p {
    margin-bottom: 15px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt p:last-child {
    margin-bottom: 0px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt p a {
    font-size: 16px;
    color: #666;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt p a:hover {
    color: #004a91;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l .dt_l_title a:hover {
    color: #004a91;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l {
    margin-bottom: 25px;
    position: relative;
    width: 335px;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l .dt_l_title a {
    font-size: 16px;
    color: #333;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l .dt_l_down {
    position: absolute;
    right: 0px;
    top: 0;
    display: none;
    width: 165px;
    z-index: 20;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l:hover .dt_l_down {
    display: block;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l .dt_l_down p a {
    font-size: 14px;
    color: #666;
}

.header .header_nav .header_nav_left .nav_left_list .left_list_down .list_down_li .down_li_dt .li_dt_l .dt_l_down p a:hover {
    color: #004a91;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(1) .left_list_down {
    background: url(../image/down1.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(2) .left_list_down {
    background: url(//cdn.xuansiwei.com/tb9125203/1671759854847/src=http___www.ovuni.com_upload_20170905_66891913f6969448f7961db37cfc5a7d.png&refer=http___www.ovuni.webp) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(3) .left_list_down {
    background: url(../image/down3.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(4) .left_list_down {
    background: url(../image/down4.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(5) .left_list_down {
    background: url(../image/down5.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(6) .left_list_down {
    background: url(../image/down6.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(7) .left_list_down {
    background: url(../image/down7.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(8) .left_list_down {
    background: url(../image/down8.jpg) no-repeat 50% 50%;
    background-size: cover;
}

.header .header_nav .header_nav_left .nav_left_list:hover .left_list_down {
    height: 500px;
    padding: 45px;
    transition: all ease 0.6s;
    border-top: 1px solid #dcdcdc;
    padding-left: 145px;
}




.header .header_nav .header_nav_right {
    display: flex;
    align-items: center;
}

.header .header_nav .header_nav_right a:last-child {
    margin-left: 25px;
}


.ProDown {
    display: flex;
}

.ProDown .ProDown_left {
    position: relative;
    width: 215px;
    margin-right: 80px;
}

.ProDown .ProDown_left:before {
    content: "";
    display: inline-block;
    width: 1px;
    background: #dcdcdc;
    height: 320px;
    position: absolute;
    right: 0;
    top: 0;
}

.ProDown .ProDown_left a {
    font-size: 16px;
    color: #222222;
    display: flex;
    align-items: center;
    transition: all 0.5s ease 0s;
    line-height: 40px;
}

.ProDown .ProDown_left a:before {
    content: "";
    display: inline-block;
    width: 0px;
    height: 1px;
    background: #c41146;
    margin-right: 13px;
    transition: all 0.5s ease 0s;
}

.ProDown .ProDown_left ul li {
    transition: all 0.5s ease 0s;
}

.ProDown .ProDown_left ul li:last-child {
    margin-bottom: 0px;
}

.ProDown .ProDown_left ul li a {
    border-radius: 100px 0px 0px 100px;
}

.ProDown .ProDown_left ul li a.on {
    color: #fff;
    transition: all 0.5s ease 0s;
    background: #c41146;
}

.ProDown .ProDown_left ul li a.on:before {
    width: 0px;
    transition: all 0.5s ease 0s;
}

.ProDown .ProDown_right {
    position: relative;
    width: 350px;
}

.ProDown .ProDown_right .ProDown_right_list {
    opacity: 0;
    transition: all 0.5s ease 0s;
    position: absolute;
    top: 0;
    z-index: -1;
}

.ProDown .ProDown_right .ProDown_right_list.on {
    opacity: 1;
    transition: all 0.5s ease 0s;
    z-index: 5;
}

.ProDown .ProDown_right .ProDown_right_list a {
    font-size: 16px;
    color: #222;
    margin-bottom: 25px;
    display: block;
    height: 21px;
    line-height: 21px;
}

.ProDown .ProDown_right .ProDown_right_list a:last-child {
    margin-bottom: 0px;
}

.ProDown .ProDown_right .ProDown_right_list a:hover {
    color: #c41146;
}

.ProDown .ProDown_left ul li:last-child a {
    cursor: pointer;
}


.header .header_nav .header_nav_left .nav_left_list:nth-child(1) .ProDown .ProDown_left a {
    cursor: default;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(2) .ProDown .ProDown_left a {
    cursor: default;
}

.header .header_nav .header_nav_left .nav_left_list:nth-child(3) .ProDown .ProDown_left a {
    cursor: default;
}



.banner {
    position: relative;
    z-index: 5;
}

.banner .banner_txt {
    position: absolute;
    max-width: 1500px;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 45px;
    z-index: 5;
}

.banner .banner_txt .banner_txt_video {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #fff;
    width: 195px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 4px;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.banner .banner_txt .banner_txt_video:hover {
    background: rgba(255, 255, 255, .2);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.banner .banner_txt .banner_txt_video span {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    background: rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
}

.banner .banner_list {
    position: relative;
}

.banner .banner_list .banner_list_img img {
    width: 100%;
    height: 960px;
    object-fit: cover;
}

.banner .banner_list .banner_list_txt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1500px;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner .banner_list .banner_list_txt .list_txt_dd {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    display: none;
    max-width: 50%;
}

.banner .banner_list .banner_list_txt .list_txt_dt {
    font-size: 20px;
    color: #fff;
    display: none;
    letter-spacing: .8px;
    max-width: 48%;
}

.banner .banner_list .banner_list_txt .list_txt_btn {
    display: flex;
    align-items: center;
    height: 44px;
    width: 146px;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    display: none;
    background: url(../image/bn3.png) no-repeat 50% 50%;
    position: relative;
    overflow: hidden;
    margin-top: 120px;
}

.banner .banner_list .banner_list_txt .list_txt_btn b {
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.banner .banner_list .banner_list_txt .list_txt_btn:before {
    content: "";
    display: inline-block;
    width: 0%;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 100px 0px 0px 100px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    background: #c41146;
    opacity: 0
}

.banner .banner_list .banner_list_txt .list_txt_btn:hover:before {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1
}

.banner .banner_list .banner_list_txt .list_txt_btn:hover {
    border-radius: 100px 0px 0px 100px;
}

.banner .banner_list.swiper-slide-active .banner_list_txt .list_txt_dd {
    display: block;
}

.banner .banner_list.swiper-slide-active .banner_list_txt .list_txt_dt {
    display: block;
}

.banner .banner_list.swiper-slide-active .banner_list_txt .list_txt_btn {
    display: flex;
}

.banner .banner_list .banner_list_txt .list_txt_btn img {
    margin-left: 6px;
    position: relative;
    z-index: 2;
}

.banner .swiper-pagination {
    bottom: 45px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.banner .swiper-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0);
    opacity: 1;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    border: 1px solid rgba(255, 255, 255, 0);
}

.banner .swiper-pagination span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 100%;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.banner .swiper-pagination span.swiper-pagination-bullet-active {
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    border: 1px solid rgba(255, 255, 255, 1);
}


.Scroll {
    position: absolute;
    left: 3%;
    bottom: 45px;
    display: flex;
    align-items: center;
    flex-direction: column;
    z-index: 55;
    cursor: pointer;
    overflow: hidden;
    color: #fff;
    font-size: 13px;
}

.Scroll span {
    width: 1px;
    height: 62px;
    display: inline-block;
    background: rgba(255, 255, 255, .2);
    margin-top: 10px;
    position: relative;
}

.Scroll span:before {
    content: "";
    width: 3px;
    height: 15px;
    background: #fff;
    position: absolute;
    top: 0;
    left: -1px;
    animation: mymove 2s infinite;
}

@keyframes mymove {
    from {
        top: 0px;
    }

    to {
        top: 100%;
    }
}



.search {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    right: 0;
    background: rgba(0 119 191 / 90%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.search .search_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search .search_bg .search_content {
    width: 50%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    filter: scale(0);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    opacity: 1;
}

.search .search_bg.on .search_content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    opacity: 1;
}

.search .search_content .search_content_top {
    position: relative;
}

.search .search_content .search_content_top .search_close {
    position: absolute;
    right: 0;
    top: -50px;
    color: #fff;
    font-size: 30px;
}

.search .search_content .search_content_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.search .search_content input[type="search"] {
    width: calc(100% - 100px);
    background: inherit;
    height: 80px;
    font-size: 16px;
    color: #333;
    padding: 0px 20px;
    z-index: 1;
    position: relative;
}

.search .search_content input[type="submit"] {
    width: 100px;
    background: #f8f8f8 url(../image/search.png) no-repeat 50%;
    height: 80px;
    font-size: 16px;
    z-index: 1;
    position: relative;
    color: #111;
    cursor: pointer;
    border-radius: 0px 10px 10px 0px;
}

.search_content_bottom_bg {
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    transition: ;
    z-index: 0;
    border-radius: 10px;
}






.index_bg {
    /* background: url(../image/bg1.jpg) no-repeat 50%/cover; */
    overflow: hidden;
}




.IService {
    padding-top: 140px;
    position: relative;
    z-index: 3;
}

.IService .pc_all_content {
    display: flex;
    justify-content: space-between;
}

.IService .IService_left {
    width: 390px;
}

.IService .IService_left .IService_left_title {
    margin-bottom: 130px;
}

.IService .IService_left .IService_left_title .left_title_dd {
    font-size: 36px;
    color: #333333;
}

.IService .IService_left .IService_left_title .left_title_dt {
    font-size: 16px;
    color: #666666;
    margin-top: 13px;
}

.IService .IService_left .IService_left_btn a {
    display: flex;
    align-items: center;
    height: 44px;
    width: 146px;
    justify-content: center;
    font-size: 16px;
    color: #333333;
    background: url(../image/bn10.png) no-repeat 50% 50%;
    position: relative;
    background-size: 100%;
}

.IService .IService_left .IService_left_btn a b {
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.IService .IService_left .IService_left_btn a:before {
    content: "";
    display: inline-block;
    width: 0%;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 100px 0px 0px 100px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    background: #c41146;
    opacity: 0;
}

.IService .IService_left .IService_left_btn a:hover {
    border-radius: 100px 0px 0px 100px;
    color: #fff;
}

.IService .IService_left .IService_left_btn a:hover:before {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1;
}

.IService .IService_left .IService_left_btn a span {
    margin-left: 11px;
    display: flex;
    align-items: center;
    position: relative;
    width: 16px;
    height: 11px;
}

.IService .IService_left .IService_left_btn a span img {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.IService .IService_left .IService_left_btn a span img:last-child {
    opacity: 0;
}

.IService .IService_left .IService_left_btn a:hover span img {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.IService .IService_left .IService_left_btn a:hover span img:last-child {
    opacity: 1;
}

.IService .IService_right {
    width: calc(100% - 390px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
}

.IService .IService_right .IService_right_list {
    width: 31.5%;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.IService .IService_right .IService_right_list:before {
    content: "";
    display: inline-block;
    width: 65%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/bn13.png) no-repeat 50%/cover;
    z-index: 2;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 0;
}

.IService .IService_right .IService_right_list:hover:before {
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1;
}

.IService .IService_right .IService_right_list:after {
    content: "";
    display: inline-block;
    background: #c41146;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 57%;
    top: 0;
    -webkit-transform: rotate(-6deg);
    opacity: 0;
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.IService .IService_right .IService_right_list:hover:after {
    content: "";
    display: inline-block;
    background: #c41146;
    width: 2px;
    height: 100%;
    position: absolute;
    left: 57%;
    top: 0;
    -webkit-transform: rotate(6deg);
    opacity: 1;
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.IService .IService_right .IService_right_list .right_list_img img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.IService .IService_right .IService_right_list:hover .right_list_img img {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    filter: scale(1.12);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.IService .IService_right .IService_right_list:nth-child(2) {
    margin-top: 0px;
}

.IService .IService_right .IService_right_list .right_list_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 20px;
    z-index: 3;
}

.IService .IService_right .IService_right_list .right_list_txt .list_txt_dd {
    font-size: 26px;
    color: #fff;
    margin-bottom: 10px;
}

.IService .IService_right .IService_right_list .right_list_txt .list_txt_dt {
    font-size: 16px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.IService .IService_right .IService_right_list .right_list_txt .list_txt_more {
    height: 0px;
    opacity: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    margin-top: 0px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.IService .IService_right .IService_right_list .right_list_txt .list_txt_more img {
    margin-left: 13px;
}

.IService .IService_right .IService_right_list:hover .right_list_txt .list_txt_more {
    height: 20px;
    opacity: 1;
    margin-top: 30px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}


.ILogo {
    padding: 52px 0px;
    position: relative;
    z-index: 3;
}

.ILogo img {
    width: 100%;
}


.INews {
    position: relative;
    z-index: 3;
}

.INews .INews_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 50px;
}

.INews .INews_top .INews_top_left .top_left_dd {
    font-size: 36px;
    color: #333333;
    margin-bottom: 10px;
}

.INews .INews_top .INews_top_left .top_left_dt {
    font-size: 16px;
    color: #666666;
}

.INews .INews_top .INews_top_right a {
    display: flex;
    align-items: center;
    height: 44px;
    width: 146px;
    justify-content: center;
    font-size: 16px;
    color: #333333;
    background: url(../image/bn10.png) no-repeat 50% 50%;
    position: relative;
}

.INews .INews_top .INews_top_right a b {
    position: relative;
    z-index: 2;
    font-weight: normal;
}

.INews .INews_top .INews_top_right a:before {
    content: "";
    display: inline-block;
    width: 0%;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 100px 0px 0px 100px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    background: #c41146;
    opacity: 0;
}

.INews .INews_top .INews_top_right a:hover:before {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1;
}

.INews .INews_top .INews_top_right a:hover {
    color: #fff;
}

.INews .INews_top .INews_top_right a span {
    margin-left: 11px;
    display: flex;
    align-items: center;
    position: relative;
    width: 16px;
    height: 11px;
}

.INews .INews_top .INews_top_right a span img {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_top .INews_top_right a span img:last-child {
    opacity: 0;
}

.INews .INews_top .INews_top_right a:hover span img {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_top .INews_top_right a:hover span img:last-child {
    opacity: 1;
}

.INews .INews_content .INews_content_top {
    position: relative;
    display: inline-block;
    width: 100%;
}

.INews .INews_content .INews_content_top:before {
    content: "";
    display: inline-block;
    width: 50%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../image/bn25.png) no-repeat 50%/cover;
    z-index: 2;
}

.INews .INews_content .INews_content_top .content_top_img {
    overflow: hidden;
}

.INews .INews_content .INews_content_top .content_top_img img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.INews .INews_content .INews_content_top:hover .content_top_img img {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    filter: scale(1.12);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.INews .INews_content .INews_content_top .content_top_txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0px 70px;
    padding-right: 125px;
    z-index: 3;
}

.INews .INews_content .INews_content_top .content_top_txt:after {
    content: "";
    display: inline-block;
    background: #c41146;
    width: 1px;
    height: 100%;
    position: absolute;
    right: 4%;
    top: 0;
    -webkit-transform: rotate(1deg);
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    transform: rotate(1deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_top:hover .content_top_txt:after {
    content: "";
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_top .content_top_txt .top_txt_time {
    font-size: 14px;
    color: #fff;
}

.INews .INews_content .INews_content_top .content_top_txt .top_txt_title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 30px;
    max-width: 90%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.INews .INews_content .INews_content_top .content_top_txt .top_txt_txt {
    font-size: 15px;
    color: #fff;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.INews .INews_content .INews_content_top .content_top_txt .top_txt_more {
    margin-top: 100px;
    font-size: 14px;
    color: #fff;
}

.INews .INews_content .INews_content_top .content_top_txt .top_txt_more img {
    margin-left: 13px;
}

.INews .INews_content .INews_content_bottom {
    display: flex;
    justify-content: space-between;
}

.INews .INews_content .INews_content_bottom .content_bottom_list {
    width: 48%;
    display: inline-block;
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333333;
    position: relative;
}

.INews .INews_content .INews_content_bottom .content_bottom_list:before {
    content: "";
    display: inline-block;
    width: 0%;
    bottom: -1px;
    background: #c41146;
    height: 1px;
    position: absolute;
    left: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_bottom .content_bottom_list:hover:before {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_dd {
    font-size: 22px;
    color: #333333;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_bottom .content_bottom_list:hover .bottom_list_dd {
    color: #c41146;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_dt {
    font-size: 15px;
    color: #666666;
    line-height: 24px;
    margin-top: 12px;
    margin-bottom: 35px;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_time {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_time .list_time_dd {
    font-size: 14px;
    color: #333333;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_time .list_time_dt {
    font-size: 14px;
    color: #408fbf;
}

.INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_time .list_time_dt img {
    margin-left: 13px;
}






.ISolution {
    margin-top: 190px;
    position: relative;
    z-index: 3;
}

.ISolution .ISolution_content {
    position: relative;
    overflow: hidden;
}

.ISolution .ISolution_content .ISolution_content_img img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.ISolution .ISolution_content:hover .ISolution_content_img img {
    -webkit-transform: scale(1.12);
    -moz-transform: scale(1.12);
    -ms-transform: scale(1.12);
    -o-transform: scale(1.12);
    filter: scale(1.12);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    cursor: pointer;
}

.ISolution .ISolution_content .ISolution_content_txt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    width: 33.33%;
    height: 100%;
    padding: 40px;
    position: relative;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_icon {
    position: relative;
    z-index: 4;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dd {
    font-size: 16px;
    color: #fff;
    margin-top: 15px;
    margin-bottom: 10px;
    position: relative;
    z-index: 4;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt {
    font-size: 22px;
    color: #fff;
    font-weight: bolder;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 4;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt span {
    font-size: 16px;
    color: #fff;
    font-weight: normal;
    display: flex;
    align-items: center;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt span:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    background: #fff;
    margin: 0px 9px;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_more {
    height: 0px;
    opacity: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #fff;
    margin-top: 0px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    position: relative;
    z-index: 5;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_more img {
    margin-left: 13px;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list:hover .txt_list_more {
    height: 20px;
    opacity: 1;
    margin-top: 30px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list:nth-child(1):before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../image/bn20.png) no-repeat 50%/cover;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 0;
    z-index: 2;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list.on:before {
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1;
}

.ISolution .ISolution_content .ISolution_content_txt .content_txt_list:nth-child(1):after {
    content: "";
    display: inline-block;
    background: #c41146;
    width: 2px;
    height: 100%;
    position: absolute;
    right: 7%;
    top: 0;
    -webkit-transform: rotate(1deg);
    opacity: 1;
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    transform: rotate(1deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.ISolution .ISolution_content:hover .ISolution_content_txt .content_txt_list:after {
    -webkit-transform: rotate(5deg);
    opacity: 1;
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}





.ISlogan {
    padding: 115px 0px;
    position: relative;
    z-index: 3;
}

.ISlogan .pc_all_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ISlogan .ISlogan_left {
    font-size: 36px;
    color: #333333;
    line-height: 54px;
}

.ISlogan .ISlogan_right a {
    display: flex;
    align-items: center;
    height: 44px;
    width: 146px;
    justify-content: center;
    font-size: 16px;
    color: #333333;
    background: url(../image/bn10.png) no-repeat 50% 50%;
    position: relative;
}

.ISlogan .ISlogan_right a b {
    font-weight: normal;
    position: relative;
    z-index: 2;
}

.ISlogan .ISlogan_right a:before {
    content: "";
    display: inline-block;
    width: 0%;
    position: absolute;
    left: 0;
    height: 100%;
    border-radius: 100px 0px 0px 100px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    background: #c41146;
    opacity: 0;
}

.ISlogan .ISlogan_right a:hover:before {
    width: 100%;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
    opacity: 1;
}

.ISlogan .ISlogan_right a:hover {
    color: #fff;
}

.ISlogan .ISlogan_right a span {
    margin-left: 11px;
    display: flex;
    align-items: center;
    position: relative;
    width: 16px;
    height: 11px;
}

.ISlogan .ISlogan_right a span img {
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.ISlogan .ISlogan_right a span img:last-child {
    opacity: 0;
}

.ISlogan .ISlogan_right a:hover span img {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.ISlogan .ISlogan_right a:hover span img:last-child {
    opacity: 1;
}





.Footer {
    position: relative;
    z-index: 50;
}

.Footer .Footer_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Footer .Footer_top .Footer_top_left .top_left_bottom {
    display: flex;
    align-items: center;
    margin-top: 55px;
}

.Footer .Footer_top .Footer_top_left .top_left_bottom a {
    font-size: 16px;
    color: #333333;
    margin-right: 40px;
}

.Footer .Footer_top .Footer_top_left .top_left_bottom a:hover {
    color: #c41146;
}

.Footer .Footer_top .Footer_top_right {
    display: flex;
}

.Footer .Footer_top .Footer_top_right .top_right_dd {
    margin-right: 60px;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_share {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_share a {
    margin-left: 45px;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_Email {
    font-size: 16px;
    color: #333333;
    margin-top: 20px;
    margin-bottom: 30px;
    text-align: right;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_phone {
    text-align: right;
    font-size: 26px;
    color: #111111;
}

.Footer .Footer_top .Footer_top_right .top_right_dt img {
    border-radius: 5px;
}

.Footer .Footer_bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin-top: 3px;
}

.Footer .Footer_bottom .Footer_bottom_dd {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
}

.Footer .Footer_bottom .Footer_bottom_dd a {
    font-size: 14px;
    color: #333333;
}

.Footer .Footer_bottom .Footer_bottom_dt {
    display: flex;
    align-items: center;
}

.Footer .Footer_bottom .Footer_bottom_dt a {
    font-size: 14px;
    color: #333333;
}

.Footer .Footer_bottom .Footer_bottom_dt span {
    display: inline-block;
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .3);
    margin: 0px 5px;
}





.he_shubiao {
    position: fixed;
    z-index: 2;
    pointer-events: none;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
}

.he_shubiao span {
    display: inline-block;
    opacity: 1;
    position: absolute;
    width: 600px;
    height: 600px;
    transition: all 2s ease;
    -webkit-transform: all 2s ease;
    opacity: 0;
}

.he_shubiao .he_shubiao1 {
    background-image: radial-gradient(rgb(147, 197, 250) 10%, rgba(255, 249, 251, 0) 50%);
    opacity: 1;
}

.he_shubiao .he_shubiao2 {
    background-image: radial-gradient(rgb(255, 181, 221) 10%, rgba(255, 249, 251, 0) 50%);
}

.he_shubiao.on .he_shubiao1 {
    opacity: 0;
    transition: all 1s ease;
    -webkit-transform: all 2s ease;
}

.he_shubiao.on .he_shubiao2 {
    opacity: 1;
    transition: all 1s ease;
    -webkit-transform: all 2s ease;
}


.nicescroll-rails {
    z-index: 100 !important;
}


.layui-laypage {
    display: flex;
    font-size: 14px;
    color: #333;
    align-items: center;
    justify-content: center;
}

.layui-laypage a {
    font-size: 16px;
    color: #333;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    border: #dadada solid 1px;
    margin: 0 10px;
    background: #fff;
    border-radius: 100px;
}

.layui-laypage-curr {
    background: #006cae;
    font-size: 16px;
    color: #fff;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    /* border: #ffffff solid 1px; */
    margin: 0 10px;
    border-radius: 100px;
}

.layui-laypage-curr em,
.layui-laypage-disabled em {
    font-style: inherit;
}

.layui-laypage-limits select {
    background: #fff;
    height: 40px;
    font-size: 16px;
    color: #333;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    border: #dadada solid 1px;
    margin: 0 10px;
    background: #fff;
    border-radius: 100px;
}

#goPageId {
    background: #fff;
    width: 50px;
    font-size: 16px;
    color: #333;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    border: #dadada solid 1px;
    margin: 0 10px;
    border-radius: 100px;
}

.layui-laypage-btn {
    background: #fff;
    font-size: 16px;
    color: #333;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    border: #dadada solid 1px;
    margin: 0 10px;
    border-radius: 100px;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}

.layui-laypage-disabled {
    font-size: 16px;
    color: #333;
    line-height: 40px;
    padding: 0 16px;
    text-align: center;
    /* border: #fff solid 1px; */
    margin: 0 10px;
    background: #fff;
    border-radius: 100px;
}


.layui-laypage-disabled:hover {
    background: #1a7ec8;
    color: #fff;
    border: 1px solid #1a7ec8;
}

.layui-laypage a:hover {
    background: #1a7ec8;
    color: #fff;
    border: 1px solid #1a7ec8;
}

.layui-laypage-btn:hover {
    background: #1a7ec8;
    color: #fff;
    border: 1px solid #1a7ec8;
    cursor: pointer;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}






.m-header-nav {
    display: none;
}

.m-header-nav-height {
    display: none;
}







.DetailsBanner {
    position: relative;
}

.DetailsBanner .DetailsBanner_img img {
    width: 100%;
    height: 650px;
    object-fit: cover;
}

.DetailsBanner .DetailsBanner_txt {
    position: absolute;
    top: 0;
    height: 100%;
    max-width: 1500px;
    margin: 0 auto;
    left: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    right: 0;
    margin: 0 auto;
}

.DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dd {
    font-size: 50px;
    color: #fff;
    font-weight: bolder;
    margin-bottom: 25px;
}

.DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dt {
    font-size: 24px;
    color: #fff;
}



.About {
    background: #f8f8f8;
    padding-top: 52px;
    padding-bottom: 98px;
}

.About .About_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 19px;
}

.About .About_top .About_top_left {
    width: 56%;
}

.About .About_top .About_top_left .top_left_dd {
    font-size: 16px;
    color: #1a7ec8;
    font-weight: bolder;
}

.About .About_top .About_top_left .top_left_dt {
    font-size: 36px;
    color: #333333;
    font-weight: bolder;
    margin: 8px 0px;
}

.About .About_top .About_top_left .top_left_p {
    font-size: 30px;
    color: #333333;
}

.About .About_top .About_top_left .top_left_txt {
    margin-top: 40px;
}

.About .About_top .About_top_left .top_left_txt p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #666666;
    line-height: 26px;
}

.About .About_top .About_top_left .top_left_txt p:last-child {
    margin-bottom: 0px;
}

.About .About_top .About_top_right {
    width: calc(100% - 56%);
    text-align: right;
}

.About .About_top .About_top_right img {
    max-width: 100%;
    cursor: pointer;
}

.About .About_bottom .About_bottom_title {
    font-size: 16px;
    color: #666666;
    margin-bottom: 22px;
}

.About .About_bottom .About_bottom_content .bottom_content_list {
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.About .About_bottom .About_bottom_content .bottom_content_list img {
    width: 100%;
    border-radius: 5px;
}

.About .About_bottom .About_bottom_content .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 35px;
}

.About .About_bottom .About_bottom_content .swiper-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0);
    opacity: 1;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    border: 1px solid rgba(255, 255, 255, 0);
    margin: 0px 4px;
}

.About .About_bottom .About_bottom_content .swiper-pagination span:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #dadada;
    border-radius: 100%;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.About .About_bottom .About_bottom_content .swiper-pagination span.swiper-pagination-bullet-active {
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    border: 1px solid #1a7ec8;
}

.About .About_bottom .About_bottom_content .swiper-pagination span.swiper-pagination-bullet-active:before {
    background: #1a7ec8;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}




.Company {
    width: 100%;
    background: url(../image/bg16.jpg) no-repeat 50%/cover;
    position: relative;
}

.Company:before {
    content: "";
    display: inline-block;
    background: url(../image/bn28.png) no-repeat 50%/cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 54%;
    z-index: 2;
}

.Company .pc_all_content {
    height: 754px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 3;
}

.Company .Company_content {
    width: 45%;
    position: relative;
}

.Company:after {
    content: "";
    display: inline-block;
    background: #c41146;
    width: 2px;
    height: 100%;
    position: absolute;
    right: 48%;
    top: 0;
    z-index: 1;
    -webkit-transform: rotate(1deg);
    opacity: 1;
    -moz-transform: rotate(1deg);
    -ms-transform: rotate(1deg);
    -o-transform: rotate(1deg);
    transform: rotate(1deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Company:hover:after {
    -webkit-transform: rotate(5deg);
    opacity: 1;
    -moz-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    -o-transform: rotate(5deg);
    transform: rotate(5deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Company .Company_content .Company_content_title {
    margin-bottom: 65px;
}

.Company .Company_content .Company_content_title .content_title_dd {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 8px;
}

.Company .Company_content .Company_content_title .content_title_dt {
    font-size: 36px;
    color: #fff;
}

.Company .Company_content .Company_content_txt {
    height: 430px;
    overflow: auto;
    padding-right: 15px;
}

.Company .Company_content .Company_content_txt::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .2);
}

/* 滚动条的滑轨背景颜色 */

.Company .Company_content .Company_content_txt::-webkit-scrollbar-thumb {
    background: #fff;
}

/* 滑块颜色 */

.Company .Company_content .Company_content_txt::-webkit-scrollbar-button {
    background-color: rgba(255, 255, 255, .2);
}

/* 滑轨两头的监听按钮颜色 */

.Company .Company_content .Company_content_txt::-webkit-scrollbar-corner {
    background-color: rgba(255, 255, 255, .2);
}

/* 横向滚动条和纵向滚动条相交处尖角的颜色 */
.Company .Company_content .Company_content_txt::-webkit-scrollbar {
    width: 3px;
    height: 0px;
}

/* 这是针对缺省样式 (必须的)*/

.Company .Company_content .Company_content_txt .content_txt_list {
    margin-bottom: 50px;
}

.Company .Company_content .Company_content_txt .content_txt_list:last-child {
    margin-bottom: 0px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dd {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dd img {
    margin-right: 14px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt {
    font-size: 16px;
    color: #fff;
    opacity: .7;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt p.on {
    font-size: 14px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt p {
    margin-bottom: 5px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt p:last-child {
    margin-bottom: 0px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt .list_dt_li {
    margin-bottom: 10px;
}

.Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt .list_dt_li:last-child {
    margin-bottom: 0px;
}




.Team {
    padding: 98px 0px;
    background: #fff;
}

.Team .Team_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.Team .Team_title .Team_title_left .title_left_dd {
    font-size: 16px;
    color: #1a7ec8;
    font-weight: bolder;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.Team .Team_title .Team_title_left .title_left_dt {
    font-size: 36px;
    color: #333333;
}

.Team .Team_title .Team_title_right {
    display: flex;
    align-items: center;
}

.Team .Team_title .Team_title_right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 126px;
    height: 44px;
    border-radius: 100px;
    border: 1px solid #dadada;
    font-size: 16px;
    color: #666666;
    margin-right: 16px;
}

.Team .Team_title .Team_title_right a:last-child {
    margin-right: 0px;
}

.Team .Team_title .Team_title_right a.on {
    border: 1px solid #c41246;
    background: #c41246;
    color: #fff;
}

.Team .Team_title .Team_title_right a:hover {
    border: 1px solid #c41246;
    background: #c41246;
    color: #fff;
}

.Team .Team_content .Team_content_list {
    background: #f8f8f8;
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 21px 34px;
    padding-bottom: 0px;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list:last-child {
    margin-bottom: 0px;
}

.Team .Team_content .Team_content_list .content_list_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding-bottom: 22px;
}

.Team .Team_content .Team_content_list .content_list_title .list_title_left {
    width: calc(100% - 42px);
}

.Team .Team_content .Team_content_list .content_list_title .list_title_left .title_left_dd {
    font-size: 22px;
    color: #333333;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list .content_list_title .list_title_left .title_left_dt {
    font-size: 15px;
    color: #666666;
    margin-top: 11px;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list .content_list_title .list_title_right {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    border: 1px solid #dadada;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b5b5b5;
    font-size: 20px;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list .content_list_txt {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
    padding: 23px 0px;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
    padding-bottom: 45px;
}

.Team .Team_content .Team_content_list.on {
    background: #1a7ec8;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list.on .content_list_title .list_title_left .title_left_dd {
    color: #fff;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list.on .content_list_title .list_title_left .title_left_dt {
    color: #fff;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Team .Team_content .Team_content_list.on .content_list_title .list_title_right {
    color: #1a7ec8;
    border: 1px solid #1a7ec8;
    background: #fff;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
}




.Development {
    background: url(../image/bg17.jpg) no-repeat 50%/cover;
    padding: 100px 0px;
}

.Development .Development_title {
    text-align: center;
    margin-bottom: 50px;
}

.Development .Development_title .Development_title_dd {
    font-size: 16px;
    color: #fff;
    font-weight: bolder;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.Development .Development_title .Development_title_dt {
    font-size: 36px;
    color: #fff;
}

.Development .Development_content {
    padding: 0px 60px;
}

.Development .Development_content .Development_content_list {
    transition: 300ms;
    transform: scale(0.8);
    height: 325px;
    border-radius: 10px;
    background: rgba(26, 126, 200, .5);
    padding: 60px;
}

.Development .Development_content .Development_content_list.swiper-slide-active {
    transform: scale(1);
    background: rgba(26, 126, 200, .9);
    padding: 60px 45px;
}

.Development .Development_content .Development_content_list .content_list_dd {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.Development .Development_content .Development_content_list .content_list_dd span {
    font-size: 40px;
}

.Development .Development_content .Development_content_list .content_list_dt {
    font-size: 18px;
    color: #fff;
}

.Development .Development_content .Development_content_list.on {
    opacity: 0;
}

.Development .Development_time {
    margin-top: 80px;
    position: relative;
    padding: 0px 185px;
}

.Development .Development_time:before {
    content: "";
    display: inline-block;
    width: calc(100% - 110px);
    position: absolute;
    left: 0;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    top: 24%;
    right: 0;
    margin: 0 auto;
}

.Development .Development_time .Development_time_list {
    font-size: 18px;
    color: #fff;
    position: relative;
    text-align: center;
}

.Development .Development_time .Development_time_list .time_list_icon {
    width: 29px;
    height: 29px;
    border-radius: 100%;
    background: rgba(255, 255, 255, 0);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 11px;
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Development .Development_time .Development_time_list .time_list_sz {
    width: 100%;
    text-align: center;
}

.Development .Development_time .Development_time_list .time_list_icon:before {
    content: "";
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 100%;
    background: rgba(255, 255, 255, .6);
    transform: translateX(-50%), translateY(-50%);
    left: 50%;
    top: 50%;
}

.Development .Development_time .Development_time_list.swiper-slide-thumb-active .time_list_icon {
    background: rgba(255, 255, 255, .3);
    transition: all 0.3s ease 0s;
    -webkit-transform: all 0.3s ease 0s;
}

.Development .Development_time .swiper-button-next,
.Development .Development_time .swiper-button-prev {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, .5);
    top: 22%;
}

.Development .Development_time .swiper-button-next:after,
.Development .Development_time .swiper-button-prev:after {
    font-size: 15px;
    color: #fff;
    opacity: .5;
}



.footer_bg {
    background: #fff url(../image/bn32.png) no-repeat no-repeat 50% 100%;
}

.footer_bg.on {
    background: #f8f8f8 url(../image/bn32.png) no-repeat no-repeat 50% 100%;
}



.Honor {
    background: none;
}

.Honor .Team_title .Team_title_left .title_left_p {
    margin-top: 15px;
    color: #666666;
    font-size: 16px;
}

.Honor .Team_title .Team_title_right .title_right_prev,
.Honor .Team_title .Team_title_right .title_right_next {
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 1px solid #dadada;
    top: 22%;
    color: #9e9e9e;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.Honor .Team_title .Team_title_right .title_right_prev {
    margin-right: 14px;
}

.Honor .Team_title .Team_title_right .title_right_prev:hover,
.Honor .Team_title .Team_title_right .title_right_next:hover {
    background: #c41246;
    color: #fff;
    border: 1px solid #c41246;
}

.Honor .Honor_content .swiper-wrapper {
    left: -37px;
}

.Honor .Honor_content .Honor_content_list {
    transition: 300ms;
    transform: scale(0.8);
    -webkit-perspective: 400;
    -moz-perspective: 400;
}

.Honor .Honor_content .Honor_content_list.on,
.Honor .Honor_content .Honor_content_list.in {
    transform: scale(0.7);
}

.Honor .Honor_content .Honor_content_list .content_list_box {
    border-radius: 10px;
    box-shadow: 0px 0px 14px rgba(0, 0, 0, .05);
    padding: 25px;
    background: #fff;
}

.Honor .Honor_content .Honor_content_list.swiper-slide-active {
    transform: scale(1);
    margin-left: 37px;
}

.Honor .Honor_content .Honor_content_list.swiper-slide-active .content_list_box .content_list_dt {
    display: block;
}

.Honor .Honor_content .Honor_content_list .content_list_box .content_list_dd {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 410px;
}

.Honor .Honor_content .Honor_content_list .content_list_box .content_list_dd img {
    max-width: 100%;
    max-height: 410px;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;

    filter: blur(1px);
    -webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -ms-filter: blur(1px);
    -o-filter: blur(1px);
}

.Honor .Honor_content .Honor_content_list .content_list_box .content_list_dt {
    font-size: 18px;
    color: #333333;
    display: none;
    margin-top: 20px;
    text-align: center;
    height: 48px;
}

.Honor .swiper-container .swiper-slide.swiper-slide-prev img,
.Honor .swiper-container .swiper-slide.swiper-slide-prev .content_list_box {
    -webkit-transform: rotateY(-345deg);
    -moz-transform: rotateY(-345deg);
}

.Honor .swiper-container .swiper-slide.on img,
.Honor .swiper-container .swiper-slide.on .content_list_box {
    -webkit-transform: rotateY(-345deg);
    -moz-transform: rotateY(-345deg);
}

.Honor .swiper-container .swiper-slide.swiper-slide-next img,
.Honor .swiper-container .swiper-slide.swiper-slide-next .content_list_box {
    -webkit-transform: rotateY(345deg);
    -moz-transform: rotateY(345deg);
}

.Honor .swiper-container .swiper-slide.in img,
.Honor .swiper-container .swiper-slide.in .content_list_box {
    -webkit-transform: rotateY(345deg);
    -moz-transform: rotateY(345deg);
}

.Honor .swiper-container .swiper-slide.swiper-slide-prev {
    margin-right: 37px;
}

.Honor .swiper-container .swiper-slide.swiper-slide-next {
    margin-left: 37px;
}





.content_list_video {
    display: none;
}

.content_list_video.on {
    display: block;
}

.content_list_video .list_video_bg {
    position: fixed;
    background: rgba(0, 0, 0, .8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 120;
}

.content_list_video .list_video_content {
    max-width: 90%;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 121;
}

.content_list_video .list_video_content .video_content_close {
    cursor: pointer;
    position: fixed;
    right: 0;
    top: -35px;
}

.content_list_video .list_video_content .video_content_close span {
    color: #fff;
    font-size: 25px;
}

.content_list_video .list_video_content video {
    width: 100%;
}

.click_video {
    cursor: pointer;
}






.Employing {
    padding: 101px 0px;
    background: #fff;
}

.Employing .pc_all_content {
    position: relative;
}

.Employing .Employing_img {
    border-radius: 10px;
    overflow: hidden;
}

.Employing .Employing_txt {
    position: absolute;
    top: 95px;
    left: 65px;
}

.Employing .Employing_txt .Employing_txt_top .txt_top_dd {
    font-size: 16px;
    color: #1a7ec8;
    text-transform: uppercase;
    font-weight: bolder;
}

.Employing .Employing_txt .Employing_txt_top .txt_top_dt {
    font-size: 36px;
    color: #333333;
    margin-top: 5px;
    margin-bottom: 16px;
}

.Employing .Employing_txt .Employing_txt_top .txt_top_p {
    font-size: 24px;
    color: #333333;
}

.Employing .Employing_txt .Employing_txt_bottom {
    line-height: 30px;
    color: #666666;
    font-size: 16px;
    max-width: 485px;
    margin-top: 40px;
}




.Environment {
    padding: 86px 0px;
    padding-bottom: 0px;
    background: #f5f5f5;
}

.Environment .Environment_title {
    text-align: center;
    margin-bottom: 50px;
}

.Environment .Environment_title .Environment_title_dd {
    font-size: 16px;
    color: #1a7ec8;
    text-transform: uppercase;
    font-weight: bolder;
}

.Environment .Environment_title .Environment_title_dt {
    font-size: 36px;
    color: #333333;
    margin-top: 5px;
}

.Environment .Environment_content {
    display: flex;
    justify-content: space-between;
}

.Environment .Environment_content .Environment_content_left {
    width: calc(50% - 6px);
    position: relative;
}

.Environment .Environment_content .Environment_content_left .swiper-button-next:after,
.Environment .Environment_content .Environment_content_left .swiper-button-prev:after {
    color: #fff;
    font-size: 30px;
}

.Environment .Environment_content .Environment_content_left .content_left_list img {
    width: 100%;
}

.Environment .Environment_content .Environment_content_right {
    width: calc(50% - 6px);
}

.Environment .Environment_content .Environment_content_right .content_right_list:last-child {
    margin-top: 12px;
}



.BEnvironment {
    background: #fff;
    padding-top: 82px;
    padding-bottom: 100px;
}

.BEnvironment .BEnvironment_list {
    display: flex;
    align-items: center;
    background: #f8f8f8;
}

.BEnvironment .BEnvironment_list:nth-child(2n) {
    justify-content: center;
    flex-flow: row-reverse;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_img {
    width: 50%;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_img img {
    max-width: 100%;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt {
    width: 50%;
    padding: 0px 65px;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top {
    margin-bottom: 20px;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top .txt_top_dd {
    font-size: 16px;
    color: #1a7ec8;
    text-transform: uppercase;
    font-weight: bolder;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top .txt_top_dt {
    font-size: 36px;
    color: #333333;
    margin-top: 5px;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_bottom {
    line-height: 26px;
    color: #666666;
    font-size: 16px;
    margin-bottom: -9px;
}

.BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_bottom span {
    display: inline-block;
    padding: 4px 12px;
    color: #fff;
    background: #c41146;
    border-radius: 100px;
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 9px;
}




.Staff {
    padding-bottom: 135px;
    background: #f8f8f8;
}

.Staff .Staff_content .Staff_content_list img {
    width: 100%;
    border-radius: 15px;
}

.Staff .Staff_content .Staff_content_Switch {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 70px;
}

.Staff .Staff_content .Staff_content_Switch .content_Switch_left {
    position: relative;
    width: calc(100% - 120px);
    height: 2px;
    background: #eaeaea;
    display: flex;
    align-items: center;
}

.Staff .Staff_content .Staff_content_Switch .content_Switch_left .swiper-pagination {
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.Staff .Staff_content .Staff_content_Switch .content_Switch_left .swiper-pagination span {
    height: 2px;
    background: #eaeaea;
    border-radius: 0px;
    opacity: 1;
    width: 100%;
    display: flex;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Staff .Staff_content .Staff_content_Switch .content_Switch_left .swiper-pagination span.swiper-pagination-bullet-active {
    background: #c41246;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Staff .Staff_content .Staff_content_Switch .content_Switch_right {
    display: flex;
    align-items: center;
}

.Staff .Staff_content .Staff_content_Switch .swiper-button-next,
.Staff .Staff_content .Staff_content_Switch .swiper-button-prev {
    position: relative;
    margin-top: 0px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 100%;
    border: 1px solid #c41246;
    background: #c41246;
    left: 0;
    right: 0;
    opacity: 1;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Staff .Staff_content .Staff_content_Switch .swiper-button-next {
    margin-left: 14px;
}

.Staff .Staff_content .Staff_content_Switch .swiper-button-next:after,
.Staff .Staff_content .Staff_content_Switch .swiper-button-prev:after {
    font-size: 18px;
    color: #fff
}

.Staff .Staff_content .Staff_content_Switch .swiper-button-next.swiper-button-disabled,
.Staff .Staff_content .Staff_content_Switch .swiper-button-prev.swiper-button-disabled {
    border: 1px solid #dadada;
    background: none;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Staff .Staff_content .Staff_content_Switch .swiper-button-next.swiper-button-disabled:after,
.Staff .Staff_content .Staff_content_Switch .swiper-button-prev.swiper-button-disabled:after {
    color: #9e9e9e;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}






.Join {
    background: none;
    padding-bottom: 130px;
}

.Join .Join_btn {
    color: #408fbf;
    font-size: 14px;
    margin-top: 104px;
    display: inline-block;
}

.Join .Join_btn img {
    margin-left: 8px;
}




.DJoin {
    padding: 100px 0px;
    position: relative;
    z-index: 4;
    padding-bottom: 150px;
}

.DJoin .DJoin_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.DJoin .DJoin_top .DJoin_top_left .top_left_dd {
    font-size: 16px;
    color: #1a7ec8;
    font-weight: bolder;
    text-transform: uppercase;
}

.DJoin .DJoin_top .DJoin_top_left .top_left_dt {
    font-size: 36px;
    color: #333333;
}

.DJoin .DJoin_top .DJoin_top_left .top_left_p {
    font-size: 16px;
    color: #666666;
    margin-top: 15px;
}

.DJoin .DJoin_top .DJoin_top_right {
    display: flex;
    align-items: center;
}

.DJoin .DJoin_top .DJoin_top_right a {
    display: inline-block;
    padding: 0px 30px;
    border-radius: 100px;
    border: 1px solid #dadada;
    color: #666666;
    font-size: 16px;
    line-height: 44px;
    margin-right: 16px;
}

.DJoin .DJoin_top .DJoin_top_right a:last-child {
    margin-right: 0px;
}

.DJoin .DJoin_top .DJoin_top_right a.on {
    background: #c41246;
    color: #fff;
    border: 1px solid #c41246;
}

.DJoin .DJoin_top .DJoin_top_right a:hover {
    background: #c41246;
    color: #fff;
    border: 1px solid #c41246;
}

.DJoin .DJoin_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list {
    width: 49.2%;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 1.5%;
    position: relative;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 45px 32px;
    cursor: pointer;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left {
    width: calc(100% - 50px);
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dd {
    font-size: 26px;
    color: #333333;
    margin-bottom: 22px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dt {
    font-size: 16px;
    color: #666666;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dt span {
    margin: 0px 23px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_right {
    width: 42px;
    height: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dadada;
    color: #dadada;
    font-size: 18px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 45px 32px;
    padding-top: 0px;
    z-index: 5;
    display: none;
}

.DJoin .DJoin_bottom .DJoin_bottom_list:hover {
    background: #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list:hover .bottom_list_title .list_title_left .title_left_dd {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list:hover .bottom_list_title .list_title_left .title_left_dt {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list:hover .bottom_list_title .list_title_right {
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_list {
    margin-bottom: 45px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_list:last-child {
    margin-bottom: 0px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_list .down_list_title {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_list .down_list_txt {
    font-size: 16px;
    color: #666666;
    line-height: 34px;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #eaeaea;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_bottom .down_bottom_left {
    font-size: 16px;
    color: #666666;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_bottom .down_bottom_right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 53px;
    background: #1a7ec8;
    border-radius: 100px;
    font-size: 16px;
    color: #fff;
}

.DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_down .list_down_bottom .down_bottom_right img {
    margin-left: 10px;
}







.News .News_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.News .News_top .News_top_time {
    width: 30%;
    height: 52px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
    border: 1px solid #dadada;
    border-radius: 100px;
    background: none;
    padding: 0px 24px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    -ms-appearance: none;
    background: url(../image/bn35.png) no-repeat 95% 50%;
}

.News .News_top .News_top_right {
    display: flex;
    align-items: center;
    width: 68%;
    border-radius: 100px;
}

.News .News_top .News_top_right input[type="search"] {
    height: 52px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
    background: none;
    width: calc(100% - 157px);
    border: 1px solid #dadada;
    border-radius: 100px 0px 0px 100px;
    border-right: 0px;
    padding: 0px 24px;
}

.News .News_top .News_top_right input[type="submit"] {
    width: 157px;
    height: 52px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background: #1a7ec8 url(../image/bn34.png) no-repeat 50px 50%;
    border-radius: 0px 100px 100px 0px;
    padding-left: 75px;
}

.News .News_content {
    margin-bottom: 50px;
}

.News .News_content .News_content_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.News .News_content .News_content_list .content_list_img {
    width: 383px;
}

.News .News_content .News_content_list .content_list_img img {
    width: 100%;
    height: 268px;
    object-fit: cover;
}

.News .News_content .News_content_list .content_list_txt {
    width: calc(100% - 383px);
    padding: 0px 50px;
}

.News .News_content .News_content_list .content_list_txt .list_txt_dd {
    font-size: 14px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.News .News_content .News_content_list .content_list_txt .list_txt_dt {
    font-size: 24px;
    color: #333333;
    margin-top: 10px;
    margin-bottom: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.News .News_content .News_content_list .content_list_txt .list_txt_p {
    font-size: 16px;
    color: #666666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.News .News_content .News_content_list .content_list_txt .list_txt_more {
    font-size: 14px;
    color: #408fbf;
    margin-top: 55px;
    display: flex;
    align-items: center;
}

.News .News_content .News_content_list .content_list_txt .list_txt_more span {
    margin-left: 11px;
    display: inline-block;
    position: relative;
    width: 13px;
    height: 19px;
}

.News .News_content .News_content_list .content_list_txt .list_txt_more span img {
    position: absolute;
    left: 0;
    top: 0;
}

.News .News_content .News_content_list .content_list_txt .list_txt_more span img:last-child {
    opacity: 0;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_more span img {
    opacity: 0;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_more span img:last-child {
    opacity: 1;
}

.News .News_content .News_content_list:hover {
    background: #1a7ec8;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_dd {
    color: #fff;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_dt {
    color: #fff;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_p {
    color: #fff;
}

.News .News_content .News_content_list:hover .content_list_txt .list_txt_more {
    color: #fff;
}



.DPage {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}

.DPage a {
    font-size: 16px;
    color: #999999;
}

.DPage a img {
    margin-right: 7px;
    position: relative;
    top: -2px;
}

.DPage i {
    margin: 0px 12px;
    font-size: 16px;
    color: #999999;
}

.DPage a.on {
    color: #1a7ec8;
}




.DNews {
    padding-top: 37px;
    padding-bottom: 160px;
}

.DNews .DNews_content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.DNews .DNews_content .NewsDetails_left {
    width: calc(100% - 370px);
    background: #fff;
    padding: 60px 40px;
    border-radius: 6px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_title {
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 22px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_title .left_title_dd {
    font-size: 30px;
    color: #333333;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_title .left_title_dt {
    font-size: 14px;
    color: #999999;
    margin-top: 15px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_title .left_title_dt span {
    margin-right: 30px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_content {
    margin-bottom: 46px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_content video {
    width: 100%;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_content p {
    font-size: 16px;
    color: #666666;
    line-height: 30px;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a {
    margin-left: 12px;
    display: inline-block;
    width: 22px;
    height: 22px;
    position: relative;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a:nth-child(1) {
    background: url(../image/bn105.png) no-repeat 50% 50%;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a:nth-child(1) {
    background: url(../image/bn106.png) no-repeat 50% 50%;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a:nth-child(2) {
    background: url(../image/bn107.png) no-repeat 50% 50%;
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a:nth-child(3) {
    background: url(../image/bn108.png) no-repeat 50% 50%;
}



.DNews .DNews_content .NewsDetails_left .news_page {
    padding-top: 35px;
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e5e5;
    margin-top: 35px;
    justify-content: space-between;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_left {
    max-width: calc(100% - 150px);
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list {
    font-size: 16px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    width: 100%;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list:last-child {
    margin-top: 7px;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list a {
    font-size: 16px;
    color: #666666;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list:hover a {
    color: #006cae;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_right {
    display: flex;
    align-items: center;
    width: 130px;
    height: 41px;
    border: 1px solid #e6e6e6;
    font-size: 14px;
    color: #333333;
    justify-content: center;
    border-radius: 100px;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_right i {
    color: #006cae;
    margin-left: 8px;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_right:hover {
    background: #006cae;
    border: 1px solid #006cae;
    color: #fff;
}

.DNews .DNews_content .NewsDetails_left .news_page .news_page_right:hover i {
    color: #fff;
}

.DNews .DNews_content .NewsDetails_right {
    width: 350px;
    background: #fff;
    border-radius: 6px;
    padding: 0px 25px;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_title {
    font-size: 24px;
    color: #333333;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 50px;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_title img {
    margin-right: 8px;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list {
    display: inline-block;
    width: 100%;
    padding: 25px 0px;
    border-bottom: 1px solid #ddd;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list .content_list_time {
    font-size: 14px;
    color: #006cae;
    margin-bottom: 8px;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list .content_list_title {
    font-size: 16px;
    color: #333333;
    line-height: 26px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list:last-child {
    border-bottom: 0px;
}

.DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list:hover .content_list_title {
    color: #006cae;
}





.Service .Service_content {
    border-top: 2px solid #1a7ec8;
    margin-bottom: 60px;
}

.Service .Service_content .Service_content_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0px;
    border-bottom: 1px solid #eaeaea;
}

.Service .Service_content .Service_content_list .content_list_left {
    width: calc(100% - 100px);
}

.Service .Service_content .Service_content_list .content_list_left .list_left_dd {
    font-size: 20px;
    color: #333333;
    margin-bottom: 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list .content_list_left .list_left_dt {
    font-size: 14px;
    color: #666666;
}

.Service .Service_content .Service_content_list .content_list_right {
    width: 46px;
    height: 46px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list .content_list_right span {
    width: 17px;
    height: 17px;
    position: relative;
}

.Service .Service_content .Service_content_list .content_list_right span img {
    position: absolute;
    left: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list .content_list_right span img:last-child {
    opacity: 0;
}

.Service .Service_content .Service_content_list:hover .content_list_left .list_left_dd {
    color: #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list:hover .content_list_right {
    background: #1a7ec8;
    border: 1px solid #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list:hover .content_list_right span img {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Service .Service_content .Service_content_list:hover .content_list_right span img:last-child {
    opacity: 1;
}




.Service2 .Service2_content {
    margin-bottom: 60px;
}

.Service2 .Service2_content .Service2_content_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    margin-bottom: 21px;
    padding: 45px 50px;
    border-radius: 6px;
}

.Service2 .Service2_content .Service2_content_list .content_list_left {
    width: calc(100% - 100px);
}

.Service2 .Service2_content .Service2_content_list .content_list_left .list_left_dd {
    font-size: 20px;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.Service2 .Service2_content .Service2_content_list .content_list_left .list_left_dt {
    font-size: 16px;
    color: #666666;
    margin-top: 18px;
    margin-bottom: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.Service2 .Service2_content .Service2_content_list .content_list_left .list_left_time {
    font-size: 14px;
    color: #666666;
}

.Service2 .Service2_content .Service2_content_list .content_list_right {
    width: 45px;
    height: 45px;
    border: 1px solid #dadada;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Service2 .Service2_content .Service2_content_list .content_list_right span {
    display: flex;
    width: 22px;
    height: 18px;
    position: relative;
}

.Service2 .Service2_content .Service2_content_list .content_list_right span img {
    position: absolute;
    left: 0;
}

.Service2 .Service2_content .Service2_content_list .content_list_right span img:last-child {
    opacity: 0;
}

.Service2 .Service2_content .Service2_content_list:hover {
    background: #1a7ec8;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_left .list_left_dd {
    color: #fff;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_left .list_left_dt {
    color: #fff;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_left .list_left_time {
    color: #fff;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_right {
    border: 1px solid #fff;
    background: #fff;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_right span img {
    opacity: 0;
}

.Service2 .Service2_content .Service2_content_list:hover .content_list_right span img:last-child {
    opacity: 1;
}




.Service3 .Service_content {
    padding: 55px 187px;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.Service3 .Service_content .Service3_title {
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

.Service3 .Service_content .Service3_title span {
    position: relative;
}

.Service3 .Service_content .Service3_title span:before {
    content: "*";
    position: absolute;
    right: -15px;
    top: -5px;
    color: #de1515;
    font-size: 20px;
}

.Service3 .Service_content .Service3_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Service3 .Service_content .Service3_top .Service3_top_left {
    width: 70%;
}

.Service3 .Service_content .Service3_top .Service3_top_left input {
    height: 50px;
    background: #f8f8f8;
    width: 100%;
    padding: 0px 18px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-size: 16px;
    color: #333;
}

.Service3 .Service_content .Service3_top .Service3_top_right {
    display: flex;
    align-items: center;
    width: 23%;
}

.Service3 .Service_content .Service3_top .Service3_top_right input {
    width: 48%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #1a7ec8;
    color: #1a7ec8;
    background: #fff;
}

.Service3 .Service_content .Service3_top .Service3_top_right input[type="submit"] {
    background: #1a7ec8;
    color: #fff;
    margin-right: 11px;
}

.Service3 .Service_content .Service3_bottom {
    margin-top: 35px;
}

.Service3 .Service_content .Service3_bottom .null {
    min-height: 534px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #e5e5e5;
    border-radius: 6px;
}




.Service4 {
    padding-bottom: 150px;
}

.Service4 .Service_content {
    padding-top: 50px;
    margin-bottom: 0px;
}

.Service4 .Service_content .Service4_title {
    font-size: 30px;
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
}

.Service4 .Service_content .Service4_form {
    max-width: 685px;
    margin: 0 auto;
}

.Service4 .Service_content .Service4_form input {
    width: 100%;
    padding: 0px 20px;
    line-height: 50px;
    background: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 6px;
    margin-bottom: 22px;
    font-size: 16px;
    color: #333;
}

.Service4 .Service_content .Service4_form textarea {
    width: 100%;
    height: 172px;
    padding: 20px;
    line-height: 24px;
    background: #f9f9f9;
    border: 1px solid #dddddd;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #333;
    resize: none;
}

.Service4 .Service_content .Service4_form input[type="submit"] {
    color: #fff;
    background: #1a7ec8;
    border-radius: 100px;
    border: 0px;
}

.Service4 .Service_content .Service4_form .Service4_form_rido {
    display: flex;
    align-items: center;
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0px 20px;
    margin-bottom: 20px;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_left {
    display: inline-block;
    width: 85px;
    font-size: 16px;
    color: #003333;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right {
    display: flex;
    align-items: center;
    width: calc(100% - 85px);
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li {
    margin-right: 35px;
    display: flex;
    align-items: center;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li input {
    display: none;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li .right_li_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li .right_li_btn span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li .right_li_btn span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border-radius: 100%;
    background: #1a7ec8;
    opacity: 0;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li input[type=radio]:checked~.right_li_btn {
    color: #1a7ec8;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li input[type=radio]:checked~.right_li_btn span {
    border: 1px solid #1a7ec8;
}

.Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li input[type=radio]:checked~.right_li_btn span:before {
    opacity: 1;
}





.NVideo .NVideo_content {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.NVideo .NVideo_content .NVideo_content_list {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.NVideo .NVideo_content .NVideo_content_list:nth-child(3n) {
    margin-right: 0px;
}

.NVideo .NVideo_content .NVideo_content_list .content_list_img {
    background: #000;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.NVideo .NVideo_content .NVideo_content_list .content_list_img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: .7;
}

.NVideo .NVideo_content .NVideo_content_list .content_list_title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.NVideo .NVideo_content .NVideo_content_list .content_list_title .list_title_dt {
    font-size: 20px;
    color: #fff;
    margin-top: 25px;
}

.NVideo .NVideo_content .NVideo_content_list:hover .content_list_img {
    background: #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}





.Contact {
    padding-bottom: 120px;
}

.Contact .Contact_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Contact .Contact_content .Contact_content_list {
    background: #fff;
    width: 32%;
    border-radius: 6px;
    padding: 64px 32px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list .content_list_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 70px;
}

.Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dd {
    font-size: 26px;
    color: #333333;
    text-transform: uppercase;
    margin-bottom: 8px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dt {
    font-size: 20px;
    color: #333333;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list .content_list_top .list_top_icon span {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Contact .Contact_content .Contact_content_list .content_list_top .list_top_icon span img {
    position: absolute;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list .content_list_top .list_top_icon span img:last-child {
    opacity: 0;
}

.Contact .Contact_content .Contact_content_list .content_list_bottom {
    font-size: 18px;
    color: #1a7ec8;
}

.Contact .Contact_content .Contact_content_list:hover {
    background: #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list:hover .content_list_top .list_top_left .top_left_dd {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list:hover .content_list_top .list_top_left .top_left_dt {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list:hover .content_list_top .list_top_icon span img {
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Contact .Contact_content .Contact_content_list:hover .content_list_top .list_top_icon span img:last-child {
    opacity: 1;
}

.Contact .Contact_content .Contact_content_list:hover .content_list_bottom {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}



.message {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 60px;
    position: relative;
}

.message:before {
    content: "";
    display: inline-block;
    width: 50%;
    position: absolute;
    right: 0;
    background: url(../image/bg37.jpg) no-repeat 50%/cover;
    height: 100%;
}

.message .message_left {
    width: calc(50% - 85px);
}

.message .message_left img {
    width: 100%;
}

.message .message_form {
    width: 50%;
    z-index: 5;
    padding-right: 8%;
}

.message .message_form .message_form_title {
    font-size: 36px;
    color: #333333;
    margin-bottom: 55px;
}

.message .message_form .message_form_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.message .message_form .message_form_content .form_content_list {
    width: 48%;
    height: 60px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 20px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 20px;
}

.message .message_form .message_form_content .form_content_list .content_list_left {
    font-size: 16px;
    color: #333333;
}

.message .message_form .message_form_content .form_content_list .content_list_left span {
    position: relative;
    margin-left: 15px;
}

.message .message_form .message_form_content .form_content_list .content_list_left span:before {
    content: "*";
    font-size: 16px;
    color: #e71414;
    position: absolute;
    right: -10px;
    top: -5px;
}

.message .message_form .message_form_content .form_content_list .content_list_right {
    width: calc(100% - 125px);
}

.message .message_form .message_form_content .form_content_list .content_list_right input {
    height: 45px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    background: none;
    width: 100%;
}

.message .message_form .message_form_content .form_content_list:nth-child(3),
.message .message_form .message_form_content .form_content_list:nth-child(4) {
    width: 100%;
}

.message .message_form .message_form_content .form_content_list.textarea {
    height: auto;
    align-items: flex-start;
}

.message .message_form .message_form_content .form_content_list.textarea .content_list_left {
    padding-top: 20px;
}

.message .message_form .message_form_content .form_content_list .content_list_right {
    padding: 20px 0px;
}

.message .message_form .message_form_content .form_content_list .content_list_right textarea {
    width: 100%;
    height: 150px;
    resize: none;
    background: none;
    font-size: 16px;
    color: #333;
}

.message .message_form .message_form_content .form_content_submit {
    width: 100%;
}

.message .message_form .message_form_content .form_content_submit input {
    width: 100%;
    height: 60px;
    background: #1a7ec8;
    color: #fff;
    font-size: 18px;
    color: #fff;
    border-radius: 6px;
}






.Product .Product_list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f2f2f2;
    margin-bottom: 31px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.Product .Product_list img {
    max-width: 100%;
}

.Product .Product_list .Product_list_moimg {
    display: none;
}

.Product .Product_list .Product_list_txt {
    position: absolute;
    width: 52%;
    right: 30px;
}

.Product .Product_list .Product_list_txt .list_txt_top {
    margin-bottom: 40px;
}

.Product .Product_list .Product_list_txt .list_txt_top .txt_top_dd {
    font-size: 36px;
    color: #333333;
    margin-bottom: 15px;
}

.Product .Product_list .Product_list_txt .list_txt_top .txt_top_dt {
    font-size: 15px;
    color: #666666;
    line-height: 24px;
    max-width: 585px;
}

.Product .Product_list .Product_list_txt .list_txt_bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.Product .Product_list .Product_list_txt .list_txt_bottom a {
    font-size: 16px;
    color: #333333;
    display: inline-block;
    width: 48%;
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
}

.Product .Product_list .Product_list_txt .list_txt_bottom a:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 19px;
    background: url(../image/bn15.png) no-repeat 50% 50%;
    margin-right: 11px;
    position: absolute;
    left: 0;
}

.Product .Product_list .Product_list_txt .list_txt_bottom a:hover {
    color: #1a7ec8;
}

.Product .Product_list .Product_list_txt .list_txt_more {
    width: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border-radius: 100px 0px 0px 100px;
    background: #c41146;
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}

.Product .Product_list .Product_list_txt .list_txt_more img {
    margin-left: 9px;
}

.Product .Product_list:nth-child(2n) .Product_list_txt {
    right: inherit;
    left: 83px;
}

.Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a {
    width: 41%;
}

.Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a:nth-child(2n) {
    width: 55%;
}

.Product .Product_list:nth-child(3) .Product_list_txt {
    width: 55%;
}

.Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a {
    width: 45%;
}




.DProduct {
    margin-bottom: 165px;
}

.DProduct .DPage {
    margin-top: 41px;
    margin-bottom: 44px;
}

.DProduct .DProduct_content {
    display: flex;
    justify-content: space-between;
}

.DProduct .DProduct_content .DProduct_content_left {
    width: 76%;
    background: #fff;
    padding: 60px 32px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top {
    padding-bottom: 30px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dd {
    font-size: 32px;
    color: #333333;
    margin-bottom: 30px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt {
    display: flex;
    justify-content: space-between;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 {
    display: block;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 .top_dt_tab table {
    background: #eaeaea;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 .top_dt_tab table tr td {
    background: #f8f8f8;
    font-size: 14px;
    color: #333333;
    padding: 17px;
    width: 20%;
    line-height: 24px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 .top_dt_tab table tr:nth-child(1) td {
    background: #1a7ec8;
    color: #fff;
    font-size: 16px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 .top_dt_tab2 table tr:nth-child(1) td {
    background: #f8f8f8;
    color: #333333;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt2 .top_dt_tab2 table tr td {
    font-size: 16px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt3 .top_dt3_bottom .dt3_bottom_li {
    position: relative;
    padding-left: 20px;
    line-height: 26px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #666666;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt3 .top_dt3_bottom .dt3_bottom_li:last-child {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt3 .top_dt3_bottom .dt3_bottom_li:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #1a7ec8;
    position: absolute;
    left: 0;
    top: 8px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt4 .top_dt4_content .dt4_content_top {
    font-size: 20px;
    color: #1a7ec8;
    font-weight: bolder;
    margin-bottom: 15px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt4 .top_dt4_content .dt4_content_bottom .content_bottom_li {
    margin-bottom: 15px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt4 .top_dt4_content .dt4_content_bottom .content_bottom_li .bottom_li_dd {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt4 .top_dt4_content .dt4_content_bottom .content_bottom_li .bottom_li_dt {
    font-size: 16px;
    color: #666;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt4 .top_dt4_content .dt4_content_bottom .content_bottom_li .bottom_li_dt strong {
    color: #1a7ec8;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt5 .top_dt5_title {
    margin-bottom: 25px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt5 .top_dt5_title .dt5_title_dd {
    font-size: 20px;
    color: #1a7ec8;
    font-weight: bolder;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt5 .top_dt5_title .dt5_title_dt {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt5 .top_dt_tab table {
    margin-bottom: 25px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list {
    margin-bottom: 20px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_title {
    font-size: 20px;
    color: #1a7ec8;
    font-weight: bolder;
    margin-bottom: 10px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dd {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dt {
    display: flex;
    flex-wrap: wrap;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dt .txt_dt_li {
    width: 32%;
    margin-right: 2%;
    background: #d9ebf9;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 15px;
    height: 110px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dt .txt_dt_li:nth-child(3n) {
    margin-right: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dt .txt_dt_li .dt_li_t {
    font-size: 20px;
    color: #1a7ec8;
    font-weight: bolder;
    margin-bottom: 8px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt6 .dt6_content_list .content_list_txt .list_txt_dt .txt_dt_li .dt_li_b {
    font-size: 16px;
    color: #666;
}



.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_l {
    width: 75%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_l p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 22px;
    line-height: 28px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_l p img {
    max-width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_r {
    width: 23%;
    text-align: right;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_r img {
    max-width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list {
    margin-bottom: 40px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list:last-child {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_title {
    font-size: 24px;
    color: #333333;
    padding-bottom: 28px;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    margin-bottom: 35px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_title:before {
    content: "";
    display: inline-block;
    width: 45px;
    height: 4px;
    background: #1a7ec8;
    position: absolute;
    bottom: 0;
    left: 0;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top {
    margin-bottom: 30px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top:last-child {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top .txt_top_dd {
    font-size: 20px;
    color: #1a7ec8;
    font-weight: bolder;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top .txt_top_dd span {
    font-weight: normal;
    font-size: 16px;
    margin-left: 15px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top .txt_top_dt {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    margin-top: 15px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom .list_txt_li {
    margin-right: 55px;
    font-size: 16px;
    color: #1a7ec8;
    position: relative;
    padding: 10px 0px;
    padding-left: 57px;
    margin-bottom: 35px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom .list_txt_li span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: #1a7ec8;
    font-size: 24px;
    color: #fff;
    font-weight: bolder;
    margin-right: 17px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom .list_txt_li:last-child {
    margin-right: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 {
    background: #f8f8f8;
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li {
    width: 48%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li:nth-child(1),
.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li:nth-child(2) {
    margin-bottom: 60px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li .txt2_li_dd {
    font-size: 20px;
    color: #333333;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li .txt2_li_dd img {
    margin-right: 12px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li .txt2_li_dt {
    color: #666666;
    font-size: 16px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 50px;
    position: relative;
    margin-top: 80px;
    flex-wrap: wrap;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3:before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #eaeaea;
    position: absolute;
    top: 62.5%;
    left: 0;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li {
    text-align: center;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_top .li_top_dd {
    font-size: 20px;
    color: #333333;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_top .li_top_dt {
    font-size: 16px;
    color: #666666;
    margin-top: 5px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_bottom {
    font-size: 16px;
    color: #1a7ec8;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_bottom:before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 100%;
    background: #1a7ec8;
    margin: 20px 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 .list_txt4_title {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 table {
    background: #eaeaea;
    width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 table tr td {
    background: #f8f8f8;
    font-size: 14px;
    color: #333333;
    padding: 17px;
    line-height: 24px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 table tr:nth-child(1) td {
    background: #1a7ec8;
    color: #fff;
    font-size: 16px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 table tr td:nth-child(1) {
    width: 10%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 .list_txt5_li {
    width: 32%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 .list_txt5_li .txt5_li_dd img {
    width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 .list_txt5_li .txt5_li_dt {
    text-align: center;
    font-size: 16px;
    color: #333333;
    margin-top: 25px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 p {
    font-size: 16px;
    color: #666666;
    line-height: 28px;
    margin-bottom: 25px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 p:last-child {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_img {
    text-align: center;
    margin-bottom: 35px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_img img {
    max-width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li {
    background: #f0f4f7;
    border-radius: 6px;
    padding: 34px 26px;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li:nth-child(3n) {
    margin-right: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li .bottom_li_dd {
    font-size: 20px;
    color: #1a7ec8;
    margin-bottom: 10px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li .bottom_li_dt {
    font-size: 15px;
    color: #666666;
    line-height: 26px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li .bottom_li_dt p {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: -2%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li {
    width: 32%;
    margin-right: 2%;
    background: #f0f4f7;
    border-radius: 6px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 2%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li:nth-child(3n) {
    margin-right: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li img {
    max-width: 100%;
    max-height: 180px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li .con_li_dt {
    font-size: 16px;
    color: #666666;
    margin: 16px 0px;
    padding: 0px 25px;
    text-align: center;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li .con_li_p {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background: #1a7ec8;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 {
    display: flex;
    justify-content: space-between;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left {
    font-size: 16px;
    color: #666666;
    padding-top: 30px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left .txt7_left_li {
    position: relative;
    padding-left: 20px;
    line-height: 26px;
    margin-bottom: 10px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left .txt7_left_li span {
    color: #1a7ec8;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left .txt7_left_li:last-child {
    margin-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left .txt7_left_li:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #1a7ec8;
    position: absolute;
    left: 0;
    top: 8px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left {
    width: 55%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_right {
    width: 40%;
    text-align: right;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_right img {
    max-width: 100%;
    border-radius: 6px;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt8 img {
    max-width: 100%;
}

.DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt9 {
    display: block;
}









.DProduct .DProduct_content .DProduct_content_right {
    width: 22.5%;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list {
    margin-bottom: 33px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_title {
    font-size: 18px;
    color: #333333;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bolder;
    margin-bottom: 16px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_title:before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 16px;
    background: #1a7ec8;
    margin-right: 13px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_txt {
    background: #fff;
    padding: 0px 15px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_txt .list_txt_li {
    display: inline-block;
    width: 100%;
    padding: 25px 0px;
    border-bottom: 1px solid #eaeaea;
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    padding-left: 35px;
    position: relative;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_txt .list_txt_li:hover {
    color: #1a7ec8;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_txt .list_txt_li:last-child {
    border-bottom: 0px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list .right_list_txt .list_txt_li:before {
    content: "Q";
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #1a7ec8;
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 30px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list.Dol .right_list_txt .list_txt_li:before {
    content: "";
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #1a7ec8;
    color: #fff;
    font-size: 18px;
    position: absolute;
    left: 0;
    background: url(../image/bn57.png) no-repeat 50% 50%;
    top: 29px;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list.Bottom {
    display: inline-block;
}

.DProduct .DProduct_content .DProduct_content_right .content_right_list.Bottom img {
    width: 100%;
}







.JoinDown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999;
    display: none;
    background: rgba(0, 0, 0, .5);
}

.JoinDown .JoinDown_bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.JoinDown .JoinDown_bg .JoinDown_content {
    background: #fff;
    padding: 35px 45px;
    position: relative;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    filter: scale(0);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    opacity: 0;
}

.JoinDown .JoinDown_bg.on .JoinDown_content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
    opacity: 1;
}

.JoinDown .JoinDown_close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
    font-size: 30px;
    color: #999;
    -webkit-user-select: none;
    /*webkit浏览器*/
    -ms-user-select: none;
    /*IE10*/
    -khtml-user-select: none;
    /*早期浏览器*/
    user-select: none;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_title .content_title_dd {
    font-size: 22px;
    color: #333;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_title .content_title_dt {
    font-size: 16px;
    color: #999;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_txt {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #999;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dcdcdc;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_txt span {
    margin: 0px 15px;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_down p {
    font-size: 16px;
    color: #666;
    line-height: 24px;
    margin-bottom: 5px;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_down p:last-child {
    margin-bottom: 0px;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    border-radius: 100px;
    background: #c41246;
    color: #fff;
    font-size: 16px;
    margin-top: 50px;
}

.JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_more img {
    margin-right: 10px;
}




.Product2 {
    padding: 100px 0px;
}

.Product2 .pc_all_content {
    display: flex;
    flex-wrap: wrap;
}

.Product2 .Product2_list {
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.Product2 .Product2_list:nth-child(3n) {
    margin-right: 0px;
}

.Product2 .Product2_list .Product2_list_img img {
    width: 100%;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    filter: scale(1);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}

.Product2 .Product2_list:hover .Product2_list_img img {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    filter: scale(1.15);
    filter: transform;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}

.Product2 .Product2_list .Product2_list_txt {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 70px 40px;
    background: url(../image/ips.png) no-repeat 50%/cover;
}

.Product2 .Product2_list .Product2_list_txt .list_txt_title {
    font-size: 36px;
    color: #333333;
    height: 95px;
    margin-bottom: 18px;
}

.Product2 .Product2_list .Product2_list_txt .list_txt_content .txt_content_t {
    color: #666666;
    font-size: 16px;
    line-height: 24px;
    max-width: 275px;
}

.Product2 .Product2_list .Product2_list_txt .list_txt_content a {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #666666;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.Product2 .Product2_list .Product2_list_txt .list_txt_content a:before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 19px;
    background: url(../image/bn15.png) no-repeat 50% 50%;
    margin-right: 11px;
    position: absolute;
    left: 0;
}

.Product2 .Product2_list .Product2_list_txt .list_txt_content a:hover {
    color: #1a7ec8;
}





.Product3 {
    padding: 95px 0px;
}

.Product3 span {
    position: relative;
    font-size: 24px;
    color: #333333;
    line-height: 36px;
    padding: 0px 40px;
    display: inline-block;
}

.Product3 span:before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 20px;
    background: url(../image/bn58.png) no-repeat 50%/cover;
    position: absolute;
    left: 0;
}

.Product3 span:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 20px;
    background: url(../image/bn59.png) no-repeat 50%/cover;
    position: relative;
    top: 10px;
}


.Product3_one {
    background: #f2f2f2;
    padding: 100px 0px;
    position: relative;
}

.Product3_one:before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 80%;
    background: #e3e3e3;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
}

.Product3_one .pc_all_content {
    display: flex;
    justify-content: space-between;
}

.Product3_one .pc_all_content .Product3_one_list {
    width: 43%;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_title {
    margin-bottom: 35px;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_title .list_title_dd {
    font-size: 16px;
    color: #1a7ec8;
    text-transform: uppercase;
    font-weight: bolder;
    margin-bottom: 8px;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_title .list_title_dt {
    font-size: 36px;
    color: #333333;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_txt {
    font-size: 16px;
    color: #666666;
    line-height: 34px;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_bottom {
    border-top: 1px solid #e3e3e3;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_bottom .list_bottom_li {
    width: 49%;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_bottom .list_bottom_li .bottom_li_dd {
    font-size: 16px;
    color: #333333;
    margin-bottom: 13px;
}

.Product3_one .pc_all_content .Product3_one_list .one_list_bottom .list_bottom_li .bottom_li_dt {
    font-size: 14px;
    color: #666666;
    line-height: 24px;
}



.Product3_two {
    padding: 95px 0px;
}

.Product3_two .Product3_two_title {
    text-align: center;
}

.Product3_two .Product3_two_title .two_title_dd {
    font-size: 16px;
    color: #1a7ec8;
    text-transform: uppercase;
    font-weight: bolder;
}

.Product3_two .Product3_two_title .two_title_dt {
    font-size: 36px;
    color: #333333;
}

.Product3_two .Product3_two_content {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.Product3_two .Product3_two_content .two_content_list {
    width: 48%;
    border: 1px solid #eaeaea;
    padding: 40px 50px;
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}

.Product3_two .Product3_two_content .two_content_list:hover {
    box-shadow: 0px 0px 24px rgba(0, 0, 0, .1);
    transition: all 0.5s ease 0s;
    -webkit-transform: all 0.5s ease 0s;
}

.Product3_two .Product3_two_content .two_content_list .content_list_dd {
    display: flex;
    align-items: center;
    font-size: 30px;
    color: #333333;
    margin-bottom: 25px;
}

.Product3_two .Product3_two_content .two_content_list .content_list_dd img {
    margin-right: 14px;
}

.Product3_two .Product3_two_content .two_content_list .content_list_dt {
    font-size: 16px;
    color: #666666;
    line-height: 26px;
    margin-bottom: 40px;
    height: 78px;
}

.Product3_two .Product3_two_content .two_content_list .content_list_more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 146px;
    height: 44px;
    border-radius: 100px 0px 0px 100px;
    background: #c41146;
    font-size: 16px;
    color: #fff;
}

.Product3_two .Product3_two_content .two_content_list .content_list_more img {
    margin-left: 10px;
}



.Product3_scenario {
    background: url(../image/bg60.jpg) no-repeat 50%/cover;
}

.Product3_scenario .Product3_scenario_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -2%;
    margin-top: 50px;
}

.Product3_scenario .Product3_scenario_content .scenario_content_list {
    width: 32%;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 2%;
    padding: 64px 34px;
}

.Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd {
    font-size: 30px;
    color: #333333;
}

.Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd span {
    margin-right: 12px;
}

.Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dt {
    font-size: 22px;
    color: #666666;
    margin: 20px 0px;
}

.Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_p {
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    margin-top: 25px;
}


.Product3_Process {
    background: #f2f2f2;
}

.Product3_Process .Product3_Process_content {
    margin-top: 50px;
}

.Product3_Process .Product3_Process_content .Process_content_list {
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.Product3_Process .Product3_Process_content .Process_content_list:last-child {
    margin-bottom: 0px;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    background: #fff;
    padding: 0px 37px;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd {
    font-size: 24px;
    color: #333333;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd span {
    font-size: 34px;
    color: #1a7ec8;
    font-family: 'bahnschrift';
    position: relative;
    top: 3px;
    margin-right: 8px;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dt span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    border: 1px solid #dadada;
    color: #dadada;
    font-size: 16px;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_down {
    padding: 37px;
    background: #fff;
    font-size: 16px;
    color: #fff;
    background: #1a7ec8;
    display: none;
    position: relative;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_down p {
    margin-bottom: 20px;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_down p:last-child {
    margin-bottom: 0px;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_down p img {
    max-width: 100%;
}

.Product3_Process .Product3_Process_content .Process_content_list .content_list_down:before {
    content: "";
    display: inline-block;
    width: calc(100% - 37px * 2);
    height: 1px;
    background: rgba(255, 255, 255, .2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.Product3_Process .Product3_Process_content .Process_content_list.on .content_list_top {
    background: #1a7ec8;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list.on .content_list_top .list_top_dd {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list.on .content_list_top .list_top_dd span {
    color: #fff;
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}

.Product3_Process .Product3_Process_content .Process_content_list.on .content_list_top .list_top_dt span {
    color: #1a7ec8;
    background: #fff;
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    transition: all 0.5s ease;
    -webkit-transform: all 0.5s ease;
}




.Product3_reservation {
    background: none;
    padding: 90px 0px;
}

.Product3_reservation .pc_all_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f3f3f3;
}

.Product3_reservation .Product3_reservation_img {
    width: 44%;
}

.Product3_reservation .Product3_reservation_img img {
    width: 100%;
}

.Product3_reservation .Product3_reservation_txt {
    width: 56%;
    padding-right: 4%;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_title {
    margin-bottom: 35px;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_title .txt_title_dd {
    font-size: 16px;
    color: #1a7ec8;
    font-weight: bolder;
    text-transform: uppercase;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_title .txt_title_dt {
    font-size: 36px;
    color: #333333;
    margin-top: 5px;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_img .txt_img_dd {
    font-size: 18px;
    color: #333;
    margin-bottom: 22px;
}



.Product3_reservation .Product3_reservation_txt .reservation_txt_form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list {
    width: 100%;
    margin-bottom: 15px;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list:nth-child(1),
.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list:nth-child(2) {
    width: 49%;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list input {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dadada;
    font-size: 16px;
    color: #333;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list select {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dadada;
    font-size: 16px;
    color: #333;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../image/bn66.png) no-repeat calc(100% - 20px) 50%;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 30px;
    padding-left: 20px;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dd {
    font-size: 16px;
    color: #333333;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt {
    display: flex;
    align-items: center;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li {
    margin-right: 25px;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li input {
    display: none;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li .right_li_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #666666;
    cursor: pointer;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li .right_li_btn span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    border: 1px solid #e3e3e3;
    background: #f9f9f9;
    margin-right: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li .right_li_btn span:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border-radius: 100%;
    background: #c41146;
    opacity: 0;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li input[type=radio]:checked~.right_li_btn {
    color: #c41146;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li input[type=radio]:checked~.right_li_btn span {
    border: 1px solid #c41146;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_rido .form_rido_dt .rido_dt_li input[type=radio]:checked~.right_li_btn span:before {
    opacity: 1;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_btn {
    width: 100%;
}

.Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_btn input {
    width: 100%;
    height: 50px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a7ec8;
    border-radius: 5px;
}








.mo_show {
    display: none;
}



.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_share a {
    display: inline-block;
    width: 28px;
    height: 22px;
    position: relative;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_share a:nth-child(1) {
    background: url(../image/bn23.png) no-repeat 50% 50%;
}

.Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_share a:nth-child(2) {
    background: url(../image/bn24.png) no-repeat 50% 50%;
}

.wechat-qrcode {
    display: none;
    border: 1px solid #eee;
    position: absolute;
    z-index: 9;
    top: -205px;
    left: -84px;
    width: 200px;
    height: 192px;
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px #aaa;
    transition: all 200ms;
    -webkit-tansition: all 350ms;
    -moz-transition: all 350ms
}

.wechat-qrcode.bottom {
    top: 40px;
    left: -84px
}

.wechat-qrcode.bottom:after {
    display: none
}

.wechat-qrcode h4 {
    font-weight: normal;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
    color: #777
}

.social-share .icon-wechat .wechat-qrcode .qrcode {
    width: 100%;
    margin: 0px auto
}

.wechat-qrcode .qrcode table {
    margin: 0 !important
}

.wechat-qrcode .help p {
    font-weight: normal;
    line-height: 16px;
    padding: 0;
    margin: 0
}

.wechat-qrcode:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: -13px;
    width: 0;
    height: 0;
    border-width: 8px 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent
}

.DNews .DNews_content .NewsDetails_left .NewsDetails_left_share a:hover .wechat-qrcode {
    display: block
}

.right_dd_share a:hover .wechat-qrcode {
    display: block
}











.SEARCH {
    padding-top: 152px;
    padding-bottom: 65px;
}

.SEARCH .Search_top {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 25%;
    margin-bottom: 60px;
}

.SEARCH .Search_top form {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.SEARCH .Search_top input[type="search"] {
    width: 80%;
    height: 74px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    background: #f9f9f9;
    font-size: 18px;
    color: #333;
    border: 1px solid #dcdcdc;
}

.SEARCH .Search_top input[type="submit"] {
    width: 20%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a7ec8;
    color: #fff;
    font-size: 22px;
}

.SEARCH input::-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #b4b4b4;
    font-size: 18px;
}

.SEARCH input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #b4b4b4;
    font-size: 18px;
}

.SEARCH input::-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #b4b4b4;
    font-size: 18px;
}

.SEARCH input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #b4b4b4;
    font-size: 18px;
}

.SEARCH input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #b4b4b4;
    font-size: 18px;
}

.SEARCH .Search_title {
    font-size: 20px;
    color: #00000;
    margin-bottom: 50px;
}

.SEARCH .Search_title b {
    color: #1a7ec8;
    margin: 0px 8px;
}

.SEARCH .Search_content {
    padding-bottom: 30px;
}

.SEARCH .Search_content .Search_content_list {
    padding: 40px 36px;
    background: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, .1);
    margin-bottom: 26px;
}

.SEARCH .Search_content .Search_content_list .content_list_time {
    font-size: 20px;
    color: #999999;
}

.SEARCH .Search_content .Search_content_list .content_list_title {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 9px;
    margin-bottom: 19px;
}

.SEARCH .Search_content .Search_content_list .content_list_title .list_title_l {
    font-size: 20px;
    color: #00833c;
}

.SEARCH .Search_content .Search_content_list .content_list_title .list_title_r {
    font-size: 20px;
    color: #000003;
}

.SEARCH .Search_content .Search_content_list .content_list_txt {
    font-size: 16px;
    color: #666666;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}





.c_win {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 25;
}

.c_win .c_win_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .4);
}

.c_win .c_win_bg .c_win_content {
    position: relative;
}

.c_win .c_win_bg .c_win_content .c_win_close {
    position: absolute;
    bottom: -61px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 46px;
    height: 46px;
    cursor: pointer;
    left: 0;
    right: 0;
}




























@media screen and (max-width:1600px) {

    .pc_all .pc_all_content,
    .banner .banner_list .banner_list_txt,
    .banner .banner_txt,
    .DetailsBanner .DetailsBanner_txt {
        max-width: 1360px;
    }


}










@media screen and (max-width:1440px) {

    .pc_all .pc_all_content,
    .banner .banner_list .banner_list_txt,
    .banner .banner_txt,
    .DetailsBanner .DetailsBanner_txt {
        max-width: 1200px;
    }

    .DetailsBanner .DetailsBanner_img img {
        height: 450px;
    }


    .header .header_nav .header_nav_left .nav_left_list {
        margin-right: 30px;
    }

    .header .header_nav .header_nav_left .nav_left_list .left_list_title {
        font-size: 15px;
    }

    .banner .banner_list .banner_list_txt .list_txt_dd {
        font-size: 38px;
    }

    .banner .banner_list .banner_list_txt .list_txt_dt {}

    .banner .banner_list .banner_list_txt .list_txt_btn {
        font-size: 14px;
        margin-top: 66px;
    }

    .banner .swiper-pagination,
    .banner .banner_txt,
    .Scroll {
        bottom: 33px;
    }

    .banner .banner_txt .banner_txt_video {
        width: 160px;
        height: 60px;
        font-size: 14px;
    }

    .banner .banner_txt .banner_txt_video span {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .banner .banner_txt .banner_txt_video span img {
        max-height: 8px;
    }

    .banner .banner_list .banner_list_txt .list_txt_btn,
    .IService .IService_left .IService_left_btn a,
    .INews .INews_top .INews_top_right a,
    .ISlogan .ISlogan_right a {
        width: 130px;
        height: 42px;
        background-size: 100%;
        font-size: 14px;
    }

    .he_shubiao {
        width: 333px;
        height: 333px;
    }

    .he_shubiao span {
        width: 333px;
        height: 333px;
    }

    .IService {
        padding-top: 75px;
    }

    .IService .IService_left {
        width: 25%;
    }

    .IService .IService_left .IService_left_title {
        margin-bottom: 90px;
    }

    .IService .IService_left .IService_left_title .left_title_dd,
    .INews .INews_top .INews_top_left .top_left_dd {
        font-size: 24px;
    }

    .IService .IService_left .IService_left_title .left_title_dt,
    .INews .INews_top .INews_top_left .top_left_dt {
        font-size: 14px;
    }

    .IService .IService_right {
        width: calc(100% - 25%);
        padding-top: 0px;
    }

    .IService .IService_right .IService_right_list .right_list_txt .list_txt_dd {
        font-size: 18px;
        margin-bottom: 5px;
    }

    .IService .IService_right .IService_right_list .right_list_txt .list_txt_dt {
        font-size: 14px;
    }

    .IService .IService_right .IService_right_list:hover .right_list_txt .list_txt_more {
        margin-top: 15px;
    }

    .IService .IService_right .IService_right_list:before {
        width: 68%;
    }

    .ILogo {
        padding: 38px 0px;
    }

    .INews .INews_content .INews_content_top .content_top_txt .top_txt_title {
        font-size: 18px;
        max-width: 100%;
    }

    .INews .INews_content .INews_content_top .content_top_txt .top_txt_txt {
        font-size: 14px;
    }

    .INews .INews_content .INews_content_top .content_top_txt .top_txt_more {
        margin-top: 60px;
    }

    .INews .INews_content .INews_content_top .content_top_txt {
        padding: 0px 35px;
        padding-right: 70px;
    }

    .INews .INews_content .INews_content_bottom .content_bottom_list {
        padding: 25px 0px;
    }

    .INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_dd {
        font-size: 18px;
    }

    .INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_dt {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .ISolution {
        margin-top: 70px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt {
        font-size: 18px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list:hover .txt_list_more {
        margin-top: 15px;
    }

    .ISlogan {
        padding: 100px 0px;
    }

    .ISlogan .ISlogan_left {
        font-size: 24px;
        line-height: 40px;
    }

    .index_bg {
        background-size: 110%;
    }

    .Footer .Footer_top .Footer_top_left .top_left_bottom {
        margin-top: 40px;
    }

    .Footer .Footer_top .Footer_top_left .top_left_bottom a {
        font-size: 14px;
        margin-right: 22px;
    }

    .Footer .Footer_bottom {
        margin-top: 35px;
        height: 65px;
    }

    .Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_Email {
        margin: 22px 0px;
    }

    .Footer .Footer_top .Footer_top_right .top_right_dd .right_dd_phone {
        font-size: 22px;
    }


    .DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dd {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dt {
        font-size: 18px;
    }





    .About {
        padding-bottom: 60px;
    }

    .About .About_top {
        margin-bottom: 0px;
    }

    .About .About_top .About_top_left .top_left_dt,
    .Company .Company_content .Company_content_title .content_title_dt,
    .Team .Team_title .Team_title_left .title_left_dt {
        font-size: 24px;
    }

    .About .About_top .About_top_left .top_left_p {
        font-size: 18px;
    }

    .About .About_top .About_top_left .top_left_txt {
        margin-top: 28px;
    }

    .About .About_top .About_top_left .top_left_txt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .About .About_top .About_top_right {
        width: calc(100% - 68%);
    }

    .About .About_bottom .About_bottom_content .swiper-pagination span {
        width: 16px;
        height: 16px;
    }

    .About .About_bottom .About_bottom_content .swiper-pagination span:before {
        width: 6px;
        height: 6px;
    }


    .Company .pc_all_content {
        height: 500px;
    }

    .Company .Company_content .Company_content_title {
        margin-bottom: 35px;
    }

    .Company .Company_content .Company_content_txt {
        height: 290px;
    }

    .Company .Company_content .Company_content_txt .content_txt_list {
        margin-bottom: 30px;
    }

    .Company .Company_content .Company_content_txt .content_txt_list .txt_list_dd {
        font-size: 16px;
    }

    .Company .Company_content .Company_content_txt .content_txt_list .txt_list_dd img {
        max-width: 25px;
    }

    .Company .Company_content .Company_content_txt .content_txt_list .txt_list_dt {
        font-size: 14px;
    }


    .Team {
        padding: 60px 0px;
    }

    .Team .Team_title {
        margin-bottom: 30px;
    }


    .Development .Development_content {
        padding: 0px;
    }




    .Employing {
        padding: 60px 0px;
    }

    .Employing .Employing_img img {
        max-width: 100%;
    }

    .Employing .Employing_txt .Employing_txt_top .txt_top_dd,
    .DJoin .DJoin_top .DJoin_top_left .top_left_dd {
        font-size: 14px;
    }

    .Employing .Employing_txt .Employing_txt_top .txt_top_dt,
    .DJoin .DJoin_top .DJoin_top_left .top_left_dt {
        font-size: 24px;
    }

    .Employing .Employing_txt .Employing_txt_top .txt_top_p {
        font-size: 18px;
    }

    .Employing .Employing_txt .Employing_txt_bottom {
        font-size: 14px;
        line-height: 24px;
        margin-top: 20px;
    }



    .Environment {
        padding: 50px 0px;
    }

    .Environment .Environment_title .Environment_title_dd,
    .BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top .txt_top_dd {
        font-size: 14px;
    }

    .Environment .Environment_title .Environment_title_dt,
    .BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top .txt_top_dt {
        font-size: 24px;
    }

    .Environment .Environment_content img {
        max-width: 100%;
    }

    .BEnvironment .BEnvironment_list .BEnvironment_list_txt {
        padding: 35px 55px;
    }

    .BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top {
        margin-bottom: 14px;
    }

    .BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_bottom {
        font-size: 14px;
        line-height: 24px;
    }


    .Staff .Staff_content .Staff_content_Switch .swiper-button-next,
    .Staff .Staff_content .Staff_content_Switch .swiper-button-prev {
        width: 33px;
        height: 33px;
    }

    .Staff .Staff_content .Staff_content_Switch .swiper-button-next:after,
    .Staff .Staff_content .Staff_content_Switch .swiper-button-prev:after {
        font-size: 15px;
    }


    .Join {
        padding-bottom: 130px;
    }

    .Join .Join_btn {
        margin-top: 50px;
    }


    .DJoin {
        padding: 60px 0px;
        padding-bottom: 110px;
    }

    .DJoin .DJoin_top {
        margin-bottom: 33px;
    }

    .DJoin .DJoin_top .DJoin_top_right a {
        font-size: 14px;
        padding: 0px 20px;
        line-height: 34px;
    }


    .News .News_top {
        margin-bottom: 40px;
    }

    .News .News_top .News_top_time,
    .News .News_top .News_top_right input[type="search"],
    .News .News_top .News_top_right input[type="submit"] {
        height: 46px;
        font-size: 14px;
    }

    .News .News_content .News_content_list .content_list_txt .list_txt_dt {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .News .News_content .News_content_list .content_list_txt .list_txt_p {
        font-size: 14px;
    }

    .News .News_content .News_content_list .content_list_txt .list_txt_more {
        margin-top: 30px;
    }

    .News .News_content .News_content_list .content_list_img img {
        height: 220px;
    }


    .DPage {
        margin-bottom: 30px;
    }

    .DPage a {
        font-size: 14px;
    }


    .DNews {
        padding-bottom: 90px;
    }

    .DNews .DNews_content .NewsDetails_left {
        padding: 30px;
    }

    .DNews .DNews_content .NewsDetails_left .NewsDetails_left_title .left_title_dd {
        font-size: 24px;
    }

    .DNews .DNews_content .NewsDetails_left .NewsDetails_left_content p {
        font-size: 14px;
        line-height: 24px;
    }

    .DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list {
        font-size: 14px;
    }

    .DNews .DNews_content .NewsDetails_left .news_page .news_page_left .page_left_list a {
        font-size: 14px;
    }

    .DNews .DNews_content .NewsDetails_right {
        padding: 30px;
    }

    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_title {
        margin-top: 0px;
    }

    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list {
        padding: 18px 0px;
    }

    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list .content_list_title {
        font-size: 14px;
        line-height: 23px;
    }

    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_content .right_content_list:last-child {
        padding-bottom: 0px;
    }


    .layui-laypage a,
    .layui-laypage-curr,
    .layui-laypage-btn,
    .layui-laypage-disabled {
        height: 38px;
        width: 38px;
        margin: 0px 5px;
    }


    .Service .Service_content {
        margin-bottom: 30px;
    }

    .Service .Service_content .Service_content_list {
        padding: 20px 0px;
    }

    .Service .Service_content .Service_content_list .content_list_left .list_left_dd {
        font-size: 16px;
    }

    .Service .Service_content .Service_content_list .content_list_right {
        width: 36px;
        height: 36px;
    }

    .Service .Service_content .Service_content_list .content_list_right span {
        width: 12px;
        height: 12px;
    }

    .Service .Service_content .Service_content_list .content_list_right span img {
        max-height: 12px;
    }



    .Product .Product_list:last-child .Product_list_txt {
        width: 57%;
    }

    .Product .Product_list:nth-child(2n) .Product_list_txt {
        left: 4%;
    }

    .Product .Product_list:nth-child(2n) .Product_list_txt .list_txt_bottom a {
        width: 40%;
    }

    .Product .Product_list:nth-child(2n) .Product_list_txt .list_txt_bottom a:nth-child(2n) {
        width: 55%;
    }

    .Product .Product_list .Product_list_txt .list_txt_top {
        margin-bottom: 22px;
    }

    .Product .Product_list .Product_list_txt .list_txt_top .txt_top_dd,
    .Product3_reservation .Product3_reservation_txt .reservation_txt_title .txt_title_dt {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .Product .Product_list .Product_list_txt .list_txt_top .txt_top_dt {
        font-size: 14px;
    }

    .Product .Product_list .Product_list_txt .list_txt_bottom a {
        font-size: 14px;
    }

    .Product .Product_list .Product_list_txt .list_txt_more {
        margin-top: 30px;
        font-size: 14px;
        width: 120px;
        height: 40px;
    }




    .DJoin .DJoin_bottom .DJoin_bottom_list {
        padding: 25px;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title {
        padding: 0px;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dd {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dt {
        font-size: 14px;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_right {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }


    .Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a {
        width: 40%;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_title {
        font-size: 24px;
        height: 62px;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_content a {
        font-size: 15px;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_content .txt_content_t {
        font-size: 15px;
    }


    .Product3,
    .Product3_one,
    .Product3_two {
        padding: 65px 0px;
    }

    .Product3 span {
        font-size: 16px;
    }

    .Product3_one .pc_all_content .Product3_one_list {
        width: 46%;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_title {
        margin-bottom: 22px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_title .list_title_dt {
        font-size: 24px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_txt {
        font-size: 15px;
        line-height: 28px;
    }


    .Product3_two .Product3_two_title .two_title_dt {
        font-size: 24px;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_dd {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_dt {
        font-size: 15px;
    }


    .Product3_scenario .Product3_scenario_content .scenario_content_list {
        padding: 30px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd {
        font-size: 20px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dt {
        font-size: 16px;
        margin: 13px 0px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_p {
        font-size: 15px;
    }



    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top {
        height: 70px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd {
        font-size: 18px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd span {
        font-size: 22px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_down {
        padding: 30px 37px;
    }


    .Product3_reservation .Product3_reservation_img img {
        width: 100%;
        height: 440px;
        object-fit: cover;
    }

    .Product3_reservation .Product3_reservation_txt {
        padding: 0px 4%;
    }


    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 .list_txt5_li .txt5_li_dt {
        font-size: 14px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top,
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt,
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4,
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 {
        padding-right: 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_li {
        margin-right: 25px;
    }



    .Contact {
        padding-bottom: 60px;
    }

    .Contact .Contact_content .Contact_content_list {
        padding: 40px 30px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dd {
        font-size: 22px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dt {
        font-size: 18px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_bottom {
        font-size: 14px;
    }


    .message .message_form .message_form_title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .message .message_form .message_form_content .form_content_list .content_list_right textarea {
        height: 100px;
    }



    .header .header_nav .header_nav_left .nav_left_list:hover .left_list_down {
        height: 400px;
        padding: 45px;
        transition: all ease 0.6s;
        border-top: 1px solid #dcdcdc;
        padding-left: 85px;
    }



    .Honor .Honor_content .Honor_content_list .content_list_box .content_list_dd {
        height: 230px;
    }

    .Honor .Honor_content .Honor_content_list .content_list_box .content_list_dd img {
        max-height: 230px;
    }

    .Honor .Honor_content .Honor_content_list .content_list_box .content_list_dt {
        font-size: 15px;
        height: 40px;
        display: flex;
        align-items: center;
    }

}





@media screen and (max-width:1360px) {
    .Product3_one .pc_all_content .Product3_one_list {
        width: 40%;
    }

    .Product3_one .pc_all_content .Product3_one_list:last-child {
        width: 54%;
    }

    .Product3_one:before {
        left: -13%;
    }
}



@media screen and (max-width:1200px) {

    .pc_all .pc_all_content,
    .banner .banner_list .banner_list_txt,
    .banner .banner_txt,
    .DetailsBanner .DetailsBanner_txt {
        width: 92% !important;
        margin: 0 auto;
        overflow: hidden;
    }

    .header {
        display: none;
    }

    .mo_footer {
        display: block;
    }

    .mo_top {
        display: block;
    }

    .mo_height {
        height: 50px;
    }

    .slick-dots li {
        width: 10px !important;
        height: 1px !important;
        margin: 0px 4px !important;
    }

    img {
        max-width: 100%;
    }

    .hight,
    .pc_top_company,
    .banner .banner_txt,
    .buildnum {
        display: none;
    }

    input::-ms-input-placeholder {
        /* Internet Explorer 10+ */
        color: #999999;
        font-size: 13px !important;
    }

    input::-webkit-input-placeholder {
        /* WebKit browsers */
        color: #999999;
        font-size: 13px !important;
    }

    input::-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #999999;
        font-size: 13px !important;
    }

    input::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #999999;
        font-size: 13px !important;
    }

    input::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #999999;
        font-size: 13px !important;
    }

    textarea::-webkit-input-placeholder {
        color: #999999;
        font-size: 13px !important;
    }





    .pc_show {
        display: none;
    }

    .mo_show {
        display: block;
    }




    .banner .banner_bottom {
        display: none;
    }

    .banner .banner_list .banner_list_txt .list_txt_dd {
        font-size: 20px;
        margin-bottom: 5px;
        max-width: 100%;
    }

    .banner .swiper-button-next::after,
    .banner .swiper-button-prev::after {
        font-size: 20px;
    }

    .banner .banner_list .banner_list_txt .list_txt_btn {
        width: 125px;
        height: 40px;
        font-size: 13px;
    }

    .banner .banner_list .banner_list_txt .list_txt_btn img {
        margin-left: 14px;
    }



    /* 手机导航 */
    .m-header-nav-height {
        display: block;
        height: 50px;
    }

    .m-header-nav {
        display: block;
        height: 50px;
        position: fixed;
        top: 0;
        z-index: 1000;
        width: 100%;
        background-color: #ec6d1f;
        box-shadow: 0px 0px 20px rgba(0, 0, 0, .2);
    }

    .m-header-nav .sp_header {
        position: relative;
        top: 0;
        z-index: 10000;
        width: 100%;
        height: 50px;
        padding: 0 20px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .m-header-nav .sp_logo {
        padding: .6rem 0;
        float: left;
        height: 50px;
        display: flex;
        align-items: center;
    }

    .m-header-nav .sp_logo img {
        margin: auto;
        max-height: 26px;
    }

    .m-header-nav .sp_nav {
        width: 26px;
        float: right;
        position: relative;
        cursor: pointer;
        height: 14px;
        z-index: 900;
    }

    .m-header-nav .sp_nav span {
        display: block;
        background: #408fbf;
        width: 26px;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all ease 0.45s;
    }

    .m-header-nav .sp_nav span:nth-of-type(1) {
        top: 0px;
        width: 18px;
    }

    .m-header-nav .sp_nav span:nth-of-type(2) {
        top: 6px;
    }

    .m-header-nav .sp_nav span:nth-of-type(3) {
        top: 13px;
    }

    .m-header-nav .sp_nav_se span:nth-of-type(1) {
        top: 11px;
        transform: rotate(45deg);
        width: 26px;
    }

    .m-header-nav .sp_nav_se span:nth-of-type(2) {
        width: 0;
        transition: none;
    }

    .m-header-nav .sp_nav_se span:nth-of-type(3) {
        top: 11px;
        transform: rotate(-45deg);
    }

    .m-header-nav .sjj_nav {
        display: none;
        position: fixed;
        z-index: 9;
        background: white;
        width: 100%;
        height: 100%;
        font-size: .95rem;
        ;
        line-height: 2.7rem;
        top: 50px;
        left: 0;
        overflow: auto;
        overflow-x: hidden;
        transition: top ease 0.45s;
        border-top: 1px solid #dcdcdc;
    }

    .m-header-nav .nav_show {
        display: block;
    }

    .m-header-nav .sjj_nav>ul>li:first-child {
        overflow: hidden;
        border-top: 0
    }

    .m-header-nav .sjj_nav>ul>li:first-child>a {
        float: left;
        width: calc(100% - 100px)
    }

    .m-header-nav .sjj_nav>ul>li:first-child .language {
        float: right;
        width: 93px;
        overflow: hidden;
        line-height: 40px;
    }

    .m-header-nav .sjj_nav>ul>li:first-child .language a {
        width: 50%;
        float: left;
        border-left: 1px #ddd solid;
        text-align: center;
        color: #999;
    }

    .m-header-nav .sjj_nav ul li i {
        position: absolute;
        top: 0px;
        right: 0px;
        border-left: 1px #ddd solid;
        height: 46px;
        padding: 0px 12px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }

    .m-header-nav .sjj_nav ul li i svg {
        transform: rotate(-90deg);
        transition: all ease 0.45s
    }

    .m-header-nav .sjj_nav ul li .sjj_nav_i_se svg {
        transform: rotate(0deg)
    }

    .m-header-nav .sjj_nav ul li {
        border-top: 1px #ddd solid;
        margin-left: 1.1rem;
        position: relative;
        line-height: 2.6rem;
    }

    .m-header-nav .sjj_nav>ul>li:last-child {
        border-bottom: 1px #ddd solid;
    }

    .m-header-nav .sjj_nav ul li ul {
        display: none
    }

    .m-header-nav .sjj_nav ul li a {
        color: #666;
        width: 100%;
        display: block;
        font-size: .95rem;
        padding: .15rem 0;
    }

    .m-header-nav .sjj_nav ul li ul li a {
        color: #666;
        display: block;
        text-align: left;
    }

    .m-header-nav .sjj_nav ul li i svg {
        width: 1.3rem;
        height: 2.6rem;
        fill: #999;
    }

    .m-header-nav .sjj_nav ul li .sjj_nav_i_se svg {
        fill: #006cae;
    }

    .m-header-nav .sjj_nav ul li ul li>ul {
        margin-left: 10px
    }



    .banner .banner_icon {
        display: none;
    }

    .Scroll {
        display: none;
    }

    .banner .banner_list .banner_list_txt {
        height: 100%;
    }

    .banner .banner_list .banner_list_txt .list_txt_icon {
        display: none;
    }

    .banner .banner_list .banner_list_txt .list_txt_dt {
        font-size: 13px;
        max-width: 100%;
    }

    .banner .banner_list .banner_list_txt .list_txt_btn {
        margin-top: 58px;
    }


    .index_bg {
        background-size: auto;
    }

    .Footer .Footer_top {
        display: none;
    }

    .he_shubiao {
        display: none;
    }

    .banner .banner_list .banner_list_txt .list_txt_btn,
    .IService .IService_left .IService_left_btn a,
    .INews .INews_top .INews_top_right a,
    .ISlogan .ISlogan_right a {
        width: 125px;
        height: 38px;
        background-size: 100%;
        font-size: 12px;
    }

    .banner .swiper-pagination {
        bottom: 8%;
    }

    .banner .swiper-pagination span {
        width: 12px;
        height: 12px;
    }

    .banner .swiper-pagination span:before {
        width: 4px;
        height: 4px;
    }


    .IService {
        padding: 40px 0px;
    }

    .IService {
        padding-bottom: 0px;
    }

    .IService .IService_left {
        position: relative;
    }

    .IService .IService_left .IService_left_btn {
        position: absolute;
        right: 0;
        top: 0;
    }

    .IService .IService_left .IService_left_title .left_title_dd,
    .INews .INews_top .INews_top_left .top_left_dd {
        font-size: 18px;
    }

    .IService .IService_left .IService_left_title {
        margin-bottom: 25px;
    }

    .IService .IService_left,
    .IService .IService_right {
        width: 100%;
    }

    .IService .pc_all_content {
        display: block;
    }

    .IService .IService_right {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .IService .IService_right .IService_right_list {
        margin-top: 0px;
        width: 100%;
        margin-bottom: 20px;
    }

    .IService .IService_right .IService_right_list:last-child {
        margin-bottom: 0px;
    }

    .IService .IService_right .IService_right_list .right_list_txt {
        padding: 20px;
    }

    .IService .IService_right .IService_right_list .right_list_txt .list_txt_dd {
        font-size: 16px;
    }

    .IService .IService_right .IService_right_list .right_list_txt .list_txt_more {
        display: none;
    }


    .ILogo {
        padding: 26px 0px;
    }


    .INews .INews_top {
        margin-bottom: 25px;
    }

    .INews .INews_top .INews_top_left {
        width: calc(100% - 150px);
    }

    .INews .INews_content .INews_content_top .content_top_txt {
        position: relative;
        background: #1876af;
        width: 100%;
        padding: 22px;
    }

    .INews .INews_content .INews_content_top .content_top_txt:after,
    .INews .INews_content .INews_content_top:before {
        display: none;
    }

    .INews .INews_content .INews_content_top .content_top_txt .top_txt_title {
        margin: 11px 0px;
        font-size: 16px;
    }

    .INews .INews_content .INews_content_top .content_top_txt .top_txt_more {
        margin-top: 33px;
    }

    .INews .INews_content .INews_content_bottom {
        flex-wrap: wrap;
    }

    .INews .INews_content .INews_content_bottom .content_bottom_list {
        width: 100%;
    }

    .INews .INews_content .INews_content_bottom .content_bottom_list {}

    .INews .INews_content .INews_content_bottom .content_bottom_list .bottom_list_dd {
        font-size: 16px;
    }


    .ISolution {
        margin-top: 40px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list:nth-child(1):before,
    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list:nth-child(1):after {
        display: none;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list {
        padding: 20px 0px;
        align-items: center;
        border-right: 1px solid rgba(255, 255, 255, .3);
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list:last-child {
        border-right: 0px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt {
        font-size: 13px;
        display: block;
        text-align: center;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt span {
        font-size: 13px;
        width: 100%;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dt span:before {
        margin: 0px 3px;
        width: 2px;
        height: 2px;
        display: none;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_icon img {
        width: 25px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_dd {
        margin: 5px 0px;
        font-size: 13px;
    }

    .ISolution .ISolution_content .ISolution_content_txt .content_txt_list .txt_list_more {
        display: none;
    }


    .ISlogan {
        padding: 30px 0px;
    }

    .ISlogan .pc_all_content {
        display: block;
    }

    .ISlogan .ISlogan_left,
    .ISlogan .ISlogan_right {
        width: 100%;
    }

    .ISlogan .ISlogan_left {
        margin-bottom: 25px;
        font-size: 18px;
        line-height: 24px;
    }

    .ISlogan .ISlogan_left br {
        display: none;
    }



    .Footer {
        background: url(../image/bn26.png) no-repeat 50%/cover;
    }

    .Footer .Footer_bottom {
        margin-top: 0px;
        height: auto;
        padding: 20px 0px;
        display: block;
        text-align: center;
        border-top: 0px;
    }

    .Footer .Footer_bottom .Footer_bottom_dd {
        display: block;
    }

    .Footer .Footer_bottom .Footer_bottom_dt {
        display: block;
        text-align: center;
    }




    .DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dd {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .DetailsBanner .DetailsBanner_txt .DetailsBanner_txt_dt {
        font-size: 14px;
    }



    .About {
        padding: 35px 0px;
    }

    .About .About_top {
        display: block;
    }

    .About .About_top .About_top_left {
        margin-bottom: 22px;
    }

    .About .About_top .About_top_left,
    .About .About_top .About_top_right {
        width: 100%;
    }

    .About .About_top .About_top_left .top_left_dd {
        font-size: 14px;
    }

    .About .About_top .About_top_left .top_left_dt,
    .Company .Company_content .Company_content_title .content_title_dt,
    .Team .Team_title .Team_title_left .title_left_dt {
        font-size: 18px;
    }

    .About .About_top .About_top_left .top_left_p {
        font-size: 16px;
    }

    .About .About_top .About_top_left .top_left_txt {
        margin-top: 13px;
    }

    .content_list_video .list_video_content {
        width: 92%;
    }


    .Company:before,
    .Company:after {
        display: none;
    }

    .Company .Company_content {
        width: 100%;
        background: #408fbf;
        padding: 20px;
    }

    .Company .pc_all_content {
        height: auto;
        padding: 35px 0px;
    }

    .Company .Company_content .Company_content_txt {
        height: auto;
    }


    .Team {
        padding: 35px 0px;
    }

    .Team .Team_title {
        display: block;
        text-align: center;
    }

    .Team .Team_title .Team_title_right {
        margin-top: 25px;
    }

    .Team .Team_title .Team_title_right a {
        font-size: 14px;
        height: 34px;
        margin-right: 10px;
    }

    .Team .Team_content .Team_content_list {
        padding: 20px;
        padding-bottom: 0px;
    }

    .Team .Team_content .Team_content_list .content_list_title .list_title_left .title_left_dd {
        font-size: 16px;
    }

    .Team .Team_content .Team_content_list .content_list_title .list_title_left .title_left_dt {
        font-size: 14px;
        margin-top: 5px;
    }

    .Team .Team_content .Team_content_list .content_list_title .list_title_right {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .Team .Team_content .Team_content_list .content_list_txt {
        padding: 20px 0px;
        font-size: 14px;
    }

    .Team .Team_title .Team_title_right {
        display: flex;
        justify-content: center;
    }

    .Development {
        padding: 35px 0px;
    }

    .Development .Development_content .Development_content_list {
        height: auto;
    }

    .Development .Development_content .Development_content_list.swiper-slide-active {
        padding: 25px;
    }

    .Development .Development_content .Development_content_list .content_list_dd span {
        font-size: 30px;
    }

    .Development .Development_content .Development_content_list .content_list_dt {
        font-size: 14px;
    }

    .Development .Development_time {
        padding: 0px;
    }

    .Development .Development_title {
        margin-bottom: 25px;
    }

    .Development .Development_title .Development_title_dd {
        font-size: 14px;
    }

    .Development .Development_title .Development_title_dt {
        font-size: 16px;
    }

    .Development .Development_time {
        margin-top: 40px;
    }


    .Honor .Honor_content .Honor_content_list {
        transform: scale(1);
    }

    .Honor .Honor_content .Honor_content_list.swiper-slide-active {
        margin-left: 0px;
    }

    .Honor .Team_title .Team_title_right .title_right_prev,
    .Honor .Team_title .Team_title_right .title_right_next {
        font-size: 16px;
        height: 36px;
        width: 36px;
    }

    .Honor .Honor_content .Honor_content_list .content_list_box .content_list_dt {
        font-size: 16px;
    }



    .Employing {
        padding: 35px 0px;
    }

    .Employing .Employing_txt .Employing_txt_top .txt_top_dt,
    .DJoin .DJoin_top .DJoin_top_left .top_left_dt {
        font-size: 18px;
    }

    .Employing .Employing_txt {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 25px;
    }

    .Employing .Employing_txt .Employing_txt_top .txt_top_p {
        font-size: 16px;
    }


    .Environment {
        padding: 35px 4%;
    }

    .Environment .Environment_title {
        margin-bottom: 25px;
    }

    .Environment .Environment_content {
        display: block;
    }

    .Environment .Environment_content .Environment_content_left {
        margin-bottom: 12px;
    }

    .Environment .Environment_content .Environment_content_left,
    .Environment .Environment_content .Environment_content_right {
        width: 100%;
    }


    .BEnvironment {
        padding: 35px 0px;
    }

    .BEnvironment .BEnvironment_list {
        display: block;
    }

    .BEnvironment .BEnvironment_list .BEnvironment_list_img,
    .BEnvironment .BEnvironment_list .BEnvironment_list_txt {
        width: 100%;
    }

    .BEnvironment .BEnvironment_list .BEnvironment_list_txt {
        padding: 25px;
    }

    .Environment .Environment_title .Environment_title_dt,
    .BEnvironment .BEnvironment_list .BEnvironment_list_txt .list_txt_top .txt_top_dt {
        font-size: 18px;
    }


    .Staff {
        padding: 35px 0px;
    }

    .Staff .Staff_content .Staff_content_Switch {
        margin-top: 30px;
    }


    .Join {
        padding-bottom: 80px;
    }

    .Join .Join_btn {
        margin-top: 25px;
    }


    .News {
        padding: 35px 0px;
    }

    .News .DJoin_top {
        display: block;
        text-align: center;
    }

    .News .DJoin_top .DJoin_top_left {
        margin-bottom: 25px;
    }

    .News .DJoin_top .DJoin_top_left,
    .News .DJoin_top .DJoin_top_right {
        width: 100%;
    }

    .News .DJoin_top .DJoin_top_right a {
        padding: 0px;
        margin-right: 6px;
        width: 100%;
    }

    .News .News_top {
        display: block;
    }

    .News .News_top .News_top_time {
        margin-bottom: 15px;
    }

    .News .News_top .News_top_time,
    .News .News_top .News_top_right {
        width: 100%;
    }

    .News .News_content .News_content_list {
        display: block;
    }

    .News .News_content .News_content_list .content_list_img,
    .News .News_content .News_content_list .content_list_txt {
        width: 100%;
    }

    .News .News_content .News_content_list .content_list_txt {
        padding: 25px;
    }

    .News .News_content {
        margin-bottom: 30px;
    }


    .DNews .DNews_content {
        display: block;
    }

    .DNews .DNews_content .NewsDetails_left,
    .DNews .DNews_content .NewsDetails_right {
        width: 100%;
    }

    .DNews .DNews_content .NewsDetails_left {
        padding: 22px;
        margin-bottom: 25px;
    }

    .DNews .DNews_content .NewsDetails_right {
        padding: 22px;
    }

    .DNews .DNews_content .NewsDetails_left .NewsDetails_left_title .left_title_dd,
    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_title {
        font-size: 18px;
    }

    .DNews .DNews_content .NewsDetails_right .NewsDetails_right_title {
        margin-bottom: 0px;
    }



    .Service {
        padding: 35px 0px;
        padding-bottom: 85px;
    }

    .Service .DJoin_top {
        display: block;
        text-align: center;
    }

    .Service .DJoin_top .DJoin_top_left,
    .Service .DJoin_top .DJoin_top_right {
        width: 100%;
    }

    .Service .DJoin_top .DJoin_top_right {
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .Service .DJoin_top .DJoin_top_right a {
        padding: 0px;
        margin-right: 2%;
        width: 32%;
        margin-bottom: 2%;
    }

    .Service .DJoin_top .DJoin_top_right a:nth-child(3n) {
        margin-right: 0px;
    }

    .Service .Service_content .Service_content_list .content_list_left {
        width: calc(100% - 55px);
    }

    .Service2 .DJoin_top .DJoin_top_right {
        flex-wrap: wrap;
        margin-top: 25px;
    }

    .Service2 .DJoin_top .DJoin_top_right a {
        padding: 0px;
        margin-right: 2%;
        width: 32%;
        margin-bottom: 2%;
    }

    .Service2 .DJoin_top .DJoin_top_right a:nth-child(3n) {
        margin-right: 0px;
    }

    .Service2 .Service2_content .Service2_content_list {
        padding: 22px;
        margin-bottom: 12px;
    }

    .Service2 .Service2_content .Service2_content_list .content_list_left {
        width: calc(100% - 65px);
    }

    .Service2 .Service2_content .Service2_content_list .content_list_left .list_left_dd {
        font-size: 16px;
    }

    .Service2 .Service2_content .Service2_content_list .content_list_left .list_left_dt {
        font-size: 14px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .Service2 .Service2_content {
        margin-bottom: 33px;
    }

    .Service4 .Service_content {
        padding-top: 30px;
    }

    .Service4 .Service_content .Service4_title {
        font-size: 20px;
    }

    .Service4 .Service_content .Service4_form .Service4_form_rido {
        display: block;
        padding: 0px;
    }

    .Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right {
        width: 100%;
        margin-top: 15px;
        flex-wrap: wrap;
    }

    .Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li {
        margin-right: 20px;
    }

    .Service4 .Service_content .Service4_form .Service4_form_rido .form_rido_right .rido_right_li .right_li_btn {
        font-size: 14px;
    }

    .Service3 .Service_content {
        padding: 30px 0px;
    }

    .Service3 .Service_content .Service3_top {
        display: block;
    }

    .Service3 .Service_content .Service3_top .Service3_top_left {
        margin-bottom: 15px;
    }

    .Service3 .Service_content .Service3_top .Service3_top_left,
    .Service3 .Service_content .Service3_top .Service3_top_right {
        width: 100%;
    }


    .Product {
        padding: 35px 0px;
    }

    .Product .Product_list {
        display: block;
    }

    .Product .Product_list .Product_list_moimg {
        display: block;
    }

    .Product .Product_list .Product_list_pcimg {
        display: none;
    }

    .Product .Product_list .Product_list_txt {
        position: relative;
        width: 100%;
        right: 0;
        padding: 25px;
    }

    .Product .Product_list .Product_list_txt .list_txt_bottom a {
        width: 100%;
    }

    .Product .Product_list:nth-child(2n) .Product_list_txt {
        left: 0;
    }

    .Product .Product_list:nth-child(2n) .Product_list_txt .list_txt_bottom a:nth-child(2n),
    .Product .Product_list:nth-child(2n) .Product_list_txt .list_txt_bottom a {
        width: 100%;
    }

    .Product .Product_list:last-child .Product_list_txt {
        width: 100%;
    }

    .Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a,
    .Product .Product_list:nth-child(3) .Product_list_txt .list_txt_bottom a:nth-child(2n) {
        width: 100%;
    }

    .Product .Product_list .Product_list_txt .list_txt_more {
        margin-top: 15px;
    }


    .DJoin {
        padding: 35px 0px;
    }

    .DJoin .DJoin_top {
        display: block;
        text-align: center;
    }

    .DJoin .DJoin_top .DJoin_top_right {
        margin-top: 10px;
        justify-content: center;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list {
        width: 100%;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dt {
        font-size: 12px;
    }

    .DJoin .DJoin_bottom .DJoin_bottom_list .bottom_list_title .list_title_left .title_left_dt span {
        margin: 0px 5px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content {
        width: 92%;
        padding: 22px;
        padding-top: 40px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_down p {
        font-size: 14px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_title .content_title_dd {
        font-size: 16px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_title .content_title_dt,
    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_txt {
        font-size: 14px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_txt {
        flex-wrap: wrap;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_txt span {
        margin: 0px 5px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_more {
        width: 130px;
        height: 32px;
        font-size: 12px;
        margin-top: 20px;
    }

    .JoinDown .JoinDown_bg .JoinDown_content .JoinDown_content_down {
        height: 200px;
        overflow: auto;
    }





    .Product2 {
        padding: 35px 0px;
    }

    .Product2 .pc_all_content {
        justify-content: space-between;
    }

    .Product2 .Product2_list {
        width: 100%;
        margin-right: 0px;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .Product2 .Product2_list .Product2_list_txt {
        padding: 22px;
    }

    .Product2 .Product2_list .Product2_list_img img {
        height: 245px;
        object-fit: cover;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_title {
        height: auto;
        font-size: 18px;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_content a {
        width: 48%;
        margin-bottom: 10px;
    }

    .Product2 .Product2_list .Product2_list_txt .list_txt_content .txt_content_t {
        max-width: 100%;
    }



    .Product3 {
        padding: 35px 0px;
    }

    .Product3 span {
        font-size: 14px;
        line-height: 26px;
        padding: 0px;
    }

    .Product3 span:before,
    .Product3 span:after {
        display: none;
    }


    .Product3_one {
        padding: 35px 0px;
    }

    .Product3_one .pc_all_content {
        display: block;
    }

    .Product3_one .pc_all_content .Product3_one_list {
        width: 100%;
        margin-bottom: 25px;
    }

    .Product3_one .pc_all_content .Product3_one_list:last-child {
        margin-bottom: 0px;
    }

    .Product3_one:before {
        display: none;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_title {
        margin-bottom: 20px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_title .list_title_dd,
    .Product3_two .Product3_two_title .two_title_dd,
    .Product3_reservation .Product3_reservation_txt .reservation_txt_title .txt_title_dd {
        font-size: 14px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_title .list_title_dt,
    .Product3_two .Product3_two_title .two_title_dt,
    .Product3_reservation .Product3_reservation_txt .reservation_txt_title .txt_title_dt {
        font-size: 20px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_txt {
        font-size: 14px;
        line-height: 26px;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_bottom .list_bottom_li {
        width: 100%;
    }

    .Product3_one .pc_all_content .Product3_one_list .one_list_bottom .list_bottom_li:last-child {
        margin-top: 25px;
    }


    .Product3_two {
        padding: 35px 0px;
    }

    .Product3_two .Product3_two_content {
        margin-top: 25px;
        display: block;
    }

    .Product3_two .Product3_two_content .two_content_list {
        width: 100%;
        padding: 25px;
        border-radius: 5px;
    }

    .Product3_two .Product3_two_content .two_content_list:nth-child(1) {
        margin-bottom: 20px;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_dd {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_dd img {
        height: 33px;
        margin-right: 8px;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_dt {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 20px;
        height: auto;
    }

    .Product3_two .Product3_two_content .two_content_list .content_list_more {
        width: 132px;
        height: 36px;
        font-size: 13px;
    }



    .Product3_scenario .Product3_scenario_content {
        margin-top: 25px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list {
        width: 100%;
        margin-right: 0px;
        padding: 20px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd {
        font-size: 18px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd img {
        height: 33px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dd span {
        margin-right: 8px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_dt {
        font-size: 16px;
        margin: 13px 0px;
    }

    .Product3_scenario .Product3_scenario_content .scenario_content_list .content_list_p {
        font-size: 14px;
    }


    .Product3_Process .Product3_Process_content {
        margin-top: 25px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top {
        padding: 0px 22px;
        height: 55px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd {
        font-size: 16px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dd span {
        font-size: 22px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_top .list_top_dt span {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_down {
        padding: 16px 22px;
        font-size: 14px;
    }

    .Product3_Process .Product3_Process_content .Process_content_list .content_list_down:before {
        width: calc(100% - 22px * 2);
    }



    .Product3_reservation {
        padding: 35px 0px;
    }

    .Product3_reservation .pc_all_content {
        display: block;
    }

    .Product3_reservation .Product3_reservation_img,
    .Product3_reservation .Product3_reservation_txt {
        width: 100%;
    }

    .Product3_reservation .Product3_reservation_txt {
        padding: 20px;
    }

    .Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list:nth-child(1),
    .Product3_reservation .Product3_reservation_txt .reservation_txt_form .txt_form_list:nth-child(2) {
        width: 100%;
    }




    .DProduct .DPage {
        margin: 25px 0px;
    }

    .DProduct {
        margin-bottom: 0px;
    }

    .DProduct .DProduct_content {
        display: block;
    }

    .DProduct .DProduct_content .DProduct_content_left,
    .DProduct .DProduct_content .DProduct_content_right {
        width: 100%;
    }

    .DProduct .DProduct_content .DProduct_content_right {
        margin-top: 25px;
    }

    .DProduct .DProduct_content .DProduct_content_left {
        padding: 25px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top {
        padding-right: 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dd,
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_title {
        padding-bottom: 14px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt {
        flex-wrap: wrap;
        padding-right: 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom .list_txt_li {
        width: 100%;
        position: relative;
        font-size: 14px;
        margin-right: 0px;
        padding-left: 35px;
        margin-bottom: 15px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_bottom .list_txt_li span {
        position: absolute;
        left: 0%;
        width: 22px;
        height: 22px;
        font-size: 12px;
        font-weight: normal;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list {
        margin-bottom: 20px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 {
        padding: 30px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li {
        width: 100%;
        margin-bottom: 20px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li:nth-child(1),
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li:nth-child(2) {
        margin-bottom: 30px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li .txt2_li_dd {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt2 .list_txt2_li .txt2_li_dt {
        font-size: 14px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 {
        padding: 0px;
        margin-top: 30px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_top .li_top_dd {
        font-size: 14px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_top .li_top_dt {
        font-size: 12px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li .txt3_li_bottom {
        font-size: 12px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 {
        padding-right: 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 {
        overflow: auto;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt4 table {
        width: 1100px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 {
        padding-right: 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt5 .list_txt5_li .txt5_li_dt {
        font-size: 14px;
        margin-top: 15px;
    }


    .Product3_reservation .Product3_reservation_img img {
        height: auto;
    }



    .Contact .Contact_content .Contact_content_list {
        width: 100%;
        margin-bottom: 20px;
    }

    .Contact .Contact_content .Contact_content_list:last-child {
        margin-bottom: 0px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_top {
        margin-bottom: 35px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dd {
        font-size: 20px;
    }

    .Contact .Contact_content .Contact_content_list .content_list_top .list_top_left .top_left_dt {
        font-size: 16px;
    }

    .Contact .DJoin_top .DJoin_top_left .top_left_p {
        font-size: 14px;
    }


    .message {
        display: block;
        margin-bottom: 0px;
    }

    .message:before {
        display: none;
    }

    .message .message_left,
    .message .message_form {
        width: 100%;
    }

    .message .message_form {
        padding: 30px;
    }

    .message .message_form .message_form_title {
        font-size: 18px;
    }

    .message .message_form .message_form_content .form_content_list {
        width: 100%;
    }

    .message .message_form .message_form_content .form_content_list .content_list_left {
        font-size: 14px;
    }

    .message .message_form .message_form_content .form_content_submit input {
        height: 36px;
        font-size: 14px;
    }



    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top .txt_top_dt {
        font-size: 14px;
        line-height: 24px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt .list_txt_top .txt_top_dd {
        font-size: 16px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_con .txt6_con_li {
        width: 100%;
        margin-right: 0px;
        height: auto;
        padding: 20px 0px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 p {
        font-size: 14px;
        line-height: 24px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 {
        display: block;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left,
    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_right {
        width: 100%;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt7 .list_txt7_left {
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 24px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt6 .list_txt6_bottom .txt6_bottom_li {
        width: 100%;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt {
        display: block;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_l,
    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_r {
        width: 100%;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_l p {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_top .left_top_dt .top_dt_r {
        text-align: center;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3 .list_txt3_li {
        margin-bottom: 25px;
        width: 49%;
    }

    .DProduct .DProduct_content .DProduct_content_left .content_left_content .left_content_list .content_list_txt3:before {
        display: none;
    }


}


@media screen and (max-width:950px) {
    .pc_index .pc_header {
        position: fixed;
        padding: 0px;
    }

    .AboutBanner {
        margin-top: 50px;
    }

    .pc_index .banner {
        margin-top: 51px;
    }

    .pc_header .pc_header_content .header_content_logo {
        line-height: 50px;
    }
}



@media screen and (max-width:768px) {}


@media screen and (max-width:600px) {

    .banner,
    .banner .banner_list .banner_list_img,
    .banner .banner_list {
        height: 430px !important;
    }

    .DetailsBanner .DetailsBanner_img img {
        height: 230px;
    }



    .layui-laypage {}

    .layui-laypage-limits,
    .layui-laypage-skip,
    .layui-laypage-count {
        display: none;
    }

    .layui-laypage a,
    .layui-laypage-curr,
    .layui-laypage-disabled {
        font-size: 13px;
        padding: 0px 10px;
        line-height: 30px;
        margin: 0px 5px;
    }



}


@media screen and (max-width:375px) {}

@media screen and (max-width:360px) {}


@media screen and (max-width:320px) {}