﻿@charset "utf-8";

* {
	box-sizing: border-box;
	outline: 0;
	padding: 0;
	margin: 0;
}
#newBridge #nb_toolbar_wrap {
	display: none !important;
}
body {
	min-height: 100%;
	font-size: 12px;
	font-family: "微软雅黑";
	color: #333;
	overflow-x: auto;
	background: #ffffff;
}
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;
}
video {
    	border: 0;
	max-width: 100%;
    width:100%;
    height:500px;
	vertical-align: middle;
}
.five_video {
    position: absolute;
    top: 0;
    left: 25%;
    bottom: 0;
    margin: auto;
    width: 80px;
    height: 80px;
}

.five_video_con {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: none;
    background: #000000;
}
select,
input,
textarea {
	border: 0;
	font-family: "Arial";
	outline: none;
	resize: none;
	box-shadow: none;
}

select {
	background: #FFF;
}

input::-webkit-input-placeholder {
	color: rgb( 160, 169, 186 );
}

input::-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

input:-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea::-webkit-input-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea::-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

textarea:-moz-placeholder {
	color: rgb( 160, 169, 186 );
}

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: 1200px;
	margin: 0 auto;
}
.hide {
	display: none;
}

.show {
	display: block;
}

.bg-fff {
	background-color: #fff;
}
.bg-f3{
	background-color: #f3f3f3;
}

.ul-w3>li{
	width: calc(100% / 3);
	width: -webkit-calc(100% / 3);
	width: -moz-calc(100% / 3);
	float: left;
}
/* 标题 */
.abo-top{
	padding: 60px 0px;
}
.abo-tit{
	font-size: 30px;
	color: rgb( 51, 51, 51 );
	text-align: center;
}
/******* 状态 ******/

.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);
}


/* 东信 */

/* tab */
.gs-tab{
	border-bottom: 1px solid #e5e5e5;
	background-color: #fff;
}
.gs-tabul{
	text-align: center;
}
.gs-tabul>li{
	display: inline-block;
	vertical-align: middle;
	padding: 30px 0px;
	position: relative;
	margin-right: 80px;
}
.gs-tabul>li:last-child{
	margin-right: 0;
}
.gs-tabul>li>a{
	font-size: 18px;
	color: #333333;
	
}
.gs-tabul>li::after{
	content: "";
	width: 0px;
	height: 2px;
	background-color: #0064a9;
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	margin: auto;
	transition: all .6s;
}
.gs-tabul>li.on>a{
	color: #0064a9;
}
/* .gs-tabul>li:hover::after, */
.gs-tabul>li.on::after{
	display: block;
	width: 100%;
	transition: all .6s;
}

/* 新闻动态 */
.ind-newcen>ul>li{
	float: left;
	margin-right: 10px;
	width: 292px;
	overflow: hidden;
	background-color: rgb( 243, 243, 243 );
}
.ind-newcen>ul>li>a{
	display: block;
}
.ind-newcen>ul>li:nth-child(4n){
	margin-right: 0;
}
.inewimg{
	width: 100%;
	height: 200px;
	overflow: hidden;
}
.inew-txtbox{
	padding: 20px 20px 30px;
}
.inew-time{
	font-size: 14px;
	color: rgba( 0, 0, 0, 0.502 );
	margin-bottom: 10px;
}
.inew-tit{
	font-size: 16px;
	color: rgb( 0, 100, 169 );
	text-align: left;
	line-height: 26px;
	margin-bottom: 10px;
	height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.inew-sub{
	font-size: 14px;
	color: rgb( 102, 102, 102 );
	line-height: 26px;
	margin-bottom: 20px;
	height: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.inew-icon{
	width: 30px;
	height: 13px;
	background: url(../images/jt3.png) no-repeat center;
	background-size: 100% 100%;
	margin-bottom: 4px;
	transition: all .6s;
}
.ind-newcen>ul>li:hover .inew-icon{
	width: 46px;
	height: 13px;
	background: url(../images/jt3s.png) no-repeat center;
	background-size: 100% 100%;
}
.ind-newcen>ul>li:hover .inewimg>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.8; */
}

/* 分页 */
.page-num{
	font-size: 16px;
	color: #333333;
	line-height: 37px;
}
.pnum{
	display: inline-block;
	vertical-align: middle;
	background-color: rgb( 255, 255, 255 );
	min-width: 100px;
	height: 38px;
	font-size: 16px;
	color: rgb( 0, 100, 169 );
	line-height: 38px;
	padding: 0 24px 0 14px;
	margin-left: 14px;
	margin-right: 14px;
	position: relative;
}
.pnum::after{
	content: "";
	width: 12px;
	height: 7px;
	background: url(../images/xl3.png) no-repeat center;
	background-size: 100% 100%;
	position: absolute;
	right: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.page-box>a{
	display: inline-block;
	vertical-align: middle;
	min-width: 38px;
	height: 44px;
	border-radius: 2px;
	background-color: rgb( 255, 255, 255 );
	text-align: center;
	line-height: 44px;
	font-size: 14px;
	color: rgb( 102, 102, 102 );
	padding: 0 10px;
}
.page-box>a>img{
	max-width: 14px;
	max-height: 100%;
}
.page-box>a:hover,
.page-box>a.on{
	 background-color: rgb( 0, 100, 169 );
	 color: #fff;
}

/* 查看更多 */
.ban-more{
	border-width: 1px;
	border-color: rgb( 255, 255, 255 );
	border-style: solid;
	width: 159px;
	height: 45px;
	font-size: 14px;
	color: rgb( 255, 255, 255 );
	line-height: 43px;
	text-align: center;
}
.ban-more>span,
.ban-more>i{
	display: inline-block;
	vertical-align: middle;
    color: rgb( 0, 100, 169 );
}
.ban-more>i{
	width: 7px;
	height: 12px;
	background: url(../images/jt2.png) no-repeat center;
	background-size: 100% 100%;
	margin-left: 8px;
}
.ban-more:hover{
	opacity: 0.6;
	border-radius: 5px;
}

.ban-more.on{
	border-color: #dadada;
	color: #7b7b7b;
}
.ban-more.on>i{
	background: url(../images/jt2s.png) no-repeat center;
	background-size: 100% 100%;
}

    .ban-more.on.bg>i{
	background: url(../images/rightbg.png) no-repeat center;
	background-size: 100% 100%;
}
.page-box_ff {
display: flex;
}
.page-box > a {
    vertical-align: middle;
    min-width: 38px;
    height: 44px;
    border-radius: 2px;
    background-color: rgb( 255, 255, 255 );
    text-align: center;
    line-height: 44px;
    font-size: 14px;
    color: rgb( 102, 102, 102 );
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}





