@charset "utf-8";

body.ovauto {
  overflow-x: auto !important;
  visibility: inherit;
  opacity: 1;
}

/*	下、上、左、右箭头	*/
.arrDown:after {
  border-top: 10px solid #aeaeae;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrUp:after {
  border-bottom: 10px solid #aeaeae;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrLeft:after {
  border-right: 10px solid #aeaeae;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrRight:after {
  border-left: 10px solid #aeaeae;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrTopleft:after {
  border-top: 100px solid red;
  border-right: 100px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrTopright:after {
  border-top: 100px solid red;
  border-left: 100px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrBottomleft:after {
  border-bottom: 100px solid red;
  border-right: 100px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

.arrBottomright:after {
  border-bottom: 100px solid red;
  border-left: 100px solid transparent;
  width: 0;
  height: 0;
  content: '';
}

/*	复用图片包裹	*/
.scaleimg {
  overflow: hidden;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
}

.scaleimg img {
  width: 100%;
  height: auto;
  -webkit-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.scaleimg:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/*	复用标题	*/
.t_head {}

.t_head .h1 {}

.t_head .h2 {}

.t_head .h3 {}

.t_head .p {}

.t_head .link {}

/*	轮播	*/
.focus {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.focus ul {
  height: 600px;
}

.focus li {
  float: left;
  width: 1920px;
  height: 600px;
}

.focus li img {
  width: 100%;
}

.focus .paging {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  font-size: 0;
  text-align: center;
  z-index: 2;
}

.focus .paging a {
  display: inline-block;
  margin: 0 2px;
  padding: 5px;
  background-color: gold;
}

.focus .paging a.selected {
  background-color: crimson;
}

.focus .paging span {
  display: none;
}

/*	滑动tab	*/
.scroll-tab {
  position: relative;
  height: 24px;
  overflow: hidden;
  margin-bottom: 50px;
}

.scroll-tab ul {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
}

.scroll-tab li {
  display: inline-block;
  margin: 0 5px;
  padding: 0 5px;
  line-height: 22px;
  border-bottom: 2px solid transparent;
}

.scroll-tab li.cur {
  border-color: #DB6E10;
}

/*	流程模块	*/
.process {}

.process ul {
  overflow: hidden;
  padding: 10px;
}

.process ul li {
  float: left;
  height: 20px;
  color: #FFF;
  line-height: 20px;
  padding: 0 25px 0 10px;
  position: relative;
}

.process ul li:nth-child(1) {
  background-color: red;
}

.process ul li:nth-child(2) {
  background-color: green;
}

.process ul li:nth-child(3) {
  background-color: blue;
}

.process ul li:after {
  border-left: 15px solid #aeaeae;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  width: 0;
  height: 0;
  content: '';
  position: absolute;
  right: 0;
  top: 0;
}

.process ul li:nth-child(1):after {
  border-left-color: red;
  border-top-color: green;
  border-bottom-color: green;
}

.process ul li:nth-child(2):after {
  border-left-color: green;
  border-top-color: blue;
  border-bottom-color: blue;
}

.process ul li:nth-child(3):after {
  border-left-color: blue;
  border-top-color: #FFF;
  border-bottom-color: #FFF;
}


.transition {
  opacity: 0;
  -webkit-transition: all 2s;
  -moz-transition: all 2s;
  transition: all 2s;
}

.translateX-100 {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  transform: translateX(-100%);
}

.translateX_100 {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  transform: translateX(100%);
}

.translateY-100 {
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  transform: translateY(-100px);
}

.translateY_100 {
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  transform: translateY(100px);
}

.s .transition {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  transform: translate(0, 0);
}

/*	弹窗	*/
.popWindow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/opacity-b60.png);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.popWindow.popShow {
  opacity: 1;
  visibility: visible;
  z-index: 999;
}

.popWindow .popDialog {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.popWindow .popOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.popWindow .popClose {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
}

.pop-alert {}

.pop-alert .popClose {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  height: 20px;
  background: url(../images/pop_close.png) center no-repeat;
  z-index: 1;
}

.pop-alert .popClose:hover {
  opacity: 0.6;
}

.pop-alert .popDialog {
  width: 520px;
  height: 325px;
  background-color: #fff;
  z-index: 1;
}

.pop-alert .newColor {
  background-color: #f4f5fc;
}

.pop-alert .popCont {
  padding: 50px 35px;
  height: 225px;
  overflow: hidden;
}

.pop-alert .popCont .h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.pop-alert .popCont .h4 {
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.2;
}

.pop-alert .popDialog .popCont .p {
  text-align: left;
}

.pop-alert .mCSB_inside>.mCSB_container {
  margin-right: 20px;
}

.pop-alert .mCSB_scrollTools {
  width: 5px;
}

.pop-alert .mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
  background-color: #dcdcdc;
}

.pop-alert .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 5px;
  background-color: #db4a5a;
}

/*	视频弹窗	*/
.pop-video {}

.pop-video .popDialog {
  width: 800px;
  height: 540px;
  z-index: 1;
}

#vPlayer {
  width: 100%;
  height: 100%;
}

.jwlogo {
  display: none;
}

/*	通用标题	*/
.t_title {
  text-align: center;
  color: #333;
}

.t_title .h1 {
  font-size: 36px;
}

.t_title .h2 {
  margin-top: 30px;
  font-size: 24px;
}

.t_title .h3 {
  margin-top: 17px;
  font-size: 16px;
}

/*	推荐模块	*/
.recommend {
  overflow: hidden;
}

.recommend li {
  position: relative;
  float: left;
  width: 300px;
  height: 216px;
  background-color: #fff;
  text-align: center;
}

.recommend li+li:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 108px;
  border-left: 1px solid #bebfc2;
}

.recommend li:first-child {
  margin-right: 30px;
}

.recommend li:first-child+li:after {
  display: none;
}

.recommend li>a {
  display: block;
  height: 100%;
  overflow: hidden;
}

.recommend .ico {
  margin: 55px auto 20px;
  width: 74px;
  height: 66px;
  overflow: hidden;
}

.recommend .ico img {
  display: block;
  width: 100%;
}

.recommend .ico .i1 {}

.recommend .ico .i2 {
  display: none;
}

.recommend .p {
  font-size: 18px;
}

.recommend li:hover {
  background-color: #da4c5c;
  color: #fff;
}

.recommend li:hover .ico .i1 {
  display: none;
}

.recommend li:hover .ico .i2 {
  display: block;
}

/*	筛选模块	*/
.screen {
  padding: 3px 40px;
  background-color: #fff;
}

.screen dl {
  padding: 16px 0 20px;
}

.screen dl+dl {
  border-top: 1px solid #e8e8e8;
}

.screen dt {
  float: left;
}

.screen dd {
  overflow: hidden;
}

.screen ul {
  overflow: hidden;
}

.screen li {
  float: left;
  margin: 0 22px;
  cursor: pointer;
}

.screen li.cur,
.recruit .screen li:hover {
  color: #da4b5b;
}

/*	搜索结果	*/
.results {
  padding: 120px 0 100px;
}

.results .t_title {
  margin-bottom: 30px;
}

.results .list {
  margin-bottom: 50px;
  border-top: 1px solid #e2e2e2;
}

.results .list li {
  padding: 25px 0 24px;
  border-bottom: 1px solid #e2e2e2;
}

.results .list .h3 {
  margin-bottom: 10px;
  padding-right: 30px;
  background: url(../images/arr1.png) right no-repeat;
  font-size: 18px;
  line-height: 1.5;
}

.results .list .p {
  color: #707070;
}

.results .list a:hover {
  color: #da4b5b;
}

/*	保证保险、企划活动	*/
.ensure {
  padding: 120px 0 90px;
}

.ensure .tab {
  margin-top: 27px;
  margin-bottom: 26px;
  font-size: 0;
  text-align: center;
  color: #000;
}

.ensure .tab ul {
  display: inline-block;
  overflow: hidden;
}

.ensure .tab li {
  float: left;
  font-size: 18px;
  line-height: 48px;
  min-width: 112px;
  border-bottom: 1px solid transparent;
}

.ensure .tab a:hover {
  color: #da4b5b;
}

.ensure .tab li.cur {
  border-bottom-color: #da4b5b;
  color: #da4b5b;
}

.ensure .t_title+.list {
  margin-top: 38px;
}

.ensure .list {
  margin-bottom: 5px;
  overflow: hidden;
}

.ensure .list ul {
  margin-left: -27px;
  overflow: hidden;
}

.ensure .list li {
  float: left;
  width: 392px;
  height: 395px;
  margin-left: 27px;
}

.ensure .list .img {
  margin-bottom: 24px;
  height: 280px;
}

.ensure .list .img img {
  display: block;
  width: 100%;
}

.ensure .list .p {
  margin-right: 60px;
  font-size: 18px;
}

.ensure .list a:hover {
  color: #da4b5b;
}

.ensure .page {
  margin-bottom: 75px;
}

/*	人才招聘	*/
.recruit {
  padding: 120px 0 90px;
}

.recruit .t_title {
  margin-bottom: 40px;
}

.recruit .screen {
  margin-bottom: 20px;
}

.recruit .table {
  margin-bottom: 38px;
  background-color: #fff;
}

.recruit .table table {
  width: 100%;
}

.recruit .table tr {}

.recruit .table th {
  height: 56px;
  background-color: #db4a5a;
  font-size: 16px;
  color: #fff;
}

.recruit .table th:first-child {
  padding-left: 40px;
  text-align: left;
}

.recruit .table td {
  height: 56px;
  border-top: 1px solid #e8e8e8;
  text-align: center;
}

.recruit .table td:first-child {
  padding-left: 40px;
  text-align: left;
}

.recruit .table td span {
  font-family: Arial;
}

.recruit .table a:hover {
  color: #da4b5b;
}

/*	互联网信息披露	*/
.information {
  padding: 120px 0 132px;
}

.information .t_title {
  margin-bottom: 40px;
}

.information .list {
  background-color: #fff;
  overflow: hidden;
}

.information .list dl {
  padding: 38px 30px;
  border-top: 1px solid #e8e8e8;
  overflow: hidden;
  clear: both;
}

.information .list dt {
  float: left;
}

.information .list dd {
  padding-left: 25px;
  overflow: hidden;
}

.information .left {
  width: 515px;
  padding: 45px 0 28px;
}

.information .left dl {
  padding: 0 30px;
  border: 0;
}

.information .left+.left dl+dl {
  margin-top: 10px;
}

.information .left+.left dt {
  width: 220px;
  text-align: right;
}

.information .table1 {
  width: 100%;
}

.information .table1 tr {}

.information .table1 th {}

.information .table1 tr+tr td {
  padding-top: 8px;
}

.information .table2 {
  width: 100%;
}

.information .table2 tr {}

.information .table2 th {
  height: 50px;
  border: 1px solid #e8e8e8;
  border-top: 0;
  border-bottom: 0;
  background-color: #f4f4f4;
}

.information .table2 td {
  height: 50px;
  border: 1px solid #e8e8e8;
  text-align: center;
}

.information .table2 tr:first-child+tr td {
  border-top: 0;
}

.information .link {
  text-decoration: underline;
}

.information .link:hover {
  color: #da4b5b;
}

/*	合作伙伴	*/
.partner {
  padding: 120px 0 105px;
}

.partner .t_title {
  margin-bottom: 55px;
}

.partner .carousel {}

.partner .carousel+.carousel {
  margin-top: 35px;
}

.partner .t {
  position: relative;
  margin-bottom: 13px;
  font-size: 18px;
  line-height: 21px;
}

.partner .handle {
  position: absolute;
  right: 0;
  top: 0;
}

.partner .handle span {
  float: left;
  width: 21px;
  height: 21px;
  margin-left: 9px;
  background: left no-repeat;
  cursor: pointer;
}

.partner .handle .prev {
  background-image: url(../images/prev1.png);
}

.partner .handle .next {
  background-image: url(../images/next1.png);
}

.partner .handle span:hover {
  background-position: right;
}

.partner .handle span.disabled:hover,
.partner .handle span.disabled:hover {
  background-position: left;
  cursor: default;
}

.partner .list {
  overflow: hidden;
}

.partner .list li {
  float: left;
  width: 1230px;
  height: 240px;
}

.partner .list table {
  width: 100%;
}

.partner .list tr {}

.partner .list td {
  width: 25%;
  border: 1px solid #e2e2e2;
  text-align: center;
  height: 100px
}

.partner .list td img {
  width: auto;
}

/*	公开信息披露	*/
.publish .t_title {
  margin-bottom: 40px;
}

.publish .list {}

.publish .list dl {}

.publish .list dl+dl {
  margin-top: 10px;
}

.publish .list dt {
  padding: 0 48px;
  font-size: 24px;
  line-height: 63px;
  color: #fff;
  background-color: #da4b5b;
}

.publish .list dd {
  background-color: #fff;
}

.publish .box {
  padding: 20px 48px 20px 26px;
  overflow: hidden;
}

.publish .box:first-child+.box {
  padding-top: 35px;
}

.publish .box+.box {
  border-top: 1px solid #e8e8e8;
}

.publish .box .t {
  position: relative;
  margin-bottom: 15px;
  font-size: 20px;
  border-left: 12px solid #E50011;
  padding-left: 12px;
  line-height: 30px;
  font-family: PingFangSC-Medium, sans-serif;
}

.publish .box .t:after {
  content: '';
  position: absolute;
  left: -22px;
  right: 0;
  bottom: -10px;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #E50011;
}

.publish .table tr {}

.publish .table th {}

.publish .table td {}

.publish .table1 {}

.publish .table1 tr {}

/* .publish .table1>tbody>tr:nth-child(1) th{
  position: absolute; 
  font-size: 18px;
  vertical-align: top;
  white-space: nowrap; 
  font-weight: bold;
  color: #2D2D2D;
} */
.table1-first th {
  position: absolute;
  font-size: 18px !important;
  vertical-align: top;
  white-space: nowrap;
  font-weight: bold;
  color: #2D2D2D;
}

.table1-first {
  height: 163px;
}

.table1-first-td {
  position: relative;
}

.table1-first .table3 {
  position: absolute;
  left: -137px;
  top: 40px;
}

.table1-first .table3 tr td:nth-child(1) {
  width: 126px;
  font-size: 14px;
  font-family: PingFangSC-Medium,
    sans-serif;
  color: #2D2D2D;
  text-align: right;
  font-weight: bold;
  padding: 5px 10px 5px 0;
}

.publish .table1 th {
  width: 130px;
  font-size: 14px;
  font-family: PingFangSC-Medium,
    sans-serif;
  color: #2D2D2D;
  text-align: right;
  font-weight: bold;
  padding: 5px 10px 5px 0;
}

.publish .table1 td {
  padding: 5px 0;
}

.table-lv-2 th {
  width: auto !important;
}

.publish .table2 {
  width: 624px;
}

.publish .table2 tr {}

.publish .table2 th {}

.publish .table2 td {}

.publish .table3 {
  width: 100%;
}

.publish .table3 tr {}

.publish .table3 th {}

.publish .table3 td {
  padding: 0;
}

.publish .table3 td:first-child {
  width: 70px;
  white-space: nowrap;
  padding: 0;
}

.publish .table3 tr+tr td {}

.publish .table4 {}

.publish .table4 tr {}

.publish .table4 th {
  text-align: left;
  padding-top: 18px;
  font-size: 18px;
  color: #2D2D2D;
  font-family: PingFangSC-Medium, sans-serif;
  font-weight: bold;
}

.publish .table4 td {}

.publish .table5 {}

.publish .table5 tr {}

.publish .table5 th {
  width: 84px;
  text-align: left;
  color: #2D2D2D;
  font-family: PingFangSC-Medium, sans-serif;
  font-weight: bold;
}

.order2-lv-2 {
  margin-bottom: 18px;
}

.publish .table5 td {}

.publish .table6 {
  width: 100%;
}

.publish .table6 tr {}

.publish .table6 th {
  width: 152px;
}

.publish .table6 td {
  height: 60px;
  vertical-align: top;
}

.publish .table7 {
  width: 100%;
  line-height: 28px;
}

.publish .table7 tr {}

.publish .table7 th {
  padding: 8px 0;
}

.publish .table7 td {
  padding: 8px 0;
  vertical-align: top;
}

.publish .table7 .order2 {
  margin-bottom: 0;
}

.publish .order1 {
  margin-top: 10px;
  margin-bottom: 20px;
  border-top: 1px solid #e8e8e8;
}

.publish .order1 li {
  padding: 9px 0;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
  color: #2D2D2D;
}

.publish .order1 li span {
  color: #515151;
}

.publish .order2 li {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e8e8e8;
  height: 40px;
  line-height: 40px;
}

.publish .order2 li+li {
  margin-top: 6px;
}

.publish .names {
  overflow: hidden;
}

.publish .names ul {
  margin-left: -25px;
  overflow: hidden;
}

.publish .names li {
  float: left;
  margin-left: 25px;
  width: 60px;
}

.m-bottom {
  margin-bottom: 15px;
}

.ot_title {
  font-family: PingFangSC-Regular, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #474747;
  margin-bottom: 15px;
}

.d-row {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
}

.carousel-fb .caroufredsel_wrapper {
  height: 190px !important;
}

.carousel-fb .caroufredsel_wrapper ul {
  width: 849px !important;
  height: 190px !important;
}

.t-lv-2 {
  color: #2D2D2D;
  font-size: 18px;
  font-weight: bold;
  padding-top: 18px;
}

.item-lv-2 {
  margin-bottom: 18px;
}

.publish .carousel {
  margin-bottom: 38px;
  border-bottom: 1px solid #e8e8e8;
}

.publish .carousel:first-child {
  margin-top: 22px;
}

.publish .tit {
  position: relative;
  margin-bottom: 17px;
  font-weight: bold;
}

.publish .handle {
  position: absolute;
  right: 0;
  top: 0;
  overflow: hidden;
}

.publish .handle span {
  float: left;
  width: 21px;
  height: 21px;
  background: left no-repeat;
  cursor: pointer;
}

.publish .handle .prev {
  margin-right: 9px;
  background-image: url(../images/prev1.png);
}

.publish .handle .next {
  background-image: url(../images/next1.png);
}

.publish .handle span:hover {
  background-position: right;
}

.publish .handle span.disabled:hover,
.publish .handle span.disabled:hover {
  background-position: left;
  cursor: default;
}

.publish .ul {
  overflow: hidden;
}

.publish .ul li {
  position: relative;
  float: left;
  margin-right: 15px;
  margin-bottom: 13px;
  width: 366px;
  height: 78px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
}

.publish .ul li:after {
  content: '';
  position: absolute;
  right: 27px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 20px;
  background: url(../images/arr3.png) no-repeat;
}

.publish .ul .img {
  margin-bottom: 24px;
  height: 276px;
  overflow: hidden;
}

.publish .ul .img img {
  width: 100%;
}

.publish .ul .p {
  padding: 18px 60px 18px 26px;
}

.publish .ul .grp {
  float: left;
  width: 894px;
  overflow: hidden;
}

.publish .ul .grp li {}

.publish .cacalog {
  padding: 20px 0 30px;
}

.publish .cacalog .h3 {
  margin-bottom: 30px;
  font-size: 18px;
  text-align: center;
}

.publish .cacalog ul {}

.publish .cacalog li {
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
  overflow: hidden;
}

.publish .cacalog a:hover {
  color: #da4b5b;
}

.publish .cacalog a span {
  text-decoration: underline;
}

.publish .page {
  margin-bottom: 35px;
}

.publish .xbtn {
  float: right;
  font-size: 14px;
  cursor: pointer;
}

.publish .null {
  padding: 51px;
  text-align: center;
}

.publish .link {
  text-decoration: underline;
}

.publish .link:hover {
  color: #da4b5b;
}

/*	新闻详情	*/
.article {
  padding: 108px 0 62px;
}

.article .title {
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #c4c4c4;
  text-align: center;
}

.article .title .h1 {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.2;
}

.article .title .p {
  color: #707070;
}

.article .title .p span {
  margin: 0 20px;
}

.article .title .big,
.article .title .small {
  font-weight: normal;
  cursor: pointer;
}

.article .title .small {
  margin-left: 8px;
}

.article .title .big:hover,
.article .title .small:hover {
  color: #da4b5b;
}

.article .xcont {}

.article .xcont .imgs {
  margin-bottom: 26px;
  font-size: 0;
  letter-spacing: -1.5em;
  text-align: center;
}

.article .xcont .imgs img {
  width: 611px;
}

.article .xcont .imgs img+img {
  margin-left: 8px;
}

.article .xcont .p {
  margin-bottom: 22px;
  color: #333;
}

.article .shear {
  margin-top: 44px;
  font-size: 16px;
}

.article .shear a {
  margin-right: 15px;
}

.imgs-carousel {
  margin: 0 30px 34px;
}

.imgs-carousel .list {
  overflow: hidden;
}

.imgs-carousel .list li {
  float: left;
  overflow: hidden;
}

.imgs-carousel .list img {
  width: 100%;
}

.imgs-carousel .big-img {
  margin-bottom: 20px;
}

.imgs-carousel .big-img .list {
  height: 664px;
}

.imgs-carousel .big-img li {
  width: 882px;
  height: 664px;
}

.imgs-carousel .small-img {
  position: relative;
  padding: 0 144px;
}

.imgs-carousel .small-img .list {
  height: 158px;
}

.imgs-carousel .small-img li {
  position: relative;
  margin-right: 14px;
  width: 210px;
  height: 158px;
  cursor: pointer;
}

.imgs-carousel .small-img li:after {
  content: '0';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: url(../images/opacity-b30.png);
  font-size: 0;
}

.imgs-carousel .small-img li.selected {
  cursor: default;
}

.imgs-carousel .small-img li.selected:after {
  content: '1';
  display: none;
}

.imgs-carousel .prev,
.imgs-carousel .next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 144px;
  cursor: pointer;
}

