<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* S border.css */
.border,
.border-top,
.border-right,
.border-bottom,
.border-left,
.border-topbottom,
.border-rightleft,
.border-topleft,
.border-rightbottom,
.border-topright,
.border-bottomleft {
  position: relative;
}

.border::before,
.border-top::before,
.border-right::before,
.border-bottom::before,
.border-left::before,
.border-topbottom::before,
.border-topbottom::after,
.border-rightleft::before,
.border-rightleft::after,
.border-topleft::before,
.border-topleft::after,
.border-rightbottom::before,
.border-rightbottom::after,
.border-topright::before,
.border-topright::after,
.border-bottomleft::before,
.border-bottomleft::after {
  content: "\0020";
  overflow: hidden;
  position: absolute;
}

/* border
 * 因，边框是由伪元素区域遮盖在父级
 * 故，子级若有交互，需要对子级设置
 * 定位 及 z轴
 */
.border::before {
  box-sizing: border-box;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #eaeaea;
  transform-origin: 0 0;
}

.border-top::before,
.border-bottom::before,
.border-topbottom::before,
.border-topbottom::after,
.border-topleft::before,
.border-rightbottom::after,
.border-topright::before,
.border-bottomleft::before {
  left: 0;
  width: 100%;
  height: 1px;
}

.border-right::before,
.border-left::before,
.border-rightleft::before,
.border-rightleft::after,
.border-topleft::after,
.border-rightbottom::before,
.border-topright::after,
.border-bottomleft::after {
  top: 0;
  width: 1px;
  height: 100%;
}

.border-top::before,
.border-topbottom::before,
.border-topleft::before,
.border-topright::before {
  border-top: 1px solid #eaeaea;
  transform-origin: 0 0;
}

.border-right::before,
.border-rightbottom::before,
.border-rightleft::before,
.border-topright::after {
  border-right: 1px solid #eaeaea;
  transform-origin: 100% 0;
}

.border-bottom::before,
.border-topbottom::after,
.border-rightbottom::after,
.border-bottomleft::before {
  border-bottom: 1px solid #eaeaea;
  transform-origin: 0 100%;
}

.border-left::before,
.border-topleft::after,
.border-rightleft::after,
.border-bottomleft::after {
  border-left: 1px solid #eaeaea;
  transform-origin: 0 0;
}

.border-top::before,
.border-topbottom::before,
.border-topleft::before,
.border-topright::before {
  top: 0;
}

.border-right::before,
.border-rightleft::after,
.border-rightbottom::before,
.border-topright::after {
  right: 0;
}

.border-bottom::before,
.border-topbottom::after,
.border-rightbottom::after,
.border-bottomleft::after {
  bottom: 0;
}

.border-left::before,
.border-rightleft::before,
.border-topleft::after,
.border-bottomleft::before {
  left: 0;
}

@media (max--moz-device-pixel-ratio: 1.49), (-webkit-max-device-pixel-ratio: 1.49), (max-device-pixel-ratio: 1.49), (max-resolution: 143dpi), (max-resolution: 1.49dppx) {
  /* 默认值，无需重置 */
}
@media (min--moz-device-pixel-ratio: 1.5) and (max--moz-device-pixel-ratio: 2.49), (-webkit-min-device-pixel-ratio: 1.5) and (-webkit-max-device-pixel-ratio: 2.49), (min-device-pixel-ratio: 1.5) and (max-device-pixel-ratio: 2.49), (min-resolution: 144dpi) and (max-resolution: 239dpi), (min-resolution: 1.5dppx) and (max-resolution: 2.49dppx) {
  .border::before {
    width: 200%;
    height: 200%;
    transform: scale(0.5);
  }

  .border-top::before,
  .border-bottom::before,
  .border-topbottom::before,
  .border-topbottom::after,
  .border-topleft::before,
  .border-rightbottom::after,
  .border-topright::before,
  .border-bottomleft::before {
    transform: scaleY(0.5);
  }

  .border-right::before,
  .border-left::before,
  .border-rightleft::before,
  .border-rightleft::after,
  .border-topleft::after,
  .border-rightbottom::before,
  .border-topright::after,
  .border-bottomleft::after {
    transform: scaleX(0.5);
  }
}
@media (min--moz-device-pixel-ratio: 2.5), (-webkit-min-device-pixel-ratio: 2.5), (min-device-pixel-ratio: 2.5), (min-resolution: 240dpi), (min-resolution: 2.5dppx) {
  .border::before {
    width: 300%;
    height: 300%;
    transform: scale(0.33333);
  }

  .border-top::before,
  .border-bottom::before,
  .border-topbottom::before,
  .border-topbottom::after,
  .border-topleft::before,
  .border-rightbottom::after,
  .border-topright::before,
  .border-bottomleft::before {
    transform: scaleY(0.33333);
  }

  .border-right::before,
  .border-left::before,
  .border-rightleft::before,
  .border-rightleft::after,
  .border-topleft::after,
  .border-rightbottom::before,
  .border-topright::after,
  .border-bottomleft::after {
    transform: scaleX(0.33333);
  }
}
/* E border.css */
/* S reset.css */
body,
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td,
pre,
xmp {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  font-weight: normal;
}

