﻿@charset "utf-8";

* {
	box-sizing: border-box;
	outline: 0;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100%;
	font-size: 12px;
	font-family: "微软雅黑";
	color: #333;
	overflow-x: hidden;
	background: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
	margin: 0;
	padding: 0;
}

ol,
ul,
li {
	list-style: none;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var,
i {
	font-weight: normal;
	font-style: normal;
}

a {
	text-decoration: none;
	color: #333;
	display: inline-block;
	-webkit-transition-duration: .3s;
	-moz-transition-duration: .3s;
	-o-transition-duration: .3s;
	transition-duration: .3s;
}

img {
	border: 0;
	vertical-align: middle;
}

select,
input,
textarea {
	border: 0;
	font-family: "微软雅黑";
	outline: none;
	resize: none;
}

input::-webkit-input-placeholder {
	color: #999;
}

input::-moz-placeholder {
	color: #999;
}

input:-moz-placeholder {
	color: #999;
}

textarea::-webkit-input-placeholder {
	color: #999;
}

textarea::-moz-placeholder {
	color: #999;
}

textarea:-moz-placeholder {
	color: #999;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	font-size: 100%;
}

div,
dl,
dt,
dd,
ol,
ul,
li {
	zoom: 1;
}

caption,
th {
	text-align: left;
}

q:before,
q:after {
	content: '';
}

abbr,
acronym {
	border: 0;
}

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

a:hover {
	text-decoration: none;
}

input,
textarea {
	box-sizing: border-box;
}

input[type="text"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/*合并表格边框，设置边框距为零*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*清除浮动*/

/*clearfix写在浮动元素的上层*/

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

.clearfix {
	*zoom: 1;
}

/*文字对齐*/

.textL {
	text-align: left;
}

.textC {
	text-align: center;
}

.textR {
	text-align: right;
}

.fontWe {
	font-weight: 700;
}

/*强制换行   禁止换行*/

.break_word {
	word-wrap: break-word;
	word-break: break-all;
}

.keep_all {
	word-break: keep-all;
	white-space: nowrap;
}

/*超出省略号，仅限单行，并且需要设定一个宽度*/

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

.ellipsis_2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.ellipsis_3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.ellipsis_4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
}

.ellipsis_7 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 7;
	-webkit-box-orient: vertical;
}

/*me*/

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

.hide {
	display: none;
}
.pd60{
	padding-bottom: 60px;
}
.show {
	display: block;
}

.bg_fff {
	background: #fff;
}
.bg_f8{
    background: #f8f8f8;
}
.bg_fa{
    background: #fafafa;
}
fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}
.pl40{
    padding-left: 40px;
}
.pt14{
    padding-top: 14px;
}
.pad_lef38{
    padding-left: 38px;
}
.pad_rig38{
    padding-right: 38px;
}
.mr0{
    margin-right: 0 !important;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
/******* 状态 ******/

.fl {
	float: left;
}

.fr {
	float: right;
}

.pr {
	position: relative;
}

.pa {
	position: absolute;
}

.none {
	display: none;
}

.hidden {
	overflow: hidden;
}

.cont_flex {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.cont_flex_1 {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	flex: 1;
}

input {
	border: 0;
	/*-webkit-appearance: none;*/
}

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

}

textarea {
	-webkit-appearance: none;
	border: 0;
}

/* 鼠标划过图片样式 */

.defo_img img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}

.defo_img:hover img{
	transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
	-o-transform: scale(1.2);
	/* opacity: 0.6; */
}

/* 首页样式公共 start*/
/* 产品&服务 */
.i_one{
    background: url(../images/mt1_bg.png) no-repeat center;
    background-size: 100% 100%;
}
.i_item_tit{
    text-align: center;
    padding: 70px 0px 50px;
}
.mt_img{
    display: block;
    margin: 0 auto;
}
.mt_h3{
    font-size: 24px;
    color: #000000;
    margin-top:-14px;
    margin-bottom: 30px;
}
.mt_texp{
    font-size: 12px;
    color: #8f8f8f;
    padding: 0 20%;
}

