﻿@charset "utf-8";

* {
	box-sizing: border-box;
	outline: 0;
	padding: 0;
	margin: 0;
}

body {
	min-height: 100%;
	font-size: 12px;
	/* font-family: "Source Han Sans SC"; */
	font-family: "Microsoft SimHei" !important;
	color: #333;
	overflow-x: hidden;
	background: #ffffff;
}
@font-face {
	font-family: 'Microsoft SimHei'!important;
	src: url('../font/SimHei.eot');
	src: url('../font/SimHei.eot?#iefix') format('embedded-opentype'),
			 url('../font/SimHei.woff') format('woff'),
			 url('../font/SimHei.ttf')  format('truetype'),
			 url('../font/SimHei.svg#LiSu') format('svg');
}
/*@font-face {*/
/*	font-family: 'Microsoft SimHei'!important;*/
/*	src: url('../font/SourceHanSansSC-Light.eot'); */
/*	src: url('../font/SourceHanSansSC-Light.eot?#iefix') format('embedded-opentype'),*/
/*			 url('../font/SourceHanSansSC-Light.woff') format('woff'), */
/*			 url('../font/SourceHanSansSC-Light.ttf')  format('truetype'), */
/*			 url('../font/SourceHanSansSC-Light.svg#LiSu') format('svg');*/
/*}*/
/*@font-face {*/
/*	font-family: 'Microsoft SimHei'!important;*/
/*	src: url('../font/SourceHanSansSC-Normal.eot'); */
/*	src: url('../font/SourceHanSansSC-Normal.eot?#iefix') format('embedded-opentype'),*/
/*			 url('../font/SourceHanSansSC-Normal.woff') format('woff'), */
/*			 url('../font/SourceHanSansSC-Normal.ttf')  format('truetype'), */
/*			 url('../font/SourceHanSansSC-Normal.svg#LiSu') format('svg');*/
/*}*/
/*@font-face {*/
/*	font-family: 'Microsoft SimHei'!important;*/
/*	src: url('../font/SourceHanSansTC-Bold.eot'); */
/*	src: url('../font/SourceHanSansTC-Bold.eot?#iefix') format('embedded-opentype'),*/
/*			 url('../font/SourceHanSansTC-Bold.woff') format('woff'), */
/*			 url('../font/SourceHanSansTC-Bold.ttf')  format('truetype'), */
/*			 url('../font/SourceHanSansTC-Bold.svg#LiSu') format('svg');*/
/*}*/
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;
	max-width: 100%;
	vertical-align: middle;
}

select,
input,
textarea {
	border: 0;
	font-family: "Microsoft SimHei";
	outline: none;
	resize: none;
	box-shadow: none;
}

select {
	background: #FFF;
}

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;
}

.maxwh {
width:100%;
}
/*清除浮动*/

/*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;
}

/*me*/

.wrap {
	width: 1440px;
	margin: 0 auto;
}
.wraps{
	width: 1200px;
	margin: 0 auto;
}
.hide {
	display: none;
}

.show {
	display: block;
}

.bg_fff {
	background: #fff;
}

fieldset {
	padding: 0;
	margin: 0;
	border: 0;
}

/******* 状态 ******/

.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[type="button"],
input[type="submit"],
input[type="reset"] {
	-webkit-appearance: none;
}

textarea {
	-webkit-appearance: none;
}

/* 鼠标划过图片样式 */

.trans_img img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}

/* .trans_img img:hover {
	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.8;
} */

.trans_img2 img {
	transition: all 1s;
	-ms-transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-o-transition: all 1s;
	cursor: pointer;
}

.trans_img2 img:hover {
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	-moz-transform: scale(1.05);
	-webkit-transform: scale(1.05);
	-o-transform: scale(1.05);
}
/* 居中 */
.abs-c {
    position: absolute;
    width: 1200px;
    top: 20%;
    left: 20%;
    transform: translate(-20%, -20%);
    display: table;
}
/* 间距 背景 */
.bg-007{
	background-color: #0079c0;
}
.bg-f4{
	background-color: #f4f4f4;
}
.mt20{
	margin-top: 20px;
}
.mt30{
	margin-top: 30px;
}
.mt40{
	margin-top: 40px;
}
.mt60{
	margin-top: 60px;
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}
.mb25{
	margin-bottom: 25px;
}
.mb30{
	margin-bottom: 30px;
}
.mb40{
	margin-bottom: 40px;
}
.mt80{
	margin-top: 80px;
}
.ptb50{
	padding-top: 50px;
	padding-bottom: 50px;
}
.ptb30{
	padding-top: 30px;
	padding-bottom: 30px;
}
.ptb60{
	padding-top: 60px;
	padding-bottom: 60px;
}
.bor-bbs{
	position: relative;
}
.bor-bbs::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 4px;
	background-color: #fff;
}
/* 原点 */
.pros-cls>li>a::before,
.ult-cont>p::before,
.inn-tit::before{
	content: "";
	width: 6px;
	height: 6px;
	background-color: rgb( 77, 77, 79 );
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	margin: auto;
	
}

/* 更多 */
.more-ck{
	display: inline-block;
	border-width: 1px;
	border-color: rgb( 255, 255, 255 );
	border-style: solid;
	height: 50px;
	width: 186px;
	/* padding: 0 60px; */
	line-height: 50px;
	color: #fff;
	font-size: 16px;
	text-align: center;
}
.mobox>a.on,
.mobox>a:hover{
	color: #fff;
	font-size: 16px;
	background:  #0079c0 url(../images/ck.png) no-repeat right 60px center;
	background-size: 8px auto;
}
.mobox>a{
	display: inline-block;
	padding: 0 77px 0 60px;
	border-color: #0079c0;
	color: #0079c0;
	background:  transparent url(../images/ck2.png) no-repeat right 60px center;
	background-size: 8px auto;
	min-width: 186px;
	width: auto;
}
/* banner */
.banner{
	position: relative;
}
.ban-h1{
	font-size: 48px;
	color: #ffffff;
	font-weight: bold;
	font-family: "Microsoft SimHei";
        padding-left:250px;
}

.ban-sub{
	font-size: 24px; 
	color: #ffffff;
	text-transform: capitalize;
	 font-family: "Microsoft SimHei";
}

/* 标题 */
.acm-ttp{
	text-align: center;
}
.indx-tit {
	font-size: 36px;
	color: #333333;
}
.indx-sub{
	font-size: 18px;
	color: #333333;
	line-height: 36px;
}

/* 弹窗 */
.tan-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	filter: progid:DXImageTransform.Microsoft.gradient(startcolorstr=#5f000000, endcolorstr=#5f000000);
	z-index: 20;
}
/* 分页 */
.page{
	text-align: center;
	font-size: 0;
}
.page>a{
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
    color: #242424;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 38px;
    border-width: 1px;
    border-color: #dfdede;
    border-style: solid;
    background-color: rgb( 255, 255, 255 );
    margin-right: 18px;
}
.page .prev,
.page .next{
	width: 98px;
}
.page>a:hover,
.page>a.on{
	background: #0079c0;
	color: #fff;
	border: 1px solid #0079c0;
	cursor: pointer;
}
.page .prev{
	background: url(../images/prv.png) no-repeat left 20px center;
	padding: 0px 23px 0px 40px;
	width: auto;
}
.page .next{
	background: url(../images/nex.png) no-repeat right 20px center;
	padding: 0px 40px 0px 23px;
	width: auto;
}
.banner>a,
.banner>a>img{
	display: block;
	width: 100%;
}
.font-weight{
	font-weight:bolder !important;
}