address,
cite,
dfn,
em,
i,
optgroup,
var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

caption,
th {
  text-align: inherit;
}

ul,
ol,
menu {
  list-style: none;
}

fieldset,
img {
  border: 0;
}

img,
object,
input,
textarea,
button,
select {
  vertical-align: middle;
}

article,
aside,
footer,
header,
section,
nav,
figure,
figcaption,
hgroup,
details,
menu {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: " ";
}

textarea {
  overflow: auto;
  resize: vertical;
}

input,
textarea,
button,
select,
a {
  outline: 0 none;
  border: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

mark {
  background-color: transparent;
}

a,
ins,
s,
u,
del {
  text-decoration: none;
}

sup,
sub {
  vertical-align: baseline;
}

html {
  overflow-x: hidden;
  height: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: Arial, "Microsoft Yahei", "Helvetica Neue", Helvetica, sans-serif;
  color: #333;
  line-height: 1;
  -webkit-text-size-adjust: none;
  padding-top: constant(safe-area-inset-top);
  padding-top: evn(safe-area-inset-top);
  -webkit-overflow-scrolling: touch;
}

hr {
  height: .02rem;
  margin: .1rem 0;
  border: medium none;
  border-top: .02rem solid #cacaca;
}

a {
  display: block;
  text-decoration: none;
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* E reset.css */
/* S common.css */
*,
*:before,
*:after {
  max-height: 100000px;
}

.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.alignC {
  text-align: center;
}

.alignL {
  text-align: left;
}

.alignR {
  text-align: right;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.table {
  display: table;
}

.img-responsive {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* 禁止换行,超出省略号 */
.noWrapEllipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 文字两端对齐 */
.text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

/* 定义盒模型为 flex布局兼容写法并让内容水平垂直居中 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

/*flex-v：盒模型垂直布局*/
.flex-v {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

/* flex-1：子元素占据剩余的空间*/
.flex-1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*flex-align-center：子元素垂直居中*/
.flex-align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/*flex-pack-center：子元素水平居中*/
.flex-pack-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*flex-pack-justify：子元素两端对齐*/
.flex-pack-justify {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.row-wrap {
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}

/*
	使用注意：
	flex下的子元素必须为块级元素，非块级元素在android2.3机器下flex失效
	flex下的子元素宽度和高度不能超过父元素，否则会导致子元素定位错误，例如水平垂直居中
*/
* {
  box-sizing: border-box;
  /* 在X5新内核Blink中，在排版页面的时候，会主动对字体进行放大，会检测页面中的主字体，当某一块字体在我们的判定规则中，认为字号较小，并且是页面中的主要字体，就会采取主动放大的操作。然而这不是我们想要的，可以采取给最大高度解决 */
  max-height: 100000px;
}

*:before,
*:after {
  box-sizing: border-box;
  max-height: 100000px;
}

*,
*:before,
*:after {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  display: block;
  width: 100%;
}

.shade {
  position: fixed;
  z-index: 998;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.pd15 {
  padding: 0 15px;
}

.pd30 {
  padding: 0 30px;
}

.bgWhite {
  background-color: #fff;
}

/* E common.css */
/* 头部 */
.header-main {
  position: fixed;
  top: 0;
  width: 100%;
  height: 50px;
  background-color: #fff;
  padding: 0 15px 0 20px;
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.header-main .header-logo {
  width: 52px;
}
.header-main .header-toggle {
  width: 69px;
  height: 27px;
  border-radius: 30px;
  border: 1px solid #267ebf;
  font-size: 14px;
  margin-right: 13px;
}
.header-main .header-toggle .toggle_href {
  color: #368170;
  width: 50%;
  text-align: center;
  position: relative;
}
.header-main .header-toggle .toggle_href:first-child::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #267ebf;
  height: 8px;
  width: 1px;
}
.header-main .header-search {
  width: 19px;
  margin-right: 11px;
}
.header-main .header-nav {
  width: 18px;
}

/* 导航 */
.nav-main {
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  max-height: calc(100vh - 50px);
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 14px;
  z-index: 998;
  overflow-y: scroll;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.nav-main .nav-ul {
  padding: 10px 0px;
}
.nav-main .nav-ul .nav-li {
  overflow: hidden;
}
.nav-main .nav-ul .nav-li .li-tit {
  color: #fff;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
}
.nav-main .nav-ul .nav-li .tit-hover:hover {
  color: #368170;
}
.nav-main .nav-ul .nav-li .icon-right {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 5px;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}
.nav-main .nav-ul .nav-li .children-ul {
  height: 0;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}
.nav-main .nav-ul .nav-li .children-ul .children-li {
  color: #fff;
  height: 32px;
  line-height: 32px;
  padding-left: 35px;
}
.nav-main .nav-ul .nav-li .children-ul .children-li:hover {
  background-color: #368170;
}
.nav-main .nav-ul .nav-li .children-ul .children-li.active {
  color: #368170;
}
.nav-main .nav-ul .nav-li.on .li-tit {
  background-color: #368170;
}
.nav-main .nav-ul .nav-li.on .icon-right {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}
.nav-main .nav-ul .nav-li.on .children-ul {
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
}

.nav-main.on {
  top: 50px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

/* banner */
.banner-main .swiper1 .swiper-pagination-bullet {
  width: 13px;
  height: 3px;
  border-radius: 0;
  background: #267ebf;
}
.banner-main .swiper1 .swiper-pagination-bullet-active {
  background: #267ebf;
}
.banner-main .banner-box {
  position: relative;
}
.banner-main .banner-box .banner-img {
  width: 100%;
}
.banner-main .banner-box .banner-dl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
}
.banner-main .banner-box .banner-dl .banner-dt {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}
.banner-main .banner-box .banner-dl .banner-dd {
  font-size: 12px;
  color: #fff;
}

/* 标题 */
.tits-box {
  text-align: center;
}
.tits-box .tits-en {
  color: #6b6b6b;
  font-size: 18px;
  margin-bottom: 6px;
}
.tits-box .tits-cn {
  color: #606060;
  font-size: 14px;
  position: relative;
  display: inline-block;
}
.tits-box .tits-cn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -16px;
  transform: translateY(-50%);
  width: 6px;
  height: 6.5px;
  background: url(../images/icon-tit.png) no-repeat;
  background-size: 100% 100%;
}
.tits-box .tits-cn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 6px;
  height: 6.5px;
  background: url(../images/icon-tit.png) no-repeat;
  background-size: 100% 100%;
}

/* 更多 */
.more-btn a {
  width: 100px;
  height: 27.5px;
  text-align: center;
  line-height: 26px;
  border: 1px solid #368170;
  color: #368170;
  font-size: 14px;
  border-radius: 30px;
  margin: 0 auto;
}

/* 分页 */
.page-main {
  text-align: center;
}
.page-main &gt; div a {
  display: inline-block;
  background: rgba(54,129,112,.1);
  color: #999999;
  font-size: 12px;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
}
.page-main &gt; div .page_choose {
  display: inline-block;
  background: rgba(54,129,112,1);
  color: #fff;
  margin: 0 5px;
}



.page-main #page {
  margin: 20px auto;
  color: #666;
  display: block;
  text-align: center;
}
.page-main #page li {
  display: inline-block;
  min-width: 26px;
  height: 24px;
  cursor: pointer;
  color: #666;
  font-size: 12px;
  line-height: 24px;
  background-color: #f9f9f9;
  border: 1px solid #dce0e0;
  text-align: center;
  margin: 0 4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.page-main #page .xl-nextPage {
  width: 50px;
  color: #498C7D;
  height: 24px;
}
.page-main #page .xl-prevPage {
  width: 50px;
  color: #498C7D;
  height: 24px;
}
.page-main #page li.xl-disabled {
  opacity: .5;
  cursor: no-drop;
}
.page-main #page li.xl-disabled:hover {
  background-color: #f9f9f9 !important;
  border: 1px solid #dce0e0 !important;
  color: #666 !important;
}
.page-main #page li.xl-active {
  background-color: #498C7D;
  border-color: #498C7D;
  color: #FFF;
}
.page-main #page li:hover {
  background-color: #498C7D !important;
  border-color: #498C7D;
  color: #FFF;
}
.page-main #page li.xl-jumpText {
  background-color: rgba(0, 0, 0, 0);
  border-color: rgba(0, 0, 0, 0);
  opacity: 1;
  display: none;
}
.page-main #page li.xl-jumpText:hover {
  background-color: rgba(0, 0, 0, 0) !important;
  border-color: rgba(0, 0, 0, 0) !important;
}
.page-main #page li.xl-jumpButton {
  padding: 0 5px;
  display: none;
}
.page-main #page #xlJumpNum {
  width: 35px;
  margin: 0 3px;
  display: none;
}
.page-main #page input::-webkit-outer-spin-button, .page-main input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
}
.page-main #page input[type="number"] {
  -moz-appearance: textfield;
}

