/*通用CSS属性*/
body {
  font-family: "微软雅黑";
}

.center {
  margin: 0 auto;
  width: 1200px;
}

/*内容居中*/
.fl {
  float: left
}

/*左浮动*/
.fr {
  float: right
}

/*右浮动*/
.hide {
  display: none
}

/*隐藏属性*/
.out {
  overflow: hidden
}

/*超出隐藏*/
.clearfix {
  zoom: 1;
}

.clearfix::after {
  content: '';
  height: 0px;
  display: block;
  overflow: hidden;
  clear: both;
}

/*清除浮动*/
input {
  outline: none;
}

/*取出点击边框*/
input:focus {
  outline: none;
}

/*点击无边框*/
button:focus {
  outline: none;
}

/*点击无边框*/
/*修改边框里面字体颜色*/
input::-webkit-input-placeholder {
  color: #333333;
}

input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #333333;
}

input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #333333;
}

input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #333333;
}

/*a:hover{color: #0267b5;}!*设置鼠标滑过的颜色*!*/
a,
p,
span {
  font-size: 16px;
  color: #333333
}


/*<!--特色服务专区-->*/
.content_1 {
  height: 220px;
  background: url("bg_1.png") no-repeat center;
}

.content_1_2 {
  padding-top: 64px;
}

.content_1_2 p {
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 25px;
}

.content_1_2 span {
  color: #ffffff;
  font-size: 16px;
}

/* 主体标题 */
.content_2 {
    padding: 30px 0 0 0;
}
.center {
    margin: 0 auto;
    width: 1200px;
}
.content_2_1{
	border-bottom: 4px solid #0d1c28;
	line-height: 60px;
}
.content_2_2_title{
	font-size: 24px;
}
/* 主体list */
.portal-mod-bd{
	width: 1230px;
	margin: 0px auto;
	padding: 30px 0px;
	overflow: hidden;
	margin-left: -15px;
	margin-right: -15px;
}

.g-row {
    
	float: left;
	width: 25%;
	font-size: 15px;
	margin-bottom: 30px;
		
}
.g-col{
	margin-left: 15px;
	margin-right: 15px;
}
/* .g-row:nth-child(4n){
	margin-right: 0px;
} */
.c-gallery-item {
    position: relative;
    display: block;
    background-color: #fff;
    transition: all .3s ease;
	box-shadow: 0 0 1.5rem rgba(9,41,77,.12);
    
}
.c-gallery-info {
    display: block;
    height: 140px;
    padding: 30px;
    text-align: center;
}
.c-gallery-title {
    font-weight: bolder;
    display: block;
    color: #0d1c28;
    font-size: 18px;
    margin-bottom: 10px;
}
.c-gallery-desc {
    display: block;
    color: #727475;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 42px;
}
.c-gallery-item:hover {
    color: #fff;
    background-color: #4293f4;
    transform: translate3d(0,-.3rem,0);
    box-shadow: 0 0.25rem 1.25rem rgba(62,151,223,.3);
}
.c-gallery-item:hover .c-gallery-desc, .c-gallery-item:hover .c-gallery-title {
    color: #fff;
}
.c-gallery-cover img{
	width: 100%;
	height: 139px;
}