/**
 * 通用css样式布局处理
 */
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  font-size: 14px;
  line-height: 1.15;
  /* color: #333; */
}

body {
  height: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
  /* overflow: hidden; */
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

/* 上下左右居中 */
.cc {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: auto;
}

/* 单行文字溢出省略号 */
.toe {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  /* display: -webkit-box; */
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.test {
  width: 100%;
  overflow: hidden;
  /*必须结合的属性,当内容溢出元素框时发生的事情*/
  text-overflow: ellipsis;
  /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
  display: -webkit-box;
  /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
  -webkit-line-clamp: 3;
  /*用来限制在一个块元素显示的文本的行数。*/
  -webkit-box-orient: vertical;
  /*必须结合的属性 ，设置或检索伸缩盒对象的子元素的排列方式 。*/
}

.test2 {
  width: 100%;
  overflow: hidden;
  /*必须结合的属性,当内容溢出元素框时发生的事情*/
  text-overflow: ellipsis;
  /*可以用来多行文本的情况下，用省略号“…”隐藏超出范围的文本 。*/
  display: -webkit-box;
  /*必须结合的属性 ，将对象作为弹性伸缩盒子模型显示 。*/
  -webkit-line-clamp: 2;
  /*用来限制在一个块元素显示的文本的行数。*/
  -webkit-box-orient: vertical;
  /*必须结合的属性 ，设置或检索伸缩盒对象的子元素的排列方式 。*/
}

/*foot*/
.friend_link_box {
  height: 60px;
  background: #f8f8f8;
  border-top: 1px solid #C90010;
  margin-top: 20px;
}

.friend_link {
  width: 1140px;
  height: 60px;
  margin: 0 auto;
  line-height: 60px;
}

.friend_link h2 {
  float: left;
  width: 110px;
  height: 60px;
  background: #C90010;
  line-height: 60px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.friend_link_box .friend_link ul {
  margin-left: 20px;
  float: left;
}

.friend_link_box .friend_link ul li {
  float: left;
  margin-left: 10px;
}

.friend_link_box .friend_link ul li select {
  width: 158px;
  padding: 5px;
  margin: 15px 0;
  color: #666;
}

.friend_link .link {
  float: left;
  color: #666;
  margin-right: 8px;
}

.friend_link .link:hover {
  text-decoration: underline;
}

.friend_link span.dropselect_box {
  position: relative;
  width: 185px;
  display: inline-block;
  border: none;
  float: left;
  height: 33px;
  z-index: 99;
  margin-left: 9px;
  margin-top: 7px;
  border: 1px solid #e2e2e2;
}

.dropselect_SimpleSelect1 {
  /*height:30px;*/
  display: block;
  overflow: hidden;
  background: url(../img/2016search_jt.png) no-repeat 90% 14px #fff;
  line-height: 33px;
  text-indent: 20px;
  position: relative;
  left: 0px;
  top: 0px;
  padding: 0;
}

.dropselect_SimpleSelect1 li {
  padding: 0 5px;
  height: 33px;
  line-height: 33px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dropselect_SimpleSelect1 li a {
  height: auto;
  width: 100%;
  color: #535353;
}

.dropselect_SimpleSelect1 li a:hover {
  color: #0b6999;
}

.dropselect_SimpleSelect1 li.hover a {
  color: #535353;
  width: 100%;
  display: block;
}

.dropselect_SimpleSelect1 li a:hover,
#nav .menu .menulist .dropselect_SimpleSelect1 li a:focus,
#nav .menu .menulist .dropselect_SimpleSelect1 li:hover,
#nav .menu .menulist .dropselect_SimpleSelect1 li:focus {
  background: none;
}

.hidden {
  display: none;
}

.footer {
  height: 200px;
  background: #C90010;
}

.footer_main {
  width: 1140px;
  height: 200px;
  margin: 0 auto;
}

.footer_main .gov_icon {
  margin-right: 35px;
  float: left;
  padding: 67px 0 33px 330px;
  width: 54px;
  height: 100px
}

.footer_main p {
  float: left;
  color: #fff;
  padding-left: 20px;
  padding-top: 54px;
  line-height: 29px;
}