/* 底部 */
.footer-main .footer-con {
  padding: 18px 15px 16px;
  background-color: #368170;
}
.footer-main .footer-con .footer-logo {
  width: 86px;
  margin-bottom: 23px;
}
.footer-main .footer-con .footer-info .info-list {
  color: #fff;
  font-size: 12px;
  margin-bottom: 13px;
}
.footer-main .footer-con .footer-info .info-list .li-icon {
  width: 8px;
  margin-right: 8px;
}
.footer-main .footer-con .footer-code {
  text-align: center;
  display: inline-block;
}
.footer-main .footer-con .footer-code .code-img {
  width: 70px;
  display: inline-block;
}
.footer-main .footer-con .footer-code .code-text {
  color: #fff;
  font-size: 12px;
  transform: scale(0.85);
}
.footer-main .footer-copyright {
  text-align: center;
  color: #368170;
  font-size: 12px;
  padding: 15px 0;
  line-height: 16px;
}
.footer-main .footer-copyright .text {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
}
.footer-main .footer-copyright a {
  color: #368170;
  display: inline-block;
}

/* 面包屑 */
.crumbs-box {
  color: #999999;
  font-size: 12px;
  margin-bottom: 35px;
}
.crumbs-box a {
  color: #999999;
  font-size: 12px;
}

