html,body{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none !important;
  background-color: #f6f6f6;
}
ul,
li{
  padding: 0;
  list-style: none !important;
}
@font-face {
  font-family: '阿里巴巴';
	src:url('./font/webfont.eot');
	src:local('☺'),
		url('./font/webfont.eot?#iefix') format('embedded-opentype'),
		url('./font/webfont.woff') format('woff'),
		url('./font/webfont.ttf') format('truetype'),
		url('./font/webfont.svg#webfontOTINA1xY') format('svg');
		font-weight:normal;
		font-style:normal;
}
@font-face {
  font-family: '思源黑体';
	src:url('./font/webfont.eot');
	src:local('☺'),
		url('./font/webfont.eot?#iefix') format('embedded-opentype'),
		url('./font/webfont.woff') format('woff'),
		url('./font/webfont.ttf') format('truetype'),
		url('./font/webfont.svg#webfontOTINA1xY') format('svg');
		font-weight:normal;
		font-style:normal;
}
/* header */
.header{
  width: 100%;
  min-width: 930px;
  height: 78px;
  background-color: #ffffff;
}
.header-common{
  max-width: 1180px;
  min-width: 930px;
  height: 78px;
  margin: 0 auto;
  position: relative;
  border-top: 1px solid #ffffff;
}
/* 左侧logo */
.header-images{
  display: inline-block;
  width: 190px;
  height: 39px;
  margin: 0;
  margin-top: 20px;
}
/* 右侧list */
.header-ul{
  position: absolute;
  width: 730px;
  height: 78px;
  line-height: 78px;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}
.header-ul li{
  margin-left: auto;
  margin-right: 0px;
  float: left;
  list-style: none;
  position: relative;
}
.header-ul li:hover {
  color: #096DD9;
  -webkit-transition: all .5s cubic-bezier(0, 0, 0, 0.48);
  -moz-transition: all .5s ease;
  transition: all .5s ease;
}
.header-ul li:hover .header_li_div {
  display: block;
  -webkit-animation-name: fadeIn; /*动画名称*/
  -webkit-animation-duration: 0.5s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
.header_ul_li_a,
.header_ul_li_div_a,
.header_ul_li_div_aa{
  padding: 0 20px;
  font-family: '思源黑体';
  color: #999999;
  font-size: 16px;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  white-space: nowrap;
  text-align: center;					
}
.comul_p{
  height: 50px;
}
.header_ul_li_a:hover,
.header_ul_li_div_a:hover,
.header_ul_li_div_aa:hover{
  color: #1890FF;
  font-weight: bold;
}
.bgcolor{
  color: #333333 !important;
  font-weight: bold;
}
.header_li_div{
  display: none;
  position: absolute;
  top: 77px;
  z-index: 10;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
.header_li_div a{
  display: block;
  height: 51px !important;
  line-height: 51px !important;
  position: relative;
}
.header_li_div_vivw:hover .header_li_div_item {
  display: block !important;
  -webkit-animation-name: fadeIn; /*动画名称*/
  -webkit-animation-duration: 0.5s; /*动画持续时间*/
  -webkit-animation-iteration-count: 1; /*动画次数*/
  -webkit-animation-delay: 0s; /*延迟时间*/
}
.header_li_div_item{
  display: none;
  position: absolute;
  left: 136px;
  top: 0;
  background: #FFFFFF;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}
/* 分页 */
#pagezise{
  margin: 0;
  padding: 0;
  vertical-align: bottom;
}
.nav_list_common_page{
  margin-top: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
#pagezise li,
#pagezise li a{
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #FFFFFF;
  margin-right: 5px;
  border-radius: 20px;
  cursor: pointer;
  text-decoration: none;
  color: #1F1F1F;
  border: 1px solid #EEEEEE;
}
.nav_list_common_page_size{
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 51px;
  background: #FFFFFF;
  border-radius: 18px;
  cursor: pointer;
  padding: 0 !important;
  vertical-align: middle;
  border: 1px solid #EEEEEE;
}
.nav_list_common_page img{
  width: 36px;
  margin-top: 2px;
}
.bgcolors{
  color: white !important;
  background-color: #4EC0CC !important;
}
/* 滚动条 */
body::-webkit-scrollbar {
  /*滚动条整体样式*/
  width : 8px;  /*宽度竖滚动条的尺寸*/
  height: 10px; /*高度横滚动条的尺寸*/
}
body::-webkit-scrollbar-thumb {
  /*滚动条里面的条*/
  border-radius: 5px;
  background-color: #cccccc;
}
body::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 5px;
  background: #ffffff;
}
@-webkit-keyframes fadeIn {
  0% {
      opacity: 0; /*初始状态 透明度为0*/
      filter: alpha(opacity=0); /* IE */
  }
  20% {
      opacity: .2;
      filter: alpha(opacity=20); /* IE */
  }
  50% {
      opacity: .5; /*中间状态 透明度为0.5*/
      filter: alpha(opacity=50); /* IE */
  }
  70% {
      opacity: .7;
      filter: alpha(opacity=70); /* IE */
  }
  100% {
      opacity: 1; /*结尾状态 透明度为1*/
      filter: alpha(opacity=100); /* IE */
  }
}
.nullbutton{
  display: block;
  width: 120px;
  height: 40px;
  line-height: 40px;
  color: white;
  background: #1890FF;
  outline: none;
  border: 0;
  margin: 30px auto;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}
.nullbutton:hover{
  background-color: #1581E5;
}
.nullbutton:focus{
  background-color: #1273CD;
}