@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
dl,
dt,
dd,
ul,
ol,
li,
p,
blockquote,
pre,
hr,
figure,
table,
caption,
th,
td,
form,
fieldset,
legend,
input,
button,
textarea,
menu {
  margin: 0;
  padding: 0;
}

header,
footer,
section,
article,
aside,
nav,
hgroup,
address,
figure,
figcaption,
menu,
details {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
  font-weight: normal;
}

html,
body,
fieldset,
img,
iframe,
abbr {
  border: 0;
}

img {
  vertical-align: top;
}

body {
  overflow-x: hidden;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

[hidefocus],
summary {
  outline: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
small {
  font-size: 100%;
}

sup,
sub {
  font-size: 83%;
}

pre,
code,
kbd,
samp {
  font-family: inherit;
}

q:before,
q:after {
  content: none;
}

textarea {
  overflow: auto;
  resize: none;
}

label,
summary {
  cursor: default;
}

a,
button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
em,
strong,
b {
  font-weight: bold;
}

del,
ins,
u,
s,
a,
a:hover {
  text-decoration: none;
}

body,
textarea,
input,
button,
select,
keygen,
legend {
  font: 13px/1 arial, \5b8b\4f53;
  color: #333;
  outline: 0;
}

:focus {
  outline: 0;
}
[v-cloak] {
  display: none;
}

/*备用样式表*/

.none {
  display: none;
}

.hidden {
  visibility: hidden;
}

.clear {
  width: 100%;
  height: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  clear: both;
  display: block;
  _display: inline;
}

.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}

.clearfix {
  display: block;
  *zoom: 1;
}

.icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  vertical-align: middle;
  background: url(images/icon.png) no-repeat;
}

/*css3扩展*/

body:before {
  display: none;
  content: "";
  position: fixed;
  top: -10px;
  left: 0;
  z-index: 110;
  width: 100%;
  height: 10px;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.8);
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-moz-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

/*滚动样式*/
.scroller {
  position: absolute;
  z-index: 1;
  width: 750px;
  height: 160px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -o-text-size-adjust: none;
  text-size-adjust: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 4px;
  background-color: #cccccc;
  -webkit-border-radius: 6px;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
  /*滚动条的背景颜色*/
  -webkit-border-radius: 0;
  /*滚动条的圆角宽度*/
}

::-webkit-scrollbar-thumb:vertical {
  height: 50px;
  background-color: #999;
  -webkit-border-radius: 4px;
  outline: 1px solid #fff;
  outline-offset: -1px;
  border: 1px solid #fff;
}

/**布局开始**/
* {
  box-sizing: border-box;
}

body {
  background: #fff;
  line-height: 1;
  font-size: 14px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  color: #333;
}