/* index */
.index-main1 {
  padding: 30px 0 31px;
  background: url(../images/bg-gsjj.png) no-repeat center bottom;
  background-size: 100% 322.5px;
}
.index-main1 .main1-con {
  padding-top: 20px;
}
.index-main1 .main1-con .con-img {
  margin-bottom: 12px;
  width: 100%;
}
.index-main1 .main1-con .con-tit {
  margin-bottom: 15px;
}
.index-main1 .main1-con .con-tit .tit {
  color: #368170;
  font-size: 14px;
  margin-bottom: 8px;
}
.index-main1 .main1-con .con-tit .text {
  color: #666666;
  font-size: 12px;
  line-height: 16px;
}
.index-main1 .main1-con .num-box {
  border: 1px solid #368170;
  padding: 13px 0;
  background-color: #fff;
}
.index-main1 .main1-con .num-box .num-list {
  width: 25%;
  text-align: center;
  position: relative;
}
.index-main1 .main1-con .num-box .num-list .list-dt {
  color: #368170;
  font-size: 12px;
  margin-bottom: 6px;
}
.index-main1 .main1-con .num-box .num-list .list-dd {
  color: #368170;
  font-size: 12px;
}
.index-main1 .main1-con .num-box .num-list .list-dd span {
  font-size: 15px;
  font-weight: bold;
}
.index-main1 .main1-con .num-box .num-list::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: #979797;
  width: 1px;
  height: 25px;
}
.index-main1 .main1-con .num-box .num-list:last-child::after {
  content: '';
  width: 0px;
}

