@import url("normalize.css");
html {
	font-family: Microsoft YaHei;
}
body {
	font-family: Microsoft YaHei;
}

.blank-img { width: 100%; }
.bg-img,
.cover-img {
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/*常用颜色 */
*.white { color: #fff; }


/*内容模块*/
.main-container {
  width: 1200px;
  margin: auto;
}
.main-body { padding: 50px 0 80px; }


/*内页通栏图片 */
.adv-warp {
  height: 100px;
  background: #000;
}

/*侧栏目模块 */
.aside-module {
  margin-bottom: 40px;
}

/*分页 */
.page-theme-1 .page_pagination {
  padding: 40px 0;
  text-align: center;
}
.page-theme-1 .page_pagination a,
.page-theme-1 .page_pagination span {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  border: 1px solid #f7f7f7;
  padding: 0 15px;
  height: 40px;
  margin: 0 5px;
  line-height: 40px;

  -webkitr-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -ms-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}
.page-theme-1 .page_pagination a:hover { color: #fff; }
.page-theme-1 .page_pagination span.next,
.page-theme-1 .page_pagination span.prev { opacity: .5; }

/*详细页面文章*/
.article-content {
  font-size: 14px;
  line-height: 30px;
}
.article-content p { margin-bottom: 15px; }
.article-content img { max-width: 100%; }


/*移动端通用样式*/
.flex-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-box;
  display: -o-box;
  display: box;
}
.horBtn > *, .horSpacing > * {
  margin: 0 5px;
}
.horBtn > *:first-child, .horSpacing > *:first-child {
  margin: 0 5px 0 0;
}
.horBtn > *:last-child, .horSpacing > *:last-child {
  margin: 0 0 0 5px;
}
.hor {
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-box-orient: horizontal;
  -o-box-orient: horizontal;
  box-orient: horizontal;
  word-break: break-all;
}
.hor .f1, .hor .f2, .hor .f3, .hor .f4, .hor .f5, .hor .f6, .hor .f7 {
  width: 1%;
  position: relative;
}
.ver {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  -o-box-orient: vertical;
  box-orient: vertical;
  word-break: break-all;
}
.ver .f1, .ver .f2, .ver .f3, .ver .f4, .ver .f5, .ver .f6, .ver .f7 {
  height: 1%;
  position: relative;
}
.f1 {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
}
.f2 {
  -webkit-box-flex: 2;
  -moz-box-flex: 2;
  -ms-box-flex: 2;
  -o-box-flex: 2;
  box-flex: 2;
}
.f3 {
  -webkit-box-flex: 3;
  -moz-box-flex: 3;
  -ms-box-flex: 3;
  -o-box-flex: 3;
  box-flex: 3;
}
.f4 {
  -webkit-box-flex: 4;
  -moz-box-flex: 4;
  -ms-box-flex: 4;
  -o-box-flex: 4;
  box-flex: 4;
}
.f5 {
  -webkit-box-flex: 5;
  -moz-box-flex: 5;
  -ms-box-flex: 5;
  -o-box-flex: 5;
  box-flex: 5;
}
.f6 {
  -webkit-box-flex: 6;
  -moz-box-flex: 6;
  -ms-box-flex: 6;
  -o-box-flex: 6;
  box-flex: 6;
}
.f7 {
  -webkit-box-flex: 7;
  -moz-box-flex: 7;
  -ms-box-flex: 7;
  -o-box-flex: 7;
  box-flex: 7;
}

/*--------------------------------------------------------------
移动端幻灯片
--------------------------------------------------------------*/
.banner-mobile-swiper img {
  width: 100%;
}



/*--------------------------------------------------------------
脚部浮动
--------------------------------------------------------------*/
#footer-pop {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2000;
  background: #fff;
}


















.jobsTable {
	margin: 20px 0;
	background: #E8E8E8;
	border-spacing: 1px;
  border-collapse: initial;
  font-size: 12px;
}
.jobsTable.m0 { margin: 0; }
.jobsTable td {
	width: 25%;
	padding: 10px;
	background: #fff;
}


#map label { max-width: initial; color: #000; }
#map img { max-width: initial; }

.spinner {
	display: none;
  width: 75px;
    margin: 8px 0 0 0;
  text-align: center;
}
.spinner > div {
  width: 15px;
  height: 15px;
  background-color:#037E7E;
 
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  animation: bouncedelay 1.4s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
 
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
 
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
 
@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}
 
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.pagenav {
  text-align:center;
  vertical-align: middle;
}

.pagenav a,
.pagenav span {
  color:#686868;
  display:inline-block;
  padding:0 15px;]
  height: 40px;
  line-height: 40px;
  font-weight:600;
  -webkit-transition:background 0.2s linear;
  -moz-transition:background 0.2s linear;
  -o-transition:background 0.2s linear;
  transition:background 0.2s linear;    
}

span.current {
  color:#fff;
  display:inline-block;
  background:#037E7E;
}

span.pages {
  display: inline-block;
    padding:9px 15px;
  font-weight:600;
}
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix { display: inline-block; }
* html .clearfix { height: 1%; }
.clearfix { display: block; }
.pr { position: relative; }
.codeImg {
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -15px;
}

@media (max-width:1200px){
  .main-container {
    width: 98%;
    overflow: hidden;
  }
}

@media (max-width:768px){
  .main-container {
    width: 100%;
  }
  .row { margin-left: 0; margin-right: 0; }
}
.mobile-module { display: none; }
@media (max-width:767px){
  .mobile-module { display: block; }
  .pc-module,
  .aside-module { display: none; }

}
