html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Microsoft YaHei", Arial, helvetica, sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
  text-decoration: none;
}

html,
body {
  font-size: 12px;
  overflow-x: hidden;
}

@media (min-width:992px) {

  html,
  body {
    font-size: 14px;
  }
}

@media(min-width:1200px) {

  html,
  body {
    font-size: 16px;
  }

  .container {
    margin: 0 auto;
  }
}

@media(min-width:1440px) {
  .container {
    max-width: 1400px;
  }
}

@font-face {
  font-family: 'iconfont';
  /* Project id 1886893 */
  src: url('../fonts/font_1886893_giqqpq5kbw9.woff2') format('woff2'),
    url('../fonts/font_1886893_giqqpq5kbw9.woff') format('woff'),
    url('../fonts/font_1886893_giqqpq5kbw9.ttf') format('truetype');
}

.ali-font {
  font-family: 'iconfont';
}

.ali-icon {
  font-family: 'iconfont';
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}

/*手机端简化分页按钮*/
@media(max-width:767px) {
  .de-page-mian .page-inner a {
    margin-right: 0 !important;
  }

  .de-page-mian span,
  .de-page-mian input,
  .de-page-mian .page-btn,
  .de-page-mian .prev,
  .de-page-mian .next {
    display: none !important;
  }
}

.imgbox {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.imgbox:after {
  content: '';
  display: block;
  padding-top: 75%;
}

.imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.imgbox:hover {
  border: 1px solid #2f8e66 !important;
}

.header {
  display: flex;
  align-items: center;
  height: 60px;
  z-index: 99;
}

.tel {
  color: #2f8e66;
}

.tel b {
  color: #2f8e66;
  font-weight: bold;
  font-size: 22px;
  display: block;
  padding-top: 5px;
}

.menu {
  color: #333;
  justify-content: space-between;
}

.menu .slide {
  padding: 0 10px;
  white-space: nowrap;
  text-align: center;
  line-height: 100px;
  align-self: center;
  position: relative;
}

.menu .slide a {
  display: block;
}

.menu-btn {
  color: #222;
  font-size: 26px;
  text-align: right;
  cursor: pointer;
}

@media(max-width:991px) {}

@media(min-width:1200px) {
  .header {
    height: 100px;
  }

  .menu .slide:after {
    content: '';
    background: #2f8e66;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    transition: .16s all;
  }

  .menu .slide:hover,
  .menu .slide.active,
  .menu .slide.current-menu-item {
    color: #2f8e66;
    /* font-weight: bold; */
  }

  .menu .slide:hover:after,
  .menu .slide.active:after,
  .menu .slide.current-menu-item:after {
    height: 3px;
    transition: .16s all;
  }
}

@media(min-width:1440px) {
  .menu .slide {
    padding: 0 15px;
  }
}

@media(min-width:1601px) {
  .menu .slide {
    padding: 0 20px;
  }
}

#flash {
  overflow: hidden;
}

.flash-box {
  position: relative;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.flash-box img {
  max-width: 100%;
}

@media (min-width:992px) {
  .flash-box {
    width: 1440px;
  }
}

@media (min-width:1440px) {
  .flash-box {
    width: 1920px;
  }
}

body {
  transition: all .6s;
}

body.open {
  overflow: hidden !important;
  transition: all .6s;
  overflow-x: visible;
}

.m-nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: -100%;
  background: #2f8e66;
  color: #fff;
  z-index: -1;
  transition: all .6s;
}

.m-nav.open {
  overflow-y: scroll;
  transform: translateX(-100%);
  transition: all .6s;
  z-index: 99999;
}

.m-logo {
  display: flex;
  align-items: center;
  border-bottom: 3px solid rgba(255, 255, 255, .6);
  font-size: 20px;
  font-weight: bold;
  height: 80px;
  padding-left: 10%;
  padding-right: 20%;
  line-height: 1.3;
  margin-bottom: 15px;
}

.m-logo img {
  height: 45px;
}

.m-nav li {
  line-height: 36px;
  padding-left: 10%;
  padding-bottom: 7px;
}

.m-nav li:after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: .36s all;
}

.m-nav li a {
  color: #fff;
  display: block;
}

.m-nav li:hover {
  background: #fff;
}

.m-nav li:hover a {
  color: #000;
}

.m-nav li:hover:after {
  background: #000;
  width: 80px;
  transition: .36s all;
}

.m-close {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  position: absolute;
  right: 15px;
  top: 15px;
  cursor: pointer;
}

.m-tel {
  font-size: 24px;
  line-height: 40px;
  margin-top: 20px;
  padding-left: 10%;
}

.m-tel p {
  font-size: 18px;
}

@media(min-width:992px) {
  body.open {
    transform: translateX(-500px);
  }

  .m-nav.open {
    width: 500px;
    right: -500px;
  }

  .m-nav li {
    line-height: 50px;
    font-size: 16px;
  }

  .m-close {
    font-size: 64px;
  }
}

.m-menu {
  background: #2f8e66;
}

.m-menu .slide {
  color: #fff;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  line-height: 40px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.m-menu .slide:nth-child(4n) {
  border-right: none;
}

.m-menu .slide a {
  display: block;
}

.m-menu .slide a:hover,
.m-menu .slide a.active {
  background: #267453;
}

.index01 {
  background: #f3f4f8;
  padding: 30px 0;
}

