/* --------------------------------

 Mixin and  Modules - reuseable parts of my design

-------------------------------- */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
img {
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset,
img {
  border: 0;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
q:before,
q:after {
  content: '';
}
abbr,
acronym {
  border: 0;
}
article,
aside,
dialog,
footer,
header,
section,
footer,
nav,
figure,
menu {
  display: block;
}
*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  font-size: 125%;
}
body {
  font-size: 16px;
  font-family: "Microsoft YaHei", "Arial", serif;
  background-color: #fff;
}
.hidden {
  display: none;
}
.clear {
  clear: both;
}
a {
  cursor: pointer;
}
.container {
  width: 1200px;
  margin: auto;
}
.u-imgbox img {
  width: 100%;
  display: block;
}
.clearfix:after {
  content: '';
  display: block;
  clear: both;
  height: 0;
}
.u-default {
  cursor: default;
}
/*---------------基础设置-----------------*/
/*-----------------设置结束------------------*/
.theme-color {
  color: #2b4da3;
}
.bg-dark {
  background: #f2f2f2;
}
.g-header {
  position: relative;
  z-index: 10;
}
.g-header .topbar .box {
  width: 1200px;
  font-size: 0;
  margin: 0 auto;
  position: relative;
}
.g-header .topbar .box p {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font: 12px/40px "Microsoft YaHei", "Arial", serif;
  color: #888;
}
.g-header .topbar .box .link {
  text-align: right;
}
.g-header .topbar .box .link a {
  display: inline-block;
  vertical-align: top;
  font: 12px/40px "Microsoft YaHei", "Arial", serif;
  color: #888;
  margin-left: 10px;
}
.g-header .topbar .box .link a:hover {
  color: #f8b62a;
}
.g-header .topbox {
  height: 100px;
  width: 1200px;
  margin: 0 auto;
  font-size: 0;
  position: relative;
}
.g-header .topbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.g-header .topbox .logobox {
  display: inline-block;
  position: relative;
  width: 50%;
}
.g-header .topbox .logobox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.g-header .topbox .logobox img {
  display: inline-block;
  vertical-align: middle;
  max-height: 90px;
  margin-right: 15px;
}
.g-header .topbox .logobox .text {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  border-left: 1px solid #888;
  padding-left: 20px;
}
.g-header .topbox .logobox .text p {
  font-size: 12px;
}
.g-header .topbox .logobox .text .theme-color {
  font-size: 18px;
}
.g-header .topbox .telbox {
  display: inline-block;
  width: 50%;
  position: relative;
  text-align: right;
}
.g-header .topbox .telbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.g-header .topbox .telbox .tel {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-left: 65px;
  background: url("../images/i-tel.png") left center no-repeat;
  color: #2b4da3;
}
.g-header .topbox .telbox .tel p {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
}
.g-header .topbox .telbox .tel .num {
  font: 30px/40px "Microsoft YaHei", "Arial", serif;
  font-weight: 700;
}
.m-nav {
  position: relative;
  height: 50px;
  background: #2b4da3;
}
.m-nav .list {
  text-align: center;
  font-size: 0;
}
.m-nav .listitem {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  height: 50px;
  margin: 0 15px;
}
.m-nav .listitem .firstlink {
  display: block;
  padding: 0 25px;
  font: 16px/50px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  transition: 0.5s;
}
.m-nav .listitem .secondbox {
  position: absolute;
  padding: 10px 12px;
  background: rgba(14, 120, 39, 0.7);
  top: 100%;
  transform-origin: 50% 0;
  transform: scale(1, 0);
  transition: 0.3s;
  left: 0;
  text-align: left;
  min-width: 100%;
}
.m-nav .listitem .secondbox a {
  display: block;
  padding: 0 15px;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
}
.m-nav .listitem .secondbox a:hover {
  background: #2b4da3;
}
.m-nav .listitem:hover .firstlink {
  background: #2b4da3;
  color: #fff;
}
.m-nav .listitem:hover::after {
  transform: scale(1, 1);
}
.m-nav .listitem:hover .secondbox {
  transform: scale(1, 1);
}
.m-nav .listitem.curr .firstlink {
  background: #2b4da3;
  color: #fff;
}
.container {
  padding: 0;
}
.g-main {
  position: relative;
  overflow: hidden;
  z-index: 2;
  margin: 0 auto;
}
.m-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}
.m-banner .bd {
  position: relative;
  overflow: hidden;
}
.m-banner .listitem {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.m-banner .listitem img {
  display: block;
  width: 1920px;
  margin-left: calc(50% - 960px);
}
.m-banner .hd {
  width: 100%;
  position: absolute;
  bottom: 100px;
  z-index: 10;
}
.m-banner .hd ul {
  text-align: center;
  font-size: 0;
}
.m-banner .hd li {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #666;
  margin: 0 20px;
  transition: 0.4s;
}
.m-banner .hd li:hover,
.m-banner .hd li.on {
  background: #2b4da3;
}
.m-banner .textbox {
  position: absolute;
  width: 1200px;
  z-index: 10;
  top: 140px;
  left: calc(50% - 600px);
  color: #fff;
}
.m-banner .textbox .tt {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 25px;
}
.m-banner .textbox .tt span {
  font-weight: 700;
  text-transform: uppercase;
}
.m-banner .textbox p {
  font-size: 20px;
  margin-bottom: 20px;
}
.m-banner .textbox .btn {
  margin-top: 60px;
}
.m-banner .textbox .btn a {
  display: inline-block;
  vertical-align: top;
  width: 140px;
  border: 2px solid #2b4da3;
  margin-right: 20px;
  font: 14px/38px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  text-align: center;
  transition: 0.4s;
}
.m-banner .textbox .btn a:hover,
.m-banner .textbox .btn a.hover {
  color: #fff;
  background: #2b4da3;
}
.m-searchbox {
  width: 1200px;
  height: 130px;
  background: #fafafa;
  z-index: 10;
  margin: 0px auto 0;
  font-size: 0;
  position: relative;
}
.m-searchbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-searchbox .searchbox {
  display: inline-block;
  vertical-align: middle;
  width: 600px;
  margin-left: 50px;
  border-right: 1px solid #ddd;
}
.m-searchbox .searchbox .inputbox {
  width: 550px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.m-searchbox .searchbox .inputbox input {
  display: block;
  font: 14px/48px "Microsoft YaHei", "Arial", serif;
  color: #999;
  border: none;
  background: none;
  width: 500px;
}
.m-searchbox .searchbox .inputbox a {
  display: block;
  position: absolute;
  width: 48px;
  height: 48px;
  background: url("../images/i-search.png") center no-repeat;
  right: 0;
  top: 0;
  margin: 0;
}
.m-searchbox .searchbox .hotbox {
  margin-top: 7px;
}
.m-searchbox .searchbox .hotbox p {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  line-height: 20px;
}
.m-searchbox .searchbox .hotbox p a {
  display: inline-block;
  vertical-align: top;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #888;
  margin-left: 10px;
}
.m-searchbox .searchbox .hotbox p a:hover {
  color: #f8b62a;
}
.m-searchbox .telbox {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-left: 65px;
  background: url("../images/i-tel.png") left center no-repeat;
  color: #2b4da3;
  margin-left: 40px;
}
.m-searchbox .telbox p {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
}
.m-searchbox .telbox .num {
  font: 30px/40px "Microsoft YaHei", "Arial", serif;
  font-weight: 700;
}
.m-searchbox .qrcode {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 180px;
  margin-left: 20px;
  border-left: 1px solid #ddd;
}
.m-searchbox .qrcode img {
  display: inline-block;
  vertical-align: middle;
  width: 75px;
  height: 75px;
  margin-right: 10px;
}
.m-searchbox .qrcode p {
  display: inline-block;
  vertical-align: middle;
  font: 14px/16px "Microsoft YaHei", "Arial", serif;
  width: 18px;
  color: #2b4da3;
}
.m-ad {
  position: relative;
}
.m-ad img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.m-title {
  text-align: center;
}
.m-title .tt {
  font-size: 0;
}
.m-title .tt span {
  display: inline-block;
  font: 30px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-title .tt .wc-y {
  color: #f8b62a;
}
.m-title .tt .wc-g {
  color: #2b4da3;
}
.m-title .en {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  margin-top: 6px;
}
.m-product {
  margin: 50px auto;
  background: url("../images/b-1.jpg") top center no-repeat;
}
.m-product .box {
  width: 1200px;
  margin: 40px auto 0;
  position: relative;
  font-size: 0;
}
.m-product .probar {
  display: inline-block;
  vertical-align: top;
  width: 250px;
  height: 780px;
  border: 3px solid #2b4da3;
  background: #fff;
}
.m-product .probar .title {
  background: #2b4da3;
  padding: 15px 20px;
  color: #fff;
  height: 180px;
}
.m-product .probar .title .en {
  font: 36px/40px "Microsoft YaHei", "Arial", serif;
  text-transform: uppercase;
}
.m-product .probar .title .cn {
  margin-top: 36px;
  font: 24px/32px "Microsoft YaHei", "Arial", serif;
}
.m-product .probar .title .cn::before {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: #fff;
}
.m-product .probar .linksbox {
  width: 100%;
  height: 580px;
  overflow: hidden;
}
.m-product .probar .linksbox .linkbox {
  padding: 15px;
  border-bottom: 1px solid #ebebeb;
}
.m-product .probar .linksbox dt {
  overflow: hidden;
}
.m-product .probar .linksbox dt .links {
  color: #333;
  font: 18px/2 "Microsoft YaHei", "Arial", serif;
  transition: 0.3s;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
}
.m-product .probar .linksbox dt .links:hover,
.m-product .probar .linksbox dt .links.curr {
  color: #2b4da3;
}
.m-product .probar .linksbox dt .togglenav {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #2b4da3;
  cursor: pointer;
  transition: 0.3s;
  transform: rotate(90deg);
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.m-product .probar .linksbox dt .togglenav::before,
.m-product .probar .linksbox dt .togglenav::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -4px;
  width: 8px;
  height: 2px;
  background-color: #2b4da3;
  transition: 0.3s;
  transform-origin: 7px 50%;
}
.m-product .probar .linksbox dt .togglenav::after {
  transform: rotate(45deg);
}
.m-product .probar .linksbox dt .togglenav::before {
  transform: rotate(-45deg);
}
.m-product .probar .linksbox dt .togglenav.close {
  border-color: #666;
  transform: rotate(0);
}
.m-product .probar .linksbox dt .togglenav.close::before,
.m-product .probar .linksbox dt .togglenav.close::after {
  background: #666;
}
.m-product .probar .linksbox dd {
  display: none;
}
.m-product .probar .linksbox dd .item {
  position: relative;
  display: block;
  padding-left: 10px;
  color: #666;
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  transition: 0.3s;
  height: 32px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 20px;
}
.m-product .probar .linksbox dd .item:hover {
  color: #2b4da3;
}
.m-product .probox {
  display: inline-block;
  width: 900px;
  margin-left: 50px;
  vertical-align: top;
  position: relative;
}
.m-product .probox .bigpro {
  position: relative;
  height: 460px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.m-product .probox .bigpro .textbox {
  display: inline-block;
  vertical-align: middle;
  width: 340px;
  margin-left: 50px;
}
.m-product .probox .bigpro .textbox .logo {
  display: block;
  max-height: 75px;
}
.m-product .probox .bigpro .textbox .tt {
  margin-top: 40px;
  font: 24px/30px "Microsoft YaHei", "Arial", serif;
  color: #f8b62a;
}
.m-product .probox .bigpro .textbox .desc {
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-top: 10px;
  width: 290px;
  margin-bottom: 20px;
}
.m-product .probox .bigpro .textbox .showdetail {
  display: inline-block;
  vertical-align: top;
  padding: 0 35px;
  background: #2b4da3;
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  transition: 0.4s;
}
.m-product .probox .bigpro .textbox .showdetail:hover {
  background: #f8b62a;
}
.m-product .probox .bigpro .imgbox {
  display: inline-block;
  vertical-align: middle;
  width: 460px;
  height: 460px;
  position: relative;
  margin-left: 50px;
}
.m-product .probox .bigpro .imgbox img {
  display: block;
  width: 100%;
}
.m-product .slidebox {
  position: relative;
  height: 300px;
  margin-top: 20px;
  overflow: hidden;
}
.m-product .slidebox .hd {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 10;
}
.m-product .slidebox .hd a {
  display: block;
  position: absolute;
  width: 40px;
  height: 70px;
  background: #f8b62a;
  top: -35px;
}
.m-product .slidebox .hd a::before,
.m-product .slidebox .hd a::after {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
  transform-origin: 1px 50%;
}
.m-product .slidebox .hd a::before {
  transform: rotate(45deg);
}
.m-product .slidebox .hd a::after {
  transform: rotate(-45deg);
}
.m-product .slidebox .hd .prev {
  left: 0;
}
.m-product .slidebox .hd .next {
  right: 0;
  transform: rotate(180deg);
}
.m-product .slidebox .listitem {
  display: block;
  position: relative;
  width: 440px;
  height: 300px;
  margin-right: 20px;
  background: #fff;
  float: left;
  font-size: 0;
  box-shadow: 1px 1px 0 #eee inset, -1px -1px 0 #eee inset;
}
.m-product .slidebox .listitem .imgbox {
  width: 200px;
  display: inline-block;
  height: 300px;
  margin: 0 20px;
  vertical-align: middle;
  position: relative;
}
.m-product .slidebox .listitem .imgbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-product .slidebox .listitem .imgbox img {
  display: inline-block;
  vertical-align: middle;
  max-width: 99.8%;
}
.m-product .slidebox .listitem .imgbox::before {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -20px;
  top: 0;
  background: #ddd;
}
.m-product .slidebox .listitem .textbox {
  display: inline-block;
  vertical-align: middle;
  width: 160px;
  margin-left: 20px;
}
.m-product .slidebox .listitem .textbox .tt {
  font: 18px/20px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-product .slidebox .listitem .textbox .desc {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  height: 40px;
  overflow: hidden;
  margin-top: 15px;
}
.m-product .slidebox .listitem .textbox .more {
  display: inline-block;
  vertical-align: top;
  padding: 0 35px;
  background: #2b4da3;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  transition: 0.4s;
  margin-top: 80px;
}
.m-product .slidebox .listitem .textbox .more:hover {
  background: #f8b62a;
}
.m-about {
  margin: 50px auto 0;
}
.m-about .box {
  position: relative;
  background: url("../images/b-2.jpg") top center no-repeat;
  margin-top: 40px;
}
.m-about .content {
  width: 1200px;
  height: 600px;
  margin: 0 auto;
  font-size: 0;
  position: relative;
}
.m-about .content::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-about .textbox {
  display: inline-block;
  vertical-align: middle;
  width: 310px;
  margin-left: 70px;
  text-align: right;
}
.m-about .textbox .tt {
  font-size: 24px;
  color: #fff;
}
.m-about .textbox .sl {
  font-size: 12px;
  text-align: right;
  color: #f8b62a;
  letter-spacing: 6px;
}
.m-about .textbox .entt {
  font-size: 70px;
  color: #ccc;
  text-transform: capitalize;
  letter-spacing: -2px;
}
.m-about .textbox .sel {
  font-size: 12px;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: -1px;
}
.m-about .textbox .cn {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  color: #f8b62a;
}
.m-about .textbox .desc {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  height: 120px;
  overflow: hidden;
  color: #ccc;
}
.m-about .imgbox {
  display: inline-block;
  vertical-align: middle;
  margin-left: 50px;
}
.m-about .imgbox img {
  display: block;
}
.m-about .imgbox .m-more {
  text-align: left;
  margin-top: 20px;
}
.m-more {
  text-align: center;
}
.m-more .more {
  display: inline-block;
  vertical-align: top;
  width: 180px;
  background: #2b4da3;
  color: #fff;
  position: relative;
  font-size: 0;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  text-align: center;
}
.m-more .more span {
  display: inline-block;
  vertical-align: middle;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  text-transform: uppercase;
}
.m-more .more::after {
  content: '+';
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
  transition: 0.4s;
}
.m-more .more:hover {
  background: #f8b62a;
}
.m-more .more:hover::after {
  margin-left: 35px;
}
.m-news {
  margin: 50px auto 0;
  background: url("../images/b-3.jpg") center no-repeat;
}
.m-news .box {
  width: 1200px;
  font-size: 0;
  margin: 40px auto 0;
}
.m-news .box .item {
  display: inline-block;
  vertical-align: top;
}
.m-news .slidebox {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 750px;
}
.m-news .slidebox .hd {
  border-bottom: 1px solid #eee;
}
.m-news .slidebox .hd li {
  display: inline-block;
  vertical-align: top;
  margin-right: 140px;
  position: relative;
  cursor: pointer;
}
.m-news .slidebox .hd li p {
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  padding-bottom: 10px;
}
.m-news .slidebox .hd li::after {
  content: '';
  display: block;
  position: absolute;
  width: 100px;
  height: 3px;
  background: #f8b62a;
  bottom: -2px;
  left: 0;
  opacity: 0;
  transition: 0.4s;
}
.m-news .slidebox .hd li.on::after {
  opacity: 1;
}
.m-news .slidebox .bd {
  margin-top: 25px;
  overflow: hidden;
}
.m-news .slidebox .listitem {
  font-size: 0;
}
.m-news .slidebox .listitem .firstitem {
  display: inline-block;
  vertical-align: top;
  width: 350px;
}
.m-news .slidebox .listitem .firstitem .imgbox {
  border: 1px solid #eee;
  height: 230px;
  overflow: hidden;
  position: relative;
}
.m-news .slidebox .listitem .firstitem .imgbox img {
  display: block;
  max-width: 100%;
  transition: 0.3s;
}
.m-news .slidebox .listitem .firstitem .textbox {
  padding: 5px 20px 25px;
  background: #fafafa;
  position: relative;
}
.m-news .slidebox .listitem .firstitem .textbox .datebox {
  position: absolute;
  width: 66px;
  height: 66px;
  background: #2b4da3;
  text-align: center;
  color: #fff;
  top: -33px;
}
.m-news .slidebox .listitem .firstitem .textbox .datebox .day {
  padding-top: 8px;
  font: 30px/1 "Microsoft YaHei", "Arial", serif;
}
.m-news .slidebox .listitem .firstitem .textbox .datebox .day::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: #fff;
  margin: 0 auto;
}
.m-news .slidebox .listitem .firstitem .textbox .datebox .year {
  font-size: 14px;
}
.m-news .slidebox .listitem .firstitem .textbox .tt {
  margin-left: 75px;
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-news .slidebox .listitem .firstitem .textbox .desc {
  margin-top: 20px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #666;
  height: 60px;
  overflow: hidden;
}
.m-news .slidebox .listitem .firstitem:hover .imgbox img {
  transform: scale(1.1);
}
.m-news .slidebox .listitem .list {
  display: inline-block;
  vertical-align: top;
  width: 380px;
  margin-left: 20px;
  position: relative;
}
.m-news .slidebox .listitem .list::after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #ccc;
  top: 0;
  left: 6px;
}
.m-news .slidebox .listitem .list li {
  padding: 0 0 0 30px;
  position: relative;
  z-index: 2;
}
.m-news .slidebox .listitem .list li .tt {
  font: 14px/50px "Microsoft YaHei", "Arial", serif;
  color: #333;
  margin-right: 120px;
  height: 50px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 0.3s;
}
.m-news .slidebox .listitem .list li .date {
  display: block;
  position: absolute;
  font: 12px/50px "Microsoft YaHei", "Arial", serif;
  color: #888;
  right: 0;
  top: 0;
}
.m-news .slidebox .listitem .list li::before {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  left: 0;
  top: 19px;
  transition: 0.3s;
}
.m-news .slidebox .listitem .list li::after {
  content: '';
  display: block;
  position: absolute;
  width: 350px;
  border-bottom: 1px dashed #ddd;
  bottom: 0;
  right: 0;
  transition: 0.3s;
}
.m-news .slidebox .listitem .list li:hover .tt {
  color: #2b4da3;
}
.m-news .slidebox .listitem .list li:hover::before {
  background: #2b4da3;
}
.m-news .slidebox .listitem .list li:hover::after {
  background: #2b4da3;
}
.m-news .item2 {
  width: 340px;
  position: relative;
  margin-left: 110px;
}
.m-news .item2 .title {
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.m-news .item2 .title::after {
  content: '';
  display: block;
  position: absolute;
  width: 100px;
  height: 3px;
  background: #f8b62a;
  bottom: -2px;
  left: 0;
  opacity: 1;
  transition: 0.4s;
}
.m-news .item2 .list {
  margin-top: 25px;
}
.m-news .item2 .listitem {
  position: relative;
  padding: 35px 0;
  border-bottom: 1px dashed #eee;
}
.m-news .item2 .listitem .tt {
  padding-left: 40px;
  font: 18px/30px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.m-news .item2 .listitem .tt::before {
  content: '问';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 0;
  left: 0;
  background: #2b4da3;
  text-align: center;
  color: #fff;
  line-height: 30px;
}
.m-news .item2 .listitem .desc {
  padding-left: 40px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #666;
  height: 40px;
  overflow: hidden;
  position: relative;
  margin-top: 5px;
}
.m-news .item2 .listitem .desc::before {
  content: '答';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 5px;
  left: 0;
  background: #f8b62a;
  text-align: center;
  color: #fff;
  line-height: 30px;
}
.m-news .item2 .listitem:first-of-type {
  padding-top: 0;
}
.m-join {
  margin: 50px auto 0;
}
.m-join .box {
  margin: 40px auto 0;
  height: 620px;
  background: url("../images/b-4.jpg") top center no-repeat;
}
.m-join .box .textbox {
  width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
}
.m-join .box .tt {
  padding-left: 20px;
  border-left: 3px solid #2b4da3;
}
.m-join .box .tt .cn {
  font: 30px/1 "Microsoft YaHei", "Arial", serif;
  color: #333;
  margin-bottom: 5px;
}
.m-join .box .tt .en {
  font: 12px/1 "Microsoft YaHei", "Arial", serif;
  color: #888;
  text-transform: uppercase;
}
.m-join .box .desc {
  font-size: 16px;
  margin-top: 10px;
  padding-left: 20px;
  color: #333;
}
.m-join .box .process {
  margin-top: 16px;
  display: block;
}
.m-mesform1 {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.m-mesform1 .input {
  display: block;
  margin: 0 auto 14px 0;
  background: #e3e4e6;
  padding: 15px 13px;
  width: 460px;
  position: relative;
  z-index: 2;
}
.m-mesform1 .input::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  background: url("../images/i-mesform1.png") top right no-repeat;
  height: 100%;
}
.m-mesform1 .input:nth-of-type(1)::after {
  width: 80px;
  right: -80px;
}
.m-mesform1 .input:nth-of-type(2)::after {
  width: 115px;
  right: -115px;
}
.m-mesform1 .input:nth-of-type(3)::after {
  width: 153px;
  right: -153px;
}
.m-mesform1 .input .input_field {
  display: block;
  border: none;
  background: transparent;
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-left: 10px;
  width: 400px;
  position: relative;
  z-index: 2;
}
.m-mesform1 .input .input_label {
  display: none;
}
.m-mesform1 .input.input_block {
  padding: 10px 13px;
}
.m-mesform1 .input.input_block .input_field {
  height: 80px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-mesform1 .input .input_icon {
  display: block;
  position: absolute;
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  padding-right: 20px;
  top: 0;
  right: 5px;
  color: #666;
  overflow: hidden;
  opacity: 0;
}
.m-mesform1 .input.fit .input_icon {
  background: url("../images/i-right.png") right center no-repeat;
  opacity: 1;
  text-indent: -9999px;
}
.m-mesform1 .input.error .input_icon {
  background: url("../images/i-error.png") right center no-repeat;
  opacity: 1;
}
.m-mesform1 .btnbox {
  text-align: right;
  margin: 0;
  width: 645px;
}
.m-mesform1 .btnbox .submit {
  display: inline-block;
  font: 16px/54px "Microsoft YaHei", "Arial", serif;
  background: url("../images/i-mesbtn.png") center no-repeat;
  color: #fff;
  transition: 0.5s;
  text-align: center;
  width: 156px;
}
.m-mesform1 .btnbox .submit.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.m-mesform1 .btnbox .submit.success {
  background: #09BB07;
}
.m-mesform1 .tips {
  position: absolute;
  width: 50%;
  display: none;
  z-index: 5;
  top: 5px;
  border-radius: 4px;
  left: 25%;
}
.m-mesform1 .tips.success {
  background-color: #00AC4A;
}
.m-mesform1 .tips.error {
  background-color: #dc0000;
}
.m-mesform1 .tips p {
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 40px;
  margin: 0;
}
.m-mesform1 .tips .tipclose {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  margin-top: -13px;
  right: 3px;
  opacity: 0.85;
  transition: 0.5s;
}
.m-mesform1 .tips .tipclose::before,
.m-mesform1 .tips .tipclose::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  transform-origin: 50% 50%;
  border-radius: 2px;
}
.m-mesform1 .tips .tipclose::before {
  transform: rotate(45deg);
}
.m-mesform1 .tips .tipclose::after {
  transform: rotate(-45deg);
}
.m-mesform1 .tips .tipclose:hover {
  transform: rotate(180deg);
  opacity: 1;
}
.m-honor {
  margin: 50px auto 0;
  background: url("../images/b-5.jpg") center no-repeat;
}
.m-honor .lines {
  margin: 40px auto 0;
  position: relative;
  width: 1200px;
  font-size: 0;
}
.m-honor .lines::after {
  content: '';
  display: block;
  width: 100%;
  top: 50%;
  left: 0;
  border-bottom: 1px dashed #eee;
  position: absolute;
}
.m-honor .lines .listitem {
  display: inline-block;
  vertical-align: top;
  width: 180px;
  height: 180px;
  border: 1px solid #ccc;
  margin-right: 160px;
  position: relative;
  z-index: 2;
  background: #fff;
}
.m-honor .lines .listitem:last-of-type {
  margin-right: 0;
}
.m-honor .lines .listitem .imgbox {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
}
.m-honor .lines .listitem .imgbox img {
  display: block;
  width: 100%;
}
.m-honor .lines .listitem .imgbox::after {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 8px solid #2b4da3;
  background: rgba(0, 0, 0, 0.5);
}
.m-honor .lines .listitem .textbox {
  height: 100%;
  position: relative;
  text-align: center;
  z-index: 2;
}
.m-honor .lines .listitem .textbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-honor .lines .listitem .textbox .text {
  display: inline-block;
  vertical-align: middle;
}
.m-honor .lines .listitem .icon {
  width: 50px;
  height: 40px;
  position: relative;
  margin: 0 auto;
}
.m-honor .lines .listitem .icon .num {
  font: 30px/1 "Microsoft YaHei", "Arial", serif;
  color: #999;
}
.m-honor .lines .listitem .icon .num::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #999;
  margin: 5px auto 0;
}
.m-honor .lines .listitem .icon .ic {
  opacity: 0;
  display: none;
}
.m-honor .lines .listitem .icon .ic img {
  display: block;
  margin: 0 auto;
}
.m-honor .lines .listitem .tt {
  margin-top: 25px;
  transition: 0.4s;
}
.m-honor .lines .listitem .tt h4 {
  font-size: 24px;
  color: #333;
  font-weight: 700;
}
.m-honor .lines .listitem .tt p {
  font-size: 16px;
}
.m-honor .lines .listitem .tt p .en {
  color: #999;
  text-transform: uppercase;
}
.m-honor .lines .listitem .tt p .more {
  color: #fff;
  opacity: 0;
  display: none;
}
.m-honor .lines .listitem:hover .imgbox {
  opacity: 1;
}
.m-honor .lines .listitem:hover .icon .num {
  display: none;
}
.m-honor .lines .listitem:hover .icon .ic {
  opacity: 1;
  display: block;
}
.m-honor .lines .listitem:hover .tt {
  margin-top: 7px;
}
.m-honor .lines .listitem:hover .tt h4 {
  color: #fff;
}
.m-honor .lines .listitem:hover .tt p .en {
  display: none;
}
.m-honor .lines .listitem:hover .tt p .more {
  display: block;
  opacity: 1;
}
.m-honor .slidebox {
  margin: 60px auto 0;
  position: relative;
  width: 1200px;
}
.m-honor .slidebox .hd {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 10;
}
.m-honor .slidebox .hd a {
  display: block;
  position: absolute;
  width: 40px;
  height: 70px;
  background: #f8b62a;
  top: -35px;
}
.m-honor .slidebox .hd a::before,
.m-honor .slidebox .hd a::after {
  content: '';
  display: block;
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
  transform-origin: 1px 50%;
}
.m-honor .slidebox .hd a::before {
  transform: rotate(45deg);
}
.m-honor .slidebox .hd a::after {
  transform: rotate(-45deg);
}
.m-honor .slidebox .hd .prev {
  left: 0;
}
.m-honor .slidebox .hd .next {
  right: 0;
  transform: rotate(180deg);
}
.m-honor .slidebox .bd {
  width: 1042px;
  overflow: hidden;
  margin: 0 auto;
}
.m-honor .slidebox .listitem {
  display: block;
  float: left;
  width: 220px;
  margin-right: 54px;
  position: relative;
}
.m-honor .slidebox .listitem a img {
  display: block;
  width: 100%;
}
.m-cases {
  margin: 50px auto 0;
}
.m-cases .box {
  margin: 40px auto 0;
  background: url("../images/b-6.jpg") top center no-repeat;
  height: 600px;
}
.m-cases .showbox {
  width: 1200px;
  margin: 0 auto;
  padding-top: 60px;
  font-size: 0;
}
.m-cases .firstitem {
  display: inline-block;
  vertical-align: top;
  width: 925px;
  position: relative;
  overflow: hidden;
}
.m-cases .firstitem .imgbox {
  position: relative;
  overflow: hidden;
  height: 480px;
}
.m-cases .firstitem .imgbox img {
  display: block;
  width: 100%;
  transition: 0.4s;
}
.m-cases .firstitem .textbox {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: 0.4s;
}
.m-cases .firstitem .textbox .text {
  padding: 20px 50px 20px 30px;
}
.m-cases .firstitem .textbox .text .tt {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 10px;
}
.m-cases .firstitem .textbox .text .desc {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #ddd;
  height: 40px;
  overflow: hidden;
  transition: 0.4s;
}
.m-cases .firstitem .textbox .text .more {
  display: none;
}
.m-cases .firstitem:hover .imgbox img {
  transform: scale(1.2);
}
.m-cases .firstitem:hover .textbox {
  background: #f8b62a;
}
.m-cases .firstitem:hover .textbox .text .desc {
  color: #fff;
}
.m-cases .list {
  display: inline-block;
  vertical-align: top;
  width: 255px;
  margin-left: 20px;
}
.m-cases .list .listitem {
  position: relative;
  height: 117px;
  margin-bottom: 4px;
  overflow: hidden;
}
.m-cases .list .listitem .imgbox img {
  display: block;
  width: 100%;
  transition: 0.4s;
}
.m-cases .list .listitem .textbox {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
  transition: 0.4s;
}
.m-cases .list .listitem .textbox .tt {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 25px;
  text-align: center;
}
.m-cases .list .listitem:hover .imgbox img {
  transform: scale(1.2);
}
.m-cases .list .listitem:hover .textbox {
  background: #f8b62a;
}
.m-contact {
  margin: 50px auto;
  background: url("../images/b-7.jpg") center no-repeat;
}
.m-contact .box {
  margin: 40px auto 0;
  width: 1200px;
  font-size: 0;
}
.m-contact .addr {
  display: inline-block;
  vertical-align: top;
  width: 370px;
  height: 150px;
  border: 1px solid #eee;
  position: relative;
}
.m-contact .addr::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-contact .addr .text {
  display: inline-block;
  vertical-align: middle;
  width: 330px;
  margin-left: 20px;
}
.m-contact .addr .text p {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  margin-bottom: 20px;
  color: #666;
}
.m-contact .addr .text p:last-of-type {
  margin-bottom: 0;
}
.m-mesform2 {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 800px;
  margin-left: 30px;
}
.m-mesform2 .item {
  display: inline-block;
  vertical-align: top;
  width: 275px;
}
.m-mesform2 .item2 {
  display: inline-block;
  vertical-align: top;
  width: 495px;
  margin-left: 30px;
}
.m-mesform2 .input {
  position: relative;
  border: 1px solid;
  border-color: #eee;
  transition: 0.5s;
  display: block;
  margin: 0 auto 20px;
}
.m-mesform2 .input .input_field {
  display: block;
  border: none;
  background: transparent;
  font: 14px/64px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-left: 20px;
  width: 240px;
  position: relative;
  z-index: 2;
}
.m-mesform2 .input .input_radio{display: inline-block;vertical-align: middle;margin-left: 20px;margin-right: 5px;}
.m-mesform2 .input .radio-value{display: inline-block;vertical-align: middle;font: 14px/40px "Microsoft YaHei", "Arial", serif;color: #666;}
.m-mesform2 .input .input_label {
  display: none;
}
.m-mesform2 .input.input_block {
  padding: 15px 0;
}
.m-mesform2 .input.input_block .input_field {
  height: 60px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-mesform2 .input .input_icon {
  display: block;
  position: absolute;
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  padding-right: 20px;
  top: 0;
  right: 5px;
  color: #666;
  overflow: hidden;
  opacity: 0;
}
.m-mesform2 .input.fit .input_icon {
  background: url("../images/i-right.png") right center no-repeat;
  opacity: 1;
  text-indent: -9999px;
}
.m-mesform2 .input.error .input_icon {
  background: url("../images/i-error.png") right center no-repeat;
  opacity: 1;
}
.m-mesform2 .btnbox {
  position: absolute;
  bottom: 30px;
  right: 10px;
}
.m-mesform2 .btnbox .submit {
  display: block;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  background: #2b4da3;
  color: #fff;
  transition: 0.5s;
  width: 100px;
  text-align: center;
}
.m-mesform2 .btnbox .submit:hover {
  background: #f8b62a;
}
.m-mesform2 .btnbox .submit.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.m-mesform2 .btnbox .submit.success {
  background: #09BB07;
}
.m-mesform2 .tips {
  position: absolute;
  width: 50%;
  display: none;
  z-index: 5;
  top: 5px;
  border-radius: 4px;
  left: 25%;
}
.m-mesform2 .tips.success {
  background-color: #00AC4A;
}
.m-mesform2 .tips.error {
  background-color: #dc0000;
}
.m-mesform2 .tips p {
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 40px;
  margin: 0;
}
.m-mesform2 .tips .tipclose {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  margin-top: -13px;
  right: 3px;
  opacity: 0.85;
  transition: 0.5s;
}
.m-mesform2 .tips .tipclose::before,
.m-mesform2 .tips .tipclose::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  transform-origin: 50% 50%;
  border-radius: 2px;
}
.m-mesform2 .tips .tipclose::before {
  transform: rotate(45deg);
}
.m-mesform2 .tips .tipclose::after {
  transform: rotate(-45deg);
}
.m-mesform2 .tips .tipclose:hover {
  transform: rotate(180deg);
  opacity: 1;
}
.g-footer {
  background: #1e1d19;
  padding: 70px 0 0;
}
.g-footer .box {
  width: 1200px;
  margin: 0 auto 50px;
  font-size: 0;
  text-align: center;
}
.g-footer .logobox {
  display: inline-block;
  vertical-align: top;
  width: 250px;
}
.g-footer .logobox .logo {
  display: block;
  margin: 0 auto 10px;
}
.g-footer .logobox .qrcode {
  display: block;
  margin: 0 auto;
}
.g-footer .logobox p {
  font-size: 14px;
  color: #fff;
}
.g-footer .links {
  display: inline-block;
  vertical-align: top;
  width: 850px;
  margin-left: 100px;
  text-align: left;
}
.g-footer .links .item {
  display: inline-block;
  vertical-align: top;
  margin-right: 50px;
  margin-left: 50px;
}
.g-footer .links .item .tt {
  margin-bottom: 35px;
}
.g-footer .links .item .tt .cn {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}
.g-footer .links .item .tt .en {
  font-size: 18px;
  text-transform: uppercase;
  color: #666;
}
.g-footer .links .item .link li {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #ccc;
  margin-bottom: 20px;
}
.g-footer .links .item .link li a {
  color: #ccc;
}
.g-footer .links .item1 {
  margin-left: 0;
}
.g-footer .links .item4 {
  margin-right: 0;
  width: 220px;
  margin-left: 0;
}
.m-icp {
  text-align: center;
  position: relative;
  width: 100%;
  border-top: 1px solid #aaa;
}
.m-icp p {
  font: 12px/50px "Microsoft YaHei", "Arial", serif;
  color: #aaa;
}
.m-icp p span {
  margin-left: 15px;
}
.m-icp p a {
  color: #aaa;
}
.m-icp p a:hover {
  text-decoration: underline;
}
/*子页样式开始*/
.m-secheader {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.m-secheader img {
  display: block;
  width: 100%;
}
.m-num {
  text-align: center;
  font-size: 12px;
}
.m-num .pagination > .active > a,
.m-num .pagination > .active > a:focus,
.m-num .pagination > .active > a:hover,
.m-num .pagination > .active > span,
.m-num .pagination > .active > span:focus,
.m-num .pagination > .active > span:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}
.m-num .pagination > li > a,
.m-num .pagination > li > span {
  color: #333;
}
.m-banch {
  padding: 30px 0;
}
.m-banch .link {
  display: inline-block;
  font: 16px/40px "Microsoft YaHei", "Arial", serif;
  position: relative;
  margin-right: 50px;
  color: #333;
  transition: 0.5s;
}
.m-banch .link::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #2b4da3;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
  transform: scale(0, 1);
  transition: 0.5s;
}
.m-banch .link.curr {
  color: #2b4da3;
}
.m-banch .link.curr::after {
  transform: scale(1, 1);
}
.m-banch .link:hover {
  color: #2b4da3;
}
.g-secmain {
  background: #fefefe;
  padding-bottom: 80px;
  position: relative;
}
.g-secmain img {
  max-width: 100%;
}
.g-secmain .sec-conbox .left {
  width: 260px;
  float: left;
  position: relative;
}
.g-secmain .sec-conbox .right {
  width: 920px;
  float: right;
  position: relative;
}
.g-secmain .sec-conbox .right .whitebox {
  background: #fff;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.m-sectitle {
  padding: 30px 0;
}
.m-sectitle h4 {
  font: 25px/40px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  display: inline-block;
  position: relative;
}
.m-sectitle h4::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #2b4da3;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}
.sec-about .left,
.sec-contact .left,
.sec-news .left {
  width: 920px;
  float: left;
  position: relative;
}
.sec-about .right,
.sec-contact .right,
.sec-news .right {
  width: 260px;
  float: right;
  position: relative;
}
.m-aboutdetail .title {
  padding: 30px 0;
  text-align: center;
}
.m-aboutdetail .title h4 {
  font: 25px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  display: inline-block;
  position: relative;
}
.m-aboutdetail .title h4::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #333;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}
.m-aboutdetail .imgbox {
  margin: 30px auto;
  overflow: hidden;
  position: relative;
}
.m-aboutdetail .imgbox img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.m-aboutdetail .desc {
  padding: 20px;
  margin: 0 100px;
}
.m-aboutdetail .desc p {
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
  color: #999;
  text-indent: 2em;
}
.m-aboutdetail .content {
  padding: 30px;
  border-top: 1px dashed #eee;
}
.m-aboutdetail .content img {
  max-width: 100%;
}
.m-contactdetail .textbox {
  position: relative;
}
.m-contactdetail .textbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-contactdetail .textbox .text {
  display: inline-block;
  vertical-align: middle;
  margin-left: 25px;
}
.m-contactdetail .textbox .text .noshow {
  display: none;
}
.m-contactdetail .textbox h4 {
  font: 24px/1 "Microsoft YaHei", "Arial", serif;
  color: #666;
}
.m-contactdetail .textbox h4::after {
  content: '';
  display: block;
  width: 130px;
  height: 2px;
  background: #2b4da3;
  margin: 10px auto 30px 0;
}
.m-contactdetail .textbox p {
  font: 16px/1 "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-bottom: 24px;
}
.m-contactdetail .textbox p span{
	margin: 3px 0;
	line-height: 30px;
	padding-left: 40px;
}
.m-contactdetail .textbox p a {
  color: #666;
}
.m-contactdetail .textbox p a:hover {
  text-decoration: underline;
}
.m-contactdetail .contact-qq{
	display: block;
	width: 120px;
	height: 35px;
	box-sizing: border-box;
	background: #2b4da3;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 35px;
	transition: 0.3s;
}
 .mapbox {
  position: relative;
  height: 400px;
  margin: 50px auto 0;
}
 .mapbox img {
  max-width: 1000px;
}
 .mapbox label {
  max-width: 1000px;
}
.m-joindetail {
  padding: 50px 0;
}
.m-joindetail .title {
  text-align: center;
  margin-bottom: 50px;
}
.m-joindetail .title h4 {
  font: 36px/1 "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-list4 {
  margin-top: 20px;
}
.m-list4 .listitem {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.m-list4 .imgbox {
  display: block;
  position: relative;
  overflow: hidden;
  width: 30%;
  max-height: 160px;
}
.m-list4 .imgbox img {
  display: block;
  width: 100%;
  transition: 0.5s;
  max-height: 160px;
}
.m-list4 .imgbox img:hover {
  transform: scale(1.1);
}
.m-list4 .datebox {
  width: 130px;
  height: 130px;
  background: #2b4da3;
  color: #fff;
}
.m-list4 .datebox .day {
  font-size: 30px;
  padding-top: 24px;
  margin-left: 16px;
  margin-bottom: 10px;
}
.m-list4 .datebox .year {
  margin-left: 16px;
  font-size: 20px;
}
.m-list4 .textbox {
  float: right;
  width: 65%;
  padding: 10px 10px 0 20px;
}
.m-list4 .textbox h4 a {
  display: block;
  font: 18px/1 "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-bottom: 15px;
  transition: 0.5s;
}
.m-list4 .textbox h4 a:hover {
  transform: translateX(5px);
  color: #2b4da3;
}
.m-list4 .textbox p {
  height: 40px;
  color: #666;
  overflow: hidden;
  font: 12px/20px "Microsoft YaHei", "Arial", serif;
  word-wrap: break-word;
  word-break: break-all;
  text-align: justify;
}
.m-more1 {
  display: block;
  float: right;
  margin-top: 16px;
  width: 82px;
  line-height: 26px;
  font-size: 14px;
  color: #2b4da3;
  text-align: center;
  border-radius: 4px;
  transition: 0.5s;
  border: 1px solid #eee;
}
.m-more1:hover {
  background: #2b4da3;
  color: #fff;
  border-color: #2b4da3;
}
.m-seclist1 .list {
  text-align: left;
  font-size: 0;
}
.m-seclist1 .listitem {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 33.3%;
  height: 260px;
  padding-top: 1px;
  text-align: center;
  transition: 0.3s;
}
.m-seclist1 .listitem a {
  display: block;
  margin: 5px;
  padding: 5px;
  background: #fff;
  transition: 0.3s;
}
.m-seclist1 .listitem a:hover {
  box-shadow: 0 10px 20px rgba(167, 167, 167, 0.5);
}
.m-seclist1 .listitem a:hover .imgbox img {
  transform: scale(1.1);
}
.m-seclist1 .listitem .imgbox {
  position: relative;
  overflow: hidden;
  width: 273px;
  height: 160px;
}
.m-seclist1 .listitem .imgbox img {
  display: block;
  /* max-width: 100%; */
  transition: 0.3s;
  max-height: 100%;
  margin: auto;
}
.m-seclist1 .listitem .textbox {
  padding: 20px 10px 10px;
}
.m-seclist1 .listitem .textbox .tt {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-seclist1 .listitem .textbox .desc {
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  color: #888;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-honordetail {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}
.m-honordetail .list {
  text-align: left;
  font-size: 0;
}
.m-honordetail .listitem {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 25%;
  padding-top: 1px;
  text-align: center;
  transition: 0.3s;
}
.m-honordetail .listitem a {
  display: block;
  margin: 5px;
  padding: 5px;
  background: #fff;
  transition: 0.3s;
}
.m-honordetail .listitem a:hover {
  box-shadow: 0 10px 20px rgba(167, 167, 167, 0.5);
}
.m-honordetail .listitem a:hover .imgbox img {
  transform: scale(1.1);
}
.m-honordetail .listitem .imgbox {
  position: relative;
  overflow: hidden;
}
.m-honordetail .listitem .imgbox img {
  display: block;
  max-width: 100%;
  transition: 0.3s;
  max-height: 100%;
  margin: auto;
}
.m-honordetail .listitem .textbox {
  padding: 20px 10px 10px;
}
.m-honordetail .listitem .textbox .tt {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-honordetail .listitem .textbox .desc {
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  color: #888;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-sechonor1 .list {
  text-align: left;
  font-size: 0;
}
.m-sechonor1 .listitem {
  display: inline-block;
  position: relative;
  vertical-align: top;
  width: 33.3%;
  padding-top: 1px;
  text-align: center;
  transition: 0.3s;
}
.m-sechonor1 .listitem a {
  display: block;
  margin: 5px;
  padding: 5px;
  background: #fff;
  transition: 0.3s;
}
.m-sechonor1 .listitem a:hover {
  box-shadow: 0 10px 20px rgba(167, 167, 167, 0.5);
}
.m-sechonor1 .listitem a:hover .imgbox img {
  transform: scale(1.1);
}
.m-sechonor1 .listitem .imgbox {
  position: relative;
  overflow: hidden;
  height: 182px;
}
.m-sechonor1 .listitem .imgbox img {
  display: block;
  max-width: 100%;
  transition: 0.3s;
  max-height: 100%;
  margin: auto;
}
.m-sechonor1 .listitem .textbox {
  padding: 20px 10px 10px;
}
.m-sechonor1 .listitem .textbox .tt {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  color: #333;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-sechonor1 .listitem .textbox .desc {
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  color: #888;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-bigbox {
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  transform: scale(1, 0);
  transition: 0.5s;
  opacity: 0;
  text-align: center;
  font-size: 0;
}
.m-bigbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-bigbox.on {
  opacity: 1;
  transform: scale(1, 1);
}
.m-bigbox .box {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}
.m-bigbox .box .imgbox img {
  display: block;
  margin: 0 auto 20px;
  max-width: 100%;
}
.m-bigbox .box .tt {
  text-align: center;
  font-size: 0.53333333px "Microsoft YaHei", "Arial", serif;
  color: #fff;
}
.m-secjoin .title {
  padding: 30px 0;
  text-align: center;
}
.m-secjoin .title h4 {
  font: 25px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  display: inline-block;
  position: relative;
}
.m-secjoin .title h4::after {
  content: '';
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  background: #333;
  bottom: 0;
  left: 50%;
  margin-left: -20px;
}
.m-secjoin .telbox {
  text-align: center;
  margin: 40px auto;
}
.m-secjoin .telbox .tel {
  display: inline-block;
  padding-left: 60px;
  text-align: left;
  background: url('../images/i-11.png') left center no-repeat;
}
.m-secjoin .telbox .tel p {
  color: #333;
  font: 16px/25px "Microsoft YaHei", "Arial", serif;
}
.m-secjoin .telbox .tel .num {
  color: #2b4da3;
  font: 26px/1 "Microsoft YaHei", "Arial", serif;
  font-weight: 700;
}
.m-secjoin .textbox {
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.m-secjoin .textbox img {
  max-width: 100%;
}
.m-secjoin .textbox p {
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-bottom: 10px;
}
.m-mesform3 {
  position: relative;
  padding: 25px 0;
  width: 550px;
  margin: 0 auto;
}
.m-mesform3 .title {
  margin-bottom: 30px;
  color: #585858;
  font-size: 20px;
}
.m-mesform3 .title h4 {
  padding-left: 7px;
  border-left: 1px solid #2b4da3;
}
.m-mesform3 .title h4 span {
  font-size: 14px;
  color: #888;
}
.m-mesform3 .input {
  margin-bottom: 10px;
  position: relative;
  font-size: 0;
}
.m-mesform3 .input .input_field {
  display: inline-block;
  height: 46px;
  background: #f9f9f9;
  width: 400px;
  font: 14px/46px "Microsoft YaHei", "Arial", serif;
  color: #888;
  vertical-align: top;
  border: none;
  text-indent: 10px;
}
.m-mesform3 .input .input_field:focus {
  background: #282828;
  color: #fff;
}
.m-mesform3 .input .input_label {
  display: inline-block;
  width: 85px;
  vertical-align: top;
  font: 14px/46px "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-mesform3 .input .input_icon {
  display: block;
  position: absolute;
  font: 14px/46px "Microsoft YaHei", "Arial", serif;
  padding-left: 20px;
  top: 0;
  left: 510px;
  color: #333;
  overflow: hidden;
  opacity: 0;
  width: 200px;
}
.m-mesform3 .input.fit .input_icon {
  background: url("../images/i-right.png") left center no-repeat;
  opacity: 1;
  text-indent: -9999px;
}
.m-mesform3 .input.error .input_icon {
  background: url("../images/i-error.png") left center no-repeat;
  opacity: 1;
}
.m-mesform3 .input.input_block .input_field {
  height: 100px;
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
}
.m-mesform3 .btnbox {
  margin-left: 100px;
  margin-top: 30px;
}
.m-mesform3 .btnbox .sub {
  width: 170px;
  display: inline-block;
  font: 14px/48px "Microsoft YaHei", "Arial", serif;
  text-align: center;
  color: #fff;
  background: #2b4da3;
  border-radius: 24px;
  box-shadow: 0 5px 16px rgba(14, 120, 39, 0.5);
  transition: 0.5s;
}
.m-mesform3 .btnbox .sub:hover {
  background: #16bd3d;
}
.m-mesform3 .btnbox .sub.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.m-mesform3 .btnbox .sub.success {
  background: #09BB07;
}
.m-filter {
  border: 1px solid #ddd;
  width: 880px;
  margin: 20px auto;
  font-size: 0;
  position: relative;
}
.m-filter .icontitle {
  padding-left: 30px;
  display: inline-block;
  width: 150px;
  vertical-align: top;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  font-weight: 700;
  background: url("../images/i-provine.png") 10px center no-repeat;
}
.m-filter .icontitle .item {
  margin-left: 20px;
  font: 12px/40px "Microsoft YaHei", "Arial", serif;
  color: #666;
  font-weight: 400;
}
.m-filter .provine {
  display: inline-block;
  vertical-align: top;
  width: 620px;
  overflow: hidden;
  height: 40px;
  margin-left: 40px;
}
.m-filter .provine.on {
  height: auto;
}
.m-filter .provine .item {
  display: inline-block;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-right: 30px;
}
.m-filter .provine .item.curr {
  color: #2b4da3;
  font-weight: 700;
}
.m-filter .more {
  display: block;
  position: absolute;
  width: 60px;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #666;
  top: 0;
  right: 0;
}
.m-filter .more i {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background: url("../images/i-arrow.png") center no-repeat;
  transform: rotate(180deg);
}
.m-filter .more.on i {
  transform: rotate(0);
}
.m-sendflower {
  margin: 50px auto;
  position: relative;
}
.m-sendflower .text {
  text-align: center;
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #666;
}
.m-sendflower .text span {
  font-weight: 700;
  color: #2b4da3;
  font-size: 22px;
}
.m-sendflower .addnum {
  display: block;
  width: 240px;
  text-align: center;
  margin: 40px auto;
  background: #2b4da3;
  font: 18px/50px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  box-shadow: 0 5px 20px rgba(14, 120, 39, 0.2);
  transition: 0.3s;
}
.m-sendflower .addnum:hover {
  background: #19d345;
}
.m-sendflower .flower {
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  background: url("../images/i-flower1.png") center no-repeat;
  bottom: -50px;
  left: 50%;
  margin-left: -32px;
  opacity: 0;
}
.m-sendflower .flower.on {
  animation: flower 1s ease-in-out;
}
@-webkit-keyframes flower {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(20deg);
    bottom: 50px;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg);
    bottom: 150px;
  }
}
@keyframes flower {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: rotate(20deg);
    bottom: 50px;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg);
    bottom: 150px;
  }
}
/*子页样式结束*/
.g-form {
  position: relative;
  padding: 250px 0 80px;
  background: #f5f5f5;
}
.m-formbox {
  width: 660px;
  position: absolute;
  left: 50%;
  margin-left: -300px;
  background: #fff;
  border-top: 8px solid #2b4da3;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  top: -250px;
  padding-bottom: 50px;
}
.m-formbox .title {
  text-align: center;
  line-height: 30px;
  margin: 36px 80px 0;
  position: relative;
}
.m-formbox .title h4 {
  display: inline-block;
  font: 20px/30px "Microsoft YaHei", "Arial", serif;
  color: #f8b62a;
  font-weight: 700;
  vertical-align: middle;
}
.m-formbox .title h4 span {
  color: #2b4da3;
}
.m-formbox .title::before,
.m-formbox .title::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 50px;
  height: 3px;
  background: #f8b62a;
  margin: 0 30px;
}
.m-formbox form {
  position: relative;
  margin: 0 80px 0;
  padding-top: 50px;
}
.m-formbox .input_box {
  width: 100%;
  margin-bottom: 15px;
}
.m-formbox .input_box .input_label {
  width: 104px;
  height: 38px;
  line-height: 38px;
  float: left;
  font-size: 14px;
  color: #ea4740;
  margin-left: 10px;
}
.m-formbox .input_box .input_field {
  width: 385px;
  height: 38px;
  position: relative;
  float: left;
  border: 1px solid #e6e6e6;
  text-indent: 10px;
}
.m-formbox .area_box .input_area {
  height: 50px;
}
.m-formbox .btn_box {
  text-align: center;
  font-size: 0;
}
.m-formbox .btn_box .input_btn {
  display: inline-block;
  width: 500px;
  border: 2px solid #2b4da3;
  margin: 0;
  font: 22px/56px "Microsoft YaHei", "Arial", serif;
  transition: 0.5s;
  color: #333;
}
.m-formbox .btn_box .input_btn:hover {
  color: #fff;
  background: #2b4da3;
}
.m-formbox .tips {
  position: absolute;
  width: 50%;
  display: none;
  z-index: 5;
  top: 8px;
  border-radius: 4px;
  left: 25%;
}
.m-formbox .tips.success {
  background-color: #00AC4A;
}
.m-formbox .tips.error {
  background-color: #dc0000;
}
.m-formbox .tips p {
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 40px;
}
.m-formbox .tips .tipclose {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  margin-top: -13px;
  right: 3px;
  opacity: 0.85;
  transition: 0.5s;
}
.m-formbox .tips .tipclose::before,
.m-formbox .tips .tipclose::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  transform-origin: 50% 50%;
  border-radius: 2px;
}
.m-formbox .tips .tipclose::before {
  transform: rotate(45deg);
}
.m-formbox .tips .tipclose::after {
  transform: rotate(-45deg);
}
.m-formbox .tips .tipclose:hover {
  transform: rotate(180deg);
  opacity: 1;
}
.g-detailmain {
  background: #fefefe;
  padding: 80px 0;
}
.g-detailmain .maincon1 .left {
  width: 920px;
  float: left;
  position: relative;
}
.g-detailmain .maincon1 .right {
  width: 260px;
  float: right;
  position: relative;
}
.g-detailmain .b-white {
  background: #fff;
  padding: 20px;
}
.g-detailmain .maincon {
  margin-top: 30px;
}
.g-detailmain .maincon .left {
  width: 260px;
  float: left;
  position: relative;
}
.g-detailmain .maincon .right {
  width: 920px;
  float: right;
  position: relative;
}
.g-detailmain1 {
  background: #fefefe;
  padding: 80px 0;
}
.g-detailmain1 .detail-conbox .left {
  width: 920px;
  float: left;
  position: relative;
}
.g-detailmain1 .detail-conbox .left .whitebox {
  background: #fff;
  padding: 20px;
}
.g-detailmain1 .detail-conbox .right {
  width: 260px;
  float: right;
  position: relative;
}
.m-content {
  padding: 20px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.m-content .detailtitle {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.m-content .detailtitle h4 {
  font: 24px/2.5 "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-content .detailtitle p {
  font: 12px/2 "Microsoft YaHei", "Arial", serif;
  color: #999;
}
.m-content .page {
  padding: 30px 30px 50px;
}
.m-content .page img {
  max-width: 100%;
}
.m-content .page .m-productInfo{
	position: relative;
}
.m-content .page .titlebox p:nth-of-type(1){
	position: relative;
	font-size: 24px;
	color: #030000;
	line-height: 30px;
	margin-top: 20px;
}
.m-content .page .titlebox p:nth-of-type(1):after{
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 40px;
	height: 5px;
	background: #2b4da3;
}
.m-content .page .titlebox p:nth-of-type(2){
	height: 72px;
	text-align: left;
	font-size: 14px;
	color: #797777;
	line-height: 24px;
	overflow: hidden;
	margin-top: 30px;
}
.m-content .page .titlebox p:nth-of-type(3){
	font: bold 30px/30px "microsoft yahei";
	color: #2b4da3;
}
.m-content .page .titlebox p:nth-of-type(3) span{
	font-size: 16px;
	line-height: 45px;
}
.m-content .page .titlebox p:nth-of-type(3) i{
	float: left;
	display:inline-block;
	width: 33px;
	height: 33px;
	margin-right: 10px;
	background: url(../images/ntg.png) center no-repeat;
}
.m-content .page .contact-qq{
	position: absolute;
	bottom: 40px;
	right: 15px;
	width: 120px;
	height: 35px;
	box-sizing: border-box;
	background: #2b4da3;
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 35px;
	transition: 0.3s;
}


.m-prodetailslide {
  width: 380px;
  float: left;
  position: relative;
  overflow: hidden;
}
.m-prodetailslide .bd {
  width: 380px;
}
.m-prodetailslide .bd .listitem {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.m-prodetailslide .bd .listitem img {
  display: block;
  width: 100%;
}
.m-prodetailslide .hd {
  margin-top: 10px;
}
.m-prodetailslide .hd ul {
  text-align: center;
  font-size: 0;
  position: relative;
}
.m-prodetailslide .hd .listitem {
  display: inline-block;
  vertical-align: top;
  width: 20%;
  border: 1px solid #eee;
  margin: 0 3px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.m-prodetailslide .hd .listitem img {
  display: block;
  width: 100%;
  transition: 0.3s;
}
.m-prodetailslide .hd .listitem.on,
.m-prodetailslide .hd .listitem:hover {
  border: 1px solid #2b4da3;
}
.m-goodsinfo {
  float: left;
  width: 500px;
  margin: 0 50px;
}
.m-goodsinfo .tt {
  font: 22px/70px "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-goodsinfo .desc {
  padding: 8px 15px;
  background-color: #fff4f5;
  color: #999;
  font: 12px/25px "Microsoft YaHei", "Arial", serif;
  text-indent: 2em;
}
.m-goodsinfo .itembox {
  border: 1px solid #ddd;
  padding: 15px 25px;
  margin: 30px auto;
  text-align: left;
}
.m-goodsinfo .itembox .item {
  display: inline-block;
  width: 200px;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  color: #666;
}
.m-goodsinfo .more {
  margin-top: 20px;
  display: inline-block;
  padding: 15px;
  min-width: 170px;
  font: 16px/1 "Microsoft YaHei", "Arial", serif;
  border-radius: 24px;
  background: #2b4da3;
  color: #fff;
  box-shadow: 0 5px 16px rgba(14, 120, 39, 0.5);
  transition: 0.3s;
  text-align: center;
}
.m-goodsinfo .more:hover {
  background: #ffffff;
}
.m-leftprolist {
  float: right;
  width: 178px;
  border-left: 1px solid #ebebeb;
  text-align: center;
}
.m-leftprolist h5 {
  padding-right: 13px;
  padding-left: 32px;
  margin: 10px 0;
  color: #888;
  text-align: center;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-leftprolist .list {
  padding-right: 13px;
  padding-left: 32px;
}
.m-leftprolist .list .listitem {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.m-leftprolist .list .listitem img {
  display: block;
  width: 100%;
}
.m-leftprolist .list .listitem p {
  font: 12px/20px "Microsoft YaHei", "Arial", serif;
  color: #888;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-prolist2 {
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
}
.m-prolist2 h5 {
  border-bottom: 1px solid #ebebeb;
  font: 16px/44px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 15px;
  background: #2b4da3;
}
.m-prolist2 .list {
  margin: 25px 0;
  position: relative;
  text-align: center;
}
.m-prolist2 .listitem {
  position: relative;
  width: 70%;
  margin: 0 auto 20px;
}
.m-prolist2 .listitem img {
  display: block;
  width: 100%;
}
.m-prolist2 .listitem p {
  font: 12px/20px "Microsoft YaHei", "Arial", serif;
  color: #666;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-asidecontact {
  padding: 5px 15px;
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.m-asidecontact h4 {
  border-bottom: 1px solid #ebebeb;
  font: 16px/44px "Microsoft YaHei", "Arial", serif;
  color: #333;
  margin-bottom: 8px;
}
.m-asidecontact p {
  font: 14px/24px "Microsoft YaHei", "Arial", serif;
  padding: 5px 0;
  color: #666;
}
.m-banch1 {
  background: #fff;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
}
.m-banch1 .title {
  border-bottom: 1px solid #ebebeb;
  background: #2b4da3;
}
.m-banch1 .title h4 {
  font: 16px/44px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding: 0 15px;
}
.m-banch1 .linksbox .linkbox {
  padding: 15px;
  border-bottom: 1px solid #ebebeb;
}
.m-banch1 .linksbox dt {
  overflow: hidden;
}
.m-banch1 .linksbox dt .links {
  color: #333;
  font: 14px/2 "Microsoft YaHei", "Arial", serif;
  transition: 0.3s;
}
.m-banch1 .linksbox dt .links:hover,
.m-banch1 .linksbox dt .links.curr {
  color: #2b4da3;
}
.m-banch1 .linksbox dt .togglenav {
  position: relative;
  float: right;
  width: 22px;
  height: 22px;
  border: 1px solid #eee;
  border-radius: 50%;
  cursor: pointer;
}
.m-banch1 .linksbox dt .togglenav::before,
.m-banch1 .linksbox dt .togglenav::after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -4px;
  width: 8px;
  height: 2px;
  background-color: #2b4da3;
}
.m-banch1 .linksbox dt .togglenav::after {
  transform: rotate(90deg);
  transition: 0.3s;
}
.m-banch1 .linksbox dt .togglenav.close::after {
  transform: rotate(0);
}
.m-banch1 .linksbox dd {
  display: none;
}
.m-banch1 .linksbox dd .item {
  position: relative;
  display: block;
  padding-left: 10px;
  color: #666;
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  transition: 0.3s;
  height: 32px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-banch1 .linksbox dd .item::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1px;
  width: 3px;
  height: 3px;
  background: #d8d8d8;
  border-radius: 50%;
  transition: 0.3s;
}
.m-banch1 .linksbox dd .item:hover {
  color: #2b4da3;
}
.m-banch1 .linksbox dd .item:hover::before {
  background: #2b4da3;
}
.m-detailcontent {
  padding: 5px 15px;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}
.m-detailcontent .hd {
  position: relative;
  height: 50px;
}
.m-detailcontent .hd ul {
  font-size: 0;
  border-bottom: 1px solid #ebebeb;
  height: 48px;
  padding: 0 10px;
}
.m-detailcontent .hd ul li {
  display: inline-block;
  position: relative;
  padding: 0 34px;
  font: 16px/48px "Microsoft YaHei", "Arial", serif;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}
.m-detailcontent .hd ul li:hover {
  color: #2b4da3;
}
.m-detailcontent .hd ul li.on {
  color: #2b4da3;
  border-bottom: 2px solid #2b4da3;
}
.m-detailcontent .bd {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.m-detailcontent .bd .listitem {
  width: 100%;
}
.m-detailcontent .bd .listitem .con {
  position: relative;
  overflow: hidden;
}
.m-detailcontent .bd .listitem .con img {
  max-width: 100%;
}
.m-newsinfolist1 {
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}
.m-newsinfolist1 h5 {
  border-bottom: 1px solid #ebebeb;
  font: 16px/44px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  margin-bottom: 8px;
  background: #2b4da3;
  padding-left: 15px;
}
.m-newsinfolist1 .list {
  padding: 8px 15px;
}
.m-newsinfolist1 .list .listitem {
  margin: 16px 0;
}
.m-newsinfolist1 .list .listitem a {
  position: relative;
  display: block;
  overflow: hidden;
}
.m-newsinfolist1 .list .listitem a::before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.m-newsinfolist1 .list .listitem a img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  transition: 0.3s;
}
.m-newsinfolist1 .list .listitem a .textbox {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  text-align: center;
  font-size: 0;
}
.m-newsinfolist1 .list .listitem a .textbox::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-newsinfolist1 .list .listitem a .textbox h4 {
  display: inline-block;
  width: 80%;
  vertical-align: middle;
  position: relative;
  font: 14px/24px "Microsoft YaHei", "Arial", serif;
  color: #fff;
}
.m-newsinfolist1 .list .listitem a .textbox h4::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  width: 50px;
  height: 1px;
  left: 50%;
  margin-left: -25px;
  background: #fff;
  transition: 0.3s;
  transform: scale(0, 1);
}
.m-newsinfolist1 .list .listitem a:hover img {
  transform: scale(1.1);
}
.m-newsinfolist1 .list .listitem a:hover .textbox h4::after {
  transform: scale(1, 1);
}
.m-newsinfolist {
  border-top: 3px solid #2b4da3;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}
.m-newsinfolist .listitem {
  padding: 30px 20px 20px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  transition: 0.6s ease-out;
}
.m-newsinfolist .listitem .textbox h4 {
  font: 14px/2 "Microsoft YaHei", "Arial", serif;
  color: #666;
  height: 28px;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: keep-all;
  transition: 0.3s;
}
.m-newsinfolist .listitem .textbox p {
  font: 12px/25px "Microsoft YaHei", "Arial", serif;
  color: #8f8f8f;
  height: 50px;
  overflow: hidden;
}
.m-newsinfolist .listitem .textbox .date {
  display: block;
  margin-top: 20px;
  font: 12px/25px "Arial";
  color: #444;
}
.m-newsinfolist .listitem::after {
  content: '';
  display: block;
  width: 280px;
  position: absolute;
  height: 1px;
  background: #eee;
  bottom: 0;
}
.m-newsinfolist .listitem:hover {
  background-color: #f1f1f1;
}
.m-newsinfolist .listitem:hover .textbox h4 {
  color: #2b4da3;
}
.m-seclist2 .listitem {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: relative;
  font-size: 0;
}
.m-seclist2 .listitem .imgbox {
  display: inline-block;
  vertical-align: top;
  width: 240px;
  overflow: hidden;
  position: relative;
}
.m-seclist2 .listitem .imgbox img {
  display: block;
  width: 100%;
  transition: 0.5s;
}
.m-seclist2 .listitem .imgbox:hover img {
  transform: scale(1.2);
}
.m-seclist2 .listitem .textbox {
  display: inline-block;
  vertical-align: top;
  margin-left: 30px;
  width: calc(100% - 300px);
  text-align: left;
}
.m-seclist2 .listitem .textbox .tt {
  font: 20px/26px "Microsoft YaHei", "Arial", serif;
  max-height: 52px;
  overflow: hidden;
  font-weight: 700;
  display: block;
  transition: 0.4s;
}
.m-seclist2 .listitem .textbox .tt:hover {
  color: #2b4da3;
}
.m-seclist2 .listitem .textbox .desc {
  margin: 11px 0;
  font: 14px/24px "Microsoft YaHei", "Arial", serif;
  color: #888;
  max-height: 48px;
  overflow: hidden;
}
.m-seclist2 .listitem .textbox .time {
  margin-bottom: 20px;
  font: 12px/14px Arial;
}
.m-seclist2 .listitem .more a {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #2b4da3;
  text-align: center;
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  width: 100px;
  transition: 0.5s;
  cursor: pointer;
}
.m-seclist2 .listitem .more a:hover {
  background: #2b4da3;
  color: #fff;
}
.m-seclist5 .list {
  padding-top: 40px;
}
.m-seclist5 .listitem {
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  position: relative;
  font-size: 0;
}
.m-seclist5 .listitem .datebox {
  display: inline-block;
  vertical-align: top;
  width: 100px;
  overflow: hidden;
  position: relative;
  height: 100px;
  text-align: center;
  background: #2b4da3;
  color: #fff;
  transition: 0.4s;
  margin-left: 25px;
}
.m-seclist5 .listitem .datebox .day {
  font-size: 36px;
  line-height: 36px;
  padding-top: 15px;
}
.m-seclist5 .listitem .datebox .day::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin: 5px auto 7px;
}
.m-seclist5 .listitem .datebox .year {
  font-size: 16px;
}
.m-seclist5 .listitem .textbox {
  display: inline-block;
  vertical-align: top;
  margin-left: 50px;
  width: calc(100% - 200px);
  text-align: left;
}
.m-seclist5 .listitem .textbox .tt {
  font: 20px/26px "Microsoft YaHei", "Arial", serif;
  max-height: 52px;
  overflow: hidden;
  font-weight: 700;
  display: block;
  transition: 0.4s;
}
.m-seclist5 .listitem .textbox .tt:hover {
  color: #f8b62a;
}
.m-seclist5 .listitem .textbox .desc {
  margin: 11px 0;
  font: 14px/24px "Microsoft YaHei", "Arial", serif;
  color: #888;
  max-height: 48px;
  overflow: hidden;
}
.m-seclist5 .listitem .textbox .time {
  margin-bottom: 20px;
  font: 12px/14px Arial;
}
.m-seclist5 .listitem:hover .datebox {
  background: #f8b62a;
}
.m-seclist0 .list {
  padding: 30px;
}
.m-seclist0 .listitem {
  display: block;
  position: relative;
  padding-left: 25px;
}
.m-seclist0 .listitem::before {
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  top: 50%;
  left: 0;
  margin-top: -3px;
  transition: 0.3s;
}
.m-seclist0 .listitem a {
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  color: #000;
  display: block;
  height: 30px;
  overflow: hidden;
  transition: 0.3s;
}
.m-seclist0 .listitem .tt {
  margin-right: 100px;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
}
.m-seclist0 .listitem .date {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}
.m-seclist0 .listitem:hover::before {
  background: #2b4da3;
}
.m-seclist0 .listitem:hover a {
  color: #2b4da3;
}
.m-secnewslist1 {
  margin-top: 40px;
}
.m-secnewslist1 .list {
  font-size: 0;
}
.m-secnewslist1 .listitem {
  border-bottom: 1px solid #eee;
  padding: 25px;
  position: relative;
  font-size: 0;
  transition: 0.4s;
}
.m-secnewslist1 .listitem a {
  display: block;
  height: 70px;
  position: relative;
  text-align: center;
}
.m-secnewslist1 .listitem a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-secnewslist1 .listitem .date {
  display: inline-block;
  vertical-align: middle;
  width: 120px;
  border-right: 2px solid #aaa;
  color: #888;
  transition: 0.4s;
}
.m-secnewslist1 .listitem .date .day {
  font: 36px/1 'helveticaNeuelTpro thex';
}
.m-secnewslist1 .listitem .date .year {
  font: 14px/1 'helveticaNeuelTpro thex';
}
.m-secnewslist1 .listitem .textbox {
  display: inline-block;
  vertical-align: middle;
  margin-left: 30px;
  width: calc(100% - 155px);
  text-align: left;
  color: #666;
  transition: 0.4s;
}
.m-secnewslist1 .listitem .textbox .tt {
  font: 16px/20px "Microsoft YaHei", "Arial", serif;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-secnewslist1 .listitem .textbox .desc {
  margin-top: 15px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  height: 40px;
  overflow: hidden;
}
.m-secnewslist1 .listitem .textbox .more {
  display: none;
}
.m-secnewslist1 .listitem:hover {
  border-color: #2b4da3;
  background: #2b4da3;
}
.m-secnewslist1 .listitem:hover .date {
  color: #fff;
}
.m-secnewslist1 .listitem:hover .textbox {
  color: #fff;
}
.m-seclist4 {
  font-size: 0;
  text-align: left;
  position: relative;
  margin-top: 50px;
}
.m-seclist4 .listitem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(33.33% - 10px);
  margin-bottom: 10px;
  transition: 0.4s;
  margin-right: 10px;
  padding: 10px 0;
}
.m-seclist4 .listitem:nth-of-type(3n) {
  margin-right: 0;
}
.m-seclist4 .listitem a {
  display: block;
}
.m-seclist4 .listitem .imgbox {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.m-seclist4 .listitem .imgbox img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.m-seclist4 .listitem .textbox {
  padding: 10px 25px;
}
.m-seclist4 .listitem .textbox .tt {
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  text-align: center;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-seclist4 .listitem:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.m-seclist3 {
  font-size: 0;
  text-align: left;
  position: relative;
  margin-top: 50px;
}
.m-seclist3 .listitem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(20% - 8px);
  margin-bottom: 10px;
  transition: 0.4s;
  margin-right: 8px;
}
.m-seclist3 .listitem:nth-of-type(5n) {
  margin-right: 0;
}
.m-seclist3 .listitem a {
  display: block;
  border: 1px solid #ddd;
}
.m-seclist3 .listitem .imgbox {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.m-seclist3 .listitem .imgbox img {
  display: block;
  max-width: 100%;
}
.m-seclist3 .listitem .textbox {
  padding: 10px 25px;
  text-align: center;
}
.m-seclist3 .listitem .textbox .tt {
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-seclist3 .listitem .textbox .desc {
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
}
.m-seclist3 .listitem:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.m-searchkey {
  padding: 10px 0;
}
.m-searchkey p {
  font: 14px/2 "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-searchkey .key,
.m-searchkey .num {
  color: #f00;
  font-weight: 700;
  margin: 0 8px;
}
.m-searchkey .result {
  margin-left: 20px;
}
.no-res {
  font: 14px/2 "Microsoft YaHei", "Arial", serif;
  color: #f33;
  text-align: center;
}
.m-secform {
  border: 1px solid #dbdbdb;
  background: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.m-secform form {
  padding: 20px;
}
.m-secform .input {
  position: relative;
  border: 1px solid;
  border-color: #aaa;
  transition: 0.5s;
  display: block;
  margin: 0 auto 12px;
}
.m-secform .input .input_field {
  display: block;
  border: none;
  background: transparent;
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-left: 10px;
  width: 200px;
  position: relative;
  z-index: 2;
}

.m-secform .input .input_radio{display: inline-block;vertical-align: middle;margin-left: 20px;margin-right: 5px;}
.m-secform .input .radio-value{display: inline-block;vertical-align: middle;font: 12px/30px "Microsoft YaHei", "Arial", serif;color: #666;}

.m-secform .input .input_label {
  display: none;
}
.m-secform .input.input_block .input_field {
  height: 40px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-secform .input.input_block textarea{resize: vertical;}
.m-secform .input .input_icon {
  display: block;
  position: absolute;
  font: 12px/30px "Microsoft YaHei", "Arial", serif;
  padding-right: 20px;
  top: 0;
  right: 5px;
  color: #666;
  overflow: hidden;
  opacity: 0;
}
.m-secform .input.fit .input_icon {
  background: url("../images/i-right.png") right center no-repeat;
  opacity: 1;
  text-indent: -9999px;
}
.m-secform .input.error .input_icon {
  background: url("../images/i-error.png") right center no-repeat;
  opacity: 1;
}
.m-secform .btnbox {
  text-align: center;
  margin: 0 auto;
}
.m-secform .btnbox .submit {
  display: block;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  background: #2b4da3;
  color: #fff;
  transition: 0.5s;
}
.m-secform .btnbox .submit:hover {
  background: #f8b62a;
}
.m-secform .btnbox .submit.disabled {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.m-secform .btnbox .submit.success {
  background: #09BB07;
}
.m-secform .tips {
  position: absolute;
  width: 50%;
  display: none;
  z-index: 5;
  top: 5px;
  border-radius: 4px;
  left: 25%;
}
.m-secform .tips.success {
  background-color: #00AC4A;
}
.m-secform .tips.error {
  background-color: #dc0000;
}
.m-secform .tips p {
  font: 14px/32px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 40px;
  margin: 0;
}
.m-secform .tips .tipclose {
  display: block;
  position: absolute;
  width: 26px;
  height: 26px;
  top: 50%;
  margin-top: -13px;
  right: 3px;
  opacity: 0.85;
  transition: 0.5s;
}
.m-secform .tips .tipclose::before,
.m-secform .tips .tipclose::after {
  content: '';
  display: block;
  position: absolute;
  width: 12px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -6px;
  transform-origin: 50% 50%;
  border-radius: 2px;
}
.m-secform .tips .tipclose::before {
  transform: rotate(45deg);
}
.m-secform .tips .tipclose::after {
  transform: rotate(-45deg);
}
.m-secform .tips .tipclose:hover {
  transform: rotate(180deg);
  opacity: 1;
}
.m-newsinfolist3 {
  margin-bottom: 20px;
  border: 1px solid #dbdbdb;
  background: #fff;
}
.m-newsinfolist3 .list {
  padding: 10px 10px 20px;
}
.m-newsinfolist3 .list .listitem {
  display: block;
}
.m-newsinfolist3 .list .listitem a {
  display: block;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  color: #666;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-newsinfolist3 .list .listitem .index {
  display: inline-block;
  vertical-align: middle;
  background: #f5f5f5;
  color: #888;
  width: 20px;
  margin-right: 10px;
  text-align: center;
  border-radius: 3px;
  font: 12px/20px Arial;
}
.m-asidetitle {
  border-bottom: 1px solid #ebebeb;
  font: 16px/44px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  margin-bottom: 8px;
  background: #2b4da3;
  padding-left: 15px;
}
.m-asidetitle .more {
  display: block;
  position: absolute;
  font: 14px/44px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  right: 5px;
  top: 0;
  text-transform: uppercase;
}
.m-webmap h3 {
  font: 16px/24px "Microsoft YaHei", "Arial", serif;
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
}
.m-webmap p {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  color: #666;
  margin-bottom: 10px;
}
.m-webmap .links {
  text-align: left;
  font-size: 0;
}
.m-webmap .links a {
  display: inline-block;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  vertical-align: top;
  color: #2b4da3;
}
.m-webmap .links a::after {
  content: '|';
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  margin: 0 10px;
  display: inline-block;
  vertical-align: top;
}
.m-webmap .links a:last-of-type::after {
  display: none;
}
.m-webmap .links a:hover {
  font-weight: 700;
}
.m-crumbs {
  border-bottom: 1px solid #999;
  position: relative;
  padding: 5px 0;
}
.m-crumbs .box {
  margin-left: 15px;
  line-height: 40px;
  font-size: 0;
  display: inline-block;
  height: 40px;
  padding-left: 40px;
  background: url("../images/i-crumbs.png") 4px center no-repeat;
}
.m-crumbs .box span {
  display: inline-block;
  vertical-align: middle;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  margin: 0 5px;
}
.m-crumbs .box .crumbs {
  display: inline-block;
  vertical-align: middle;
}
.m-crumbs .box .crumbs a {
  display: inline-block;
  vertical-align: middle;
  font: 14px/40px "Microsoft YaHei", "Arial", serif;
  color: #888;
}
.m-asidebar {
  height: 100%;
  width: 0;
  position: fixed;
  right: 0;
  top: calc(50% - 100px);
}
.m-asidebar::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-asidebar .listitem {
  width: 180px;
  position: relative;
  background: #2b4da3;
  transform: translateX(-60px);
  margin-bottom: 10px;
  transition: 0.4s;
  height: 60px;
  overflow: hidden;
}
.m-asidebar .listitem .icon {
  display: inline-block;
  vertical-align: top;
  width: 60px;
  height: 60px;
}
.m-asidebar .listitem .textbox {
  display: inline-block;
  vertical-align: top;
  width: 110px;
  height: 60px;
}
.m-asidebar .listitem .textbox p {
  font: 14px/60px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  padding-left: 5px;
}
.m-asidebar .listitem img {
  display: none;
  margin: 5px auto 10px;
  width: 100px;
  height: 100px;
  background: #fff;
}
.m-asidebar .listitem:nth-of-type(1) .icon {
  background: url("../images/b-tel1.png") center no-repeat;
}
.m-asidebar .listitem:nth-of-type(2) .icon {
  background: url("../images/b-qq1.png") center no-repeat;
}
.m-asidebar .listitem:nth-of-type(3) .icon {
  background: url("../images/b-wechat.png") center no-repeat;
}
.m-asidebar .listitem:nth-of-type(3):hover {
  height: 180px;
}
.m-asidebar .listitem:hover {
  transform: translateX(-180px);
}
.m-asidebar .listitem:hover img {
  display: block;
}
.m-jobPara1 {
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}
.m-jobPara1 .para {
  padding: 8px 15px;
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
}
.m-jobPara2 {
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  border: 1px solid #ebebeb;
  background: #fff;
  position: relative;
  margin-bottom: 20px;
}
.m-jobPara2 .para {
  padding: 8px 15px;
  font: 14px/25px "Microsoft YaHei", "Arial", serif;
}
#jobPage .sec-conbox .left {
  width: 340px;
}
#jobPage .sec-conbox .right {
  width: 830px;
}
#joblist .stitle {
  text-align: left;
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #333;
  margin-bottom: 20px;
}
.m-joblist {
  padding-bottom: 40px;
}
.m-joblist .title {
  text-align: left;
  font-size: 0;
  background: #19d345;
  padding-left: 30px;
}
.m-joblist .title span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  color: #333;
  font: 16px/45px "Microsoft YaHei", "Arial", serif;
}
.m-joblist .title .i1 {
  width: 210px;
}
.m-joblist .title .i2 {
  width: 150px;
}
.m-joblist .title .i3 {
  width: 120px;
}
.m-joblist .title .i4 {
  width: 140px;
}
.m-joblist .title .i5 {
  width: 140px;
}
.m-joblist .listitem {
  background: #f5f5f5;
  margin-top: 3px;
  overflow: hidden;
  font-size: 0;
  padding-left: 30px;
  transition: 0.4s;
}
.m-joblist .listitem a {
  color: #333;
}
.m-joblist .listitem span {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font: 14px/45px "Microsoft YaHei", "Arial", serif;
}
.m-joblist .listitem .i1 {
  width: 210px;
}
.m-joblist .listitem .i2 {
  width: 150px;
}
.m-joblist .listitem .i3 {
  width: 120px;
}
.m-joblist .listitem .i4 {
  width: 140px;
}
.m-joblist .listitem .i5 {
  width: 140px;
}
.m-joblist .listitem:hover {
  background: #37e861;
}
.m-jobdetails {
  font-size: 0;
  text-align: center;
  padding: 40px 0 50px;
}
.m-jobdetails .listitem {
  display: inline-block;
  vertical-align: top;
  width: 46%;
  margin: 0 1.5% 30px;
  text-align: left;
  border: 1px solid #d6d6d6;
}
.m-jobdetails .listitem .tt {
  padding-left: 30px;
  font: 16px/40px "Microsoft YaHei", "Arial", serif;
  background: #d6dcf0;
}
.m-jobdetails .listitem .text {
  padding: 15px 25px 25px;
  font-size: 14px;
}
.m-mapbox {
  margin: 50px auto;
  text-align: center;
  font-size: 0;
}
.m-mapbox .list {
  background: #f1f1f1;
  max-height: 335px;
  position: relative;
  padding: 20px 0;
}
.m-mapbox .list::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
}
.m-mapbox .listitem {
  display: inline-block;
  text-align: left;
  padding: 15px 25px;
  width: 25%;
  overflow: hidden;
  vertical-align: top;
}
.m-mapbox .listitem.on {
  background: #ddd;
}
.m-mapbox .listitem a {
  color: #333;
}
.m-mapbox .listitem h4 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.m-mapbox .listitem .desc {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-mapbox .mapbox {
  display: block;
  vertical-align: top;
  height: 400px;
  overflow: hidden;
  color: #333;
  width: 100%;
}
.m-mapbox .mapbox .map {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.m-mapbox .mapbox .map .BMap_bubble_title {
  font-size: 18px;
  margin-bottom: 15px;
}
.m-mapbox .mapbox .map .BMap_bubble_content {
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
}
.m-mapbox .mapbox .map img {
  max-width: 1000px;
}
.f-togglebox {
  display: block;
  position: fixed;
  z-index: 100;
  width: 40px;
  height: 150px;
  right: 0;
  top: 50%;
  margin-top: -75px;
  background: url("../images/arrow11.png") center right no-repeat;
  transition: 0.5s;
  transform: translateX(100%);
  opacity: 0;
}
.f-togglebox.on {
  transform: translateX(0);
  opacity: 0.8;
}
.f-togglebox.on:hover {
  opacity: 1;
}
.m-flexcontactbox {
  position: fixed;
  width: 150px;
  z-index: 999;
  right: 0;
  top: 40%;
  margin-top: -240px;
  background: #fff;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: 0.5s;
  transform: translateX(100%);
  opacity: 0;
}
.m-flexcontactbox.on {
  transform: translateX(0);
  opacity: 1;
}
.m-flexcontactbox .f-asidebox {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 2;
}
.m-flexcontactbox .f-asidebox::before,
.m-flexcontactbox .f-asidebox::after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -7px;
  background: #999;
}
.m-flexcontactbox .f-asidebox::before {
  transform: rotate(45deg);
}
.m-flexcontactbox .f-asidebox::after {
  transform: rotate(-45deg);
}
.m-flexcontactbox .content {
  padding: 40px 16px 0;
}
.m-flexcontactbox .qq {
  border-bottom: 1px solid #eef0f1;
}
.m-flexcontactbox .qq i {
  display: block;
  width: 88px;
  height: 88px;
  background: url("../images/xx.png") center no-repeat;
  margin: 0 auto 10px;
}
.m-flexcontactbox .qq h4 {
  font: 16px/1.5 "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-flexcontactbox .qq .links {
  margin-top: 10px;
}
.m-flexcontactbox .qq .links .item {
  display: block;
  font: 12px/22px "Microsoft YaHei", "Arial", serif;
  color: #fff;
  border-radius: 11px;
  background: #2b4da3;
  margin-bottom: 8px;
}
.m-flexcontactbox .telbox {
  padding: 20px 0;
  border-bottom: 1px solid #eef0f1;
}
.m-flexcontactbox .telbox .tt {
  font: 16px/31px "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-flexcontactbox .telbox .tel {
  font: 16px/20px Arial;
  font-weight: 700;
  color: #2b4da3;
}
.m-flexcontactbox .wechat {
  padding: 20px 0;
}
.m-flexcontactbox .wechat h4 {
  font: 16px/31px "Microsoft YaHei", "Arial", serif;
  color: #333;
  background: url("../images/weixin.png") left center no-repeat;
}
.m-flexcontactbox .wechat .imgbox {
  padding: 3px;
  margin: 6px auto;
  border: 1px solid #e5e5e5;
  width: 100px;
  height: 100px;
}
.m-flexcontactbox .wechat .imgbox img {
  width: 100%;
}
.m-flexcontactbox .wechat p {
  font: 12px/16px "Microsoft YaHei", "Arial", serif;
  color: #333;
}
.m-flexcontactbox .f-totop {
  display: block;
  width: 100%;
  color: #a0a0a0;
  font: 12px/50px "Microsoft YaHei", "Arial", serif;
  padding-bottom: 15px;
  background: url("../images/jian.png") center 52px no-repeat #3e3e3e;
}
.m-infolistbox {
  background: #fff;
  padding: 20px;
  box-shadow: rgba(255, 255, 255, 0.1);
  margin-top: 20px;
}
.m-infoslide {
  position: relative;
  margin-top: 25px;
}
.m-infoslide .tt {
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  border-bottom: 1px solid #2b4da3;
  margin-bottom: 20px;
}
.m-infoslide .bd {
  position: relative;
  overflow: hidden;
}
.m-infoslide .listitem {
  display: inline-block;
  vertical-align: top;
  position: relative;
  width: 25%;
}
.m-infoslide .listitem a {
  display: block;
  margin: 0 6px;
}
.m-infoslide .listitem .imgbox {
  border: 1px solid #eee;
  position: relative;
  overflow: hidden;
}
.m-infoslide .listitem .imgbox img {
  display: block;
  width: 100%;
}
.m-infoslide .listitem p {
  margin-top: 6px;
  font: 14px/20px "Microsoft YaHei", "Arial", serif;
  text-align: center;
  color: #666;
  height: 20px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 15px;
}
.m-infoslide .hd {
  text-align: center;
  font-size: 0;
}
.m-infoslide .hd a {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin: 0 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #999;
  transition: 0.4s;
}
.m-infoslide .hd a::before,
.m-infoslide .hd a::after {
  content: '';
  display: block;
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  top: calc(50% - 1px);
  left: calc(50% - 7px);
  transform-origin: 1px 50%;
}
.m-infoslide .hd a::before {
  transform: rotate(45deg);
}
.m-infoslide .hd a::after {
  transform: rotate(-45deg);
}
.m-infoslide .hd a:hover {
  background: #2b4da3;
}
.m-infoslide .hd .next {
  transform: rotate(180deg);
}
.m-infoslide1 {
  position: relative;
  margin-top: 25px;
}
.m-infoslide1 .tt {
  font: 18px/40px "Microsoft YaHei", "Arial", serif;
  color: #2b4da3;
  border-bottom: 1px solid #2b4da3;
  margin-bottom: 20px;
}
.m-infoslide1 .list {
  position: relative;
  font-size: 0;
}
.m-infoslide1 .list .listitem {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  margin: 5px 0;
  position: relative;
}
.m-infoslide1 .list .listitem a {
  display: block;
  padding: 0 15px;
  color: #666;
  transition: 0.4s;
}
.m-infoslide1 .list .listitem p {
  display: inline-block;
  vertical-align: middle;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  margin-right: 100px;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.m-infoslide1 .list .listitem p::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 4px;
  background: #666;
  margin-right: 5px;
  transition: 0.4s;
}
.m-infoslide1 .list .listitem .date {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
}
.m-infoslide1 .list .listitem:hover a {
  color: #2b4da3;
}
.m-infoslide1 .list .listitem:hover a p::before {
  background: #2b4da3;
}
.m-honorlist {
  font-size: 0;
  text-align: left;
  position: relative;
  margin-top: 50px;
}
.m-honorlist .listitem {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(25% - 8px);
  margin-bottom: 8px;
  transition: 0.4s;
  margin-right: 8px;
}
.m-honorlist .listitem:nth-of-type(4n) {
  margin-right: 0;
}
.m-honorlist .listitem a {
  display: block;
  border: 1px solid #ddd;
}
.m-honorlist .listitem .imgbox {
  overflow: hidden;
  position: relative;
  background: #fff;
}
.m-honorlist .listitem .imgbox img {
  display: block;
  max-width: 100%;
}
.m-honorlist .listitem p {
  font: 14px/30px "Microsoft YaHei", "Arial", serif;
  height: 30px;
  overflow: hidden;
  word-break: keep-all;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 10px 25px;
}
.m-honorlist .listitem:hover {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.m-fanye {
  border-top: 1px solid #eee;
  margin: 25px auto 0;
  padding-top: 15px;
}
.m-fanye a {
  display: inline-block;
  vertical-align: top;
  color: #666;
  font: 14px/20px "Microsoft YaHei";
}
.m-fanye a:hover {
  color: #2b4da3;
}
.m-fanye .enabled {
  color: #999;
  cursor: default;
}
.m-fanye .prev {
  float: left;
}
.m-fanye .next {
  float: right;
}
