/*公共样式*/
* {
  box-sizing: border-box;
}
body {
  font-size: 16px;
  color: #333333;
  font-family: "微软雅黑";
  background: #fff;
}
html,
body,
p,
em,
ul,
li,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  list-style: none;
}
em {
  font-style: normal;
}
img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
}
a {
  display: inline-block;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
input:focus,
textarea:focus,
button:focus {
  box-shadow: none;
  outline: none;
}
/*自定义*/
.myContent {
  width: 1300px;
  margin: 0 auto;
}
.myClear:after {
  content: '';
  display: block;
  clear: both;
}
.myClear:before {
  content: '';
  display: block;
  clear: both;
}
.color-red {
  color: #D20113;
  font-style: normal;
}
.color_theme {
  color: #027355;
}
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.ellipsis2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ellipsis3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.f_r {
  float: right;
}
.f_l {
  float: left;
}
.text-r {
  text-align: right;
}
.bnbg {
  background-color: #f7f7f7;
  width: 100%;
  overflow: hidden;
}
.bnbg img {
  position: relative;
  left: 50%;
  margin-left: -960px;
  max-width: initial;
}
.my_input {
  height: 46px;
  line-height: 46px;
  background: transparent;
  padding: 0 10px;
  border: 1px solid #D9D9D9;
}
.my_btnSmall {
  padding: 0 26px;
  display: inline-block;
  line-height: 2.8;
  background: #027355;
  color: #fff;
  cursor: pointer;
}
.my_animation {
  transition: all .5s;
}
.animation_shadow:hover {
  box-shadow: 0 0 5px #999;
}
.animation_scale:hover {
  transform: scale(1.2);
  -ms-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -moz-transform: scale(1.2);
}
.more {
  font-size: 16px;
  color: #666666;
  float: right;
  margin-bottom: 18px;
  margin-right: 2em;
}
.more:after {
  content: '';
  display: block;
  clear: both;
}
.more2 {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  padding: 0 10px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 5px;
  transition: all .3s;
}
.line {
  display: block;
  border-bottom: 1px solid #D9D9D9;
}
.more2:hover {
  color: #fff;
}
.border1 {
  border: 1px solid #D9D9D9;
}
.btns img {
  margin-right: 8px;
}
.btns a {
  line-height: 50px;
  font-size: 16px;
  padding-left: 20px;
  color: #fff;
  background: #0082C6;
  display: block;
  border-radius: 7px;
  margin-bottom: 15px;
}
.btns a:hover,
.btns a.active {
  background: -webkit-linear-gradient(#0082C5, #10588D);
  /* Safari 5.1 - 6.0 */
  background: -o-linear-gradient(#0082C5, #10588D);
  /* Opera 11.1 - 12.0 */
  background: -moz-linear-gradient(#0082C5, #10588D);
  /* Firefox 3.6 - 15 */
  background: linear-gradient(#0082C5, #10588D);
  /* 标准的语法 */
}
.page_imgBox {
  padding: 10px 0;
}
.js_hide {
  display: none;
}
.js_hide.active {
  display: block;
}
.btm_line {
  position: relative;
}
.btm_line:after {
  content: '';
  display: block;
  clear: both;
  width: 96%;
  height: 2px;
  background: #027355;
  position: absolute;
  bottom: 14px;
  left: 2%;
}
.padd_btm {
  padding-bottom: 30px;
}
/*返回顶部等*/
.fixList {
  position: fixed;
  z-index: 20;
  top: 50%;
  right: 0;
  width: 100px;
  margin-top: -268px;
  text-align: center;
  box-shadow: 0 0 15px #D9D9D9;
}
.fixList .item {
  font-size: 14px;
  background: #fff;
  display: block;
  padding: 15px 0;
  border-bottom: 2px solid #D9D9D9;
}
@media screen and (max-width: 1100px) {
  .fixList {
    display: none;
  }
}
/*导航*/
.nav_padd {
  padding-top: 93px;
}
.main_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
  width: 100%;
  height: 93px;
  -webkit-box-shadow: 0 1px 6px #ccc;
  box-shadow: 0 1px 6px #ccc;
}
.nav_logo img {
  position: relative;
}
.nav_list {
  float: right;
  line-height: 93px;
}
.nav_list li {
  float: left;
  list-style: none;
}
.nav_list li a {
  color: black;
  font-family: "微软雅黑";
  font-size: 14px;
  padding: 0 20px;
}
.nav_list li a:hover {
  color: #5a88e5;
}
.top_nav {
  display: block;
  position: relative;
  height: 100%;
  width: 1200px;
  margin: 0 auto;
}