.index01 .title {
  display: flex;
  align-items: center;
}

.index01 .t1 {
  color: #222;
  font-size: 22px;
}

.index01 .t2 {
  color: #2f8e66;
  font-size: 20px;
  margin-left: 15px;
  /*font-family: 'Exotc350 DmBd BT';*/
}

.index01 .t3 {
  color: #2f8e66;
  margin-top: 15px;
  font-size: 14px;
  font-weight: bold;
}

.index01 .t3 span {
  color: #222;
  line-height: 24px;
}

.index01 .t4 {
  color: #717071;
  margin-top: 15px;
  line-height: 24px;
  height: 96px;
  overflow: hidden;
  text-align: justify;
}

.index01 .t5 {
  font-weight: bold;
  margin-top: 10px;
}

.index01 .more {
  display: block;
  color: #fff;
  background: #2f8e66;
  width: 200px;
  height: 40px;
  line-height: 40px;
  margin-top: 15px;
  box-sizing: border-box;
  border-radius: 20px;
  text-align: center;
  transition: .16s all;
}

@media(max-width:991px) {
  .index01 .content {
    margin-bottom: 25px;
  }
}

@media(min-width:768px) {}

@media(min-width:1200px) {
  .index01 {
    padding: 85px 0 60px;
  }

  .index01 .content {
    padding-left: 5%;
  }

  .index01 .t1 {
    font-size: 38px;
  }

  .index01 .t2 {
    font-size: 30px;
    font-weight: bold;
  }

  .index01 .t3 {
    margin-top: 32px;
    font-size: 19px;
  }

  .index01 .t4 {
    margin-top: 30px;
    line-height: 30px;
    height: 150px;
  }

  .index01 .more {
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    margin-top: 40px;
  }

  .index01 .more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, .6);
    transition: .16s all ease-in;
  }
}

.index02 {
  padding: 30px 0;
}

.index02 .title {
  text-align: center;
}

.index02 .t1 {
  color: #222;
  font-size: 22px;
  display: inline;
}

.index02 .t2 {
  color: #2f8e66;
  font-size: 20px;
  margin-left: 15px;
  display: inline;
  /*font-family: 'Exotc350 DmBd BT';*/
}

.index02 .type {
  margin-top: 20px;
  display: flex;
  overflow-x: auto;
  position: relative;
}

.index02 .type::-webkit-scrollbar {
  height: 0;
}

.index02 .type a {
  display: block;
  color: #444;
  background: #e3e3e3;
  line-height: 35px;
  margin-right: 2px;
  white-space: nowrap;
  padding: 0 15px;
  text-align: center;
}

.index02 .type a:last-child {
  margin-right: 0;
}

.index02 .type a:hover {
  color: #fff;
  background: #2f8e66;
}

.index02 .content {
  margin-top: 25px;
}

.index02 .swiper-slide {
  border: 2px solid #fff;
}

.index02 .txtbox {
  display: flex;
  padding-top: 5px;
  line-height: 35px;
  padding-left: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e5e5e5;
  transition: .36s padding, .36s margin;
}

.index02 .txtbox span {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.index02 .txtbox i {
  color: #ccc;
  font-size: 18px;
  margin-left: auto;
  margin-right: 15px;
}

.index02 .more {
  display: block;
  color: #fff;
  background: #2f8e66;
  width: 200px;
  height: 40px;
  line-height: 40px;
  margin: 10px auto 0;
  border-radius: 20px;
  text-align: center;
}

.index02 .swiper-slide:hover {
  background: #2f8e66;
  border: 2px solid #2f8e66;
  box-shadow: 0 0 10px 0 #e5e5e5;
  transition: .36s box-shadow ease-in;
}

.index02 .swiper-slide:hover .txtbox {
  color: #fff;
  background: #2f8e66;
  border-color: #2f8e66;
  padding-top: 20px;
  margin-bottom: 0;
  transition: .36s padding ease-in, .36s margin;
}

.index02 .swiper-slide:hover .txtbox i {
  color: #fff;
}

.index02 .swiper-slide .imgbox:hover {
  border: 0 !important;
}

@media(max-width:991px) {
  .index02 .type-move {
    opacity: 0;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 0px;
    width: 40px;
    height: 35px;
    font-size: 24px;
    text-align: center;
    line-height: 35px;
    /*background:#fff url(../images/move.png) no-repeat center right;background-size:35px 20px;*/
  }
}

@media(max-width:767px) {
  .index02 .type {
    margin-left: -10px;
    margin-right: -10px;
  }

  .index02 .type:after {
    content: '';
    display: block;
    min-width: 45px;
    height: 35px;
  }

  .index02 .type-move {
    top: 20px;
  }
}

@media(min-width:768px) {
  .index02 .type {
    margin-top: 30px;
    justify-content: center;
    padding: 0 5%;
  }

  .index02 .type a {
    line-height: 35px;
    padding: 0 20px;
  }
}

@media(min-width:1200px) {
  .index02 {
    padding-top: 75px;
    padding-bottom: 50px;
  }

  .index02 .t1 {
    font-size: 38px;
  }

  .index02 .t2 {
    font-size: 30px;
    font-weight: bold;
  }

  .index02 .type {
    margin-top: 40px;
  }

  .index02 .type a {
    line-height: 40px;
    font-size: 14px;
  }

  .index02 .content {
    margin-top: 65px;
  }

  .index02 .swiper-slide {
    margin-bottom: 40px;
  }

  .index02 .txtbox {
    line-height: 60px;
    padding-left: 30px;
  }

  .index02 .txtbox i {
    margin-right: 30px;
  }

  .index02 .more {
    font-size: 15px;
    height: 48px;
    line-height: 48px;
    border-radius: 24px;
    transition: .16s all ease-out;
  }

  .index02 .more:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -5px rgba(0, 0, 0, .6);
    transition: .16s all ease-in;
  }
}