.imgs-carousel .prev {
  left: 0;
}

.imgs-carousel .next {
  right: 0;
}

.imgs-carousel .prev:after,
.imgs-carousel .next:after {
  content: '0';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 24px;
  height: 42px;
  font-size: 0;
}

.imgs-carousel .prev:after {
  background-image: url(../images/prev2.png);
}

.imgs-carousel .next:after {
  background-image: url(../images/next2.png);
}

.imgs-carousel .prev:hover:after,
.imgs-carousel .next:hover:after {
  content: '1';
  background-position: right;
}

.imgs-carousel .disabled,
.imgs-carousel .disabled:hover {
  cursor: default;
}

.imgs-carousel .disabled:after,
.imgs-carousel .disabled:hover:after {
  background-position: left;
}

.page-nav {
  padding: 15px 0;
  background-color: #fff;
}

.page-nav .prev:before,
.page-nav .next:before {
  content: '0';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 23px;
  height: 16px;
  margin: auto;
  background: left no-repeat;
  font-size: 0;
}

.page-nav .prev {
  position: relative;
  float: left;
  padding-left: 65px;
}

.page-nav .prev:before {
  left: 30px;
  background-image: url(../images/prev3.png);
}

.page-nav .next {
  position: relative;
  float: right;
  padding-right: 65px;
}