.i_one_con>ul{
    margin-right: -20px;
}
.i_one_con>ul>li{
    float: left;
    margin-right: 20px;
    width: 285px;
    background-color: rgb( 255, 255, 255 );
    overflow: hidden;
}
.i_one_con>ul>li>a{
    display: block;
    width: 100%;
}
.io_img_w{
    width: 100%;
    height: 320px;
    overflow: hidden;
}
.io_img_w>img{
    width: 100%;
}
.io_tex_con{
    padding: 22px 10px;
    overflow: hidden;
}
.io_tex_con>p{
    font-size: 16px;
    color: #000000;
    text-align: center;
}
/* 产品应用 */
.i_two_con>ul>li{
    height: 210px;
    position: relative;
    margin-bottom: 20px;
}
.is_tex_con{
    width: 100%;
    padding: 16px 20px 14px;
    background-color: rgba( 62, 82, 93 ,0.6);
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    font-size: 14px;
    color: #ffffff;
}
.i_jt_img{
    margin-top:3px;
    display: none;
}
.i_two_con>ul>li:hover .is_tex_con{
    background-color: rgba( 28, 185, 158 ,0.859);
}
.i_two_con>ul>li:hover .i_jt_img{
    display: block;
}
.mts_img{
    display: block;
    width: 100%;
}
/* 新闻资讯 */
.i_thr{
    background: url(../images/mt3_bg.png) no-repeat center;
    background-size: 100% 100%;
}
.i_thr_con>ul>li{
    width: 386px;
}
.i_thr_con .itt_img_w{
    height: 240px;
}
.itt_tex_con{
    padding: 30px 25px 40px;
}
.itt_tit{
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}
.itt_spa{
    font-size: 12px;
    color: #999999;
    margin: 14px 0px 20px;
}
.itt_p{
    font-size:14px;
    color:#646464;
    line-height: 24px;
}
.k_details{
    margin-top: 24px;
}
.k_img{
    display: inline-block;
    width: 16px;
    height: 8px;
    background: url(../images/det_jt1.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 10px;
}
.i_thr_con>ul>li:hover .itt_tit,
.i_thr_con>ul>li:hover .k_det{
    color: #1cb99e;
}
.i_thr_con>ul>li:hover .k_img{
    background: url(../images/det_jt2.png) no-repeat;
    background-size: 100% 100%;
    margin-left: 15px;
}
/* 首页样式公共 end */
/* banner */
.banner_w{
    width: 100%;
    position: relative;
}
.banner_w>img{
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -960px;
    height: auto;
}
.banner-text-overlay {
	position: absolute;
	top: 35%;
    left: 25%;
    right: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
	/*padding-top: 114px;*/
	padding-left: 48px;
	font-size: 44px;
}
@media (max-width: 767px) {
    .banner-text-overlay {
        top: 40%;
        left: 40%;
        transform: translate(-50%, -50%);
        padding: 10px;
        font-size: 16px;
    }
}
.ban_text{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 1200px;
    color: rgb( 43, 64, 75 );
	padding-top: 114px;
	padding-left: 48px;
}
.ban_text>h1{
	font-size: 30px;
	margin-bottom:16px;
	letter-spacing: 5px;
}
.ban_text>p{
	font-size: 18px;
}

  
/* 产品应用 start */
.pro_side{
    width: 220px;
    margin-right: 40px;
    position: relative;
    z-index: 10;
}
.pro_side_hea{
    padding: 26px 0px;
    text-align: center;
    background: #1cb99e;
    margin-top:-62px;
    margin-bottom: 4px;    
}
.pro_s_tit{
    font-size: 22px;
    color: rgb( 255, 255, 255 );
	margin-bottom: 13px;
/*	text-transform: uppercase;*/
}
.pro_s_sub{
    font-size: 18px;
    color: rgb( 255, 255, 255 );
}
.pro_side_con>ul>li{
    width: 100%;
    height: 46px;
    background-color: rgb( 247, 247, 247 );
    margin-bottom: 4px;
}
.pro_side_con>ul>li.on{
    background: #1cb99e;
}
.pro_side_con>ul>li.on a{
    color: #ffffff;
}
.pro_side_con>ul>li>a{
    display: block;
    font-size: 14px;
    color: rgb( 51, 51, 51 );
    line-height: 46px;
    text-align: center;
}
.pro_cont{
    width: calc(100% - 220px - 40px);
    /* border: 1px solid red; */
}
.pro_cont_hea{
    padding: 35px 0px 15px;
    border-bottom: 1px solid rgb( 237, 237, 237 );
	position: relative;
	margin-bottom: 32px;
}
.pro_line{
    display: block;
    width: 71px;
    height: 2px;
    background-color: rgb( 28, 185, 158 );
    position: absolute;
    left: 0;
    bottom: -2px;
}
.pro_chea_lef{
    font-size: 18px;
    color: #444444;
    text-align: left;
}
.pro_chea_rig,
.pro_chea_rig span,
.pro_chea_rig i,
.pro_chea_rig a{
    display: inline-block;
    color: #999999;
    vertical-align: middle;
}
.pro_cont_cen{
    /* margin-top: 32px; */
}
/* 产品应用 end */

/* 分页 */
.page_w{
    width: 100%;
    margin: 54px auto 86px;
}
.page_con{
    text-align: center;
}
.page_con>a{
    display: inline-block;
    width: 38px;
    height: 39px;
    border-width: 1px;
    border-color: rgb( 219, 219, 219 );
    border-style: solid;
    border-radius: 3px;
    line-height: 39px;
    font-size: 14px;
	color: rgb( 136, 136, 136 );
	margin-right: 10px;
}
.page_con .pre,
.page_con .nex{
    width: 87px;
    border-width: 1px;
    border-color: rgb( 219, 219, 219 );
    border-style: solid;
}
.page_con>a:hover,
.page_con>a.on{
    background: #1cb99e;
    color: #fff;
    border: 1px solid #1cb99e;
    transition:all .4s;
	-moz-transition:all .4s;
	-webkit-transition:all .4s;
	-o-transition:all .4s;
}

/* 新闻 */
.new_cont_hea{
    padding: 24px 0px;
}
.new_cont_hea span, .new_cont_hea i, .new_cont_hea a{
    font-size: 14px;
    color: #777777;
}
.new_cont_hea .spa_col{
    color: #333333;
}

/* 服务中心 走进运宏 */

.sercon_ls_item{
    padding: 60px 0px;
    
}
.sercon_ls_item>div{
    width: 50%;
}
.ser_item_lef{
    height: 370px;
    overflow: hidden;
}
.ser_item_lef>img{
    width: 100%;
}
.ser_item_rig{
    padding-top: 20px;
}
.ser_con_tit{
    font-size: 26px;
    color: rgb( 9, 171, 143 );

}
.ser_con_tit>em{
    font-style: italic;
    font-weight: bold;
    margin-right: 8px;
}
.ser_con_tex{
    font-size: 12px;
    color: #666666;
    line-height: 20px;
    margin: 20px 0px 40px;
}
.ser_con_tex30{
    font-size: 12px;
    color: #666666;
    line-height: 20px;
    margin: 20px 0px 30px;
}


/*  */