@media(min-width:1601px) {
  .index02 .type a {
    font-size: 16px;
  }

  .index02 .content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}

.index03 {
  padding: 30px 0;
  background: #2f8e66 url(../images/in03_bg.jpg) no-repeat center;
  background-size: cover;
  position: relative;
}

.index03 .fimg {
  position: absolute;
  right: 0;
  top: 0px;
  display: none;
  z-index: 3;
}

.index03 .t1 {
  color: #fff;
  font-size: 22px;
  display: inline;
}

.index03 .t2 {
  color: #fff;
  font-size: 20px;
  margin-left: 15px;
  display: inline;
  /*font-family: 'Exotc350 DmBd BT';*/
}

.index03 .t3 {
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}

.index03 .content {
  margin-top: 25px;
}

.index03 .swiper-container {
  padding: 10px 0;
}

.index03 .swiper-slide {
  background: #f3f4f8;
  padding: 25px 15px;
  text-align: center;
  transition: .36s all;
}

.index03 .swiper-slide:hover {
  background: #fff;
  cursor: pointer;
  transform: translateY(-10px);
  box-shadow: 0 0 20px -5px #111;
  transition: .36s all;
}

.index03 .swiper-slide:hover .img {
  animation: zoomIn 1s;
}

.index03 .swiper-slide:hover .c1 {
  color: #2f8e66;
}

.index03 .swiper-slide .img {
  overflow: hidden;
  max-height: 65px;
}

.index03 .c1 {
  color: #333333;
  font-size: 16px;
  margin-top: 10px;
  /* white-space: nowrap; */
}

.index03 .c1:after {
  content: '';
  display: block;
  margin: 20px auto 0;
  width: 40px;
  height: 1px;
  background: #b6b6b6;
}

.index03 .c2 {
  color: #5c5b5b;
  line-height: 20px;
  height: 60px;
  overflow: hidden;
  margin-top: 15px;
}

@media(min-width:1200px) {
  .index03 {
    padding: 50px 0 75px;
  }

  .index03 .t1 {
    font-size: 38px;
  }

  .index03 .t2 {
    font-size: 30px;
  }

  .index03 .t3 {
    letter-spacing: 0px;
    text-align: right;
    margin-top: 0;
  }

  .index03 .content {
    margin-top: 50px;
  }

  .index03 .swiper-slide {
    padding: 30px 20px;
  }

  .index03 .c1 {
    margin-top: 15px;
  }

  .index03 .c2 {
    font-size: 14px;
  }
}

@media(min-width:1440px) {
  .index03 .swiper-slide {
    padding: 35px 25px;
  }

  .index03 .c1 {
    margin-top: 17px;
  }
}

@media(min-width:1601px) {
  .index03 .swiper-slide {
    padding: 40px 32px;
    padding: 40px 15px;
  }

  .index03 .c1 {
    font-size: 22px;
    font-size: 18px;
    margin-top: 20px;
  }
}

@media(min-width:1800px) {
  .index03 .fimg {
    display: block;
  }
}

.index04 {
  padding: 30px 0;
}

.index04 .title {
  display: flex;
  align-items: center;
}

.index04 .t1 {
  color: #222;
  font-size: 22px;
}

.index04 .t2 {
  color: #2f8e66;
  font-size: 20px;
  margin-left: 15px;
  /*font-family: 'Exotc350 DmBd BT';*/
}

.index04 .more {
  color: #717071;
  display: inline;
  margin-left: auto;
  transition: .3s all;
}

.index04 .content {
  margin-top: 20px;
}

.index04 .t3 {
  color: #fff;
  background: rgba(0, 0, 0, .56);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 40px;
}