.page-nav .next:before {
  right: 30px;
  background-image: url(../images/next3.png);
}

.page-nav .prev:hover,
.page-nav .next:hover {
  color: #da4c5c;
}

.page-nav .prev:hover:before,
.page-nav .next:hover:before {
  content: '1';
  background-position: right;
}

/*	员工心声详细	*/
.staff {
  padding: 214px 0 114px;
  background: url(../images/img15.jpg) center top no-repeat;
}

.staff .img {
  float: left;
  margin-left: 95px;
  margin-right: 62px;
  width: 290px;
  height: 364px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.09);
  overflow: hidden;
}

.staff .img img {
  width: 100%;
}

.staff .cont {
  overflow: hidden;
}

.staff .scroll {
  margin-bottom: 10px;
  height: 300px;
  overflow: hidden;
}

.staff .h3 {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.2;
}

.staff .p {
  margin-bottom: 22px;
}

.staff .back {}

.staff .mCSB_scrollTools {
  opacity: 1;
}

.staff .mCSB_inside>.mCSB_container {
  margin-right: 70px;
}

.staff .mCSB_scrollTools {
  right: 30px;
}

.staff .mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
  background-color: #eee;
}

.staff .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 7px;
  background-color: #da4b5b;
}


/*	相互计划	*/
.xhplan {
  position: relative;
  padding: 735px 0 58px;
  background-color: #fff;
  overflow: hidden;
}

.xhplan .radio {
  position: absolute;
  left: 0;
  right: 50%;
  top: 0;
  margin-right: -93px;
  height: 592px;
  background: center no-repeat;
}

.xhplan .radio .play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 91px;
  height: 91px;
  background: url(../images/png3.png) no-repeat;
  cursor: pointer;
}

.xhplan .box {
  position: absolute;
  left: 50%;
  top: 0;
  right: 0;
  margin-left: -172px;
  height: 648px;
  background: url(../images/img17.jpg) left top no-repeat;
}

.xhplan .cont {
  margin-left: 325px;
  padding-top: 180px;
  width: 430px;
  color: #fff;
}

.xhplan .cont .h3 {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 1.2;
}

.xhplan .cont .p {}

+.p {
  margin-top: 20px;
}

.xhplan .cont .p {
  text-align: justify
}

.xhplan .list {}

.xhplan .list ul {
  margin-left: -13px;
  margin-right: -14px;
  overflow: hidden;
}

.xhplan .list li {
  float: left;
  margin: 0 14px 42px 13px;
  width: 392px;
  height: 360px;
}

.xhplan .list .img {
  margin-bottom: 17px;
  height: 280px;
  overflow: hidden;
}

.xhplan .list .img img {
  display: block;
  width: 100%;
}

.xhplan .list .p {
  padding: 0 30px;
}

.xhplan .list li:hover {
  background-color: #da4b5b;
  color: #fff;
}

/*	何为相互	*/
.mutual1 {
  position: relative;
  height: 697px;
  background: url(../images/img19.jpg) left no-repeat #892a2a;
  overflow: hidden;
}

.mutual1 .radio {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  margin-left: -236px;
  height: 697px;
  background: center no-repeat;
  overflow: hidden;
}

.mutual1 .radio .play {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 105px;
  height: 105px;
  background: url(../images/png4.png) no-repeat;
  cursor: pointer;
}

.mutual1 .box {
  position: absolute;
  right: 50%;
  top: 170px;
  margin-right: 280px;
  width: 335px;
  color: #fff;
}

.mutual1 .box .h3 {
  margin-bottom: 25px;
  font-size: 36px;
  line-height: 1.2;
}

.mutual1 .box .p {
  line-height: 26px;
}

.mutual1 .box .p+.p {
  margin-top: 10px;
}

