
@import url(css.css);
@import url(css1.css);
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  font-style: normal;
  list-style: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 100%;
}
html {
  overflow-x: hidden;
}
body {
  font-size: 14px;
  color: #000;
  line-height: normal;
  font-family: "Open Sans", "microsoft yahei", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}
a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}
a:hover {
  color: #2754eb;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: auto;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
em,
i {
  font-style: normal;
}
img {
  vertical-align: middle;
}
input,
select,
textarea {
  font-family: "Open Sans", "microsoft yahei", sans-serif;
  font-size: 14px;
}
textarea {
  overflow: auto;
}
input:focus,
textarea:focus,
button:focus,
select:focus {
  outline: 0;
}
input::-ms-clear {
  display: none;
}
input[type="text"],
input[type="button"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
}
.clearfix,
.clear:after,
.container:after {
  width: 100%;
  clear: both;
  line-height: 0;
  display: block;
  overflow: hidden;
  zoom: 1;
  font-size: 0;
  content: '.';
}
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
}
/* top */
.top {
  padding: 8px 0;
  overflow: hidden;
}
.top .container {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.top .container:after {
  display: none;
}
.top .left li {
  float: left;
  margin-left: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  color: #7d7d7d;
}
.top .left li .iconfont {
  font-size: 20px;
  margin-right: 5px;
}
.top .left li:first-child {
  margin-left: 0;
}
.top .right li {
  float: left;
  margin-left: 15px;
}
.top .right li a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #333;
  border-radius: 50%;
  line-height: 1;
}
.top .right li a .iconfont {
  font-size: 16px;
}
.top .right li a:hover {
  background: #2754eb;
  border-color: #2754eb;
  color: #fff;
}
.top .right li:first-child {
  margin-left: 0;
}
/* header */
header {
  background: #fff;
  width: 100%;
  padding: 25px 0;
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 999;
}
header .logo {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 0 30px 0;
}
header .logo img {
  height: 60px;
  width: auto;
}
header .navbut {
  display: none;
}
header nav {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
header nav ul {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
header nav ul li {
  position: relative;
}
header nav ul li > a {
  display: block;
  overflow: hidden;
  padding: 0 15px;
  line-height: 30px;
  border: 1px solid transparent;
  border-radius: 4px;
  text-transform: uppercase;
}
header nav ul li .iconfont {
  display: none;
}
header nav ul li .sub {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  white-space: nowrap;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 5px;
  overflow: hidden;
  text-transform: capitalize;
  text-align: center;
}
header nav ul li .sub a {
  display: block;
  overflow: hidden;
  padding: 0 15px;
  color: #fff;
  line-height: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
header nav ul li .sub a:hover {
  background: #2754eb;
}
header nav ul li.on > a {
  border-color: #2754eb;
  color: #2754eb;
}
header nav .search {
  position: relative;
}
header nav .search .iconfont {
  border: 1px solid #bbbbbb;
  width: 34px;
  height: 34px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #f6f9fc;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: #959799;
  transition: all 0.3s;
}
header nav .search .iconfont:hover {
  background: #2754eb;
  color: #fff;
  border-color: #2754eb;
}
header nav .search .hide {
  display: none;
  position: absolute;
  right: 0px;
  top: 100%;
  margin-top: 10px;
  box-shadow: 0 0 10px #ddd;
  width: 255px;
}
header nav .search .hide input[type='text'] {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  padding: 0 10px;
  height: 34px;
  border: 0;
}
header nav .search .hide input[type='submit'] {
  width: 34px;
  height: 34px;
  border: 0;
  background: #333;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
header nav .search .hide input[type='submit']:hover {
  background: #2754eb;
}
header nav .search.cur .hide {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
header.cur {
  position: fixed;
  box-shadow: 0 0 10px #eee;
}
/* footer */
footer {
  width: 100%;
  background: #222430;
  overflow: hidden;
  color: #7c7c7c;
}
footer a {
  color: #7c7c7c;
}
footer a:hover {
  color: #4468e4;
}
footer .flex_main {
  padding: 40px 0 30px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  overflow: hidden;
  line-height: 30px;
}
footer .flex_main .b_tit {
  color: #4468e4;
  font-size: 18px;
  line-height: 1;
  padding: 0 0 14px 0;
  text-transform: uppercase;
}
footer .flex_main .cont {
  min-width: 350px;
}
footer .flex_main .cont li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
footer .flex_main .cont li .iconfont {
  color: #3851ab;
  font-size: 18px;
  margin-right: 6px;
}
footer .flex_main .cont li .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
}
footer .flex_main .letter {
  width: 240px;
}
footer .flex_main .letter .form {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 10px 0 0 0;
}
footer .flex_main .letter .form input[type='text'] {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  padding: 0 10px;
  height: 34px;
  border: 0;
}
footer .flex_main .letter .form input[type='submit'] {
  width: 40px;
  height: 34px;
  border: 0;
  background: #faa719;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
footer .flex_main .letter .form input[type='submit']:hover {
  background: #2754eb;
}
footer .copy {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  border-top: 1px solid #33353f;
  overflow: hidden;
  padding: 14px 0;
}
footer .copy .text {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  padding: 0 20px 0 0;
  line-height: 1.8;
}
footer .copy .share {
  height: 32px;
  overflow: hidden;
}
/* banner */
.banner .swiper-slide a {
  display: block;
  overflow: hidden;
}
.banner .swiper-slide a img {
  width: 100%;
  height: auto;
}
.banner .banner-next,
.banner .banner-prev {
  position: absolute;
  top: 50%;
  height: 80px;
  transform: translateY(-50%);
  color: #fff;
  z-index: 5;
  transition: all 0.3s;
  cursor: pointer;
  outline: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 30px;
  opacity: 0;
}
.banner .banner-next:hover,
.banner .banner-prev:hover {
  background-color: rgba(39, 84, 235, 0.8);
}
.banner .banner-next {
  right: 3%;
}
.banner .banner-prev {
  left: 3%;
}
.banner .banner-num {
  bottom: 25px;
  position: absolute;
  z-index: 5;
  text-align: center;
  left: 0px;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.banner .banner-num .swiper-pagination-bullet {
  width: 44px;
  height: 3px;
  border-radius: 0;
  cursor: pointer;
  margin: 0 5px;
  opacity: 0.6;
  background: #fff;
  outline: 0;
  position: relative;
  z-index: 5;
}
.banner .banner-num .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.banner:hover .banner-next,
.banner:hover .banner-prev {
  opacity: 1;
}
/* nbanner */
.nbanner {
  width: 100%;
  overflow: hidden;
}
.nbanner img {
  width: 100%;
  height: auto;
}
/* in_box */
.in_box {
  padding: 60px 0 70px 0;
  width: 100%;
  overflow: hidden;
}
/* in_bj */
.in_bj {
  background: #f1f1f1;
}
/* in_tit */
.in_tit {
  font-size: 44px;
  text-align: center;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 0 0 30px 0;
  overflow: hidden;
}
/* in_pro */
.in_pro {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.in_pro .left {
  width: 230px;
}
.in_pro .left li {
  margin-top: 20px;
}
.in_pro .left li a {
  display: block;
  overflow: hidden;
  position: relative;
}
.in_pro .left li img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.in_pro .left li span {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  left: 0px;
  right: 0px;
  bottom: 20px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  font-size: 26px;
  font-weight: 300;
  text-align: center;
  color: #4d4d4d;
  transition: all 0.3s;
}
.in_pro .left li:hover img {
  transform: scale(1.1);
}
.in_pro .left li:hover span {
  background-color: rgba(39, 84, 235, 0.5);
  color: #fff;
}
.in_pro .left li:first-child {
  margin-top: 0;
}
.in_pro .right {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  padding: 0 0 0 40px;
  margin: -20px;
}
.in_pro .right li {
  width: 50%;
  float: left;
  padding: 20px;
}
.in_pro .right li a {
  display: block;
  overflow: hidden;
  position: relative;
}
.in_pro .right li img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.in_pro .right li span {
  position: absolute;
  left: 40px;
  top: 30px;
  right: 40px;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 24px;
  transition: all 0.3s;
}
.in_pro .right li:hover img {
  transform: scale(1.1);
}
.in_pro .right li:hover span {
  top: 20px;
  left: 30px;
  right: 30px;
}
/* in_about */
.in_about {
  overflow: hidden;
}
.in_about .text {
  padding: 0 20px;
  font-size: 20px;
  line-height: 1.6;
  color: #444;
  text-align: center;
  overflow: hidden;
}
.in_about .but {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 35px 0 0 0;
}
.in_about .but li a {
  border: 1px solid #d3d8ea;
  height: 48px;
  font-size: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1;
  width: 200px;
}
.in_about .but li a .iconfont {
  font-size: 30px;
  margin-right: 10px;
}
.in_about .but li a:hover {
  border-color: #2754eb;
}
.in_about .but li:first-child a {
  margin-right: 40px;
  border-color: #2754eb;
  background: #2754eb;
  color: #fff;
}
/* in_news */
.in_news {
  padding: 50px 0 0 0;
  overflow: hidden;
  margin: -20px -30px;
}
.in_news li {
  width: 50%;
  float: left;
  padding: 20px 30px;
}
.in_news li a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.in_news li .pic {
  margin-right: 15px;
  overflow: hidden;
}
.in_news li .pic img {
  width: 160px;
  height: 125px;
  transition: all 0.3s;
}
.in_news li .pic img:hover {
  transform: scale(1.1);
}
.in_news li .box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
}
.in_news li .box span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  color: #000;
}
.in_news li .box span:hover {
  color: #2754eb;
}
.in_news li .box em {
  color: #888;
  font-size: 16px;
  padding: 10px 0;
  display: block;
  overflow: hidden;
}
.in_news li .box p {
  display: block;
  overflow: hidden;
  line-height: 26px;
  height: 52px;
  color: #444;
  font-size: 16px;
}
/* main */
.main {
  padding: 40px 0 60px 0;
  overflow: hidden;
  width: 100%;
}
.main .position {
  background: #f8f8f8;
  padding: 0 15px;
  line-height: 50px;
  font-size: 16px;
  margin-bottom: 30px;
}
.main .position .iconfont {
  margin-right: 8px;
  float: left;
  font-size: 18px;
  position: relative;
  top: -1px;
}
.main .flex_main {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.main .flex_main .main_left {
  width: 280px;
}
.main .flex_main .main_left > * {
  margin-top: 30px;
}
.main .flex_main .main_left > *:first-of-type {
  margin-top: 0;
}
.main .flex_main .main_left .b_tit {
  font-size: 18px;
  height: 35px;
  line-height: 1;
  border-bottom: 2px solid #eee;
  text-transform: uppercase;
}
.main .flex_main .main_left .b_tit .iconfont {
  display: none;
}
.main .flex_main .main_left .menu li a {
  display: block;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  line-height: 46px;
  padding: 0 0 0 10px;
  font-size: 16px;
  color: #555;
}
.main .flex_main .main_left .menu li a:before {
  content: "\e601";
  font-family: "iconfont" !important;
  position: absolute;
  right: 10px;
  top: 0px;
  font-size: 12px;
}
.main .flex_main .main_left .menu li:hover a {
  color: #2754eb;
}
.main .flex_main .main_left .menu li.on a {
  background: #2754eb;
  color: #fff;
}
.main .flex_main .main_right {
  width: 0;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 0 0 40px;
}
.main .flex_main .main_right .cate_tit {
  font-size: 18px;
  height: 35px;
  line-height: 1;
  border-bottom: 2px solid #eee;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* proxun */
.proxun {
  overflow: hidden;
}
.proxun li {
  margin-top: 10px;
}
.proxun li a {
  background: #f8f8f8;
  display: block;
  overflow: hidden;
}
.proxun li .pic {
  overflow: hidden;
}
.proxun li .pic img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.proxun li span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s;
  color: #000;
}
.proxun li:hover .pic img {
  transform: scale(1.1);
}
.proxun li:hover span {
  background: #2754eb;
  color: #fff;
}
/* newsxun */
.newsxun ul {
  padding: 8px 0 0 0;
  overflow: hidden;
}
.newsxun li {
  line-height: 30px;
}
.newsxun li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  padding: 0 0 0 10px;
}
.newsxun li a:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #666;
}
/* box_page */
.box_page .b_tit {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  padding: 0 0 10px 0;
}
.box_page .body {
  line-height: 2;
  overflow: hidden;
  color: #666;
}
.box_page .body img {
  max-width: 100%;
  height: auto;
  padding: 10px 0;
}
/* list_news */
.list_news {
  margin: -15px 0;
  overflow: hidden;
}
.list_news li {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.list_news li a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.list_news li .pic {
  margin-right: 15px;
  overflow: hidden;
}
.list_news li .pic img {
  width: 160px;
  height: 125px;
  transition: all 0.3s;
}
.list_news li .pic img:hover {
  transform: scale(1.1);
}
.list_news li .box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
}
.list_news li .box span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  color: #000;
}
.list_news li .box span:hover {
  color: #2754eb;
}
.list_news li .box em {
  color: #888;
  font-size: 16px;
  padding: 10px 0;
  display: block;
  overflow: hidden;
}
.list_news li .box p {
  display: block;
  overflow: hidden;
  line-height: 26px;
  height: 52px;
  color: #444;
  font-size: 16px;
}
.list_news li:last-child {
  border-bottom: 0;
}
/* list_pro */
.list_pro {
  margin: -10px;
  overflow: hidden;
}
.list_pro li {
  width: 33.33333333333%;
  float: left;
  padding: 10px;
}
.list_pro li a {
  display: block;
  overflow: hidden;
  border: 1px solid #eee;
}
.list_pro li .pic {
  overflow: hidden;
}
.list_pro li .pic img {
  width: 100%;
  height: auto;
  transition: all 0.3s;
}
.list_pro li span {
  background: #f0f0f0;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 40px;
  text-align: center;
  color: #000;
  transition: all 0.3s;
}
.list_pro li:hover .pic img {
  transform: scale(1.1);
}
.list_pro li:hover span {
  background: #2754eb;
  color: #fff;
}
/* view_news */
.view_news {
  overflow: hidden;
}
.view_news .bt {
  font-size: 20px;
  overflow: hidden;
  text-align: center;
  color: #000;
  font-weight: bold;
}
.view_news .cs {
  text-align: center;
  color: #888;
  overflow: hidden;
  padding: 8px 0 0 0;
}
.view_news .body {
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  margin: 15px 0;
  padding: 15px 0;
  overflow: hidden;
  line-height: 2;
}
.view_news .body img {
  max-width: 100%;
  height: auto;
  padding: 10px 0;
}
.view_news .sxfx {
  overflow: hidden;
  line-height: 24px;
  position: relative;
  color: #888;
}
.view_news .sxfx a {
  color: #888;
}
.view_news .sxfx a:hover {
  color: #2754eb;
}
.view_news .sxfx p {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.view_news .b_tit {
  position: relative;
  overflow: hidden;
  height: 34px;
  margin: 15px 0;
  text-transform: capitalize;
}
.view_news .b_tit:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #eee;
  content: "";
}
.view_news .b_tit span {
  height: 34px;
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #2754eb;
  padding: 0 5px;
  float: left;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.view_news .xgxw {
  overflow: hidden;
  margin: 0 -10px;
}
.view_news .xgxw li {
  width: 50%;
  padding: 0 10px;
  float: left;
}
.view_news .xgxw li a {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 28px;
  padding: 0 0 0 15px;
  position: relative;
}
.view_news .xgxw li a:before {
  width: 3px;
  height: 3px;
  background: #666666;
  position: absolute;
  content: "";
  left: 4px;
  top: 50%;
  margin-top: -2px;
}
/* view_pro */
.view_pro .flex_main {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.view_pro .flex_main .box {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  width: 0;
  padding: 0 0 0 30px;
}
.view_pro .flex_main .box .tit {
  border-bottom: 1px solid #ddd;
  padding: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #000;
}
.view_pro .flex_main .box .text {
  padding: 10px 0 0 0;
  color: #666;
  line-height: 1.8;
  overflow: hidden;
}
.view_pro .ppic {
  width: 360px;
  overflow: hidden;
}
.view_pro .ppic .probanbig {
  overflow: hidden;
}
.view_pro .ppic .probanbig img {
  width: 100%;
  height: auto;
  cursor: pointer;
}
.view_pro .ppic .probansmall {
  margin-top: 10px;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
}
.view_pro .ppic .probansmall .swiper-slide {
  width: 25%;
  cursor: pointer;
  padding: 0 5px;
}
.view_pro .ppic .probansmall .swiper-slide img {
  width: 100%;
  height: auto;
  border: 1px solid #d4d4d4;
  padding: 1px;
  opacity: 0.8;
}
.view_pro .ppic .probansmall .active-nav img {
  border: 1px solid #2754eb;
  opacity: 1;
}
.view_pro .ppic .probansmall .arrow-left,
.view_pro .ppic .probansmall .arrow-right {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 30px;
  height: 40px;
  line-height: 40px;
  margin-top: -20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.view_pro .ppic .probansmall .arrow-left:hover,
.view_pro .ppic .probansmall .arrow-right:hover {
  color: #2754eb;
}
.view_pro .ppic .probansmall .arrow-left {
  left: -8px;
}
.view_pro .ppic .probansmall .arrow-right {
  right: -8px;
}
.view_pro .b_tit {
  position: relative;
  overflow: hidden;
  height: 34px;
  margin: 35px 0 15px;
  text-transform: capitalize;
}
.view_pro .b_tit:before {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #eee;
  content: "";
}
.view_pro .b_tit span {
  height: 34px;
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #2754eb;
  padding: 0 5px;
  float: left;
  font-size: 18px;
  position: relative;
  z-index: 1;
}
.view_pro .body {
  overflow: hidden;
  line-height: 2;
  color: #666;
}
.view_pro .body img {
  max-width: 100%;
  height: auto;
  padding: 10px 0;
}
/* 分页 */
.arcpages {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 30px 0 0 0;
  width: 100%;
  overflow: hidden;
}
.arcpages li {
  float: left;
  border: 1px solid #d8d8d8;
  margin: 0 3px;
  line-height: 30px;
  border-radius: 3px;
  text-transform: capitalize;
}
.arcpages li a {
  padding: 0 12px;
  display: block;
  overflow: hidden;
  color: #666;
  background: #fff;
}
.arcpages li a:hover {
  background: #2754eb;
  color: #fff;
}
.arcpages li.pageinfo {
  padding: 0 12px;
  cursor: default;
}
.arcpages li.thisclass {
  border-color: #2754eb;
}
.arcpages li.thisclass a {
  background: #2754eb;
  color: #fff;
}
/* tan_pic */
.tan_pic {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  padding: 80px;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.85);
}
.tan_pic .swiper-container {
  width: 100%;
  height: 100%;
}
.tan_pic .swiper-container .swiper-slide {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.tan_pic .swiper-container .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}
.tan_pic .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 36px;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s;
  background: #000;
}
.tan_pic .close:hover {
  background: #2754eb;
}
.tan_pic .swiper-pagination-bullets {
  width: 100%;
  z-index: 5;
  left: 0px;
}
.tan_pic .swiper-pagination-bullet {
  width: 35px;
  height: 7px;
  background: #e0e0e0;
  border-radius: 4px;
  opacity: 1;
  margin: 0 10px;
  outline: none;
}
.tan_pic .swiper-pagination-bullet-active {
  background: #2754eb;
}
.tan_pic .swiper-button-next,
.tan_pic .swiper-button-prev {
  top: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  margin-top: -40px;
  background: none;
  font-size: 60px;
  z-index: 5;
  opacity: 1;
  outline: none;
  color: #fff;
  transition: all 0.3s;
}
.tan_pic .swiper-button-next:hover,
.tan_pic .swiper-button-prev:hover {
  color: #2754eb;
}
.tan_pic .swiper-button-disabled {
  opacity: 0.2;
}
.tan_pic .swiper-button-next {
  right: 0px;
}
.tan_pic .swiper-button-prev {
  left: 0px;
}
/* box_mess */
.box_mess {
  overflow: hidden;
  box-shadow: 0 0 10px #ccc;
  padding: 20px;
}
.box_mess ul {
  margin: -5px -10px;
  overflow: hidden;
}
.box_mess ul li {
  width: 50%;
  padding: 5px 10px;
  overflow: hidden;
  float: left;
}
.box_mess ul li label {
  display: block;
  overflow: hidden;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.box_mess ul li label em {
  color: #ff0000;
  margin-left: 10px;
}
.box_mess ul li input[type='text'],
.box_mess ul li textarea {
  width: 100%;
  float: left;
  background: #f5f7f8;
  height: 41px;
  color: #696e6e;
  border: 1px solid #e4e4e2;
  padding: 0 10px;
}
.box_mess ul li input[type='text']:focus,
.box_mess ul li textarea:focus {
  border-color: #2754eb;
}
.box_mess ul li input[disabled] {
  cursor: not-allowed;
}
.box_mess ul li textarea {
  height: 150px;
  padding: 10px;
}
.box_mess ul li input[type='submit'],
.box_mess ul li input[type='reset'] {
  width: 66px;
  height: 34px;
  background: #2754eb;
  color: #fff;
  border: 0;
  margin-right: 10px;
  text-transform: capitalize;
  cursor: pointer;
}
.box_mess ul li input[type='submit']:hover,
.box_mess ul li input[type='reset']:hover {
  opacity: 0.8;
}
.box_mess ul li.text {
  color: #ee372a;
}
.box_mess ul li.all {
  width: 100%;
}