.index04 .slide {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.index04 a:first-child .slide {
  margin-bottom: 20px;
  border-bottom: 1px solid #e6e6e6;
}

.index04 .time {
  color: #717071;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding: 0 15px;
}

.index04 .time b {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

.index04 .c1 {
  color: #484848;
  font-size: 14px;
}

.index04 .c2 {
  color: #999;
  line-height: 24px;
  height: 48px;
  overflow: hidden;
  margin-top: 15px;
}

.index04 .c3 {
  color: #484848;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index04 .c4 {
  color: #999;
  margin-left: auto;
  white-space: nowrap;
}

.index04 .slide:hover .c1,
.index04 .slide:hover .c3 {
  color: #2f8e66;
}

@media(min-width:992px) {
  .index04 {
    padding: 35px 0 40px;
  }

  .index04 .t1 {
    font-size: 26px;
  }

  .index04 .t2 {
    font-size: 24px;
  }

  .index04 .content {
    margin-top: 25px;
  }

  .index04 a:first-child .slide {
    margin-bottom: 35px;
  }

  .index04 .time {
    font-size: 15px;
    padding: 0 20px;
  }

  .index04 .time b {
    font-size: 36px;
  }

  .index04 .c2 {
    font-size: 14px;
  }

  .index04 .more:hover {
    color: #fff;
    background: #2f8e66;
    padding: 5px 10px;
    transition: .3s all;
  }
}

@media(min-width:1200px) {
  .index04 {
    padding: 45px 0 50px;
  }

  .index04 .t1 {
    font-size: 30px;
  }

  .index04 .t2 {
    font-size: 28px;
  }

  .index04 .content {
    margin-top: 35px;
  }

  .index04 a:first-child .slide {
    margin-bottom: 35px;
  }

  .index04 .time {
    font-size: 15px;
    padding: 0 25px;
  }

  .index04 .time b {
    font-size: 42px;
  }

  .index04 .c2 {
    font-size: 14px;
  }

  .index04 .more:hover {
    color: #fff;
    background: #2f8e66;
    padding: 5px 10px;
    transition: .3s all;
  }
}

@media(min-width:1440px) {
  .index04 {
    padding: 60px 0 65px;
  }

  .index04 .t1 {
    font-size: 34px;
  }

  .index04 .t2 {
    font-size: 29px;
  }

  .index04 .content {
    margin-top: 45px;
  }

  .index04 a:first-child .slide {
    margin-bottom: 35px;
  }

  .index04 .time {
    padding: 0 30px;
  }

  .index04 .time b {
    font-size: 48px;
  }

  .index04 .c1 {
    font-size: 17px;
  }
}

@media(min-width:1601px) {
  .index04 {
    padding: 75px 0 80px;
  }

  .index04 .t1 {
    font-size: 38px;
  }

  .index04 .t2 {
    font-size: 30px;
  }

  .index04 .content {
    margin-top: 55px;
  }

  .index04 a:first-child .slide {
    margin-bottom: 35px;
  }

  .index04 .time {
    padding: 0 35px;
  }

  .index04 .time b {
    font-size: 57px;
  }
}

.footer {
  color: rgba(255, 255, 255, .6);
  background: #2f3231;
  line-height: 24px;
  padding: 25px 0;
}

.footer a {
  color: rgba(255, 255, 255, .6);
}

.footer a:hover {
  color: #fff;
}

.footer .f-menu a {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, .6);
  padding: 0 15px;
  line-height: 12px;
}

.footer .f-menu a:first-child {
  padding-left: 0;
}

.footer .f-menu a:last-child {
  border: none;
}

.footer .txtbox {
  align-self: center;
  margin-top: 15px;
}

.footer .ewm {
  line-height: 15px;
  justify-content: flex-end;
}

.footer .ewm .c1 {
  line-height: 1.2;
}

.footer .ewm .img {
  margin-left: 20px;
  padding-right: 5px;
}

.footer .ewm .img img {
  width: 110px;
}

@media(max-width:991px) {
  .footer .f-menu {
    display: flex;
    flex-wrap: wrap;
  }

  .footer .f-menu a {
    flex: 1;
    flex-basis: 25%;
    max-width: 25%;
    text-align: center;
    padding: 0 5px;
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .footer .f-menu a:nth-child(4n) {
    border-right: none;
  }
}

@media(min-width: 992px) {
  .footer .f-menu {
    white-space: nowrap;
  }
}

@media(min-width:1200px) {
  .footer {
    padding: 38px 0 30px;
    line-height: 36px;
  }

  .footer .f-menu a {
    font-size: 15px;
    padding: 0 22px;
  }

  .footer .txtbox {
    font-size: 14px;
    line-height: 36px;
  }
}

@media(min-width:1601px) {
  .footer .f-menu a {
    padding: 0 30px;
  }
}

.footer-bar {
  height: 70px;
}

.footer-bar .list {
  color: #fff;
  background: #2f8e66;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 999;
}

.footer-bar .slide {
  flex: 1;
  text-align: center;
  line-height: 30px;
}

.footer-bar .slide i {
  display: block;
  font-size: 25px;
  padding-top: 10px;
}

/*内页大图样式*/
.inbanner {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.inbanner img {
  width: 600px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

@media(min-width:600px) {
  .inbanner img {
    width: 768px;
  }
}

@media(min-width:768px) {
  .inbanner img {
    width: 992px;
  }
}

@media(min-width:992px) {
  .inbanner img {
    width: 1200px;
  }
}

@media(min-width:1200px) {
  .inbanner img {
    width: unset;
  }
}

/*侧边导航样式*/
.sider {
  flex-basis: 100%;
  overflow: hidden;
}

.sider01 .list {
  width: 100%;
}

.sider01 .list::-webkit-scrollbar {
  height: 0;
}

.sider .msg {
  color: #fff;
  line-height: 65px;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  background: #2f8e66 url(../images/msg.png) no-repeat left 30px center;
  text-align: center;
}

.sider01 .t1 {
  color: #fff;
  background: #2f8e66;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 50px;
  /* padding-left: 30px; */
  text-align: center;
}

.sider01 .t2 {
  color: #555;
  background: #f7f7f7;
  display: block;
  line-height: 35px;
  line-height: 30px;
  padding: 5px 0;
  margin-bottom: 5px;
  /* white-space: nowrap; */
  text-align: center;
}

.sider01 .t2:hover,
.sider01 .t2.active {
  color: #fff;
  background: #2f8e66;
}

.sider02 {
  color: #fff;
  background: #f9a701;
  font-size: 14px;
  padding: 30px;
  line-height: 30px;
}

.sider02 .t1 {
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 50px;
}

.sider02 .img {
  padding-right: 20px;
}

@media(max-width:767px) {
  .sider01 .type {
    margin-left: 5px;
  }

  .sider01 .type:after {
    content: '';
    display: block;
    min-width: 45px;
    height: 35px;
  }
}

@media(max-width:991px) {
  .sider01 .list {
    display: flex;
    overflow-x: auto;
    margin-top: 5px;
  }

  .sider01 .t2 {
    margin-right: 5px;
    padding: 0 15px;
    padding: 5px 15px;
    margin-bottom: 0;
  }

  .sider01 .type-move {
    opacity: 0;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 5px;
    width: 40px;
    height: 35px;
    font-size: 24px;
    text-align: center;
    line-height: 35px;
    /*background:#fff url(../images/move.png) no-repeat center right;background-size:35px 20px;*/
  }
}

@media(min-width:992px) {
  .sider {
    flex-basis: 20%;
    max-width: 20%;
  }

  .sider01 .t1 {
    font-size: 22px;
    line-height: 50px;
  }

  .sider01 .t2 {
    /* line-height: 50px; */
  }

  .sider02 .t1 {
    font-size: 22px;
    line-height: 50px;
  }
}

/*面包屑样式*/
.location {
  display: flex;
  line-height: 35px;
  flex-flow: wrap;
}

.location .t1 {
  color: #212020;
  font-size: 18px;
  font-weight: bold;
}

.location .t2 {
  color: #f4f4f4;
  font-family: 'Montserrat';
  font-size: 24px;
  padding-left: 15px;
}

.location .t3 {
  color: #949494;
  margin-left: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(min-width:1200px) {
  .location {
    line-height: 50px;
  }

  .location .t1 {
    font-size: 40px;
  }

  .location .t2 {
    font-size: 45px;
  }

  .location .t3 {
    font-size: 14px;
  }
}

.prev_next {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

.prev_page:hover a,
.next_page:hover a {
  color: #108dee;
}

@media(max-width:768px) {
  .next_page {
    margin-top: 20px;
  }
}

/*图片列表页样式*/
.product {
  min-height: 400px;
}

.product .list {
  width: 100%;
  /*display:flex;flex-flow: row wrap;*/
  margin-top: 20px;
}

.product .list:after {
  content: '';
  display: block;
  clear: both;
}

.product .slide {
  float: left;
  width: 49%;
  margin-right: 2%;
  /*flex:1;flex-basis:50%;max-width:50%;*/
  box-sizing: border-box;
}

.product .slide:nth-child(2n) {
  margin-right: 0;
}

.product .imgbox {
  border: 1px solid #eee;
}

.product .txtbox {
  color: #878787;
  text-align: center;
  line-height: 35px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(min-width:768px) {
  /*.product .slide {padding-right:20px;}*/
}

@media(min-width:992px) {
  .product {
    flex-basis: 80%;
    max-width: 80%;
  }

  .product .slide {
    width: 32%;
  }

  .product .slide:nth-child(2n) {
    margin-right: 2%;
  }

  .product .slide:nth-child(3n) {
    margin-right: 0%;
  }
}

@media(min-width:1200px) {
  .product {
    padding-left: 35px;
  }

  .product .list {
    margin-top: 35px;
  }

  .product .txtbox {
    line-height: 50px;
  }
}

/*文章列表页样式*/
.news .list {
  padding-top: 25px;
}

.news .list .slide {
  margin-bottom: 5px;
  padding: 15px 0;
  position: relative;
  background: #fff;
  transition: .3s all;
}

.news .list .slide:before {
  content: '';
  width: 100px;
  height: 2px;
  display: block;
  background: #333;
  margin-bottom: 15px;
  transition: .6s width;
}

.news .imgbox {
  box-sizing: border-box;
  overflow: hidden;
}

.news .slide .t1 {
  color: #333;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}

.news .slide .t2 {
  color: rgba(0, 0, 0, .6);
  margin-top: 10px;
  line-height: 28px;
  height: 56px;
  overflow: hidden;
  text-align: justify;
}

.news .slide .t3 {
  color: rgba(0, 0, 0, .6);
  line-height: 28px;
}

.news .list .slide:hover {
  transform: translateY(-7px);
}

.news .list .slide:hover .t1 {
  color: #2f8e66;
}

.news .list .slide:hover:before {
  background: #2f8e66;
  width: 100%;
  transition: 1s all;
}

@media(max-width:767px) {
  .news .slide .t1 {
    margin-top: 15px;
  }
}

@media(min-width:992px) {
  .news .list .slide {
    padding: 20px 0;
  }

  .news .list .slide:before {
    margin-bottom: 25px;
  }

  .news .list .slide a {
    display: flex;
  }

  .news .imgbox {
    margin-right: 40px;
    min-width: 250px;
    max-width: 250px;
  }

  .news .slide .t1 {
    font-size: 20px;
  }

  .news .slide .t2 {
    margin-top: 15px;
  }
}

@media(min-width:1200px) {
  .news {
    padding-left: 35px;
  }

  .news .slide .t2 {
    margin-top: 20px;
  }
}

/*单页公用样式*/
.page01 {
  padding-bottom: 20px;
}

.page01 .content {
  margin-top: 25px;
  line-height: 24px;
  text-align: justify;
}

.page01 .content img {
  max-width: 100% !important;
}

@media(min-width:1200px) {
  .page01 {
    padding-bottom: 50px;
    padding-left: 35px;
  }

  .page01 .content {
    line-height: 32px;
  }
}

/*文章落地页样式*/
.page02 {
  margin-top: 25px;
}

.page02 .t1 {
  font-size: 18px;
}

.page02 .t2 {
  color: #c8c8c8;
  line-height: 40px;
  border-bottom: 1px dashed #ddd;
}

.page02 .t2 a {
  color: #333;
}

.page02 .img {
  margin: 20px auto 0;
  text-align: center;
}

.page02 .content {
  padding-bottom: 40px;
  margin-top: 20px;
  line-height: 24px;
  text-align: justify;
}

.page02 .content img {
  max-width: 100%;
}

@media(min-width:1200px) {
  .page02 .content {
    line-height: 32px;
    padding-bottom: 60px;
  }

  .page02 .t1 {
    font-size: 22px;
  }

  .page02 .t2 {
    font-size: 14px;
    line-height: 50px;
  }
}

.goods02 {
  padding: 0 0 10px;
  background: #fff;
  margin-top: 25px;
}

.goods02 h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 32px;
}

.goods02-main-img {
  border: 1px solid #eee;
  overflow: hidden;
}

.goods02-imgmore {
  margin-top: 10px;
  padding: 0 50px;
}

.goods02-imgmore-slide {
  border: 1px solid #f5f5f5;
  overflow: hidden;
}

.goods02-imgmore-slide.active {
  border: 1px solid #2f8e66;
}

.p-txt {
  color: #2f71ff;
  position: relative;
  padding-left: 70px;
}

.p-txt:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #eee;
}

.goods02-options {
  padding: 15px 0;
  background: #fbfbfb;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.goods02-options dl {
  display: flex;
  flex-flow: row wrap;
}

.goods02-options dl dt {
  flex: 1;
  flex-basis: 27%;
  color: #909090;
  margin-bottom: 10px;
  padding-left: 6%;
  font-weight: normal;
}

.goods02-options dl dd {
  flex: 1;
  flex-basis: 72%;
  padding-left: 10px;
  color: #4e4e4e;
}

.last-dt,
.last-dd {
  border-top: 1px solid #eee;
  line-height: 20px;
  padding-top: 10px;
}

.goods02-submit {
  margin: 10px 0;
  padding: 10px 0;
}

.goods02-submit div {
  flex: 1;
}

.goods02-submit div a {
  background: #2f8e66;
  color: #fff;
  width: 180px;
  margin: 0 5px;
  border-radius: 5px;
  line-height: 34px;
  text-align: center;
  display: block;
}

.goods02-submit div:nth-child(1) {
  padding-right: 40px;
}

.goods02-submit div:nth-child(2) {
  line-height: 17px;
  color: #797979;
  margin-top: 15px;
}

.goods02-submit div b {
  font-size: 16px;
  display: block;
  color: #f00;
}

.goods02-contact div b {
  color: #2f71ff;
  display: block;
  font-size: 10px;
  margin-top: 5px;
  line-height: 12px;
}

.goods02-slide-title {
  color: #999;
  position: relative;
  padding-left: 10px;
  margin-top: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.goods02-slide-title:after {
  content: '';
  background: #2f8e66;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 3px;
}

@media(max-width:767px) {
  .goods02 h3 {
    margin-top: 20px;
  }

  .goods02-submit {
    padding: 12px 15px;
  }

  .goods02-submit div {
    white-space: nowrap;
  }
}

@media(min-width:992px) {
  .goods02 {
    padding: 0 0 60px;
    margin-top: 45px;
  }

  .goods02 h3 {
    margin-bottom: 15px;
  }

  .goods02-options {
    padding: 40px 0;
  }

  .goods02-options dl dt {
    margin-bottom: 15px;
    flex-basis: 20%;
  }

  .goods02-options dl dd {
    flex-basis: 80%;
  }

  .goods02-submit {
    margin: 24px 0;
  }

  .goods02-submit div a {
    line-height: 50px;
    font-size: 16px;
  }

  .goods02-submit div:nth-child(2) {
    line-height: 36px;
  }

  .goods02-submit div b {
    font-size: 32px;
  }

  .goods02-contact div b {
    font-size: 22px;
    line-height: 28px;
  }
}

@media(min-width:1200px) {
  .goods02-right {
    padding-left: 5% !important;
  }

  .last-dd {
    font-size: 14px;
    padding-right: 15px;
    text-align: justify;
    line-height: 24px;
  }
}

.shuiyin {
  font-size: 18px;
  line-height: 40px;
  color: #fff;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
  position: absolute;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media(min-width:992px) {
  .shuiyin {
    font-size: 28px;
    line-height: 70px;
  }
}

.goods03 {
  padding: 20px 0;
  background-color: #f5f5f5;
}

.goods03-title {
  background: #fff;
  line-height: 20px;
  padding: 20px 15px;
  position: relative;
}

.goods03-title h3 {
  line-height: 32px;
  font-size: 20px;
}

.goods03-title i {
  display: block;
  position: relative;
  height: 1px;
  background: #f5f5f5;
}

.goods03-title i:before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100px;
  height: 3px;
  background: #2f8e66;
}

.goods03-title span {
  display: block;
  height: 5px;
  background: #2f8e66;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.goods03-content {
  background: #fff;
  padding: 15px;
  line-height: 25px;
  min-height: 80px;
  text-align: justify;
  overflow: hidden;
}

.goods03-content img {
  max-width: 100% !important;
}

.goods03-content table {
  max-width: 100% !important;
  width: 100% !important;
}

.goods03-slide-imgbox {
  border: 1px solid #eee;
}

@media (min-width:992px) {
  .goods03 {
    padding-bottom: 50px;
  }

  .goods03-title {
    line-height: 30px;
  }

  .goods03-title h3 {
    line-height: 36px;
    font-size: 24px;
  }

  .goods03-title i {
    margin-top: 10px;
  }
}

@media(min-width:1200px) {
  .goods03-title {
    padding: 25px;
  }

  .goods03-title h3 {
    line-height: 43px;
  }

  .goods03-content {
    padding: 25px;
    min-height: 300px;
    font-size: 15px;
    line-height: 32px;
  }
}

.news-list {
  padding-top: 50px;
}

.news-list li {
  margin-bottom: 20px;
  padding: 15px;
  position: relative;
  background: #fff;
  transition: .3s all;
}

.news-list li:before {
  content: '';
  width: 100px;
  height: 2px;
  display: block;
  background: #2f8e66;
  margin-bottom: 15px;
  transition: .6s width;
}

.news-imgbox {
  box-sizing: border-box;
  overflow: hidden;
}

.news-imgbox img {
  width: 250px;
}

.news-title {
  color: #2f8e66;
  font-weight: bold;
  font-size: 16px;
  line-height: 22px;
  position: relative;
}

.news-content {
  color: rgba(0, 0, 0, .6);
  margin-top: 10px;
  line-height: 28px;
  height: 56px;
  overflow: hidden;
  text-align: justify;
}

.news-date {
  color: rgba(0, 0, 0, .6);
  margin-top: 10px;
  line-height: 28px;
}

.news-list li:hover {
  transform: translateY(-7px);
  box-shadow: 0 25px 50px -40px #666;
  transition: .5s all;
}

.news-list li:hover .news-title {
  color: #2f8e66;
}

.news-list li:hover:before {
  width: 100%;
  transition: 1s width;
}

@media(max-width:767px) {
  .news-title {
    margin-top: 15px;
  }
}

@media(min-width:992px) {
  .news-list li {
    margin-bottom: 30px;
  }

  .news-list li:before {
    margin-bottom: 25px;
  }

  .news-list li a {
    display: flex;
  }

  .news-imgbox {
    padding-right: 20px;
  }

  .news-title {
    font-size: 26px;
  }

  .news-content {
    margin-top: 15px;
  }
}

@media(min-width:1200px) {
  .news-content {
    margin-top: 20px;
  }
}

.newsinfo-container {
  background: #f8f7f7;
}

.newsinfo {
  padding: 25px 15px;
  background: #fff;
  width: 100%;
}

.newsinfo-title {
  font-size: 24px;
  line-height: 28px;
  border-left: 5px solid #2f8e66;
  padding-left: 15px;
}

.newsinfo-meta {
  color: #ccc;
  padding: 15px 0 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
  position: relative;
}

.newsinfo-image img {
  border: 1px solid #f5f5f5;
  padding: 5px;
  background: #f8f8f8;
  box-shadow: 5px 5px 15px -10px #000;
}

.newsinfo-content {
  margin-top: 15px;
  line-height: 24px;
}

.newsinfo-page {
  line-height: 28px;
}

@media(min-width:768px) {
  .newsinfo {
    padding: 50px 15px;
  }
}

@media(min-width:992px) {
  .newsinfo {
    padding: 50px 20px;
  }

  .newsinfo-meta {
    padding: 25px 0 15px;
    margin-bottom: 15px;
  }

  .newsinfo-content {
    margin-top: 25px;
    line-height: 32px;
  }
}

@media(min-width:1200px) {
  .newsinfo {
    padding: 80px 30px;
  }
}

.message-container {
  padding: 30px 0;
}

.message-panel {
  max-width: 700px;
  margin: 0 auto;
}

.msgtip {
  line-height: 1.7;
  margin-top: 20px;
  border: 1px dashed #ccc;
  border-radius: 10px;
  display: inline-block;
  padding: 15px;
}

.msgtip .h5 {
  color: red;
}

@media(min-width:992px) {
  .message-container {
    padding: 50px 0;
  }
}

.contact-container {
  padding: 30px 0;
}

.contact-title {
  font-size: 24px;
  line-height: 48px;
}

.contact-info {
  width: 100%;
  line-height: 32px;
  padding-bottom: 30px;
}

.contact-info div {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
}

.contact-info div:after {
  content: '';
  background: #f5f5f5;
  z-index: -1;
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}

#dituContent {
  height: 200px;
}

.contact-map {
  border: 1px solid #eee;
  padding: 10px;
  box-shadow: 5px 5px 10px -8px #000;
}

.contact-list {
  padding-top: 15px;
}

.contact-list .lineT {
  border-left: 5px solid #911f1f;
  padding-left: 10px;
}

.contact-list {
  border: 1px solid #efefef !important;
  background: #fafafa;
  border-radius: 10px;
  margin-bottom: 30px;
}

.contact-list li {
  margin-bottom: 10px;
}

.contact-list ul li div {
  padding-left: 60px;
  color: #595959;
  padding: 15px 15px 15px 60px;
  border-radius: 5px;
}

.contact-list ul li div.icon-01 {
  background: url(../images/contact-icon-01.png) no-repeat 10px 10px #fff;
}

.contact-list ul li div.icon-02 {
  background: url(../images/contact-icon-02.png) no-repeat 10px 10px #fff;
}

.contact-list ul li div.icon-03 {
  background: url(../images/contact-icon-03.png) no-repeat 10px 10px #fff;
}

.contact-list ul li div.icon-04 {
  background: url(../images/contact-icon-04.png) no-repeat 10px 10px #fff;
}

.contact-list ul li div.icon-05 {
  background: url(../images/contact-icon-05.png) no-repeat 10px 10px #fff;
}

.contact-list ul li div.icon-06 {
  background: url(../images/contact-icon-06.png) no-repeat 10px 10px #fff;
}

@media(min-width:992px) {
  .contact-container {
    padding: 50px 0;
  }

  .contact-info {
    padding-bottom: 40px;
    display: flex;
    flex-flow: row wrap;
  }

  .contact-info div {
    flex-basis: 50%;
    max-width: 50%;
    font-size: 16px;
    padding: 10px 20px;
  }

  #dituContent {
    height: 300px;
  }
}

@media(min-width:1200px) {
  .contact-info {
    padding-bottom: 50px;
  }

  .contact-info div {
    flex-basis: 33.33%;
    max-width: 33.33%;
  }

  #dituContent {
    height: 400px;
  }
}

#maximg img {
  max-width: 100% !important;
  height: auto !important;
  display: inline-block;
}

#maximg p span {
  text-wrap: inherit !important;
}

.pagebar {
  padding: 20px;
  overflow: hidden;
  clear: both
}

.pagebar .pagination {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.pagination a,
.pagination span {
  background: #fff;
  border: 1px solid #ccc;
  color: #333;
  font-size: 12px;
  padding: 8px 10px;
  margin: 0 2px;
  border-radius: 3px;
  line-height: 100%
}

/* .pagination span {
  color: #333;
  font-size: 12px;
  padding: 7px 2px;
  margin: 0 2px;
  border-radius: 3px;
} */

.pagination a:hover {
  color: #333;
  border: 1px solid #333;
}

.pagination a.page-num-current,
.pagination span.page-num-current {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.pagination .st {
  font-family: 宋体
}

.text-secondary {
  text-align: center;
  padding: 20px 0
}

.form-control:focus {
  box-shadow: none !important;
}

.video-wrap {
  position: relative;
}

.video-wrap .play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .45);
  padding-left: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;

  /* 时刻保持光晕效果 */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.4);

  /* 可选：添加缓慢的呼吸感（光晕强弱变化），不需要可删除 */
  animation: breathe 2s ease-in-out infinite;
}

/* 呼吸感光晕动画（柔和变化） */
@keyframes breathe {
  0% {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.3);
  }

  50% {
    box-shadow: 0 0 20px 8px rgba(255, 255, 255, 0.6);
  }

  100% {
    box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.3);
  }
}