.mutual2 {
  padding: 130px 0 108px;
  background-color: #fff;
}

.mutual2 .t_title {
  margin-bottom: 38px;
}

.mutual2 .carousel {
  position: relative;
}

.mutual2 .prev,
.mutual2 .next {
  position: absolute;
  top: 220px;
  width: 44px;
  height: 44px;
  background: left no-repeat;
  cursor: pointer;
  z-index: 2;
}

.mutual2 .prev {
  left: 18px;
  background-image: url(../images/prev4.png);
}

.mutual2 .next {
  right: 18px;
  background-image: url(../images/next4.png);
}

.mutual2 .prev:hover,
.mutual2 .next:hover {
  background-position: right;
}

.mutual2 .disabled,
.mutual2 .disabled:hover {
  background-position: left;
  cursor: default;
  opacity: 0.5;
}

.mutual2 .list {
  height: 553px;
  overflow: hidden;
}

.mutual2 .list li {
  float: left;
  margin-right: 24px;
  width: 394px;
  height: 553px;
}

.mutual2 .img {
  margin-bottom: 38px;
  height: 480px;
  overflow: hidden;
}

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

.mutual2 .p {
  padding: 0 30px;
  font-size: 22px;
  color: #999999;
}

.mutual2 .p span {
  padding-right: 75px;
  background: url(../images/arr1.png) right no-repeat;
}

.mutual2 .p i {
  font-family: Arial;
}

.mutual2 .list li:hover .p {
  color: #da4b5b;
}

.mutual3 {
  position: relative;
  padding: 110px 0 67px;
}

.mutual3:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  left: 50%;
  bottom: 0;
  margin-left: 123px;
  background-color: #fff;
}

.mutual3 .t_title {
  position: relative;
  margin-bottom: 42px;
  text-align: left;
}

.mutual3 .prev,
.mutual3 .next {
  position: absolute;
  top: 0;
  width: 32px;
  height: 36px;
  background: left no-repeat;
  cursor: pointer;
}

.mutual3 .prev {
  right: 32px;
  background-image: url(../images/prev5.png);
}

.mutual3 .next {
  right: 0;
  background-image: url(../images/next5.png);
}

.mutual3 .prev:hover,
.mutual3 .next:hover {
  background-position: right;
}

.mutual3 .disabled,
.mutual3 .disabled:hover {
  cursor: default;
  background-position: left;
}

.mutual3 .qa {
  float: left;
  width: 665px;
}

.mutual3 .rule {
  float: right;
  width: 430px;
}

.mutual3 .list {
  padding-top: 30px;
  border-top: 2px solid #d1d1d1;
}

.mutual3 .list li {
  font-size: 18px;
  line-height: 34px;
}

.mutual3 .list li+li {
  margin-top: 14px;
}

.mutual3 .carousel dl {
  padding: 20px 0;
}

.mutual3 .carousel dl+dl {
  border-top: 1px solid #d6d6d6;
}

.mutual3 .carousel dt {
  position: relative;
  padding-left: 82px;
  padding-right: 50px;
  background: url(../images/png5.png) 5px no-repeat;
  font-size: 18px;
  line-height: 34px;
}

.mutual3 .carousel dd {
  position: relative;
  padding-left: 82px;
  background: url(../images/png6.png) 5px 12px no-repeat;
  display: none;
}

.mutual3 .carousel .p {
  padding: 8px 0;
  line-height: 24px;
}

.mutual3 .switch {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url(../images/arr2.png) left no-repeat;
  cursor: pointer;
}

.mutual3 .switch.down {
  background-position: right;
}

.mutual3 .list a:hover {
  color: #da4b5b;
}

/*	特色服务	*/
.sservice1 {
  padding: 120px 0;
  border-top: 1px solid #e6e6e6;
  background-color: #fff;
}

.sservice1 .t_title {
  margin-bottom: 40px;
}

.sservice1 .box {
  position: relative;
  overflow: hidden;
}

.sservice1 .box:before {
  content: '';
  position: absolute;
  left: 68px;
  top: 0;
  bottom: 0;
  width: 420px;
  border: 1px solid #d4d7df;
  border-right: 0;
}

.sservice1 .box:after {
  content: '';
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  background: url(../images/png9.png) no-repeat;
}

.sservice1 .user {
  position: relative;
  float: left;
  margin-top: 24px;
  margin-right: 50px;
  width: 434px;
  height: 422px;
  background: url(../images/png8.png) no-repeat;
  color: #fff;
}

.sservice1 .user .inner {
  margin-top: 62px;
  margin-left: 54px;
}

.sservice1 .user .face {
  margin-bottom: 30px;
  border: 5px solid #e86c7b;
  border-radius: 50%;
  width: 126px;
  height: 126px;
  overflow: hidden;
}

.sservice1 .user .face img {
  width: 100%;
}

.sservice1 .user .h3 {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 24px;
}

.sservice1 .user .p1 {
  height: 96px;
}

.sservice1 .user .p2 {}

.sservice1 .table {
  padding-right: 44px;
  overflow: hidden;
}

.sservice1 .table table {
  width: 100%;
}

.sservice1 .table tr {}

.sservice1 .table td {
  border: 1px solid #d4d7df;
  text-align: center;
  vertical-align: middle;
}

.sservice1 .table td>a {
  display: block;
  width: 234px;
  height: 227px;
  overflow: hidden;
}

.sservice1 .table .ico {
  margin: 77px auto 28px;
  width: 51px;
  height: 51px;
}

.sservice1 .table .ico img {
  width: 100%;
}

.sservice1 .table .p {
  font-size: 18px;
}

.sservice2 {
  position: relative;
  height: 712px;
  background-color: #326cc8;
  overflow: hidden;
}

.sservice2 .img {
  position: absolute;
  right: 50%;
  top: 0;
  width: 826px;
  margin-right: 134px;
}

.sservice2 .img img {
  width: 100%;
}

.sservice2 .cont {
  position: absolute;
  left: 50%;
  top: 155px;
  margin-left: -48px;
  width: 560px;
  color: #fff;
}

.sservice2 .cont .h1 {
  font-size: 36px;
  margin-bottom: 25px;
}

.sservice2 .cont .tab-bar {
  margin-bottom: 45px;
  overflow: hidden;
}

.sservice2 .cont .tab-term {
  float: left;
  margin-right: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  cursor: pointer;
}

.sservice2 .cont .tab-term.cur {
  border-color: #fff;
}

.sservice2 .cont .tab-cont {}

.sservice2 .cont .tab-item {
  display: none;
}

.sservice2 .cont .tab-item.act {
  display: block;
}

.sservice2 .cont dl {
  margin-bottom: 18px;
}

.sservice2 .cont dt {
  margin-bottom: 8px;
  font-size: 18px;
}

.sservice2 .cont dd {
  line-height: 24px;
}

.sservice2 .cont div {
  margin-bottom: 18px;
}

.sservice2 .cont .cont_l {
  margin-bottom: 8px;
  font-size: 18px;
}

.sservice2 .cont .cont_c {
  line-height: 24px;
}

.sservice3 {
  margin-bottom: 120px;
  padding-top: 162px;
  background-color: #fff;
}

.sservice3 .list {
  border-top: 1px solid #e6e6e6;
  height: 252px;
}

.sservice3 .list li {
  position: relative;
  float: left;
  width: 410px;
  height: 252px;
  text-align: center;
}