.index-main2 {
  position: relative;
  padding: 38px 0 40px;
}
.index-main2 .main2-con {
  padding-top: 20px;
}
.index-main2 .main2-con .con-tab {
  margin-bottom: 24px;
}
.index-main2 .main2-con .con-tab .tab-list {
  /*width: 87px;*/
      width: auto;
    padding: 0 6px;
  height: 27px;
  border-radius: 30px;
  text-align: center;
  line-height: 27px;
  color: #4c4c4c;
  font-size: 14px;
  margin: 0 4px;
}
.index-main2 .main2-con .con-tab .tab-list.active {
  background-color: #368170;
  color: #fff;
}
.index-main2 .main2-con .cons-main .con-box .con-list {
  width: 49%;
  margin-right: 2%;
  margin-bottom: 20px;
}
.index-main2 .main2-con .cons-main .con-box .con-list .list-img {
  border: 2.5px solid #368170;
  background-color: #ebf2f0;
  padding: 0px 25px;
  height: 196px;
  overflow: hidden;
  margin-bottom: 12px;
}
.index-main2 .main2-con .cons-main .con-box .con-list .list-img img {
  max-height: 100%;
}
.index-main2 .main2-con .cons-main .con-box .con-list .list-tit {
  color: #4c4c4c;
  font-size: 14px;
  margin-bottom: 8px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-main2 .main2-con .cons-main .con-box .con-list .list-cn {
  color: #4c4c4c;
  font-size: 12px;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.index-main2 .main2-con .cons-main .con-box .con-list:nth-child(2n) {
  margin-right: 0%;
}

.index-main2::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
  height: 113px;
  background: url(../images/bg-cpzx1.png) no-repeat;
  background-size: 100% 100%;
}

.index-main2::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 105px;
  height: 102px;
  background: url(../images/bg-cpzx2.png) no-repeat;
  background-size: 100% 100%;
}

.index-main3 {
  padding: 0 0 20px;
}
.index-main3 .main3-con {
  padding-top: 20px;
}
.index-main3 .main3-con .con-box {
  margin-bottom: 20px;
}
.index-main3 .main3-con .con-list {
  margin-bottom: 10px;
}
.index-main3 .main3-con .con-list .list-img {
  width: 114px;
  height: 67px;
  margin-right: 9px;
  overflow: hidden;
}
.index-main3 .main3-con .con-list .list-dl {
  padding-top: 7px;
}
.index-main3 .main3-con .con-list .list-dl .list-dt {
  color: #267ebf;
  font-size: 14px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  margin-bottom: 10px;
}
.index-main3 .main3-con .con-list .list-dl .list-dd {
  color: #606060;
  font-size: 12px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  line-height: 18px;
}

.index-main4 {
  padding: 20px 0 45px;
}
.index-main4 .main4-con {
  padding-top: 20px;
}
.index-main4 .main4-con .con-list {
  width: 32%;
  height: 60px;
  margin-right: 2%;
  margin-bottom: 2%;
  padding: 0 25px;
  border: 1px solid #dadada;
  border-radius: 4px;
}
.index-main4 .main4-con .con-list:nth-child(3n) {
  margin-right: 0%;
}