/* -------------------- 产品内页 -------------------- */
/* 单图样式 */
.product-single-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 10px;
  background: #f9f9f9;
}

.product-single-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* 轮播主容器 */
.product-gallery {
  width: 100%;
}

/* 大图容器 */
.product-gallery .big-swiper {
  width: 100%;
  height: 480px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .product-gallery .big-swiper {
    height: 350px;
  }
}

.product-gallery .swiper-wrapper {
  align-items: center;
}

.product-gallery .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* 大图图片（自适应所有尺寸） */
.product-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* 视频 */
.product-gallery .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* 缩略图 */
.product-gallery .thumb-swiper {
  width: 100%;
  margin-top: 15px;
}

.product-gallery .thumb-swiper .swiper-slide {
  width: 20%;
  height: 80px;
  opacity: 0.5;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .product-gallery .thumb-swiper .swiper-slide {
    height: 50px;
  }
}

.product-gallery .thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Swiper 11 缩略图高亮类 */
.product-gallery .thumb-swiper .swiper-slide-thumb-active {
  opacity: 1 !important;
  border: 2px solid #2f8e66 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* ==============================
   Swiper 11 箭头样式（完美可用）
============================== */
.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
  width: 38px !important;
  height: 38px !important;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 50%;
  z-index: 999 !important;
  transition: all 0.3s ease;
}

.product-gallery .swiper-button-next:hover,
.product-gallery .swiper-button-prev:hover {
  background: #2f8e66 !important;
  color: #fff !important;
}

/* 箭头图标大小 */
.product-gallery .swiper-button-next::after,
.product-gallery .swiper-button-prev::after {
  font-size: 18px !important;
  font-weight: 900 !important;
}

/* 视频缩略图 */
.video-thumb-icon {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-thumb-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-thumb-icon svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 32px;
  height: 32px;
}

.page-content p,
.product-details p {
  margin-bottom: 0;
}