.sservice3 .list li>a {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 50px 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.sservice3 .list .ico {
  margin: 0 auto 20px;
  width: 88px;
  height: 68px;
  overflow: hidden;
}

.sservice3 .list .ico .i1 {
  display: block;
}

.sservice3 .list .ico .i2 {
  display: none;
}

.sservice3 .list .h3 {
  margin-bottom: 6px;
  font-size: 24px;
  line-height: 1.5;
}

.sservice3 .list .p {}

.sservice3 .list li>a:hover {
  padding: 80px 0;
  background-color: #db4a59;
  color: #fff;
}

.sservice3 .list li>a:hover .i1 {
  display: none;
}

.sservice3 .list li>a:hover .i2 {
  display: block;
}

.sservice4 {
  margin-bottom: 105px;
}

.sservice4 .t_title {
  margin-bottom: 35px;
}

.sservice4 .list {
  margin-bottom: 40px;
  overflow: hidden;
}

.sservice4 .list li {
  float: left;
  width: 228px;
  height: 188px;
  border: 1px solid #d6d6d6;
}

.sservice4 .list li+li {
  margin-left: 20px;
}

.sservice4 .list .pad {
  padding: 32px 25px 0;
}

.sservice4 .list .h3 {
  height: 45px;
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.2;
  color: #333;
}

.sservice4 .list .h3 a {
  font-size: 18px;
}

.sservice4 .list .p {
  margin-bottom: 17px;
  line-height: 24px;
}

.sservice4 .list a:hover {
  color: #db4a5a;
}

.sservice5 {
  padding-bottom: 80px;
}

.sservice5 .t_title {
  margin-bottom: 75px;
}

.sservice5 .form {
  margin: 0 99px;
  overflow: hidden;
}

.sservice5 .list {
  float: left;
  margin-bottom: 40px;
  width: 516px;
}

.sservice5 .list li {
  overflow: hidden;
  font-size: 16px;
}

.sservice5 .list li+li {
  margin-top: 16px;
  overflow: hidden;
  font-size: 16px;
}

.sservice5 .label {
  float: left;
  padding: 10px 25px;
  width: 80px;
  font-size: 16px;
  text-align: right;
}

.sservice5 .detal {
  padding-right: 30px;
  overflow: hidden;
}

.sservice5 .change {
  float: right;
  margin-left: 15px;
  padding: 10px 0;
}

.sservice5 .change a {
  color: #333;
}

.sservice5 .change a:hover {
  color: #db4a5a;
}

.sservice5 .code {
  float: right;
  width: 115px;
}

.sservice5 .code img {
  width: 100%;
}

.sservice5 .input {
  padding: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}

.sservice5 .input input {
  display: block;
  width: 100%;
  height: 22px;
  line-height: 22px;
}

.sservice5 .text {
  padding: 10px;
  border: 1px solid #ccc;
}

.sservice5 .text textarea {
  display: block;
  width: 100%;
  height: 82px;
  line-height: 22px;
}

.sservice5 .radio-box {
  overflow: hidden;
  padding: 10px 0;
}

.sservice5 .radio-box label {
  margin-right: 15px;
  cursor: pointer;
}

.sservice5 .radio {
  position: relative;
  float: left;
  margin-left: 22px;
  margin-right: 28px;
  padding-left: 35px;
  font-size: 16px;
  cursor: pointer;
}

.sservice5 .radio:before {
  content: '0';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  background: url(../images/icon33.png) left no-repeat;
  font-size: 0;
}

.sservice5 .radio.checked:before {
  content: '1';
  background-position: right;
}

.sservice5 .submit {
  display: block;
  margin: auto;
  width: 100px;
  background-color: #da4b5b;
  border-radius: 20px;
  font-size: 16px;
  line-height: 40px;
  color: #fff;
  clear: both;
  cursor: pointer;
}

/*	本社简介	*/
.introduction1 {
  position: relative;
  height: 688px;
  background-color: #892a2a;
  overflow: hidden;
}

.introduction1 .img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 960px;
  height: 100%;
  overflow: hidden;
}

.introduction1 .img img {
  width: 100%;
}

.introduction1 .cont {
  position: absolute;
  top: 155px;
  right: 50%;
  margin-right: 80px;
  width: 535px;
  color: #fff;
}

.introduction1 .cont .h1 {
  margin-bottom: 25px;
  font-size: 36px;
}

.introduction1 .cont .p {
  line-height: 24px;
}

.introduction1 .cont .p+.p {
  margin-top: 10px;
}

.introduction2 {
  padding-top: 127px;
  background-color: #fff;
}

.introduction2 .img {}

.introduction2 .img img {
  width: 100%;
}

.introduction2 .cont {
  position: absolute;
  top: 98px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
}

.introduction2 .cont .h1 {
  margin-bottom: 38px;
  font-size: 28px;
}

.introduction2 .cont .list {
  width: 588px;
  margin: 0 auto 45px;
  overflow: hidden;
}

.introduction2 .cont .list li {
  float: left;
  width: 196px;
}

.introduction2 .cont .img {
  margin: 0 auto 18px;
  width: 102px;
  height: 102px;
}

.introduction2 .cont .img img {}

.introduction2 .cont .p {
  font-size: 16px;
}

.introduction2 .link {
  display: none;
  margin: auto;
  width: 118px;
  height: 31px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  line-height: 31px;
  text-align: center;
  color: #474747;
}

.introduction2 .link img {
  margin-right: 5px;
}

.introduction2 .link:hover {
  color: #db4a5a;
}

.introduction2 .wrap:hover .link {
  display: block;
}

.introduction3 {
  margin-bottom: 95px;
  height: 834px;
  background: url(../images/img28.jpg) center top no-repeat;
}

.introduction3 .t_title {
  margin-bottom: -15px;
  padding-top: 105px;
}

.introduction4 {
  margin-bottom: 100px;
}

.introduction4 .t_title {
  margin-bottom: 32px;
}

.introduction4 .carousel {
  position: relative;
}

.introduction4 .list {
  height: 410px;
  overflow: hidden;
}

.introduction4 .list li {
  position: relative;
  float: left;
  margin: 0 16px;
  width: 561px;
  height: 410px;
}

.introduction4 .list .img {}

.introduction4 .list .img img {
  width: 100%;
}

.introduction4 .mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../images/img30.jpg) no-repeat;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.introduction4 .mask .txt {
  position: absolute;
  left: 58px;
  bottom: 40px;
  color: #fff;
}

.introduction4 .mask .p {
  font-size: 16px;
}

.introduction4 .mask .p+.p {
  margin-top: 10px;
}

.introduction4 .mask .p span {
  display: block;
  font-family: Arial;
  font-size: 22px;
  line-height: 28px;
}

.introduction4 .prev,
.introduction4 .next {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.introduction4 .prev {
  left: 54px;
  background-image: url(../images/prev6.png);
}

.introduction4 .next {
  right: 54px;
  background-image: url(../images/next6.png);
}

.introduction4 .prev:hover,
.introduction4 .next:hover {
  background-position: right;
}

.introduction4 .disabled,
.introduction4 .disabled:hover {
  opacity: 0.5;
  background-position: left;
  cursor: default;
}

.introduction4 .list li:hover .mask {
  opacity: 1;
  visibility: visible;
}

.dateBar {
  position: relative;
  margin: auto;
  width: 810px;
  font-family: Arial;
}

.dateBar:before {
  content: '';
  position: absolute;
  left: 60px;
  right: 60px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 0;
  border-bottom: 1px solid #e1e1e1;
}

.dateBar .bar1 {
  position: relative;
  width: 270px;
  height: 60px;
  margin: 0 auto;
  background-color: #F4F4F4;
  text-align: center;
}

.dateBar .desc {
  float: left;
  width: 37px;
  height: 100%;
  background: url(../images/prev7.png) left no-repeat;
  background-color: #F4F4F4;
}

.dateBar .desc:hover {
  background-position: right;
}

.dateBar .asc {
  float: right;
  width: 37px;
  height: 100%;
  background: url(../images/next7.png) left no-repeat;
  background-color: #F4F4F4;
}

.dateBar .asc:hover {
  background-position: right;
}

.dateBar .disabled {
  visibility: hidden;
}

.dateBar .year {
  overflow: hidden;
  font-size: 60px;
  line-height: 1;
  color: #474747;
  background-color: #F4F4F4;
}

.dateBar .bar2 {
  font-size: 18px;
  line-height: 60px;
  color: #474747;
}

.dateBar .min {
  position: absolute;
  left: 0;
  top: 0;
  padding-right: 25px;
}

.dateBar .min:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e1e1e1;
}

.dateBar .max {
  position: absolute;
  right: 0;
  top: 0;
  padding-left: 25px;
}

.dateBar .max:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e1e1e1;
}

.dateBar .timeDragWarp {
  display: none;
}

.tabCont {}

.tabItem {
  display: none;
}

.tabItem.act {
  display: block;
}

.introduction5 {
  margin-bottom: 55px;
}

.introduction5 .t_title {
  margin-bottom: 26px;
}

.introduction5 .dateBar {
  margin-bottom: 67px;
}

.introduction5 .list {
  position: relative;
  margin: 0 135px;
}

.introduction5 .list:before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 134px;
  border-left: 1px solid #e1e1e1;
  display: none;
}

.introduction5 .list li {
  position: relative;
  min-height: 72px;
  padding-bottom: 7px;
  line-height: 24px;
  overflow: hidden;
}

.introduction5 .list li:before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 134px;
  border-left: 1px solid #e1e1e1;
}

.introduction5 .list li+li:before {
  top: 0;
}

.introduction5 .list li.llast:before {
  height: 12px;
}

.introduction5 .list .date {
  position: relative;
  float: left;
  width: 140px;
  margin-right: 88px;
  font-family: Arial;
  font-size: 18px;
}

.introduction5 .list .date:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e1e1e1;
}

.introduction5 .list .p {
  overflow: hidden;
}

.gray_bg {
  background-color: #F4F4F4;
  padding: 76px 0 50px;
  margin-bottom: 0 !important;
}

.introduction5 .list-hx {
  position: relative;
  margin: 0 135px;
}

.introduction5 .list-hx:before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 134px;
  border-left: 1px solid #e1e1e1;
  display: none;
}

.introduction5 .list-hx li {
  position: relative;
  min-height: 72px;
  padding-bottom: 7px;
  line-height: 24px;
  overflow: hidden;
}

.introduction5 .list-hx li:before {
  content: '';
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 134px;
  border-left: 1px solid #e1e1e1;
}

.introduction5 .list-hx li+li:before {
  top: 0;
}

.introduction5 .list-hx li.llast:before {
  height: 12px;
}