p {
  line-height: 1.75;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

a:hover {
  color: #425dae;
}

.f_between {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

.f_start {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.f_end {
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.f_center {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.f_middle {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
}

.f_top {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.f_bottom {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.f_stretch {
  display: flex;
  display: -webkit-flex;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.f_col {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.f_row {
  display: flex;
  display: -webkit-flex;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.text-overflow {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hide-text-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.nowrap {
  -webkit-flex-wrap: nowrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.wrap {
  -webkit-flex-wrap: wrap;
  -webkit-box-lines: single;
  -moz-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hide-text-3 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/*页面尺寸*/
.wrapper {
  width: 100%;
  margin: 0 auto;
}

.wrapper .inner {
  width: 1200px;
  margin: 0 auto;
}

/**页面全局宽度**/
.top_main {
  position: relative;
}

.mbanner {
  position: relative;
  z-index: 1;
}

/*head开始*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
}

#header .inner {
  position: relative;
  z-index: 2;
}

.header .head-left {
  float: left;
  display: inline-block;
  padding-top: 47px;
}

.header .sitelogo {
  float: left;
}

.header .sitelogo img {
  width: 100%;
  display: block;
}

.header .head-right {
  float: right;
  padding-top: 59px;
}

.head-nav {
  float: left;
}

/*lang样式*/
.site-lang {
  float: right;
  padding-top: 5px;
}

.site-lang ul {
  float: right;
  height: 32px;
  padding-left: 24px;
  background: url(images/user.png) left center no-repeat;
}

.site-lang ul li.links {
  float: left;
  color: #fff;
  line-height: 32px;
}

.site-lang ul li.links a {
  line-height: 32px;
  margin: 0px 5px;
  font-size: 16px;
  color: #fff;
}

.site-lang ul li.links:first-child {
  margin-right: 10px;
  position: relative;
}

.site-lang ul li.links:first-child:before {
  position: absolute;
  right: -9px;
  height: 32px;
  line-height: 32px;
  content: "";
  font-size: 16px;
}

.site-lang ul li.links a:hover {
  color: #fff;
}

/**搜索**/
.index_search {
  width: 750px;
  margin: 0 auto;
}

.wp_search {
  display: inline-block;
  position: relative;
  padding-left: 12px;
  background: #fff;
  width: 209px;
  height: 36px;
  opacity: 0.3;
  filter: Alpha(opacity=30);
}

.wp_search #keyword {
  width: 177px !important;
  padding: 4px 0;
  border: none;
  height: 28px;
  line-height: 28px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-family: "Microsoft YaHei";
}

.wp_search .search {
  width: 32px;
  height: 32px;
  border: 0px;
  background: url(images/sous.png) no-repeat center;
  cursor: pointer;
  vertical-align: top;
}

/***自定义搜索*/
.searchbox {
  width: 100%;
  text-align: right;
}

.wp-search {
  position: relative;
  padding-right: 143px;
}

.wp-search form {
  display: block;
  height: 50px;
}

.wp-search .search-input {
  margin-right: 0;
  height: 50px;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  padding-left: 26px;
  padding-right: 60px;
}

.wp-search .search-input:before {
  position: absolute;
  content: "";
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url(images/search.png) center no-repeat;
}

.wp-search .search-input input.search-title {
  width: 100%;
  box-sizing: border-box;
  height: 50px;
  line-height: 50px;
  color: #333;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  font-size: 16px;
  border: 0;
  outline: 0;
  background: none;
}

.wp-search .search-btn {
  width: 136px;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
}

.wp-search .search-btn input.search-submit {
  width: 136px;
  height: 50px;
  border: 0;
  outline: 0;
  border-radius: 4px;
  background: linear-gradient(to right, #839be5, #3f59a9);
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  color: #fff;
  line-height: 50px;
}

.index_search ::-webkit-input-placeholder {
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  font-size: 16px;
  color: #fff;
}

.wp-search input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #fff;
}

/*默认主导航样式*/
#nav {
}

.nav .inner {
  width: 100%;
  height: auto;
}

.nav .wp-menu {
  height: 44px;
}

.nav .wp-menu .menu-item {
  display: inline-block;
  position: relative;
  height: 44px;
  margin-right: 44px;
  text-align: center;
}

.nav .wp-menu .menu-item > a {
  display: inline-block;
  height: 44px;
  line-height: 44px;
  position: relative;
}

.nav .wp-menu .menu-item a.menu-link {
  color: #fff;
  font-size: 20px;
  -webkit-transition: all 0.3s;
}

.nav .wp-menu .menu-item.hover a.menu-link:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: #fff;
}

.nav .wp-menu .menu-item.hover a.menu-link {
  color: #fff;
}

.nav .sub-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 44px;
  width: auto;
  min-width: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.2);
}

.nav .sub-menu .sub-item {
  position: relative;
  white-space: nowrap;
  vertical-align: top;
  _zoom: 1;
}

.nav .sub-menu .sub-item a {
  display: block;
  color: #fff;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
}

.nav .sub-menu .sub-item.hover > a,
.nav .sub-menu .sub-item a:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  display: block;
}

.nav .sub-menu .sub-menu {
  left: 100%;
  top: 0px;
  z-index: 200;
  background: rgba(0, 0, 0, 0.2);
}

/**首页布局**/
.mainbg1 {
  background: #fff;
  padding: 30px 0 60px;
  position: relative;
}

.index_title {
  position: relative;
  padding-top: 30px;
  text-align: center;
  color: #000;
}

.index_title .bt1 {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  font-size: 68px;
  font-weight: bold;
  line-height: 106px;
  color: rgba(66, 93, 174, 0.23);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.index_title .bt2 {
  position: relative;
  z-index: 2;
  display: inline-block;
  height: 70px;
  line-height: 70px;
  font-size: 30px;
  font-weight: bold;
  color: #323232;
}

.index_title .bt2:before {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  bottom: -3px;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background: #425dae;
}

.card {
  width: 956px;
  margin: 0 auto;
  margin-top: 40px;
}

.card a {
  width: 430px;
  display: block;
  box-shadow: 4px 0 20px rgba(51, 51, 51, 0.2);
}

.card a img {
  display: block;
  width: 100%;
}

.main1 {
  margin-top: 60px;
}

.main1_left {
  float: left;
  width: 48%;
}

.main1_right {
  float: right;
  width: 48%;
}

.bt_title {
  height: 68px;
  line-height: 68px;
  position: relative;
  padding-left: 15px;
  padding-top: 32px;
}

.bt_title:before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 4px;
  height: 45px;
  border-radius: 2px;
  background: #425dae;
}

.bt_title .bt1 {
  position: absolute;
  z-index: 1;
  left: 15px;
  top: 0;
  font-size: 60px;
  font-weight: bold;
  line-height: 68px;
  color: rgba(66, 93, 174, 0.15);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bt_title .bt2 {
  position: relative;
  z-index: 2;
  height: 28px;
  color: #333;
}

.bt_title .bt2 span {
  display: block;
  height: 26px;
  line-height: 26px;
  font-size: 24px;
  font-weight: bold;
}

.bt_title .bt2 .more {
  display: block;
  height: 16px;
  line-height: 16px;
  font-size: 16px;
  color: #333;
  padding-right: 52px;
  background: url(images/more.png) right center no-repeat;
}

.bt_title .bt2 .more:hover {
  color: #425dae;
  background: url(images/more2.png) right center no-repeat;
}

.news_con {
  margin-top: 40px;
  box-shadow: 4px 0 40px rgba(51, 51, 51, 0.2);
  background: #fff;
  border-top: 8px solid #425dae;
  padding: 14px 50px 37px;
}

.news01_list li {
  padding-top: 26px;
  padding-bottom: 12px;
  border-bottom: 1px dashed #e0e0e0;
}

.news01_list li a {
  display: block;
  position: relative;
  padding-top: 3px;
  padding-left: 128px;
}

.news01_list li a:before {
  position: absolute;
  content: "";
  left: 110px;
  top: 0;
  bottom: 0;
  border-left: 1px dashed #e0e0e0;
}

.news01_list li a .bt {
  display: block;
  line-height: 28px;
  font-size: 18px;
}

.news01_list li .bt_date {
  position: absolute;
  left: 0;
  top: 0;
}

.sudy-pubdate1 {
  font-size: 30px;
  color: #666;
}

.sudy-pubdate1 .pubdate-day {
  font-size: 24px;
  vertical-align: top;
}

.sudy-pubdate1 .pubdate-month {
  font-size: 14px;
  vertical-align: bottom;
}

.main1_right .news_con {
  padding: 36px 50px 27px;
}

.news02_list li {
  margin-top: 7px;
}

.news02_list li:first-child {
  margin-top: 0;
}

.news02_list li a {
  display: block;
}

.news02_list li a .bt {
  display: block;
  line-height: 36px;
  font-size: 18px;
}

.news02_list li .bt_date {
  line-height: 26px;
  font-size: 14px;
  color: #a0a0a0;
}

/**页脚开始**/
.footer {
  background: #3d65b6 url(images/footer.png) center top repeat-y;
  height: auto;
  min-height: 164px;
  font-size: 12px;
  color: #fff;
  position: relative;
}

.footer .gotop {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -18px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4066b7;
  padding-top: 6px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.footer .gotop i {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 12px;
  background: url(images/up.png) center top no-repeat;
  -moz-animation: myMove 1s linear infinite alternate;
  -webkit-animation: myMove 1s linear infinite alternate;
  -o-animation: myMove 1s linear infinite alternate;
  animation: myMove 1s linear infinite alternate;
}

@-webkit-keyframes myMove {
  0% {
    top: 6px;
  }

  100% {
    top: 10px;
  }
}

@-o-keyframes myMove {
  0% {
    top: 6px;
  }

  100% {
    top: 10px;
  }
}

@keyframes myMove {
  0% {
    top: 6px;
  }

  100% {
    top: 10px;
  }
}

.footer .bottom {
  padding: 30px;
  position: relative;
}

.footer .foot-wz {
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}

.footer .foot-wz p {
  display: inline-block;
  margin: 0 20px;
}

.footer .copyright_wz {
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  margin-top: 20px;
}

.fixlay {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 60%;
}

.fixlay a {
  display: block;
  width: 69px;
  margin-right: 5px;
}

.fixlay a img {
  display: block;
  width: 100%;
  box-shadow: 4px 0 20px rgba(51, 51, 51, 0.2);
}

/**友情链接**/
.mlink {
  margin-top: 20px;
}

.mlinkwz {
  width: 88px;
}

.botlinks .links-wrap {
  position: relative;
  width: 190px;
  height: 32px;
  line-height: 30px;
  background: transparent;
  border: 1px solid #fff;
}

.botlinks .links-wrap a.links-arrow {
  display: block;
  height: 30px;
  line-height: 30px;
  padding: 0 38px 0 12px;
  color: #fff;
  font-size: 16px;
  background: url(images/arrow.png) no-repeat right bottom;
}

.botlinks .links-wrap a.links-arrow:hover,
.botlinks .wrap-open a.links-arrow {
  color: #fff;
  background-position: right top;
  cursor: pointer;
}

.botlinks .links-wrap .link-items {
  display: none;
  position: absolute;
  left: -1px;
  right: -1px;
  bottom: 31px;
  height: auto;
  max-height: 300px;
  overflow: auto;
  overflow-x: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.botlinks .links-wrap .link-items a {
  display: block;
  line-height: 24px;
  padding: 5px 0;
  color: #444;
}

.botlinks .links-wrap .link-items a span {
  display: block;
  padding: 0 16px;
  white-space: nowrap;
}

.botlinks .links-wrap .link-items a:hover {
  color: #333;
  background: #e0f1f9;
  cursor: pointer;
}

/**链接样式**/
.s04 {
  animation-delay: 0.4s;
}

.s05 {
  animation-delay: 0.5s;
}

.s06 {
  animation-delay: 0.6s;
}

.s07 {
  animation-delay: 0.7s;
}

.s08 {
  animation-delay: 0.8s;
}

.s09 {
  animation-delay: 0.9s;
}

.s10 {
  animation-delay: 1s;
}

/*滚动Arrows */

.slick-prev,
.slick-next,
.slick-prev:hover,
.slick-next:hover {
  height: 62px;
  width: 60px;
  background: url(images/slickarrow2.png) no-repeat;
  top: 50%;
  margin-top: -30px;
  border: 0px solid #d4d8d9;
  border-radius: 50%;
  outline: none;
}

.slick-prev {
  left: -95px;
  background-position: 0px 0px;
}

.slick-prev:hover {
  background-position: 0px 0px;
  opacity: 0.8;
  filter: Alpha(opacity=80);
}

.slick-prev:before {
  content: "";
}

.slick-next {
  right: -95px;
  background-position: right 0px;
}

.slick-next:hover {
  background-position: right 0px;
  opacity: 0.8;
  filter: Alpha(opacity=80);
}

.slick-next:before {
  content: "";
}

.post .con .wp_article_list .list_item {
  border-bottom: 1px dashed #ccc;
}

/*栏目图片*/
.l-banner {
  background-position: center top;
  background-repeat: no-repeat;
  text-align: center;
}

.l-banner img {
  vertical-align: top;
}

.l-banner img {
  width: 100%;
  height: 100%;
  display: none;
}

.column-banner {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url(images/banner.png);
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

.column-banner .inner {
  position: relative;
  z-index: 1;
  padding-top: 350px;
}

.column-banner .overlay,
.ny-banner .overlay {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/***********************************************************
 * 列表页
 */
.ny-top .header .head-left {
  padding-top: 34px;
}

.ny-top .header .head-right {
  padding-top: 46px;
}

.ny-banner {
  position: relative;
  width: 100%;
  height: 225px;
  background-image: url(images/nybanner.png);
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

.ny-banner .inner {
  position: relative;
  z-index: 1;
  padding-top: 160px;
}

.ny-banner .tit1 {
  font-size: 32px;
  color: #fff;
  line-height: 40px;
  font-weight: 600;
}

/**主体列表页开始**/

#l-container {
  background: #f6f4f4;
}

#l-container .inner {
  padding: 5px 0 50px;
}

.column-breadcrumb {
  line-height: 40px;
  font-size: 16px;
  color: #333;
  padding-left: 28px;
  background: url(images/back.png) left center no-repeat;
}

/*栏目列表*/

#d-container {
  padding: 60px 0 80px;
  background: #f6f4f4;
  box-sizing: border-box;
}

#d-container .inner {
  padding: 40px 40px 60px;
  background: #fff;
  box-shadow: 0 0px 18px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}

.innerpositon {
  height: 60px;
}

.innerpositon .column-breadcrumb {
  line-height: 60px;
  color: #666666;
  font-size: 16px;
  text-align: left;
}

.innerpositon .column-breadcrumb a {
  color: #666666;
}

.innerpositon .column-breadcrumb a:hover {
  color: #d96363;
}

.col_menu {
  width: 250px;
  float: left;
  margin-right: -250px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

/**��Ŀ����**/
.col_news_head {
  /* border-left:6px solid #3FD7CB; */
  border-bottom: 1px solid #dbdbdb;
}

.col_menu .col_menu_head {
  background: #425dae;
}

/**位置栏目背景**/
.col_menu .col_menu_head h3.col_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
}

/**位置栏目字体**/
.col_menu .col_menu_head h3.col_name .col_name_text {
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
}

/**栏目名称图标**/
.col_menu .col_menu_con {
  border: 0px solid #e4e4e4;
}

.es_column_name {
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  display: block;
  line-height: 50px;
  padding: 0px 5px 0px 30px;
}

/**栏目列表**/
.col_list {
}

.col_list .wp_listcolumn {
  border-top: 0px solid #2867a0;
  border-bottom: 0px solid #fff;
}

.col_list .wp_listcolumn .wp_column a {
  display: block;
  color: #333;
  font-size: 16px;
  font-weight: normal;
  background: none;
  border-top: 0px solid #fff;
  border-bottom: 1px solid #f6eaea;
  background: #fff;
}

.col_list .wp_listcolumn .wp_column a .column-name {
  display: inline-block;
  padding: 5px 0px 5px 28px;
  line-height: 32px;
}

.col_list .wp_listcolumn .wp_column a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  color: #425dae;
}

.col_list .wp_listcolumn .wp_column a.selected span.column-name {
  color: #f90;
}

.col_list .wp_listcolumn .wp_subcolumn .wp_column a {
  color: #454545;
  background: none;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #bbb;
}

.col_list .wp_listcolumn .wp_column.parent > a .column-name {
  font-weight: bold;
  color: #f90;
}

/**二级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list a {
  display: block;
  color: #333;
  border-top: 1px solid #eee;
  margin-top: -1px;
}

.col_list .wp_listcolumn .sub_list a .column-name {
  display: inline-block;
  line-height: 28px;
  padding: 5px 10px 5px 44px;
  cursor: pointer;
}

.col_list .wp_listcolumn .sub_list a:hover,
.col_list .wp_listcolumn .wp_column a.selected {
  font-weight: bold;
  font-weight: bold;
  color: #f90;
}

/**三级子栏目**/
.col_list .wp_listcolumn .wp_column .sub_list .sub_list a {
}

.col_list .wp_listcolumn .sub_list .sub_list a .column-name {
  padding: 5px 10px 5px 60px;
  cursor: pointer;
}

.col_list .wp_listcolumn .sub_list .sub_list a :hover,
.col_list .wp_listcolumn .sub_list .sub_list a.selected {
  font-weight: bold;
  color: #f90;
}

/**栏目新闻**/
.col_news {
  width: 100%;
  float: right;
}

/**��Ŀ����**/
.col_main {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-top: 3px solid #af251b;
  padding: 0 20px;
}

.col_news .col_news_box {
  margin-left: 290px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 0 20px;
  min-height: 500px;
}

.col_news_head {
  border-bottom: 1px solid #dbdbdb;
  padding: 7px 0px;
}

.col_metas {
  position: relative;
  padding-left: 20px;
}

.col_metas:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 4px;
  background: #425dae;
}

.col_metas .col_title {
  display: inline-block;
  float: left;
  height: 34px;
  line-height: 40px;
}

/**��ǰ��Ŀ**/
.col_metas .col_title h2 {
  display: inline-block;
  font-size: 24px;
  font-family: "Microsoft yahei";
  font-weight: 600;
  color: #333;
}

/**��ǰ��Ŀ����**/
.col_metas .col_path {
  display: inline-block;
  float: right;
  /* padding-right:20px; */
  white-space: nowrap;
  height: 45px;
  line-height: 45px;
  color: #666;
}

/**��ǰλ��**/
.col_metas .col_path a {
  color: #2f2f2f;
}

.col_news_con {
  padding: 5px 0px 10px 0px;
  margin: 0 7px;
}

.col_news_list {
  margin-top: 7px;
}

.col_news_list .newslist li {
  width: 100%;
  margin-top: 8px;
  position: relative;
  padding-right: 140px;
  padding-left: 25px;
  border-bottom: 1px dashed #efefef;
}

.col_news_list .newslist li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  margin-top: -3px;
  left: 6px;
  width: 6px;
  height: 6px;
  background: #e0e0e0;
}

.col_news_list .newslist li .time {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 38px;
  font-size: 14px;
  color: #999;
}

.col_news_list .newslist li .news_title {
  display: block;
  line-height: 38px;
  font-size: 18px;
}

.col_news_list .newslist li a:hover {
  color: #425dae;
}

/**栏目新闻列表**/

.col_news_list .wp_article_list .list_item .Article_Index {
}

/**栏目新闻图标序号**/

.col_news_list .wp_entry,
.col_news_list .wp_entry p {
  line-height: 1.75;
  font-size: 14px;
  color: #333;
}

.col_news_list .wp_entry p {
  margin-bottom: 10px;
}

.col_news_list .wp_entry table {
  margin-bottom: 4px;
}

.col_news_list .wp_entry img {
  max-width: 800px;
  _width: expression(this.width > 800 ? "800px": this.width);
}

/**列表页文章图片大小限制**/

/**文章页**/

.infobox {
  margin: 0 auto;
  margin-top: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.16);
  padding: 50px 30px;
}

.article h1.arti_title {
  line-height: 44px;
  font-family: "Microsoft YaHei";
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/**文章标题**/

.article h2.arti_title {
  line-height: 34px;
  font-family: "Microsoft YaHei";
  font-size: 14px;
  text-align: center;
  color: #1b1b1b;
}

/**文章副标题**/

.article .arti_metas {
  line-height: 32px;
  font-size: 14px;
  text-align: center;
  color: #999;
  /* border-top:1px solid #ececec; */
}

.article .arti_metas span {
  margin: 0 5px;
  font-size: 14px;
  color: #999;
}

/**文章其他属性**/

.article .entry {
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid #dbdbdb;
  margin-top: 30px;
}

/**文章内容**/

.article .entry .read,
.article .entry .read p {
  line-height: 1.75;
  font-size: 16px;
  color: #333;
}

/**阅读字体**/

.article .entry .read p {
  margin-bottom: 10px;
  text-indent: 2em;
}

.article .entry .read img {
  margin-right: 20px;
  max-width: 940px;
  _width: expression(this.width > 940 ? "940px": this.width);
}

/**文章阅读部分图片大小限制**/

.article .entry .read table {
  margin: 0 auto;
  border: none !important;
}

.es_article_title {
  display: none;
}

/**翻页**/

.es_pagingbar_container {
  margin: 40px auto 0;
  text-align: center;
  padding-bottom: 40px;
}

.es_pagingbar_container .es_pagingbar {
  display: inline-block;
  overflow: hidden;
}

.es_pagingbar_container .es_pagingbar li {
  float: left;
  padding: 6px 12px;
  margin: 0 6px;
  color: #999;
  background: #fff;
  border: 1px solid #ddd;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

.es_pagingbar_container .es_pagingbar li.active {
  background: #0460b7;
  color: #fff;
  border-color: #0460b7;
}

.es_pagingbar_container .es_pagingbar li.active a {
  color: #fff;
}

.es_article_content img {
  margin-right: 20px;
}

.news1 span {
  font-weight: bold;
}

/***********************************************************
 * 数据列表页
 */
#ny-container {
  background: #f6f4f4;
  padding: 32px 0 50px;
}

.page_place {
  height: 36px;
  padding-left: 24px;
  position: relative;
}

.page_place:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 6px;
  height: 6px;
  background: #425dae;
  border-radius: 50%;
}

.page_place li {
  float: left;
  color: #969696;
  line-height: 36px;
  position: relative;
}

.page_place li a {
  line-height: 36px;
  margin: 0px 16px;
  font-size: 16px;
  color: #969696;
}

.page_place li a:hover {
  color: #425dae;
}

.page_place li:before {
  position: absolute;
  right: 0;
  top: 0;
  height: 36px;
  line-height: 36px;
  content: "|";
  font-size: 16px;
}

.page_place li:last-child:before {
  display: none;
}

.page_place li:last-child a {
  color: #425dae;
}

.wrapper_01 {
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 35px;
  border-radius: 0 0 2px 2px;
}

.wrapper_01 .inall {
  position: absolute;
  right: 0;
  top: -36px;
  font-size: 18px;
  color: #000;
  padding-left: 36px;
}

.wrapper_01 .inall:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 36px solid #fff;
  border-left: 36px solid transparent;
}

.wrapper_01 .inall .num {
  min-width: 220px;
  height: 36px;
  line-height: 42px;
  background: #fff;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.05);
  padding-right: 35px;
  text-align: right;
}

.wrapper_01 .inall .num span {
  color: #526ac3;
}

.wrapper_01 .boxer {
  border: 1px solid rgba(66, 93, 174, 0.68);
  border-radius: 3px;
  padding: 25px 25px 22px;
}

.ss_01 {
  float: left;
  width: 50%;
}

.ss_01 .ssk {
  height: 42px;
  background: #e5e5e5;
  padding: 0 44px 0 10px;
  position: relative;
}

.ss_01 .ssk input {
  width: 100%;
  height: 40px;
  line-height: 42px;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: #5d5d5d;
}

.ss_01 .ssk ::-webkit-input-placeholder {
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  font-size: 14px;
  color: #5d5d5d;
}

.ss_01 .ssk i {
  cursor: pointer;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 44px;
  height: 42px;
  background: url(images/search2.png) center center no-repeat;
}

.ss_02 {
  float: right;
  width: calc(50% - 56px);
}

.ss_02 .del_btn {
  display: block;
  line-height: 42px;
  padding-left: 32px;
  background: url(images/del.png) left center no-repeat;
  font-size: 16px;
}

.ss_03 {
  margin-top: 26px;
}

.fenlei {
  padding: 0 66px;
  position: relative;
}

.fenlei .bt {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 40px;
  width: 66px;
  font-size: 16px;
  color: #000;
}

.fenlei .showmore {
  position: absolute;
  right: 0px;
  top: 0;
  height: 40px;
  line-height: 40px;
  text-align: right;
  padding-right: 20px;
  color: #425dae;
  font-size: 14px;
  background: url(images/down3.png) right center no-repeat;
}

.fenlei-list {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.fenlei-list a {
  margin: 5px 15px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
}

.fenlei-list a.on {
  color: #425dae;
  font-weight: bold;
}

.fenlei-list.hide {
  height: 40px;
  overflow: hidden;
}

.wrapper_02 {
  margin-top: 37px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 18px 35px 50px;
  border-radius: 2px;
}

.ss_04 {
  height: 42px;
}

.ss_04 li {
  float: left;
  margin-right: 92px;
}

.ss_04 li:last-child {
  margin-right: 0;
}

.ss_04 li > a {
  display: block;
  height: 42px;
  line-height: 42px;
  padding-left: 10px;
  padding-right: 25px;
  position: relative;
  font-size: 18px;
  color: #000;
}

.ss_04 li > a i {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(images/down1.png) center no-repeat;
}

.ss_04 li > a.on i {
  background: url(images/down2.png) center no-repeat;
}

.ss_04 li > a.on {
  color: #425dae;
}

.date_con li {
  border: 1px solid #d2d2d2;
  border-radius: 3px;
  margin-top: 20px;
  padding: 23px 20px 18px;
  position: relative;
}

.date_con li:first-child {
  margin-top: 12px;
}

.date_con li .shenqing {
  position: absolute;
  top: 23px;
  right: 20px;
  width: 148px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.date_con li .shenqing img {
  width: 100%;
}

.date_01 {
  width: calc(100% - 170px);
}

.date_bt {
  display: block;
  line-height: 28px;
  font-size: 18px;
  color: #425dae;
  margin-right: 70px;
}

.date_tip {
  margin-right: 14px;
  font-size: 14px;
  color: #fff;
  background: #5971b8;
  border-radius: 4px;
  line-height: 22px;
  height: 22px;
  padding: 0 8px;
  margin-top: 4px;
}

.date_wz {
  display: block;
  margin-top: 24px;
  line-height: 28px;
  font-size: 16px;
  color: #3d3d3d;
  width: calc(100% - 170px);
}

.date_bot {
  margin-top: 16px;
  line-height: 24px;
}

.date_time {
  font-size: 16px;
  color: #3d3d3d;
}

.date_share {
  font-size: 14px;
  color: #999;
  padding-left: 20px;
  background: url(images/share.png) left center no-repeat;
  margin-left: 140px;
  margin-right: 40px;
}

.date_turn {
  font-size: 14px;
  color: #999;
  padding-left: 24px;
  background: url(images/turn.png) left center no-repeat;
}

/***********************************************************
 * 数据文章页
 */
#ny-container2 {
  background: #f1f5f5 url(images/nybg.png) center bottom no-repeat;
  padding: 50px 0 50px;
}

.detail_con {
  position: relative;
  padding-right: 540px;
  padding-left: 30px;
}

.detail_bt {
  line-height: 36px;
  font-size: 24px;
  color: #323232;
}

.detail_btn {
  position: absolute;
  right: 28px;
  top: 0;
}

.detail_btn .btn_data {
  display: block;
  width: 135px;
  margin-right: 60px;
}

.detail_btn .btn_data img {
  width: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.detail_btn .btn {
  display: block;
  padding-left: 30px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  color: #535353;
}

.detail_btn .btn.wrong {
  margin-right: 40px;
  background: url(images/wrong.png) left center no-repeat;
}

.detail_btn .btn.like {
  margin-right: 30px;
  background: url(images/like.png) left center no-repeat;
}

.detail_btn .btn.good {
  background: url(images/good.png) left center no-repeat;
}

.detail_zhaiyao {
  margin-top: 20px;
  background: #fff;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 36px;
  color: #323232;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.detail_box {
  margin-top: 50px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.detail_title {
  border-bottom: 1px solid #e5e3e3;
  padding-top: 9px;
  padding-left: 57px;
}

.detail_title .bt {
  position: relative;
  line-height: 54px;
  font-size: 24px;
  color: #535353;
}

.detail_title .bt:before {
  position: absolute;
  content: "";
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 20px;
  background: #5971b8;
}

.detail_tab {
  padding: 40px 30px;
}

.detail_tab table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  font-size: 18px;
}

.detail_tab table td,
.detail_tab table th {
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  line-height: 24px;
  color: #535353;
  text-align: center;
}

.detail_tab table th {
  color: #425dae;
}

.detail_tab .wid1 {
  background: #f3f5fc;
  color: #5971b8;
}

/***********************************************************
 * 用户中心页
 */
.user-top {
  height: 225px;
  background-image: url(images/user_center.png);
  background-size: cover !important;
  background-position: top !important;
  background-repeat: no-repeat !important;
}

.user-top .header .head-left {
  padding-top: 34px;
}

.user-top .header .head-right {
  padding-top: 46px;
}

#user-container {
  background: #efeff3 url(images/nybg.png) center bottom no-repeat;
  padding: 42px 0 70px;
}

.user_menu {
  float: left;
  width: 240px;
  height: 990px;
  background: url(images/left_menu.png) top no-repeat;
}

.user_warpper {
  float: right;
  width: calc(100% - 287px);
}

.user_menutop {
  height: 114px;
}

.user_menutop span {
  display: block;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  padding: 0 20px;
  line-height: 40px;
  text-align: center;
}

.user_menu li {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.user_menu li a {
  display: block;
  height: 59px;
  line-height: 60px;
  padding-left: 105px;
  font-size: 18px;
  color: #fff;
  position: relative;
}

.user_menu li a i {
  position: absolute;
  z-index: 5;
  left: 62px;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  background: url(images/menu_icon.png) 0 0 no-repeat;
}

.user_menu li a:before {
  position: absolute;
  content: "";
  left: 0;
  top: -10px;
  width: 0;
  height: 0;
  border-bottom: 10px solid #374b9b;
  border-left: 10px solid transparent;
  display: none;
}
.user_menu li dl{
  display: none;
}
.user_menu li.on dl{display: block;}
.user_menu li dl dd a{

  padding-left:0px!important;
  text-align:center;
  margin-left: 0px!important;
}
.user_menu li dl dd.active a{
    background: #5f7acb;
    
}
.user_menu li dl dd a:hover{
  background: #5f7acb;
  /* 阴影 */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.user_menu li dl dd a:before{
  border: 0px!important;
}

.user_menu li:nth-child(1) i {
  background-position: 0 0;
}

.user_menu li:nth-child(2) i {
  background-position: 0 -22px;
}

.user_menu li:nth-child(3) i {
  background-position: 0 -44px;
}

.user_menu li:nth-child(4) i {
  background-position: 0 -66px;
}

.user_menu li:nth-child(5) i {
  background-position: 0 -88px;
}

.user_menu li:nth-child(6) i {
  background-position: 0 -110px;
}

.user_menu li:nth-child(7) i {
  background-position: 0 -132px;
}

.user_menu li:nth-child(8) i {
  background-position: 0 -154px;
}

.user_menu li:nth-child(9) i {
  background-position: 0 -176px;
}

.user_menu li:nth-child(10) i {
  background-position: 0 -198px;
}

.user_menu li a:hover,
.user_menu li.on a {
  margin-left: -10px;
  background: #374b9b;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.user_menu li a:hover:before,
.user_menu li.on a:before {
  display: block;
  transition: all 0.4s ease-in;
}

.user_01 {
  height: 50px;
  line-height: 50px;
  padding-left: 24px;
  font-size: 18px;
  font-weight: bold;
  color: #5e76bf;
}

.user_box {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.user_con {
  position: absolute;
  right: 0;
  top: -50px;
  font-size: 18px;
  color: #000;
  padding-left: 50px;
}

.user_con:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 50px solid #fff;
  border-left: 50px solid transparent;
}

.user_con .num {
  min-width: 180px;
  height: 50px;
  line-height: 50px;
  background: #fff;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.05);
 text-align: center;
 
  font-size: 18px;
    font-weight: bold;
    color: #5e76bf;
}

.user_con .num a {
  font-size: 16px;
  font-weight: bold;
  color: #5e76bf;
}

.user_con .num a.user_name {
  padding-left: 26px;
  background: url(images/user_01.png) left center no-repeat;
  margin-right: 42px;
}

.user_con .num a.user_out {
  padding-left: 26px;
  background: url(images/user_02.png) left center no-repeat;
}

.user_02 {
  padding: 30px 50px;
}

.user_02 .box1 {
  width: 130px;
  background: #e7edff;
  padding-top: 24px;
  padding-bottom: 24px;
}

.user_02 .box2 {
  width: 150px;
  background: #e7edff;
  padding-top: 24px;
  color: #181818;
  text-align: center;
}

.user_02 .box3 {
  width: 290px;
  background: #e7edff;
  padding-top: 24px;
}

.user_02 .box1 .pic {
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.user_02 .box1 .pic img {
  display: block;
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.user_02 .box1 .name {
  text-align: center;
  font-size: 16px;
  color: #272829;
  margin-top: 13px;
  line-height: 24px;
}

.user_02 .box1 .flag {
  height: 16px;
  line-height: 16px;
  background: #2f9551;
  font-size: 14px;
  color: #fff;
  padding: 0 4px;
  border-radius: 8px;
}

.box_bt {
  height: 55px;
  line-height: 22px;
  text-align: center;
  position: relative;
  font-size: 16px;
  font-weight: bold;
}

.box_bt:before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 25px;
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: #5e76bf;
}

.box_num {
  line-height: 24px;
  font-size: 18px;
}

.box_wz {
  margin-top: 10px;
  line-height: 16px;
  font-size: 14px;
}

.box_li {
  padding: 0 30px;
}

.corlor_green {
  color: #2f9a0e;
}

.corlor_yellow {
  color: #ee7e11;
}

.user_03 {
  margin-top: 28px;
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 0px 20px;
}

.user_xian:before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: #e9e9e9;
}

.user_03box {
  width: calc(50% - 20px);
}

.user_03 .title {
  border-bottom: 1px solid #e9e9e9;
  padding-left: 42px;
  line-height: 50px;
  font-size: 18px;
  font-weight: bold;
  color: #425dae;
  position: relative;
}

.user_03 .title:before {
  position: absolute;
  content: "";
  left: 18px;
  top: 50%;
  margin-top: -10px;
  width: 3px;
  height: 20px;
  border-radius: 2px;
  background: #5971b8;
}

.user_03 .boxcon {
  padding: 32px 10px 40px;
}

.user_03 .box4 {
  width: 118px;
  height: 160px;
  background: #e7edff;
  padding-top: 50px;
  padding-bottom: 30px;
}

.user_03 .box4 .box_num {
  font-size: 20px;
}

.user_03 .box4 .box_wz {
  font-size: 16px;
}

.notice_01 img {
  display: block;
}

.notice_01 span {
  display: block;
  color: #232325;
  font-size: 16px;
}

.user_03 .boxcon2 {
  padding: 40px 25px;
  position: relative;
}

.boxcon2 .swiper-container {
  padding: 10px;
}

.boxcon2 .swiper-button-prev,
.boxcon2 .swiper-button-next {
  width: 16px;
  height: 16px;
  position: absolute;
  margin-top: 0;
  top: -28px;
}

.boxcon2 .swiper-button-prev {
  background: url(images/prev_01.png) center center no-repeat;
  left: auto;
  right: 140px;
}

.boxcon2 .swiper-button-next {
  background: url(images/next_01.png) center center no-repeat;
  right: 0;
}

.boxcon2 .swiper-pagination {
  right: 20px;
  top: -24px;
  width: 120px;
  height: 8px;
  overflow: hidden;
}

.boxcon2 .swiper-pagination .swiper-pagination-bullet {
  margin: 0 4px;
  background: #cbd5f5;
  opacity: 1;
}

.boxcon2 .swiper-pagination .swiper-pagination-bullet-active {
  background: #7693f0;
}

.boxcon2 .swiper-slide {
  width: 246px;
  box-shadow: 0 0 10px rgba(54, 91, 207, 0.1);
  padding: 20px 18px;
}

.boxcon2 .swiper-slide .bt {
  height: 34px;
  line-height: 28px;
  font-size: 18px;
  font-weight: bold;
  color: #323336;
}

.boxcon2 .swiper-slide .bt.shouchang {
  position: relative;
  padding-right: 30px;
}

.boxcon2 .swiper-slide .bt.shouchang:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 19px;
  height: 19px;
  background: url(images/star1.png) no-repeat;
}
.boxcon2 .swiper-slide .bt.shouchangnew0 {
  position: relative;
  padding-right: 30px;
}

.boxcon2 .swiper-slide .bt.shouchangnew0:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(images/new1.png) no-repeat;
}
.boxcon2 .swiper-slide .bt.shouchangnew1 {
  position: relative;
  padding-right: 30px;
}

.boxcon2 .swiper-slide .bt.shouchangnew1:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(images/hot.png) no-repeat;
}
.boxcon2 .swiper-slide .bt.shouchangnew2 {
  position: relative;
  padding-right: 30px;
}

.boxcon2 .swiper-slide .bt.shouchangnew2:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: url(images/youzhi.png) no-repeat;
}

.boxcon2 .swiper-slide .wz {
  margin-top: 10px;
  line-height: 20px;
  font-size: 16px;
  color: #8f8f8f;
}

.boxcon2 .swiper-slide .star img {
  margin-right: 3px;
}

.boxcon2 .swiper-slide .star img:last-child {
  margin-right: 0;
}

/***********************************************************
 * 企业信息页
 */
.user_04 {
  position: relative;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 50px 100px 100px;
}

.user_04 .title {
  border-bottom: 1px solid #e5e3e3;
  height: 40px;
}

.user_04 .title .bt {
  border-bottom: 4px solid #5e76bf;
  position: relative;
  margin-bottom: -1px;
  height: 40px;
  line-height: 44px;
  overflow: hidden;
  padding: 0 8px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #5e76bf;
}

.info-content {
  padding-bottom: 100px;
}

.info-content li {
  position: relative;
  padding-left: 150px;
  min-height: 44px;
  margin-top: 45px;
}

.info-content li:first-child {
  margin-top: 28px;
}

.info-content li .bt {
  position: absolute;
  left: 0;
  top: 0;
  width: 76px;
  text-align: left;
  height: 45px;
  line-height: 24px;
  font-size: 18px;
  color: #333;
}

.info-content li .bt span {
  position: absolute;
  right: -20px;
  width: 20px;
  top: 0;
  font-size: 18px;
  color: #c72828;
}

.info-content li .bt:before {
  position: absolute;
  content: ":";
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #333;
}

.info-content .sex input[type="radio"],
.Info input[type="radio"] {
  display: none;
}

.info-content .sex .checkradio {
  display: inline-block;
  height: 45px;
  padding-left: 38px;
  margin-right: 50px;
  line-height: 45px;
  background: url(images/radio1.png) left center no-repeat;
  background-size: 21px 21px;
  font-size: 18px;
  color: #959595;
}

.info-content .sex input[type="radio"]:checked + .checkradio,
.Info input[type="radio"]:checked + .checkradio {
  background: url(images/radio2.png) left center no-repeat;
  background-size: 21px 21px;
}

.info-btn {
  margin: 0 auto;
  width: 164px;
  height: 54px;
  border-radius: 6px;
  background: linear-gradient(to right, #425dae, #493b89);
}

.info-btn .change {
  width: 25px;
  height: 25px;
  background: url(images/change.png) center no-repeat;
  margin-right: 15px;
}

.info-btn span {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.inputk {
  width: 100%;
  height: 45px;
  position: relative;
}

.inputk input {
  display: block;
  width: 100%;
  height: 45px;
  border: 1px solid #d7d7d7;
  background: #efefef;
  border-radius: 4px;
  padding-left: 25px;
  padding-right: 80px;
  font-size: 16px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.inputk input::-webkit-input-placeholder {
  font-size: 16px;
  color: #999;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.inputk:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  width: 18px;
  height: 18px;
}

.inputk.user_name:before {
  background: url(images/fm_01.png) left center no-repeat;
}

.inputk.user_worker:before {
  background: url(images/fm_02.png) left center no-repeat;
}

.inputk.user_name2:before {
  background: url(images/fm_03.png) left center no-repeat;
}

.inputk.user_code:before {
  background: url(images/fm_04.png) left center no-repeat;
}

/***********************************************************
 * 企业密码
 */
#content2 {
  padding-top: 80px;
}

.info-btn.confirm_btn {
  width: 210px;
}

#content2 .inputk {
  width: 280px;
}

#content2 .inputk input {
  background: #fff;
  padding-left: 25px;
  padding-right: 25px;
}

#content2 .tipwz {
  font-size: 16px;
  line-height: 45px;
  color: #888;
}

/***********************************************************
 * 企业联系人
 */
#content3 {
  padding: 50px 0px 100px;
}

.tbale_top {
  height: 45px;
  background: #f3f5fc;
}

.tbale_top li {
  width: 20%;
  line-height: 45px;
  font-size: 16px;
  color: #374b9b;
  text-align: center;
}

.tbale_con {
  padding: 0 3px;
}

.tbale_con li {
  margin-top: 5px;
  border: 1px solid #f3f5fc;
  background: #fff;
  font-size: 0;
  font-size: 14px;
  color: #000;
}

.tbale_con li:nth-child(2n + 1) {
  background: #f3f5fc;
}

.tbale_con li > div {
  width: 20%;
  display: inline-block;
  padding: 12px;
  line-height: 30px;
  text-align: center;
}

.tbale_con li > div.operate {
  color: #374b9b;
  position: relative;
}

.tbale_con li > div.operate a {
  color: #374b9b;
  font-size: 16px;
  position: relative;
  z-index: 5;
}

.tbale_con li > div .operate_box {
  display: none;
  position: absolute;
  z-index: 10;
  top: 42px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 122px;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(82, 81, 81, 0.3);
}

.tbale_con li > div .operate_box a {
  display: block;
  line-height: 34px;
  font-size: 16px;
  color: #2f2d2d;
  border-bottom: 1px solid #d7d7d7;
}

.tbale_con li > div .operate_box a:last-child {
  border-bottom: 0;
}

.tbale_con li > div .operate_box a:hover,
.tbale_con li > div .operate_box a.on {
  background: #5e78c3;
  color: #fff;
}

.add_tablek {
  margin: 0 3px;
  margin-top: 16px;
  border: 1px dashed #5e78c3;
  height: 70px;
}

.add_tablek .add {
  width: 20px;
  height: 20px;
  background: url(images/add.png) center no-repeat;
  margin-right: 20px;
}

.add_tablek span {
  font-size: 18px;
  font-weight: bold;
  color: #5e78c3;
}

/***********************************************************
 * 数据申请
 */
#content4 {
  padding: 70px 0px 100px;
}

.tbale_top4 li,
.tbale_con4 li > div {
  width: 12%;
}

.tbale_con4 .checking {
  color: #f02b2b;
}

.tbale_con4 .returnback {
  color: #ab2727;
}

.tbale_con4 .success {
  color: #0e9f37;
}

.tbale_con4 .overdue {
  color: #aaaaaa;
}

.tbale_con4 .link {
  color: #4259aa;
}

.tbale_con4 .overdue .link {
  color: #aaaaaa;
}

.tbale_con li > div.width_03,
.tbale_top li.width_03 {
  width: 20%;
}

.tbale_con li > div.width_02,
.tbale_top li.width_02 {
  width: 10%;
}

.choose_data {
  padding: 0 35px;
  margin-bottom: 60px;
}

.choose_con {
  border: 1px dotted #d9d9d9;
  border-radius: 5px;
  background: url(images/choosebg.png) left top repeat-x;
  height: 80px;
}

.choose_box {
  float: left;
  width: calc(100% - 240px);
  height: 78px;
}

.choose_set {
  width: 20%;
  height: 78px;
  position: relative;
}

.choose_set:before {
  position: absolute;
  z-index: 1;
  content: "";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 24px;
  background: #e1e1e1;
}

.choose_set:last-child:before {
  display: none;
}

.choose_set:hover:after {
  position: absolute;
  z-index: 2;
  content: "";
  left: -1px;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.choose_set .set_top {
  margin: 0 auto;
  width: 104px;
  position: relative;
  z-index: 10;
}

.choose_set:hover .set_top {
}

.choose_set .set_top1 {
  margin-top: 17px;
  line-height: 22px;
  font-size: 16px;
  color: #181818;
  position: relative;
  padding-right: 20px;
}

.choose_set .set_top1:before {
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  background: url(images/down1.png) center no-repeat;
}

.choose_set .set_top2 {
  margin-top: 4px;
  line-height: 22px;
  font-size: 14px;
  color: #a5a5a5;
}

.choose_set .set_top2 input {
  display: block;
  width: 100%;
  height: 22px;
  border: 0;
  background: none;
  font-size: 14px;
  color: #a5a5a5;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.choose_list {
  cursor: pointer;
}

.choose_list .list_set {
  display: none;
  position: absolute;
  top: 85px;
  left: 0;
  right: 0;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 8px rgba(82, 81, 81, 0.3);
}

.choose_list .list_set a {
  display: block;
  line-height: 34px;
  font-size: 16px;
  color: #2f2d2d;
  border-bottom: 1px solid #d7d7d7;
  text-align: center;
}

.choose_list .list_set a:last-child {
  border-bottom: 0;
}

.choose_list .list_set a:hover,
.choose_list .list_set a.on {
  background: #5e78c3;
  color: #fff;
}

.choose_btn {
  float: right;
  width: 240px;
  height: 78px;
}

.choose_btn .search-btn {
  margin: 0 auto;
  width: 104px;
  height: 40px;
  border-radius: 6px;
  background: linear-gradient(to right, #5e78c3, #705ebf);
}

.choose_btn .search-btn .sousuo {
  width: 25px;
  height: 25px;
  background: url(images/search.png) center no-repeat;
  margin-right: 8px;
}

.choose_btn .search-btn span {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

/***********************************************************
 * 一般弹框
 */
.bounced-lay {
  position: fixed;
  z-index: 1000;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.36);
}

.bounced-box {
  position: absolute;
  z-index: 2000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: auto;
  max-height: 90%;
  overflow: auto;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.bounced-box .detail_title {
  padding-top: 36px;
}

.bounced-box .detail_title .bt {
  color: #425dae;
}

.bounced-box .box_content {
  padding: 1px 100px 10px;
}

.box_content li {
  position: relative;
  padding-left: 130px;
  min-height: 34px;
  margin-top: 36px;
}

.box_content li .bt {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
  height: 34px;
  line-height: 34px;
  font-size: 18px;
  color: #333;
}

.box_content li .inputk {
  width: 50%;
  height: 34px;
  position: relative;
}

.box_content li .inputk input {
  display: block;
  width: 100%;
  height: 34px;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 4px;
  padding-left: 25px;
  padding-right: 80px;
  font-size: 14px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.box_content li .inputk input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}

.inputk.choose:before {
  background: url(images/down4.png) left center no-repeat;
}

.box_content li select::-ms-expand {
  display: none;
}

.box_content li .select {
  width: 100%;
  height: 34px;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 4px;
  padding-left: 25px;
  padding-right: 80px;
  font-size: 14px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}

.bounced-box .foot_btn {
  padding: 100px 170px;
}

.bounced-box .foot_btn .save_btn {
  width: 246px;
  height: 48px;
  border: 1px solid #5475aa;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #425dae;
}

.bounced-box .foot_btn .tijiao_btn {
  width: 246px;
  height: 48px;
  background: linear-gradient(to right, #5e78c3, #705ebf);
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.close-box {
  position: absolute;
  z-index: 2000;
  top: 30px;
  right: 30px;
  width: 28px;
  height: 28px;
  background: url(images/close.png) center no-repeat;
}

/***********************************************************
 * 弹框2数据
 */
.box_content2 li {
  padding-left: 200px;
}

.box_content2 li .inputk {
  margin-right: 24px;
}

.box_content2 li .addnew {
  display: block;
  padding-left: 24px;
  line-height: 34px;
  font-size: 14px;
  color: #5971b8;
  background: url(images/add.png) left center no-repeat;
  background-size: 13px 13px;
}

.box_content2 li .newtip {
  line-height: 34px;
  font-size: 14px;
  color: #b61515;
}

.box_content2 li .tit-textarea {
  width: 50%;
}

.box_content2 li .tit-textarea textarea {
  width: 100%;
  overflow: hidden;
  overflow-wrap: break-word;
  resize: none;
  height: 124px;
  padding: 5px 25px;
  border: 1px solid #d7d7d7;
  background: #fff;
  border-radius: 4px;
  line-height: 24px;
  font-size: 14px;
  font-family: Bahnschrift, Helvetica Neue, PingFang SC, Hiragino Sans GB,
    Heiti SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
}

.box_content2 .upload {
  margin-top: 36px;
  height: 34px;
  line-height: 34px;
  font-size: 18px;
  color: #333;
}

.box_content2 .upload span {
  font-size: 16px;
  position: relative;
  line-height: 34px;
  display: inline-block;
}

.box_content2 .upload span:before {
  position: absolute;
  content: "";
  top: 0;
  right: -24px;
  width: 13px;
  height: 13px;
  background: url(images/add2.png) right top no-repeat;
  background-size: 13px 13px;
}

.box_content2 .detail_tab {
  padding: 0;
}

.box_content2 .noload {
  color: #b1b1b1;
}

.box_content2 .btn_upload,
.box_content2 .btn_look {
  color: #425dae;
}

.box_content2 .btn_download {
  color: #3b9d4e;
}

/***********************************************************
 * 登录
 */
.user_top {
  padding-top: 28px;
  padding-bottom: 22px;
  background: #fff;
}

.user_top .header .head-left {
  padding-top: 0;
}

.user_top .header .head-right {
  padding-top: 10px;
}

.user_top .site-lang ul {
  background: url(images/main_02.png) left center no-repeat;
  background-size: 17px 16px;
}

.user_top .site-lang ul li.links {
  color: #595959;
}

.user_top .site-lang ul li.links a {
  color: #595959;
}

.user_top .site-lang ul li.links a:hover {
  color: #425dae;
}

.user_top .goback {
  float: right;
  width: 87px;
  height: 28px;
  border: 1px solid #8e8e8e;
  border-radius: 4px;
  line-height: 26px;
  text-align: center;
  font-size: 14px;
  color: #595959;
  margin-left: 20px;
}

.user_main {
  width: 100%;
  background: url(images/main_06.png) no-repeat top center;
  height: 790px;
  background-size: cover;
}

.user_main .inner {
  position: relative;
  padding-top: 160px;
}

.user_main .mainbg {
  position: absolute;
  right: 50%;
  top: 160px;
}

.main_login {
  float: right;
  width: 488px;
  height: 510px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#footer2 {
  background: #fcfcfc;
  color: #5e5e5e;
}

.login_tab {
  height: 75px;
  background: #e5e5e5;
}

.login_tab > a {
  display: block;
  width: 50%;
  text-align: center;
  line-height: 75px;
  font-size: 24px;
  color: #000;
}

.login_tab > a.on {
  background: #fff;
  font-weight: bold;
  color: #425dae;
}

.login-con .item {
  display: none;
  padding: 45px 40px;
}

.login-con .item:first-child {
  display: block;
}

.login-con .item_form li {
  margin-top: 22px;
  height: 45px;
  position: relative;
  padding-left: 90px;
}

.login-con .item_form li .bt {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 45px;
  font-size: 18px;
  color: #313131;
}

.login-con .item_form .inputk input {
  background: #fff;
}

.login-con .item_form .see_mima {
  position: absolute;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  width: 26px;
  height: 16px;
  background: url(images/main_03.png) no-repeat;
  cursor: pointer;
}

.login-con .item_form .yanzheng_code {
  width: 214px;
}

.login-con .item_form .yangzheng_pic {
  width: 97px;
  height: 45px;
  border: 1px solid #d7d7d7;
  border-radius: 4px;
  overflow: hidden;
}

.login-con .login_bottom {
  margin-top: 15px;
  height: 36px;
}

.login-con .login_bottom .remember {
  display: block;
  margin-left: 70px;
  padding-left: 32px;
  background: url(images/main_05.png) left center no-repeat;
  line-height: 36px;
  font-size: 16px;
  color: #9d9d9d;
}

.login-con .login_bottom .remember.on {
  background: url(images/main_08.png) left center no-repeat;
  color: #5e76bf;
}

.login-con .login_bottom .forget {
  display: block;
  margin-left: 90px;
  line-height: 36px;
  font-size: 16px;
  color: #5e76bf;
}

.login-con .login_btn {
  margin-top: 40px;
  height: 50px;
  background: linear-gradient(to right, #5e78c3, #705ebf);
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.login-con .item_form li.boss {
  padding-left: 0;
}

.login-con .item_form .inputk.user_boss:before {
  right: auto;
  left: 13px;
  width: 12px;
  height: 20px;
  background: url(images/main_09.png) left center no-repeat;
}

.login-con .item_form .inputk.user_boss input {
  padding-left: 38px;
}

/***********************************************************
 * 纠错
 */
.tbale_top5 li,
.tbale_con5 li > div {
  width: 16%;
}

.tbale_con5 li {
  font-size: 16px;
}

.tbale_con5 .anster_01 {
  color: #2f9551;
}

.tbale_con5 .anster_02 {
  color: #5971b8;
}

.tbale_con5 .delete {
  color: #f02b2b;
}

.tbale_con5 .look {
  color: #5971b8;
}

/***********************************************************
 * 收藏
 */
.collection {
  padding: 10px 50px;
}

.collection li {
  width: 47.5%;
  margin-bottom: 40px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 10px rgba(88, 116, 203, 0.3);
  padding: 20px 30px 14px;
}

.collection li .bt {
  font-size: 18px;
  color: #323336;
  line-height: 30px;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection li .wz {
  margin: 7px 0;
  line-height: 32px;
  font-size: 16px;
  color: #8f8f8f;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.collection li .tip {
  line-height: 22px;
  font-size: 16px;
  color: #8f8f8f;
}

.collection li .tip span {
  display: inline-block;
  margin-top: 0;
}

/***********************************************************
 * 需求
 */
#content6 {
  padding: 50px 40px 100px;
}

.demand_con {
  height: 800px;
  overflow-y: auto;
  position: relative;
}

.demand_con::-webkit-scrollbar {
  width: 24px;
  background-color: #f3f5fc;
  -webkit-border-radius: 0;
}

.demand_con::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 0;
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #8294ce;
}

.demand_con::-webkit-scrollbar-track-piece {
  background-color: #f3f5fc;
  /*滚动条的背景颜色*/
  -webkit-border-radius: 0;
  /*滚动条的圆角宽度*/
}

.demand_con::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: #8294ce;
}

.up-triangle {
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 0 25px 40px 25px;
  border-color: transparent transparent rgb(245, 129, 127) transparent;
}

.down-triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 25px 0 25px;
  border-color: rgb(245, 129, 127) transparent transparent transparent;
}

.demand_list {
  padding-top: 22px;
  padding-bottom: 30px;
  padding-right: 65px;
  border-bottom: 1px solid #eaeaea;
}

.demand_list .bt_tit {
  font-size: 18px;
  line-height: 30px;
  color: #000;
}

.demand_list .bt_tit span {
  color: #169322;
}

.demand_list .bt_tip {
  line-height: 28px;
  font-size: 15px;
  font-weight: bold;
  color: #4259aa;
}

.demand_list .bt_tip span {
  margin-right: 50px;
}

.demand_list .bt_tip span:last-child {
  margin-right: 0;
}

.demand_list .bt_wz {
  margin-top: 16px;
  line-height: 30px;
  font-size: 15px;
  color: #000;
}

.demand_list .answer_wz {
  margin-top: 18px;
  background: #f7f8fd;
  padding: 10px 16px;
  line-height: 29px;
  font-size: 16px;
  color: #333;
}

.demand_list .answer_wz .time {
  color: #4259aa;
}

.demand_number {
  font-size: 18px;
  color: #959595;
  margin-top: 20px;
}

/***********************************************************
 * 咨询留言
 */
.message_list {
  padding-top: 25px;
  padding-bottom: 30px;
  padding-right: 65px;
  padding-left: 40px;
  border-bottom: 1px solid #eaeaea;
  position: relative;
}

.message_list:before {
  position: absolute;
  top: 30px;
  left: 0;
  content: "";
  width: 19px;
  height: 19px;
  background: url(images/message_01.png) no-repeat;
}

.message_list .bt_tit {
  font-size: 16px;
  line-height: 30px;
  color: #5e76bf;
}

.message_list .bt_tit span {
  margin-left: 42px;
}

.message_list .bt_tit span.bt {
  margin-left: 0;
  color: #000;
}

.message_list .bt_wz {
  margin-top: 6px;
  line-height: 30px;
  font-size: 16px;
  color: #333;
  padding-left: 24px;
  background: url(images/message_02.png) left 8px no-repeat;
}

.message_list .answer {
  margin-top: 16px;
  background: #f7f8fd;
}

.message_list .answer_bt {
  height: 34px;
  padding-left: 40px;
  background: #b3bfe3 url(images/message_03.png) 12px center no-repeat;
  line-height: 34px;
  font-size: 16px;
  color: #4259aa;
}

.message_list .answer_bt span {
  margin-right: 34px;
}

.message_list .answer_wz {
  padding: 7px 12px;
}

.message_list .answer_wz .bt_wz {
  margin-top: 0px;
}

.nws-drawer {
  padding: 15px;
}

.nws-d-btn {
  text-align: center;
}

/*  */
.nwsam {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nwsam a {
  padding: 2px;
  font-size: 18px;
  color: #999;
  margin-left: 10px;
}

.nwsam a i {
  margin-right: 5px;
}

.nwsam .bgred {
  color: #f84c4c;
}

.nwsam .bgblue {
  color: #5971b8;
}

.listpage {
  text-align: center;
  padding: 10px;
}

.choose_data .el-input__inner {
  padding: 0px !important;
}

.choose_data .el-input__icon {
  line-height: 22px !important;
}

.choose_set .set_top1:before {
  background: none !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt30 {
  margin-top: 30px !important;
}

/* 编目 */
.bianmulists{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0px!important;
}

.bianmulists .el-card{
  width: 45%;
  margin-right: 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.bianmulists .el-card .el-card__header{
  background: rgba(120, 121, 126, 0.10);
}
.no-scroll{
  height: 100%!important;
  overflow: hidden!important;
}
.bmitem p{
  word-break: break-all;
}

/* hc */
#hccontent{
  padding: 25px;
  min-height: 700px!important;
  box-sizing: border-box;
}
.hc-mr10{
  margin-right: 10px!important;
}
.hc-mr20{
  margin-right: 20px!important;
}
.hc-mt20{
  margin-top: 20px!important;
}
.hc-ml20{
  margin-left: 20px!important;
}
.hc-mb20{
  margin-bottom: 20px!important;
}
.hc-m20{
  margin:20px!important;
}
.hcsearchinfo{
  display: flex;
  margin: 20px 0px!important;
}
.hcadd{
   width: 130px;
    height: 35px;
    border-radius: 5px;
    border: 1px dashed #E9E9E9;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #B0B0B0;
    cursor: pointer;   
    transition: all 0.3s;
}
.hcadd:hover{
  color: #5E76BF; 
  font-weight: bold;
  border: 1px dashed #5E76BF;
}