/* 产品展示 */
.product-main .product-tab-swiper {
  height: 40px;
  background-color: #f2f2f2;
}
.product-main .product-tab-swiper .swiper-slide .tab-list {
  font-size: 14px;
  color: #333333;
  text-align: center;
  height: 100%;
  line-height: 40px;
}
.product-main .product-tab-swiper .swiper-slide.active .tab-list {
  color: #368170;
}
.product-main .product-con {
  padding: 30px 0 0;
}
.product-main .product-con .con-dl {
  color: #368170;
  text-align: center;
  margin-bottom: 20px;
}
.product-main .product-con .con-dl .con-dt {
  font-size: 15px;
  margin-bottom: 8px;
}
.product-main .product-con .con-dl .con-dd {
  font-size: 12px;
}
.product-main .product-con .con-box .con-list {
  width: 48%;
  margin-right: 4%;
  margin-bottom: 4%;
  box-shadow: 1px 0 10px rgba(54, 129, 112, 0.3);
}
.product-main .product-con .con-box .con-list .list-img {
  height: 147px;
  overflow: hidden;
}
.product-main .product-con .con-box .con-list .list-img img {
  height: 100%;
}
.product-main .product-con .con-box .con-list .list-dl {
  padding: 13px 10px;
}
.product-main .product-con .con-box .con-list .list-dl .list-dt {
  font-size: 12px;
  color: #999999;
  margin-bottom: 8px;
}
.product-main .product-con .con-box .con-list .list-dl .list-dd {
  font-size: 14px;
  color: #333333;
}
.product-main .product-con .con-box .con-list:nth-child(2n) {
  margin-right: 0;
}
.product-main .product-con .con-details {
  padding: 0 0 30px;
}
.product-main .product-con .con-details .crumbs-box {
  color: #999999;
  font-size: 12px;
  margin-bottom: 35px;
}
.product-main .product-con .con-details .crumbs-box a {
  color: #999999;
  font-size: 12px;
}
.product-main .product-con .con-details .details-box .d-tit {
  text-align: center;
  color: #333333;
  font-size: 15px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.product-main .product-con .con-details .details-box .d-num {
  font-size: 12px;
  color: #666666;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.product-main .product-con .con-details .details-box .d-num .num-list {
  padding: 0 5px;
}
.product-main .product-con .con-details .details-box .d-text {
  padding: 20px 0 36px;
  color: #666666;
  font-size: 12px;
}
.product-main .product-con .con-details .flip-box {
  border-top: 1px solid #e5e5e5;
  padding: 12px 0;
}
.product-main .product-con .con-details .flip-box .next-page {
  font-size: 14px;
  color: #333333;
}
.product-main .product-con .con-details .flip-box .next-page:hover {
  color: #368170;
}
.product-main .product-con .con-details .flip-box .pvre-page {
  font-size: 14px;
  color: #333333;
}
.product-main .product-con .con-details .flip-box .pvre-page:hover {
  color: #368170;
}

/* 服务支持 */
.service-main .service-box {
  padding: 35px 0;
}
.service-main .service-box .service-list {
  height: 230px;
  width: 100%;
  margin-bottom: 15px;
  text-align: center;
  box-shadow: 0px 1px 8px #e5eae9;
  padding: 0px 28px;
}
.service-main .service-box .service-list .list-icon {
  display: inline-block;
  width: 68px;
  height: 68px;
  margin-bottom: 10px;
}
.service-main .service-box .service-list .list-text {
  color: #666666;
  font-size: 12px;
  line-height: 18px;
}
.service-main .service-box .service-list.list-1 {
  background: url(../images/bg-fwzc1.png) no-repeat;
  background-size: 100% 100%;
}
.service-main .service-box .service-list.list-2 {
  background: url(../images/bg-fwzc2.png) no-repeat;
  background-size: 100% 100%;
}
.service-main .service-box .service-list.list-3 {
  background: url(../images/bg-fwzc3.png) no-repeat;
  background-size: 100% 100%;
}
.service-main .service-box .service-list.list-4 {
  background: url(../images/bg-fwzc4.png) no-repeat;
  background-size: 100% 100%;
}

/* 加入我们-联系我们 */
.join-main .join-tab {
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f2f2f2;
}
.join-main .join-tab .tab-list {
  text-align: center;
  width: 40%;
  font-size: 14px;
  color: #333333;
}
.join-main .join-tab .tab-list.active {
  color: #368170;
}
.join-main .join-con {
  padding: 25px 15px 43px;
}
.join-main .join-con .con-tit {
  font-size: 15px;
  color: #333333;
  margin-bottom: 23px;
}
.join-main .join-con .con-info {
  font-size: 12px;
  color: #666666;
  line-height: 18px;
  margin-bottom: 15px;
}
.join-main .recruit-con {
  padding: 20px 15px;
}
.join-main .recruit-con .recruit-list {
  box-shadow: 0 1px 8px #e5eae9;
  padding: 18px 15px;
  margin-bottom: 10px;
}
.join-main .recruit-con .recruit-list .list-head {
  margin-bottom: 8px;
}
.join-main .recruit-con .recruit-list .list-head .head-dl .head-dt {
  color: #666666;
  font-size: 12px;
  margin-bottom: 4px;
}
.join-main .recruit-con .recruit-list .list-head .head-dl .head-dd {
  color: #333333;
  font-size: 15px;
}
.join-main .recruit-con .recruit-list .list-head .head-btn {
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: #368170;
  font-size: 12px;
  width: 80px;
  height: 24px;
  line-height: 23px;
  text-align: center;
  border: 1px solid #368170;
}
.join-main .recruit-con .recruit-list .list-text {
  color: #999999;
  font-size: 12px;
  line-height: 18px;
}
.join-main .recruit-con .recruit-list .list-text .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.join-main .recruit-details {
  padding: 16px 0 0;
}
.join-main .recruit-details .crumbs-box {
  color: #999999;
  font-size: 12px;
  margin-bottom: 35px;
}
.join-main .recruit-details .crumbs-box a {
  color: #999999;
  font-size: 12px;
}
.join-main .recruit-details .details-box .d-tit {
  color: #666666;
  font-size: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.join-main .recruit-details .details-box .d-tit span {
  color: #333333;
  font-size: 16px;
}
.join-main .recruit-details .details-box .d-list {
  padding: 24px 0 10px;
  color: #666666;
  font-size: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.join-main .recruit-details .details-box .d-list .list {
  color: #666666;
  font-size: 12px;
  margin-bottom: 15px;
}
.join-main .recruit-details .details-box .d-text {
  padding: 24px 0px;
  color: #666666;
  font-size: 12px;
  line-height: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.join-main .recruit-details .details-box .d-from {
  padding: 24px 0;
  font-size: 12px;
  color: #333333;
}
.join-main .recruit-details .details-box .d-from .from-tit {
  margin-bottom: 20px;
}
.join-main .recruit-details .details-box .d-from .from-list {
  margin-bottom: 12px;
}
.join-main .recruit-details .details-box .d-from .from-list label {
  width: 70px;
}
.join-main .recruit-details .details-box .d-from .from-list input {
  height: 30px;
  font-size: 12px;
  background-color: #eeeeee;
}
.join-main .recruit-details .details-box .d-from .from-list select {
  height: 30px;
  font-size: 12px;
  background-color: #eeeeee;
}
.join-main .recruit-details .details-box .d-from .from-list textarea {
  height: 190px;
  font-size: 12px;
  background-color: #eeeeee;
}
.join-main .recruit-details .details-box .d-from .from-btn {
  padding: 15px 0 0;
}
.join-main .recruit-details .details-box .d-from .from-btn .btn-reset {
  width: 80px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  border: 1px solid #368170;
  color: #368170;
  margin-right: 40px;
}
.join-main .recruit-details .details-box .d-from .from-btn .btn-submit {
  width: 80px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  border: 1px solid #368170;
  background-color: #368170;
  color: #fff;
}

/* 新闻中心 */
.news-main .news-tab {
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #f2f2f2;
}
.news-main .news-tab .tab-list {
  text-align: center;
  width: 40%;
  font-size: 14px;
  color: #333333;
}
.news-main .news-tab .tab-list.active {
  color: #368170;
}
.news-main .main3-con .con-list {
  box-shadow: 0 0px 8px rgba(54, 119, 112, 0.2);
  padding: 10px;
}
.news-main .news-details {
  padding: 15px 0 0px;
}
.news-main .news-details .details-box .d-tit {
  color: #333333;
  font-size: 15px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 15px;
}
.news-main .news-details .details-box .d-num {
  font-size: 12px;
  color: #666666;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
}
.news-main .news-details .details-box .d-num .num-list {
  padding: 0 5px;
}
.news-main .news-details .details-box .d-text {
  padding: 20px 0 36px;
  color: #666666;
  font-size: 12px;
  line-height: 18px;
}
.news-main .news-details .flip-box {
  border-top: 1px solid #e5e5e5;
  padding: 12px 0;
}
.news-main .news-details .flip-box .next-page {
  font-size: 14px;
  color: #333333;
}
.news-main .news-details .flip-box .next-page:hover {
  color: #368170;
}
.news-main .news-details .flip-box .pvre-page {
  font-size: 14px;
  color: #333333;
}
.news-main .news-details .flip-box .pvre-page:hover {
  color: #368170;
}
.news-main .news-details .lately-box {
  padding-top: 20px;
}
.news-main .news-details .lately-box .lately-tit .tit {
  color: #333333;
  font-size: 14px;
}
.news-main .news-details .lately-box .lately-tit .more {
  color: #999999;
  font-size: 12px;
}

/* 搜索 */
.search-wrap {
  padding-top: 10px;
}
.search-wrap .search-tit {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  padding: 14px 0;
  border-bottom: 1px solid #368170;
}
.search-wrap .search-input {
  padding: 20px 0 22px;
  font-size: 18px;
}
.search-wrap .search-input label {
  color: #444444;
  font-size: 15px;
}
.search-wrap .search-input input {
  width: 166px;
  height: 30px;
  background: #ebebeb;
  margin-right: 10px;
  font-size: 15px;
  padding: 0 10px;
}
.search-wrap .search-input button {
  width: 80px;
  height: 30px;
  background: #368170;
  border-radius: 1px;
  text-align: center;
  color: #fefffe;
  line-height: 30px;
  border: none;
  font-size: 15px;
}
.search-wrap .search-tips {
  color: #444444;
  font-size: 15px;
  margin-bottom: 22px;
}
.search-wrap .search-tips span {
  color: #368170;
}
.search-wrap .search-box .search-list {
  height: 36px;
  border-bottom: 1px solid #e9e9e9;
  font-size: 15px;
  line-height: 36px;
}
.search-wrap .search-box .search-list .column {
  color: #498C7D;
  display: inline-block;
  padding-right: 10px;
  position: relative;
}
.search-wrap .search-box .search-list .column::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: #999999;
}
.search-wrap .search-box .search-list .title {
  color: #333333;
  margin-left: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  width: 85%;
}
.search-wrap .search-box .search-list .title span {
  color: #498C7D;
}
.search-wrap .search-box .search-list:hover .title {
  color: #498C7D;
}

/* 走进鲁沪 */
.enter-main .enter-tab-swiper {
  height: 40px;
  background-color: #f2f2f2;
}
.enter-main .enter-tab-swiper .swiper-slide .tab-list {
  font-size: 14px;
  color: #333333;
  text-align: center;
  height: 100%;
  line-height: 40px;
}
.enter-main .enter-tab-swiper .swiper-slide.active .tab-list {
  color: #368170;
}
.enter-main .enter-con .con-introduction {
  padding: 35px 0;
}
.enter-main .enter-con .con-introduction .intr-img {
  width: 100%;
}
.enter-main .enter-con .con-introduction .intr-logo {
  width: 120px;
  margin: 18px auto;
}
.enter-main .enter-con .con-introduction .intr-text {
  color: #666666;
  font-size: 12px;
  line-height: 20px;
  text-indent: 26px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
.enter-main .enter-con .con-introduction .intr-num .num-list {
  width: 23.4%;
  height: 36px;
  border: 1.5px solid #368170;
  margin-right: 2%;
  position: relative;
}
.enter-main .enter-con .con-introduction .intr-num .num-list .num-dl {
  background-color: #fff;
  color: #368170;
  text-align: center;
  min-width: 55px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.enter-main .enter-con .con-introduction .intr-num .num-list .num-dl .num-dt {
  font-size: 12px;
}
.enter-main .enter-con .con-introduction .intr-num .num-list .num-dl .num-dd {
  font-size: 12px;
}
.enter-main .enter-con .con-introduction .intr-num .num-list .num-dl .num-dd span {
  font-size: 15px;
  font-weight: bold;
}
.enter-main .enter-con .con-introduction .intr-num .num-list:nth-child(4) {
  margin-right: 0;
}
.enter-main .enter-con .con-environment {
  background: url(../images/bg-hjzs.png) no-repeat;
  background-size: 100% 100%;
  padding: 30px 0 25px;
}
.enter-main .enter-con .con-environment .env-tit {
  color: #333333;
  font-size: 15px;
  margin-bottom: 20px;
  text-align: center;
}
.enter-main .enter-con .con-environment .env-box .env-list {
  width: 48%;
  margin-right: 2%;
  margin-bottom: 4%;
  text-align: center;
  background-color: #fff;
}
.enter-main .enter-con .con-environment .env-box .env-list .list-img {
  width: 100%;
  height: 108px;
}
.enter-main .enter-con .con-environment .env-box .env-list .list-img img {
  height: 100%;
}
.enter-main .enter-con .con-environment .env-box .env-list .list-tit {
  font-size: 14px;
  color: #333333;
  height: 35px;
  line-height: 35px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.enter-main .enter-con .con-environment .env-box .env-list:nth-child(2n) {
  margin-right: 0%;
}
.enter-main .enter-con .con-culture {
  padding: 0px 15px 40px;
}
.enter-main .enter-con .con-culture .culture-box {
  padding: 40px 0 0px;
}
.enter-main .enter-con .con-culture .culture-box .culture-img {
  width: 100%;
  margin-bottom: 25px;
}
.enter-main .enter-con .con-culture .culture-box .culture-dl {
  color: #368170;
  margin-bottom: 15px;
}
.enter-main .enter-con .con-culture .culture-box .culture-dl .culture-dt {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}
.enter-main .enter-con .con-culture .culture-box .culture-dl .culture-dd {
  font-size: 12px;
}
.enter-main .enter-con .con-culture .culture-box .culture-text {
  color: #666666;
  font-size: 12px;
  line-height: 24px;
}
.enter-main .enter-con .con-framework {
  padding: 28px 15px;
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>