.introduction5 .list-hx .date {
  position: relative;
  float: left;
  width: 140px;
  margin-right: 88px;
  font-family: Arial;
  font-size: 18px;
}

.introduction5 .list-hx .date:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e1e1e1;
}

.introduction5 .list-hx p {
  overflow: hidden;
  text-align: left;
}

.introduction6 {
  padding-top: 105px;
  background-color: #fff;
}

.introduction6 .t_title {
  margin-bottom: 45px;
}

.introduction6 .box {
  background-color: #f7f7f7;
  overflow: hidden;
}

.introduction6 .left {
  float: left;
  width: 420px;
}

.introduction6 .left li {
  height: 300px;
  background-color: #dfe1eb;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.introduction6 .left li:first-child {
  background-color: #346ab9;
  color: #fff;
}

.introduction6 .left li:hover {}

.introduction6 .cont {
  position: relative;
  padding: 65px 35px 50px 50px;
  overflow: hidden;
}

.introduction6 .scroll {
  height: 380px;
}

.introduction6 .pad {
  padding: 100px 50px 0;
}

.introduction6 .pad .h3 {
  margin-bottom: 24px;
  font-size: 24px;
}

.introduction6 .pad .p {
  margin-bottom: 6px;
}

.introduction6 .title {
  position: relative;
  margin-right: 40px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.introduction6 .title:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: -40px;
  margin-bottom: -5px;
  width: 20px;
  height: 15px;
  background: url(../images/png12.png) no-repeat;
}

.introduction6 .title .h3 {
  margin-bottom: 5px;
  font-size: 24px;
  line-height: 1.2;
}

.introduction6 .title .p {}

.introduction6 .txt {}

.introduction6 .txt .p {}

.introduction6 .txt .p+.p {
  margin-top: 16px;
}

.introduction6 .mCSB_scrollTools {
  opacity: 1;
}

.introduction6 .mCSB_inside>.mCSB_container {
  margin-right: 55px;
}

.introduction6 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  width: 3px;
  background-color: #c6c6c6;
}

.introduction6 .mCSB_scrollTools .mCSB_draggerRail {
  width: 1px;
  background-color: #ebebeb;
}

.introduction7 {
  padding: 110px 0 100px;
  background-color: #fff;
}

.introduction7 .t_title {
  margin-bottom: 40px;
}

.introduction7 .box {
  position: relative;
  height: 470px;
}

.introduction7 .item1,
.introduction7 .item2,
.introduction7 .item3 {
  position: absolute;
  background-color: #f4f5fc;
}

.introduction7 .item1 {
  left: 0;
  top: 0;
  width: 685px;
}

.introduction7 .item2 {
  right: 0;
  top: 0;
  width: 525px;
  height: 226px;
}

.introduction7 .item3 {
  right: 0;
  bottom: 0;
  width: 525px;
  height: 226px;
}

.introduction7 .img {
  float: left;
  width: 286px;
  height: 100%;
  overflow: hidden;
}

.introduction7 .img img {
  width: 100%;
}

.introduction7 .cont {
  padding: 42px 25px 0;
  overflow: hidden;
}

.introduction7 .cont .date {
  font-family: Arial;
}

.introduction7 .cont .p {
  min-height: 144px;
}

.introduction7 .item1 .cont {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 22px 0;
  background: url(../images/opacity-b33.png);
  line-height: 24px;
  color: #fff;
}

.introduction7 .item1 .date {
  float: right;
  margin-right: 25px;
  font-size: 18px;
}

.introduction7 .item1 .img {
  width: 100%;
  height: 470px;
}

.introduction7 .item1 .p {
  padding: 0 38px;
  min-height: 0;
  font-size: 16px;
  overflow: hidden;
}

.introduction7 .box a:hover {
  color: #db4a5a;
}

.introduction8 {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.introduction8 .map {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 50%;
  margin-right: -350px;
  width: 1310px;
}

.introduction8 .img {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: 350px;
  width: 610px;
  overflow: hidden;
}

.introduction8 .img img {
  width: 100%;
}

.introduction8 .cont {
  position: absolute;
  left: 50%;
  top: 150px;
  margin-left: 125px;
  width: 450px;
  background: url(../images/img35.jpg) right top no-repeat #da4b5b;
  color: #fff;
}

.introduction8 .cont .h1 {
  margin-bottom: 24px;
  font-size: 36px;
}

.introduction8 .cont .p {
  font-size: 16px;
}

.introduction8 .cont .p+.p {
  margin-top: 5px;
  font-size: 16px;
}

.introduction8 .cont .p b {
  font-family: Arial;
  font-weight: normal;
  font-size: 26px;
}

.introduction8 .cont .p span {
  font-family: Arial;
}

.introduction8 .tab-wrap {
  padding: 72px 35px;
}

.introduction8 .tab-bar {
  margin-bottom: 20px;
  overflow: hidden;
}

.introduction8 .tab-term {
  float: left;
  margin-right: 32px;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
  font-size: 18px;
  cursor: pointer;
}

.introduction8 .tab-term.cur {
  border-color: #fff;
}

.introduction8 .tab-cont {}

.introduction8 .tab-item {
  display: none;
}

.introduction8 .tab-item.act {
  display: block;
}

/*	互联网信息披露	*/
.publish .cont {}

.publish .cont .t {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

.publish .box1gai {
  padding: 30px 0 20px;
  overflow: hidden;
}

.publish .box1gai .table1 {}

.publish .box1gai .table2 {
  width: 350px;
}

/* .internet .table tr{}
.internet .table th{ width: 50px; padding: 5px 0; font-weight: bold; text-align: right; vertical-align: top; white-space: nowrap;}
.internet .table td{ padding: 5px 0;}
.internet .table1{ width: 535px;}
.internet .table1 tr{}
.internet .table1 th{}
.internet .table1 td{}
.internet .table2{ width: 635px;}
.internet .table2 tr{}
.internet .table2 th{}
.internet .table2 td{}
.internet .table3{ width: 100%;}
.internet .table3 tr{}
.internet .table3 th{}
.internet .table3 td{ padding: 0;}
.internet .table3 td:first-child{ width: 70px; white-space: nowrap; vertical-align: top;}
.internet .table3 tr+ tr td{ padding-top: 6px;} */
.publish .table4gai {
  width: 100%;
  margin-bottom: 37px;
  font-size: 13px;
}

.publish .table4gai tr {}

.publish .table4gai th {
  height: 65px;
  font-size: 14px;
  font-weight: bold;
}

.publish .table4gai th:nth-child(1) {
  width: 33px;
}

.publish .table4gai th:nth-child(2) {
  width: 130px;
}

.publish .table4gai td:nth-child(2) {
  width: 130px;
  padding: 0 10px;
}

.publish .table4gai th:nth-child(3) {
  width: 110px;
}

.publish .table4gai th:nth-child(5) {
  width: 115px;
}

.publish .table4gai th:nth-child(6) {
  width: 115px;
}

.publish .table4gai th:nth-child(7) {
  width: 115px;
}

.publish .table4gai th:nth-child(7) {
  width: 115px;
}

.publish .table4gai td {
  height: 65px;
  /* border-bottom: 1px solid #e8e8e8;  */
  text-align: center;
}

.publish .table4gai .td1 {
  padding-left: 8px;
}

.publish .table4gai .td2 {
  padding-left: 48px;
  text-align: center;
}

.publish .table4gai .td4 {
  padding-left: 55px;
  text-align: center;
}

.publish .table4gai .td5 {
  padding-left: 42px;
  text-align: center;
}

.publish .table5gai {
  width: 100%;
  margin-bottom: 32px;
}

.publish .table5gai tr {}

.publish .table5gai th {
  height: 50px;
  background-color: #f0f0f0;
  font-weight: bold;
}

.publish .table5gai td {
  padding: 0 40px;
  height: 50px;
  border: 1px solid #e8e8e8;
}

.publish .table5gai tr:first-child+tr td:first-child {
  padding: 0;
  text-align: center;
}

.publish .box2gai {
  padding-top: 30px;
  border-bottom: 1px solid #f4f5fc;
}

.publish .box2gai .t {
  margin-bottom: 20px;
}

.publish .box2gai .tit {
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}

.publish .box2gai .tit .t-lv-2 {
  padding: 0;
}

.publish .box2gai .tit .more {
  float: right;
  font-weight: 500;
  padding-right: 10px;
  color: #707070;
}

.publish .box2gai .tit .more:hover {
  color: #db4a5a;
}

.publish .box3gai {
  padding-top: 30px;
}

.publish .box3gai .t {
  margin-bottom: 20px;
}

.publish .arr-more {
  display: block;
  margin: auto;
  width: 31px;
  height: 21px;
  background: url(../images/arr4.png) no-repeat;
}

/*	首页	*/
.img-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.section {
  overflow: hidden;
  height: 985px;
  position: relative;
}

.section .scont {
  position: relative;
  text-align: center;
  color: #fff;
}

.section .scont .h1 {
  margin-bottom: 7px;
  font-size: 36px;
  line-height: 1.2;
}

.section .scont .h2 {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.2;
}

.section .scont .p {
  margin-bottom: 28px;
}

.section .ar-more {
  display: block;
  margin: auto;
  width: 74px;
  height: 16px;
  background: url(../images/arr6.png) no-repeat;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.section .ar-more:hover {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
}

.section .h-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1000px;
  margin-left: -1000px;
  width: 2000px;
  height: 2000px;
  background: url(../images/png14.png) center no-repeat;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 3s ease-in;
  transition: all 3s ease-in;
}

.section .h-mask.fadeout {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.menu-box {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.menu-box.show {
  opacity: 1;
  visibility: visible;
}

.menu-box .box {
  position: relative;
  float: left;
  width: 50%;
  height: 100%;
  background: url(../images/png20.png) left bottom no-repeat #fff;
}

.menu-box .close {
  position: absolute;
  right: 40px;
  top: 26px;
  width: 48px;
  height: 45px;
  background: url(../images/menu-close.png) center no-repeat;
  cursor: pointer;
}

.menu-box .cont {
  position: absolute;
  top: 10%;
  left: 138px;
  width: 420px;
}

.menu-box .logo {
  margin-bottom: 65px;
  width: 281px;
  height: 36px;
  overflow: hidden;
}

.menu-box .logo img {
  display: block;
  width: 100%;
}

.menu-box .nav {
  margin-bottom: 26px;
}

.menu-box .nav dl {
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  overflow: hidden;
}

.menu-box .nav dl+dl {
  margin-top: 20px;
}

.menu-box .nav dt {
  float: left;
  width: 92px;
}

.menu-box .nav dd {
  color: #909090;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.menu-box .nav dd a {
  margin-right: 20px;
  white-space: nowrap;
}

.menu-box .nav dl:hover {
  border-color: #de1e25;
}

.menu-box .nav dl:hover dd {
  opacity: 1;
  visibility: visible;
}

.menu-box .nav a:hover {
  color: #db3f38;
}

.menu-box .tools {
  overflow: hidden;
}

.menu-box .tools li {
  float: left;
  margin-right: 25px;
}

.menu-box .tools li span {
  margin-left: 10px;
}

.menu-box .tools a:hover {
  color: #db3f38;
}

.menu-box .search-box {
  position: relative;
  margin-bottom: 22px;
  width: 236px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  overflow: hidden;
}

.menu-box .search-input {
  position: relative;
  padding: 4px 45px 4px 15px;
}

.menu-box .search-input input {
  display: block;
  width: 100%;
  line-height: 20px;
  height: 20px;
}

.menu-box .search-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  background: url(../images/icon5.png) center no-repeat;
  cursor: pointer;
}

.side-nav {
  position: fixed;
  left: 50px;
  top: 40%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s 2.5s;
  transition: opacity 0.5s 2.5s;
}

.side-nav.fadein {
  opacity: 1;
  visibility: visible;
}

.side-nav li {
  margin-bottom: 11px;
  color: #fff;
  border-bottom: 2px solid;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.side-nav li.l1 {
  width: 30px;
}

.side-nav li.l2 {
  width: 20px;
}

.side-nav li.l3 {
  width: 40px;
}

.side-nav li.l4 {
  width: 27px;
}

.side-nav li.l5 {
  width: 20px;
}

.side-nav li.l6 {
  width: 27px;
}

.side-nav li.cur {
  margin-bottom: 41px;
  color: #ad0c00;
}

.side-bar {
  position: fixed;
  right: 30px;
  top: 40%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s 2.5s;
  transition: opacity 0.2s 2.5s;
}

.side-bar.fadein {
  opacity: 1;
  visibility: visible;
}

.side-bar li {
  position: relative;
  color: #fff;
}

.side-bar li+li {
  margin-top: 30px;
}

.side-bar li+li:before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 22px;
  margin-bottom: 8px;
  height: 15px;
  border-left: 1px solid #fff;
}

.side-bar .p {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 55px 0 22px;
  border-radius: 19px;
  background: url(../images/opacity-w30.png);
  line-height: 38px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.side-bar .ico {
  position: relative;
  right: 4px;
  top: 0;
  width: 38px;
  height: 38px;
}

.side-bar .ico img {
  width: 100%;
}

.side-bar li:hover .p {
  opacity: 1;
  visibility: visible;
}

.side-bar .qr_img {
  padding: 22px 55px 22px 22px;
}

.home1 {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 1s 2s;
  transition: opacity 1s 2s;
}

.home1.fadein {
  opacity: 1;
  visibility: visible;
}

.home1 .arr {
  position: absolute;
  top: 75%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: -48px auto 0;
  width: 48px;
  background: url(../images/arr5.png) center top no-repeat;
  -webkit-animation: slidedown 3s ease-in-out infinite;
  -moz-animation: slidedown 3s ease-in-out infinite;
  animation: slidedown 3s ease-in-out infinite;
}

.home1 .arr:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 48px;
  margin: auto;
  width: 1px;
  background-color: #fff;
}

.home1 .cont {
  position: relative;
  margin: auto;
  width: 768px;
  height: 229px;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 2s 1s;
  transition: all 2s 1s;
}

.home1.fadein .cont {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home1 .cont .h1 {
  position: absolute;
  left: 0;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 30px;
}

.home1 .cont img {
  width: 100%;
}

.home0:before,
.home0:after {
  content: '';
  position: absolute;
  left: 50%;
  border-left: 1px solid #fff;
}

.home0:before {
  top: 0;
  bottom: 50%;
  margin-bottom: 255px;
}

.home0:after {
  bottom: 0;
  top: 50%;
  margin-top: 255px;
}

.home2:before,
.home2:after {
  content: '';
  position: absolute;
  left: 50%;
  border-left: 1px solid #fff;
}

.home2:before {
  top: 0;
  bottom: 50%;
  margin-bottom: 255px;
}

.home2:after {
  bottom: 0;
  top: 50%;
  margin-top: 255px;
}

.home3:before,
.home3:after {
  content: '';
  position: absolute;
  left: 50%;
  border-left: 1px solid #fff;
}

.home3:before {
  top: 0;
  bottom: 50%;
  margin-bottom: 255px;
}

.home3:after {
  bottom: 0;
  top: 50%;
  margin-top: 255px;
}

.home4:before,
.home4:after {
  content: '';
  position: absolute;
  left: 50%;
  border-left: 1px solid #fff;
}

.home4:before {
  top: 0;
  bottom: 50%;
  margin-bottom: 264px;
}

.home4:after {
  bottom: 0;
  top: 50%;
  margin-top: 255px;
}

.home5:before,
.home5:after {
  content: '';
  position: absolute;
  left: 50%;
  border-left: 1px solid #fff;
}

.home5:before {
  top: 0;
  bottom: 50%;
  margin-bottom: 290px;
}

.home5:after {
  bottom: 0;
  top: 50%;
  margin-top: 290px;
}

.home5 .scont:before,
.home5 .scont:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.home5 .scont:before {
  bottom: 100%;
  margin-bottom: 50px;
}

.home5 .scont:after {
  top: 100%;
  margin-top: 50px;
}

.home5 .list {
  text-align: center;
}

.home5 .list ul {
  display: inline-block;
  overflow: hidden;
}

.home5 .list li {
  float: left;
  margin: 0 25px;
}

.home5 .list .ico {
  position: relative;
  margin-bottom: 18px;
  width: 192px;
  height: 192px;
  overflow: hidden;
}

.home5 .list .ico img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.home5 .list .ico .i1 {}

.home5 .list li:hover .ico .i1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.home5 .list li:hover .ico .i2 {
  -webkit-animation: rot 0.5s;
  animation: rot 0.5s;
}

.home5 .list .p {
  text-align: center;
}

.home6:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 50%;
  margin-bottom: 148px;
  border-left: 1px solid #fff;
}

.home6 .scont:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  margin: auto;
  margin-bottom: 50px;
  width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.cirle {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 681px;
  height: 681px;
  background: url(../images/png16.png) no-repeat;
}

.cirle .ball {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 537px;
  height: 537px;
}

/* 分页 */
.page-large {
  margin: 40px 0 20px;
  text-align: center;
}

.page-large a {
  min-width: 34px;
  height: 34px;
  display: inline-block;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  line-height: 34px;
  text-align: center;
  float: left;
  text-indent: 0;
  color: #666666;
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0 3px;
}

.page-large a.on {
  border: 1px solid #ef3838;
  background: #ef3838;
  color: #fff;
}

.page-large a.none {
  border: none;
}

.page-large .Num:hover {
  border: 1px solid #ef3838;
  color: #ef3838;
}

.page-large .on:hover {
  border: 1px solid #ef3838;
  color: #fff;
}

.page-large .prev-page {
  background: url(../images/small-prev-page.png) center center no-repeat;
}

.page-large .next-page {
  background: url(../images/small-next-page.png) center center no-repeat;
}

.page-large .prev-page:hover {
  border: 1px solid #ef3838;
  background: url(../images/small-prev-page-on.png) center center no-repeat #ef3838;
}

.page-large .next-page:hover {
  border: 1px solid #ef3838;
  background: url(../images/small-next-page-on.png) center center no-repeat #ef3838;
}


@-webkit-keyframes slidedown {
  0% {
    top: 75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@-moz-keyframes slidedown {
  0% {
    top: 75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes slidedown {
  0% {
    top: 75%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@-webkit-keyframes rot {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  25% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  50% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  75% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.cacalog ul {
  display: none
}

.cacalog .ul_show {
  display: block
}

.wrapp .list {
  display: none
}

.wrapp .list_show {
  display: inline-block
}

.page .curr a {
  background-color: #db4a5a;
  border-color: #db4a5a;
  color: #fff;
}


.listBox .list {
  display: none
}

.listBox .list_show {
  -webkit-animation: listshow 0.5s;
  animation: listshow 0.5s;
  display: block
}

@keyframes listshow {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  30% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }

  60% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }

  90% {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@-webkit-keyframes listshow {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }

  30% {
    opacity: 0.3;
    filter: alpha(opacity=30);
  }

  60% {
    opacity: 0.6;
    filter: alpha(opacity=60);
  }

  90% {
    opacity: 0.9;
    filter: alpha(opacity=90);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

.bomb_box_bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3) !important;
  background: #000;
  filter: alpha(opacity=30);
  z-index: 9;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}

.bomb_box_bg .bomb_box {
  width: 300px;
  height: 176px;
  background: #fff;
  margin: -88px 0 0 -150px;
  overflow: hidden;
  position: absolute;
  left: 50%;
  top: 50%;
}

.bomb_box .bomb_box_title {
  width: 100%;
  height: 44px;
  line-height: 44px;
  padding-left: 20px;
  font-size: 18px;
  background: #e1e1e1;
  border-bottom: 1px solid #ccc;
}

.bomb_box .bomb_box_cont {
  padding: 15px 10px;
  height: 60px;
  overflow-y: auto;
}

.bomb_box .btn {
  width: 80%;
  height: 34px;
  margin: 0 auto;
  line-height: 34px;
  text-align: center;
  color: #fff;
  background: #b40e1b;
  cursor: pointer;
}

.sservice5 .message_code {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: center;
}

#guestbookCaptcha {
  height: 43px;
  margin-left: 10px;
}

.zyao {
  float: right;
}

/*投诉与建议*/
.complaint-page {
  width: 100%;
  margin-bottom: 3em;
}

.complaint-page-top {
  width: 100%;
  text-align: center;
}

.complaint-page-top img {
  max-width: 100%;
}

.complaint-page-bottom {
  width: 100%;
}

.complaint-page-bottom table {
  width: 100%;
}

.complaint-page-bottom th {
  width: 38%;
  text-align: right;
  font-weight: normal;
  padding-right: 1em;
  min-height: 4.5714em;
  line-height: 4.5714em;
  vertical-align: top;
}

.complaint-page-bottom th .glyphicon {
  color: #b40e1b;
}

.complaint-page-bottom td {
  min-height: 4.5714em;
}

.complaint-page-bottom td .input-box {
  width: 58%;
  height: 2.8571em;
  line-height: 2.8571em;
  border: 1px solid #ccc;
  text-align: center;
  border-radius: 4px;
  margin-top: .8572em
}

.complaint-page-bottom td label.radio-group {
  font-weight: normal;
  margin-right: 1em;
  line-height: 4.5714em
}

.complaint-page-bottom td label.radio-group input[type=radio] {
  margin: 0 .5em;
  display: inline-block;
}

.complaint-page-bottom td textarea.input-box {
  height: auto;
  text-align: left;
  padding: .5em 1em;
  line-height: 1.5;
  min-height: 9em;
}

.complaint-page-bottom td .input-box-code {
  display: inline-block;
  width: 23%;
  margin-right: 1em;
}

.complaint-page-bottom td .input-box-code:focus {
  color: #666
}

.complaint-page-bottom td .enter-cell-code {
  margin-top: -3.1428em;
  margin-left: 15em
}

.complaint-page-bottom td .enter-cell-code img {
  border-radius: 2px;
  margin-right: 1em;
  height: 2.8571em;
  border: 1px solid #ccc;
}

.complaint-page-bottom td .enter-cell-code span {
  cursor: pointer;
  color: #51729b;
}

.complaint-page-bottom td .btn {
  width: 35.96%;
  height: 2.8571em;
  text-align: center;
  color: #fff;
  border: 2px solid #b40e1b;
  background: #b40e1b;
  word-spacing: 1em;
  margin-top: 2em;
  font-size: 1.1428em;
  margin-left: 38%
}

.complaint-page-bottom td .btn:hover {
  background: #fff;
  color: #b40e1b;
}

.produce-pro-list {
  width: 100%;
  box-sizing: border-box;
  padding: 30px 5.58% 0 5.58%;
  border: 1px solid #e6e4e4;
  border-top: 2px solid #b4031b;
  border-bottom: 0;
}

#footer .frdlink a img {
  width: 80%;
  height: 80%;
}

/* @media screen and (max-width:767px){
	.side-nav{position: absolute;left: 20px;}
	.side-bar{position: absolute;right: 10px;}
	.home1 .arr{position: absolute;top:95%;}
	.home1 .cont{width:100%;}
	.cirle{width:414px;background-size: 100%;position: absolute;top:50%;left:50%;margin:-207px 0 0 -207px;}
	.cirle .ball{width:100%;}
	.cirle .ball{width: 324px; height: 324px;position: absolute;top:50%;left:50%;margin:-296px 0 0 -162px;}
	.home2:before{bottom: 36%;}
	.home3:before{bottom: 36%;}
	.home4:before{bottom: 36%;}
	.home5:before{bottom: 58%;}
	.home6 .scont:before{margin-bottom: 92px;}
	.section .scont .h1{margin-top: 88px;font-size: 24px;}
	.section .scont .h2{font-size: 20px;}
	.home5 .list ul{width:414px;margin:0 auto;}
	.home5 .list li{margin:0;margin-left:42px;}
	.home5 .list .ico{width: 140px;height: 140px;}
	.wrap{width: 100%;}
	#footer{padding: 90px 0 44px;}
	#footer .frdlink a{margin-right:0;width:50%;height:50px;margin: 3px 0;}
#footer .frdlink {
    margin-bottom: 0px;
    padding-bottom: 0;
}
#footer .links {
    margin-bottom: 0; 
}
#footer .frdlink a img{display:block;margin:0 auto;}
#footer .frdlink .wrap  a:nth-of-type(5) img{width:56%;height:auto}
#footer .frdlink .wrap  a:nth-of-type(6) img{width:30%;height:auto}
	
	
@-webkit-keyframes slidedown{
	0%{ top: 95%; opacity: 0;}
	10%{ opacity: 1;}
	90%{ opacity: 1;}
	100%{ top: 100%; opacity: 0;}
	}
@-moz-keyframes slidedown{
	0%{ top: 95%; opacity: 0;}
	10%{ opacity: 1;}
	90%{ opacity: 1;}
	100%{ top: 100%; opacity: 0;}
	}
@keyframes slidedown{
	0%{ top: 95%; opacity: 0;}
	10%{ opacity: 1;}
	90%{ opacity: 1;}
	100%{ top: 100%; opacity: 0;}
}
} */


/* 消费者保护权益 */
.xf-title {
  width: 90px;
  height: 25px;
  font-size: 18px;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: rgba(45, 45, 45, 1);
  line-height: 25px;
  padding: 12px 0;
  color: #2D2D2D;
  font-size: 18px;
  font-weight: bold;
}

.xf-content {
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.xf-content .xf-item-title {
  color: #2D2D2D;
  height: 35px;
  font-size: 15px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  line-height: 35px;
}

.xf-content .xf-item-text {
  /* border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
  padding:0 0 18px  15px;
}

.xf-content .xf-item-text p {
  font-size: 13px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: rgba(81, 81, 81, 1);
  line-height: 24px;
  position: relative;
  padding-left: 10px;
}

.xf-content .xf-item-p {
  padding: 18px 0 18px 12px;
  font-size: 13px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: rgba(81, 81, 81, 1);
  line-height: 24px;
  /* border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
}

.xf-content .xf-item-pic {
  position: relative;
  height: 240px;
  box-sizing: border-box;
  /* border-top: 1px solid rgba(0, 0, 0, 0.05); */
}

.xf-content .xf-item-pic img {
  /* position: absolute;
  left: 50%;
  top: 30px;
  transform: translate(-50%); */
  margin-left: 24px;
  margin-top: 17px;
  width: 400px;
  height: 198px;
}

.xf-content .xf-item-text p::before {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #E50011;
  border-radius: 50%;
  left: 0;
  top: 10px;
}

.xf-cpxq {
  height: 35px;
  /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
  margin-bottom: 12px;
}

.xf-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}


.cpxq-list {
  height: 24px;
  font-size: 15px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: rgba(45, 45, 45, 1);
  line-height: 24px;
  position: relative;
}

.cpxq-list span {
  position: absolute;
  right: 0;
  height: 24px;
  font-size: 15px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: rgba(81, 81, 81, 1);
  line-height: 24px;
}