@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}


.col-md-20 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

a:hover,
a:focus {
  color: #e0030e;
  text-decoration: none !important;
  cursor: pointer;
}

ol {
  margin-bottom: 0;
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pd {
  padding: 40px 0;
}

/* 首页常见问题 */
.faq_box{width:95%; max-width:1380px; margin:0 auto 80px;}
.faq_box .tit-box{display:flex; justify-content:space-between; align-items:center;}
.faq_box .tit{margin-bottom:0;}
.faq_list{width:100%; margin:40px auto 80px; position:relative;}
.faq_list ul{display:flex; flex-direction:column; gap:16px;}
.faq_list li{
	background:#fff;
	border:1px solid #e9e9e9;
	border-radius:10px;
	overflow:hidden;
	transition:border-color .35s cubic-bezier(0.22, 0.61, 0.36, 1),
	           box-shadow .35s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.faq_list li:hover{
	border-color:#e0030e;
	box-shadow:0 4px 18px rgba(0, 120, 255, .08);
}
.faq_list li.active{
	border-color:#e0030e;
	box-shadow:0 6px 24px rgba(0, 120, 255, .12);
}
.faq_list .layRow{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:24px 30px;
  margin-bottom:0;
	cursor:pointer;
	user-select:none;
}
.faq_list .layRow h5{
	font-size:20px;
	font-weight:600;
	color:#222;
	line-height:30px;
	transition:color .3s ease;
}
.faq_list li.active .layRow h5{color:#e0030e;}
.faq_list .arrow-icon{
	position:relative;
	width:18px;
	height:18px;
	flex-shrink:0;
	margin-left:20px;
}
.faq_list .arrow-icon::before,
.faq_list .arrow-icon::after{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	background:#666;
	transition:transform .4s cubic-bezier(0.22, 0.61, 0.36, 1),
	           background .3s ease;
}
.faq_list .arrow-icon::before{
	width:14px;
	height:2px;
	transform:translate(-50%, -50%);
}
.faq_list .arrow-icon::after{
	width:2px;
	height:14px;
	transform:translate(-50%, -50%);
}
.faq_list li.active .arrow-icon::before,
.faq_list li.active .arrow-icon::after{background:#e0030e;}
.faq_list li.active .arrow-icon::after{transform:translate(-50%, -50%) scaleY(0);}

/* 丝滑展开：grid-template-rows 0fr→1fr，高度自适应内容，无拉扯感 */
.faq_list .faq-answer{
	display:grid;
	grid-template-rows:0fr;
	padding:0 30px;
	transition:grid-template-rows .45s cubic-bezier(0.33, 1, 0.68, 1),
	           padding .45s cubic-bezier(0.33, 1, 0.68, 1);
}
.faq_list .faq-answer p{
	min-height:0;
	overflow:hidden;
  margin-bottom:0;
	opacity:0;
	transition:opacity .3s ease;
}
.faq_list li.active .faq-answer{
	grid-template-rows:1fr;
	padding:0 30px 28px 30px;
}
.faq_list li.active .faq-answer p{
	opacity:1;
	transition:opacity .35s ease .1s;
}
.faq_list .faq-answer p{
	font-size:16px;
	color:#666;
	line-height:30px;
}

/* 响应式 */
@media (max-width:768px){
	.faq_box{margin:40px auto 0;}
	.faq_list{margin:24px auto 40px;}
	.faq_list ul{gap:10px;}
	.faq_list .layRow{padding:18px 18px;}
	.faq_list .layRow h5{font-size:16px; line-height:24px;}
	.faq_list li.active .faq-answer{padding:0 18px 20px 18px;}
	.faq_list .faq-answer p{font-size:14px; line-height:26px;}
}

@media (min-width: 992px) {
  .pd {
    padding: 80px 0;
  }
}

.row .col-6:nth-child(odd) {
  padding-left: 15px;
  padding-right: 5px;
}

@media (min-width: 992px) {
  .row .col-6:nth-child(odd) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row .col-6:nth-child(even) {
  padding-left: 5px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .row .col-6:nth-child(even) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row .col-5 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

@media (min-width: 992px) {
  .row .col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.row .col-5:nth-child(odd) {
  padding-left: 15px;
  padding-right: 5px;
}

@media (min-width: 992px) {
  .row .col-5:nth-child(odd) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.row .col-5:nth-child(even) {
  padding-left: 5px;
  padding-right: 15px;
}

@media (min-width: 992px) {
  .row .col-5:nth-child(even) {
    padding-left: 15px;
    padding-right: 15px;
  }
}

#page {
  text-align: center;
  margin-top: 40px;
}

#page .pagination {
  margin: 20px 0 0;
}

#page .pagination > .active > a {
  z-index: 3;
  color: #FFFFFF;
  cursor: default;
  background-color: #e0030e;
  border-color: #e0030e;
}

#page .pagination > li > a,
#page .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #888;
  border: 1px solid #ddd;
}

.baten_banner {
  overflow: hidden;
  position: relative;
  padding-top: 70px;
}

@media (min-width: 992px) {
  .baten_banner {
    margin-top: 0;
  }
}
/*
.baten_banner::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}*/

.baten_banner .text {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
@media (max-width: 767px) {
	.baten_banner .text {
	     bottom: 0%;
		 top: auto;
	}
}

.baten_banner .text h2 {
  font-size: 36px;
  color: #fff;
}

@media (min-width: 992px) {
  .baten_banner .text h2 {
    font-size: 68px;
  }
}
@media (max-width: 374px) {
  .baten_banner .text h2 {
    font-size: 24px;
  }
}
@media (min-width: 1280px) {
  .baten_banner .text h2 {
    font-size: 78px;
  }
}
@media (min-width: 1440px) {
  .baten_banner .text h2 {
    font-size: 88px;
  }
}


.baten_banner .text h3 {
  font-size: 20px;
  color: #fff;
}

@media (min-width: 992px) {
  .baten_banner .text h3 {
    font-size: 55px;
  }
}
@media (max-width: 374px) {
  .baten_banner .text h3 {
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .baten_banner .text h3 {
    font-size: 65px;
  }
}

@media (min-width: 1440px) {
  .baten_banner .text h3 {
    font-size: 68px;
  }
}

.baten_banner video {
  width: 100%;
  height: 100%;
  display: block;
}



.hashbox {
    position: relative;
}
.hashTag {
    position: absolute;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
    top: -60px;
}

.cate-view .list {
	border-bottom: 1px solid #7f0014
}

.cate-view .list li {
	float: left;
	width: 25%;
	padding-bottom: 16%;
	position: relative;
	box-sizing: border-box;
	border-top: 1px solid #a60119;
	border-left: 1px solid #a60119
}

.cate-view .list li:nth-child(4n+1) {
	border-left: 0
}

.cate-view .list a {
	background: #7f0014;
	position: absolute;
	padding: 0 15px;
	font-weight: bold;
	box-sizing: border-box;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	font-size: 27px;
	color: #fff;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-direction: row;
	flex-wrap: nowrap
}

.cate-view .list a:hover {
	background: #fff;
	color: #0a1e62
}


@media screen and (max-width: 1080px) {

	.cate-view .list li {
		float: none;
		width: 100%;
		padding: 0
	}

	.cate-view .list a {
		position: static;
		display: block;
		font-size: 18px;
		padding: 22px 0;
		text-align: center
	}
}


footer .baten_fws {
  padding: 60px 0;
  overflow: hidden;
  background: #222;
  text-align: center;
  color: #fff;
}

footer .baten_fws h3 {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

footer .baten_fws h4 {
  font-size: 24px;
  letter-spacing: 5px;
}

footer .baten_fws h5 {
  font-size: 48px;
  margin: 0 0 20px;
}

footer .baten_fws a {
  display: inline-block;
  width: 180px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #fff;
  border-radius: 4px;
  font-size: 16px;
  color: #fff;
  background-color: #e0030e;
/*  -webkit-animation: fws1 1.5s linear infinite;
          animation: fws1 1.5s linear infinite;*/
}

footer .baten_fws a img {
  display: inline-block;
  vertical-align: top;
  height: 24px;
  margin-left: 5px;
  margin-top: 7px;
}

footer .baten_fws a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-animation: none;
          animation: none;
}

footer .baten_bq {
  padding: 20px 0 50px;
  overflow: hidden;
  background: #111;
  text-align: center;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

@media (min-width: 992px) {
  footer .baten_bq {
    padding: 26px 0 36px;
    font-size: 16px;
    line-height: 32px;
  }
}

footer .baten_bq .links a {
  color: #fff;
}

footer .baten_bq .copyright a {
  color: #fff;
}

footer .baten_bq img {
  display: inline-block;
  vertical-align: top;
  margin-left: 5px;
}

footer .baten_zx {
  width: 100%;
  padding: 12px 0;
  position: fixed;
  z-index: 99;
  left: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.8);
  overflow: hidden;
}

footer .baten_zx .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .baten_zx .container .zx_left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .baten_zx .container .zx_left img {
  margin-right: 20px;
  height: 30px;
}

footer .baten_zx .container .zx_left .text {
  font-size: 24px;
  color: #fff;
}

footer .baten_zx .container .zx_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .baten_zx .container .zx_btn a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: #c2040d;
  border-radius: 4px;
  margin-left: 20px;
  font-size: 18px;
  color: #fff;
}

footer .baten_zx .container .zx_btn a:nth-child(2) {
  background: #222;
}

@-webkit-keyframes fws1 {
  0% {
    border: 1px solid #ffffff;
  }
  25% {
    border: 1px solid #e60012;
    background: #e60012;
  }
  60% {
    border: 1px solid #e60012;
    background: #e60012;
  }
  100% {
    border: 1px solid #ffffff;
  }
}

@keyframes fws1 {
  0% {
    border: 1px solid #ffffff;
  }
  25% {
    border: 1px solid #e60012;
    background: #e60012;
  }
  60% {
    border: 1px solid #e60012;
    background: #e60012;
  }
  100% {
    border: 1px solid #ffffff;
  }
}

.tit {
  margin-bottom: 30px;
}

.tit h4 {
  font-size: 36px;
  line-height: 40px;
}

.tit span {
  font-size: 16px;
  line-height: 30px;
  color: #888;
}

a.more {
  display: inline-block;
  height: 32px;
  color: #888;
  font-size: 14px;
  line-height: 32px;
  border-bottom: 1px solid #d1d1d1;
}

a.more:hover {
  color: #e0030e;
  border-bottom: 1px solid #e0030e;
}

.baten_who .tit {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .baten_who .tit {
    margin-bottom: 100px;
  }
}

.baten_who .con {
  margin-top: 20px;
}

@media (min-width: 992px) {
  .baten_who .con {
    margin-top: 0;
  }
}

.baten_who .con .txt {
  font-size: 14px;
  line-height: 24px;
  color: #555;
  margin-bottom: 50px;
}

@media (min-width: 992px) {
  .baten_who .con .txt {
    font-size: 16px;
    line-height: 32px;
  }
}

.baten_who .con .item {
  text-align: center;
}

.baten_who .con .item h4 {
  color: #111;
}

.baten_who .con .item h4 div {
  display: inline-block;
  font-size: 20px;
  line-height: 20px;
}

@media (min-width: 992px) {
  .baten_who .con .item h4 div {
    font-size: 48px;
    line-height: 48px;
  }
}
@media (max-width: 413px) {
  .baten_who .con .item h4 div {
    font-size: 18px;
    line-height: 18px;
  }
}

.baten_who .con .item h4 span {
  display: inline-block;
  vertical-align: bottom;
  font-weight: 700;
  margin-left: 5px;
  font-size: 12px;

}

@media (min-width: 992px) {
  .baten_who .con .item h4 span {
    font-size: 16px;
  }
}

.baten_who .con .item p {
  margin-bottom: 0;
  font-size: 11px;
  color: #777777;
}

@media (min-width: 992px) {
  .baten_who .con .item p {
    font-size: 16px;
  }
}

.baten-yxsl .item {
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .baten-yxsl .item {
    margin-bottom: 0;
  }
}

.baten-yxsl .item h5 {
  font-size: 14px;
  height: 14px;
  text-align: center;
  position: relative;
}

.baten-yxsl .item h5 span {
  width: 90%;
  height: 46px;
  background: #ededed;
  border-radius: 4px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.baten-yxsl .item .img {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ededed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.baten-yxsl .item .img .box {
  overflow: hidden;
  position: relative;
}

.baten-yxsl .item .img .box .box1 {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}

.baten-yxsl .item .img .box .box2 {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
}

.baten-yxsl .item .img .box .box3 {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
}

.baten-yxsl .item .info {
  width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #ededed;
  border-top: 0 !important;
  position: relative;
  padding: 15px 13px 15px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.baten-yxsl .item .info .info1 .zm {
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 15px;
  width: 40px;
  height: 40px;
  border: 1px solid #ededed;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  color: #ededed;
}

.baten-yxsl .item .info .info1 h3 {
  font-size: 24px;
  line-height: 34px;
  color: #e0030e;
  margin-bottom: 0;
}

.baten-yxsl .item .info .info1 h3 span {
  font-size: 13px;
  line-height: 20px;
  color: #a0a0a0;
  position: absolute;
  left: -25px;
  top: 53px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.baten-yxsl .item .info .info1 h3 span em {
  margin-left: 10px;
  letter-spacing: 3px;
  font-style: normal;
  font-weight: normal;
}

.baten-yxsl .item .info .info1 h4 {
  font-size: 16px;
  line-height: 24px;
  color: #a0a0a0;
  font-weight: normal;
}

.baten-yxsl .item .info .info2 {
  padding-top: 10px;
  font-size: 18px;
  line-height: 32px;
}

.baten-yxsl .item .info .info3 {
  height: 100px;
  font-size: 13px;
  line-height: 24px;
  color: #a0a0a0;
}

.baten-yxsl .item:hover .info1 .zm {
  color: #e0030e;
}

.baten-case {
  background: #f2f2f2;
}

.baten-case .tit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.baten-case .tit-box .tit {
  margin-bottom: 0;
}

.baten-case .item {
  width: 100%;
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

.baten-case .item .img {
  overflow: hidden;
  margin-bottom: 120px;
}

.baten-case .item .img img {
  -webkit-transition: .3s;
  transition: .3s;
  width:100%;
}

.baten-case .item .con {
  width: 100%;
  height: 120px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0px;
}

.baten-case .item .con .case-info {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.baten-case .item .con .case-info .case-logo {
  width: 120px;
  max-height: 120px;
  /*border-radius: 50%;*/
  margin-right: 15px;
  -webkit-box-shadow: 0 0 5px #f6f6f6;
          box-shadow: 0 0 5px #f6f6f6;
}

.baten-case .item .con .case-info .title {
  width: calc(100% - 95px);
}

.baten-case .item .con .case-info .title h3 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.baten-case .item .con .case-info .title span {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #777777;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.baten-case .item .con p {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #777777;
  margin: 30px 0;
}

.baten-case .item .con a {
  font-size: 14px;
  line-height: 24px;
}

.baten-case .item:hover {
  -webkit-box-shadow: 0 0 10px #e0e0e0;
          box-shadow: 0 0 10px #e0e0e0;
}

.baten-case .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.baten-case .item:hover .con {
  left: 0;
  top: 0;
  height: 100%;
  padding: 60px 25px 20px;
}

.baten-case .item:hover .con h3 {
  color: #e0030e;
}

.baten-tgfa {
  overflow: hidden;
  padding: 40px 0;
  background: url(../images/tgfa.jpg) no-repeat center top;
  background-size: cover;
  text-align: center;
  color: #ffffff;
}

@media (min-width: 992px) {
  .baten-tgfa {
    padding: 80px 0;
  }
}

.baten-tgfa .container {
  width: 100%;
}

@media (min-width: 992px) {
  .baten-tgfa .container {
    width: 900px;
  }
}

.baten-tgfa .container h3 {
  font-size: 36px;
  line-height: 60px;
}

.baten-tgfa .container h4 {
  font-size: 16px;
  line-height: 32px;
}

.baten-tgfa .container div {
  margin: 0 auto;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.baten-tgfa .container div span {
  display: block;
  width: auto;
  height: 30px;
  margin: 5px;
  padding: 0 10px;
  border-radius: 15px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  line-height: 30px;
}

@media (min-width: 992px) {
  .baten-tgfa .container div span {
    width: 180px;
    height: 36px;
    margin: 10px 15px;
    font-size: 16px;
    line-height: 36px;
  }
}

.baten-tgfa .container div span:hover span {
  color: #e0030e;
  border: 1px solid #e0030e;
  background: rgba(255, 255, 255, 0.8);
}

.baten-tgfa .container p {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .baten-tgfa .container p {
    font-size: 48px;
    line-height: 56px;
  }
}

.baten-news .tit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.baten-news .tit-box .tit {
  margin-bottom: 0;
}

.baten-news .item {
  width: 100%;
  margin-bottom: 20px;
  display: inline-block;
}

.baten-news .item div {
  overflow: hidden;
}

.baten-news .item div img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
      width: 100%;
}

.baten-news .item h3 {
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  margin: 15px 0 5px;
  color: #222;
}

.baten-news .item span {
  display: block;
  font-size: 14px;
  line-height: 32px;
  color: #888;
}

.baten-news .item p {
  font-size: 14px;
  line-height: 24px;
  color: #555;
  margin-bottom: 0;
}

.baten-news .item:hover div img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.baten-news .item:hover h3 {
  color: #e0030e;
}

.baten-trade {
  padding-bottom: 40px;
}

@media (min-width: 992px) {
  .baten-trade {
    margin-bottom: 100px;
  }
}

.baten-trade .tit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

.baten-trade .tit-box .tit {
  margin-bottom: 0;
}

.baten-trade .big a {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.baten-trade .big a img {
  -webkit-transition: .3s;
  transition: .3s;
}

.baten-trade .big a h3 {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  font-size: 18px;
  line-height: 30px;
  font-weight: normal;
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 20px;
  background: rgba(51, 51, 51, 0.8);
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.baten-trade .big a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.baten-trade .big a:hover h3 {
  color: #e0030e;
}

.baten-trade ul li {
  padding: 20px 0;
  overflow: hidden;
  border-bottom: 1px solid #e8e8e8;
}

.baten-trade ul li:last-child {
  border-bottom: 0;
}

.baten-trade ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.baten-trade ul li a .time {
  width: 86px;
  margin-right: 10px;
  border-right: 1px solid #e8e8e8;
  text-align: center;
  color: #222;
}

@media (min-width: 992px) {
  .baten-trade ul li a .time {
    width: 126px;
    margin-right: 30px;
  }
}

.baten-trade ul li a .time h6 {
  font-size: 48px;
  line-height: 48px;
}

.baten-trade ul li a .time span {
  font-size: 14px;
  line-height: 20px;
  display: inline-block;
}

.baten-trade ul li a .txt {
  width: calc(100% - 90px);
}

@media (min-width: 992px) {
  .baten-trade ul li a .txt {
    width: calc(100% - 156px);
  }
}

.baten-trade ul li a .txt h3 {
  font-size: 18px;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  color: #222;
}

.baten-trade ul li a .txt p {
  font-size: 14px;
  line-height: 24px;
  color: #888;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.baten-trade ul li a:hover .time {
  border-right: 1px solid #222;
}

.baten-trade ul li a:hover h3 {
  color: #e0030e;
}

.baten_online {
  top: auto;
  right: 5px;
  bottom: 40px;
  position: fixed;
  z-index: 80;
}

@media (min-width: 992px) {
  .baten_online {
    width: 50px;
    top: 42%;
    right: 10px;
  }
}

.baten_online ul li {
  width: 50px;
  height: 50px;
  border: 1px solid #eeeeee;
  margin-bottom: 7px;
  background: #ffffff;
  position: relative;
}

.baten_online ul li em {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-image: url("../images/online.png");
  background-repeat: no-repeat;
  position: relative;
}

.baten_online ul li div {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 55px;
  border: 1px solid #eeeeee;
  border-top: 5px solid #e60012;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 0 10px;
  font-size: 16px;
  line-height: 44px;
  background: #FFF;
  display: none;
}

.baten_online ul li.online {
  background: #e0030e;
  border: 1px solid #e0030e;
}

.baten_online ul li.online em {
  background-position: 0px 0px;
}

.baten_online ul li.tel div {
  width: 170px;
}

.baten_online ul li.tel em {
  background-position: -50px -50px;
}

.baten_online ul li.ewm div {
  width: 120px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  padding: 10px;
}

.baten_online ul li.ewm div img {
  max-width: 100%;
}

.baten_online ul li.ewm em {
  background-position: -150px -50px;
}

.baten_online ul li.scrolltop em {
  background-position: -250px -50px;
}

.baten_online li:hover {
  background: #e0030e;
  border: 1px solid #e0030e;
}

.baten_online li:hover div {
  display: block;
}

.baten_online li.tel:hover em {
  background-position: -50px 0px;
}

.baten_online li.email:hover em {
  background-position: -100px 0px;
}

.baten_online li.ewm:hover em {
  background-position: -150px 0px;
}

.baten_online li.scrolltop:hover em {
  background-position: -250px 0px;
}

.baten_menub {
  width: 100%;
  height: 40px;
  border-top: 1px solid #cccccc;
  position: fixed;
  z-index: 99;
  left: 0;
  bottom: 0;
  background: #333333;
}

.baten_menub div {
  width: 33.33%;
  height: 100%;
  float: left;
}

.baten_menub div a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 40px;
  color: #ffffff;
}

.baten_menub div a span {
  border-right: 1px solid #cccccc;
  width: 100%;
  display: inline-block;
}

.baten_menub div a span img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.n_place {
  overflow: hidden;
  font-size: 14px;
  line-height: 20px;
}

.n_place div.box {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0;
}

.n_place div.box a {
  color: #555;
}

.n_place div.box img {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}


/**ddddddddddddd**/
.n_place .container .item {
  float: left;
  width: 49%;
  margin-right: 1%;
}

@media (min-width: 992px) {
  .n_place .container .item {
    width: auto;
    margin-right: 20px;
  }
}

.n_place .container .item a {
  display: block;
  width: 100%;
  height: 34px;
  border: 1px solid #cccccc;
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  color: #555;
}

@media (min-width: 992px) {
  .n_place .container .item a {
    width: 158px;
    height: 40px;
    line-height: 40px;
  }
}

.n_place .container .on a {
  background: #e0030e;
  border: 1px solid #e0030e;
  color: #fff;
}
/**ddddddddddddd**/


.pack .info .title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .pack .info .title {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 50px;
  }
}

.pack .info .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin: 0 0 10px;
}

@media (min-width: 992px) {
  .pack .info .icon {
    margin: 0 0 45px;
  }
}

.pack .info .icon dl {
  margin-bottom: 0;
}

.pack .info .icon dl dt img {
  display: inline-block;
  vertical-align: top;
}

.pack .info .icon dl dd {
  font-size: 16px;
  line-height: 30px;
  color: #888;
  margin-top: 5px;
}

.pack .info .icon dl:hover dd {
  color: #e0030e;
}

.pack .info .line {
  border-top: 1px solid #e3e3e3;
  height: 10px;
}

@media (min-width: 992px) {
  .pack .info .line {
    height: 36px;
  }
}

.pack .info .con {
  width: 100;
  font-size: 16px;
  line-height: 24px;
  color: #999999;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .pack .info .con {
    width: 370px;
    margin-bottom: 0;
  }
}

.pack .img {
  overflow: hidden;
}

.pack .img img {
  -webkit-transition: .3s;
  transition: .3s;
}

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

.pack_two {
  padding-top: 0;
}

@media (min-width: 992px) {
  .pack_two {
    padding-top: 80px;
  }
}

.pack_two .box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .pack_two .box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.pack_two .info {
  position: static;
  z-index: 2;
  right: 90px;
  color: #222;
}

@media (min-width: 992px) {
  .pack_two .info {
    position: absolute;
    color: #ffffff;
  }
}

.pack_two .info .con {
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
}

@media (min-width: 992px) {
  .pack_two .info .con {
    width: 380px;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 60px;
  }
}

.pack_two .info .icon {
  width: 100%;
  margin-bottom: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 992px) {
  .pack_two .info .icon {
    width: 380px;
  }
}

.pack_two .info .icon dl {
  margin: 0 0 10px;
}

@media (min-width: 992px) {
  .pack_two .info .icon dl {
    margin: 0 8px 20px 0;
  }
}

.pack_three {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .pack_three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pack_three .info .con {
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .pack_three .info .con {
    margin-bottom: 35px;
  }
}

.pack_three .info .con p {
  font-size: 18px;
  line-height: 30px;
  color: #222;
}

.pack_five {
  padding-top: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .pack_five {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.pack_five .info .con {
  margin-bottom: 10x;
  font-size: 13px;
}

@media (min-width: 992px) {
  .pack_five .info .con {
    margin-bottom: 35px;
    font-size: 16px;
  }
}

.pack_five .info .con p {
  font-size: 13px;
  line-height: 24px;
  color: #222;
}

@media (min-width: 992px) {
  .pack_five .info .con p {
    font-size: 18px;
    line-height: 30px;
  }
}

.n_comment {
  padding: 80px 0 0;
  background: #f1f1f1;
}

@media (min-width: 992px) {
  .n_comment {
    padding: 100px 0 0;
  }
}

.n_comment .case-list {
  padding-bottom: 50px;
}

@media (min-width: 992px) {
  .n_comment .case-list {
    padding-bottom: 100px;
  }
}

.n_comment .case-list .text-center a {
  display: block;
  margin: 20px auto 0;
  width: 150px;
  height: 45px;
  background: #333333;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  text-align: center;
}

@media (min-width: 992px) {
  .n_comment .case-list .text-center a {
    margin: 0 auto;
  }
}

.n_comment .case-list .text-center a:hover {
  background: #e0030e;
}

.case-top {
  margin-top: 30px;
  margin-bottom: 30px;
}

.case-top .info {
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  background: #fff;
}

@media (min-width: 992px) {
  .case-top .info {
    padding: 0 50px;
  }
}

.case-top .info .img {
  margin-bottom: 35px;
}

.case-top .info h3 {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 15px;
}

.case-top .info p {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 40px;
}

.case-top .info a {
  display: block;
  width: 150px;
  height: 44px;
  background: #333333;
  font-size: 16px;
  line-height: 44px;
  color: #ffffff;
  text-align: center;
}

.case-top .info a:hover {
  background: #e0030e;
}

.case-list .item {
  width: 100%;
  margin-bottom: 15px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

@media (min-width: 992px) {
  .case-list .item {
    margin-bottom: 30px;
  }
}

.case-list .item .img {
  overflow: hidden;
  margin-bottom: 120px;
}

.case-list .item .img img {
  -webkit-transition: .3s;
  transition: .3s;
  width: 100%;
}

.case-list .item .con {
  width: 100%;
  height: 120px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0px;
}

.case-list .item .con .case-info {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.case-list .item .con .case-info .case-logo {
  width: 120px;
  max-height: 120px;
  /*border-radius: 50%;*/
  margin-right: 15px;
  -webkit-box-shadow: 0 0 5px #f6f6f6;
          box-shadow: 0 0 5px #f6f6f6;
}

.case-list .item .con .case-info .title {
  width: calc(100% - 95px);
}

.case-list .item .con .case-info .title h3 {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-list .item .con .case-info .title span {
  display: block;
  font-size: 14px;
  line-height: 28px;
  color: #777777;
  margin-bottom: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.case-list .item .con p {
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: #777777;
  margin: 30px 0;
}

.case-list .item .con a {
  font-size: 14px;
  line-height: 24px;
  color: #555;
}

.case-list .item:hover {
  -webkit-box-shadow: 0 0 10px #e0e0e0;
          box-shadow: 0 0 10px #e0e0e0;
}

.case-list .item:hover .img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.case-list .item:hover .con {
  left: 0;
  top: 0;
  height: 100%;
  padding: 60px 25px 20px;
}

.case-list .item:hover .con h3 {
  color: #e0030e;
}

.hprc {
  background: #fff;
}

.hprc .title {
  margin-bottom: 36px;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
}

.hprc .title p {
  font-size: 16px;
  line-height: 32px;
  color: #888;
}

.hprc .img img {
  -webkit-transition: .3s;
  transition: .3s;
  overflow: hidden;
}

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

.hprc .txt {
  background: #0f0600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.hprc .txt div {
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 10px;
}

@media (min-width: 992px) {
  .hprc .txt div {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.hprc .txt div:hover {
  color: #e0030e;
}

.hprc .txt div h3 {
  font-size: 16px;
  line-height: 32px;
  margin: 0;
}

@media (min-width: 992px) {
  .hprc .txt div h3 {
    margin: 0 10px;
  }
}

.hprc .txt div h3 span {
  display: inline-block;
}

@media (min-width: 992px) {
  .hprc .txt div h3 span {
    display: block;
  }
}

@media (min-width: 992px) {
  .hprc .txt div h3 {
    font-size: 40px;
    line-height: 48px;
  }
}

.hprc .txt div p {
  font-size: 12px;
  line-height: 18px;
  margin-top: 5px;
}

@media (min-width: 992px) {
  .hprc .txt div p {
    font-size: 16px;
    line-height: 20px;
    margin-top: 25px;
  }
}

.hprc .txt div span {
  display: inline-block;
}

@media (min-width: 992px) {
  .hprc .txt div span {
    display: block;
  }
}

.hprc .t2 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.baten_nb {
  margin-top: 80px;
}

.qwyxlc .title {
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  margin-top: 40px;
}

.qwyxlc .item {
  text-align: center;
  margin-bottom: 20px;
}

.qwyxlc .item .img {
  margin: 30px 0 15px;
}

.qwyxlc .item .img img {
  display: inline-block;
}

.qwyxlc .item h3 {
  font-size: 24px;
  line-height: 48px;
  color: #555;
}

.qwyxlc .item p {
  font-size: 14px;
  line-height: 26px;
  color: #888;
  margin-bottom: 0;
}

.fwtx .title {
  text-align: center;
}

.fwtx .title h5 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 0;
}

.fwtx .title p {
  font-size: 16px;
  line-height: 36px;
  color: #888;
  letter-spacing: 2.5px;
  padding: 10px 0 40px;
}

.fwtx .box dl {
  width: 24%;
  float: left;
  margin: 0 0.5% 10px 0;
}

@media (min-width: 992px) {
  .fwtx .box dl {
    width: 12.5%;
    margin: 0;
  }
}

.fwtx .box dl dt {
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #e0030e;
  padding-bottom: 5px;
  border-bottom: 2px solid #e0030e;
}

@media (min-width: 992px) {
  .fwtx .box dl dt {
    padding-bottom: 15px;
    font-size: 22px;
    line-height: 30px;
  }
}

.fwtx .box dl dd {
  padding: 0;
  text-align: center;
}

@media (min-width: 992px) {
  .fwtx .box dl dd {
    padding: 0 24px 0 25px;
  }
}

.fwtx .box dl dd span {
  display: none;
  width: 100%;
  height: 36px;
}

@media (min-width: 992px) {
  .fwtx .box dl dd span {
    display: block;
  }
}

.fwtx .box dl dd span em {
  display: block;
  width: 2px;
  height: 100%;
  background: #e0030e;
  margin: 0 auto;
  position: relative;
}

.fwtx .box dl dd span em::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: -6px;
  bottom: 0;
  width: 14px;
  height: 14px;
  background: #FFF;
  border: 1px solid #e0030e;
  border-radius: 50%;
}

.fwtx .box dl dd span em::before {
  content: '';
  position: absolute;
  z-index: 3;
  left: -3px;
  bottom: 3px;
  width: 8px;
  height: 8px;
  background: #e0030e;
  border-radius: 50%;
}

.fwtx .box dl dd div {
  padding: 5px 10%;
  text-align: center;
}

@media (min-width: 992px) {
  .fwtx .box dl dd div {
    padding: 13px 0 20px;
  }
}

.fwtx .box dl dd div img {
  display: inline-block;
  vertical-align: middle;
}

.fwtx .box dl dd h4 {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
}

@media (min-width: 992px) {
  .fwtx .box dl dd h4 {
    width: 20px;
    font-size: 18px;
    line-height: 20px;
  }
}

.fwtx .box dl dd p {
  width: 100%;
  height: 120px;
  display: inline-block;
  font-size: 12px;
  line-height: 18px;
  color: #888;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  vertical-align: top;
  text-align: left;
  padding: 0 5px;
}

@media (min-width: 992px) {
  .fwtx .box dl dd p {
    width: 40px;
    height: 260px;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    font-size: 14px;
    line-height: 20px;
  }
}

.fwtx .box dl dd p i {
  font-style: normal;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
}

.fwtx .box dl:nth-child(1) dt {
  position: relative;
}

.fwtx .box dl:nth-child(1) dt::after {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -9px;
  width: 16px;
  height: 16px;
  background: #e0030e;
  border-radius: 50%;
  display: none;
}

@media (min-width: 992px) {
  .fwtx .box dl:nth-child(1) dt::after {
    display: block;
  }
}

.fwtx .box dl:nth-child(8) dt {
  position: relative;
}

.fwtx .box dl:nth-child(8) dt::after {
  content: '';
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -9px;
  width: 16px;
  height: 16px;
  background: #e0030e;
  border-radius: 50%;
  display: none;
}

@media (min-width: 992px) {
  .fwtx .box dl:nth-child(8) dt::after {
    display: block;
  }
}

.n_contact {
  margin-top: 60px;
  overflow: hidden;
  background: url(../images/contact_02.jpg) no-repeat center top;
}

@media (min-width: 992px) {
  .n_contact {
    margin-top: 80px;
  }
}

.n_contact .container {
  margin: 300px auto 40px;
}

@media (min-width: 992px) {
  .n_contact .container {
    margin: 350px auto 110px;
  }
}

.n_contact .container .info {
  background: #e0030e;
  color: #fff;
  text-align: center;
  padding: 60px;
}

.n_contact .container .info h3 {
  font-size: 30px;
  line-height: 60px;
  margin-bottom: 25px;
}

.n_contact .container .info p {
  font-size: 16px;
  line-height: 32px;
  margin-bottom: 30px;
}

.n_contact .container .info div img {
  display: inline-block;
  vertical-align: top;
  width: 200px;
}

.n_contact .container .list {
  padding: 15px;
  background: #fff;
}

@media (min-width: 992px) {
  .n_contact .container .list {
    padding: 20px 60px 60px;
  }
}

.n_contact .container .list dl {
  overflow: hidden;
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.n_contact .container .list dl dt {
  margin-right: 10px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .n_contact .container .list dl dt {
    margin-right: 30px;
  }
}

.n_contact .container .list dl dt img {
  width: 120px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (min-width: 992px) {
  .n_contact .container .list dl dt img {
    width: 230px;
  }
}

.n_contact .container .list dl dt:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.n_contact .container .list dl dd {
  width: calc(100% - 130px);
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .n_contact .container .list dl dd {
    width: calc(100% - 260px);
  }
}

.n_contact .container .list dl dd h4 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #222;
}

@media (min-width: 992px) {
  .n_contact .container .list dl dd h4 {
    font-size: 30px;
    line-height: 50px;
  }
}

.n_contact .container .list dl dd p {
  font-size: 13px;
  line-height: 24px;
  color: #555;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .n_contact .container .list dl dd p {
    font-size: 16px;
    line-height: 32px;
  }
}

.news-top {
  position: relative;
}

.news-top .container {
  height: auto;
  position: static;
  left: 50%;
  top: 0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  background: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
}

@media (min-width: 992px) {
  .news-top .container {
    max-width: 1360px;
    height: 100px;
    padding: 40px 60px 0;
    position: absolute;
    -webkit-transform: translate(-50%, -100px);
            transform: translate(-50%, -100px);
  }
}

.news-top .container .n_place {
  float: right;
  width: 100%;
}

@media (min-width: 992px) {
  .news-top .container .n_place {
    width: auto;
  }
}

.news-top .container .n_place .box {
  border-bottom: 0;
}

.news-top .container .item {
  float: left;
  width: 49%;
  margin-right: 1%;
}

@media (min-width: 992px) {
  .news-top .container .item {
    width: auto;
    margin-right: 20px;
  }
}

.news-top .container .item a {
  display: block;
  width: 100%;
  height: 34px;
  border: 1px solid #cccccc;
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  color: #555;
}

@media (min-width: 992px) {
  .news-top .container .item a {
    width: 158px;
    height: 40px;
    line-height: 40px;
  }
}

.news-top .container .on a {
  background: #e0030e;
  border: 1px solid #e0030e;
  color: #fff;
}

.news {
  padding: 80px 0 40px;
}

@media (min-width: 992px) {
  .news {
    padding: 40px 0 80px;
  }
}

.news .item {
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #f2f2f2;
  margin-bottom: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 992px) {
  .news .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.news .item .img {
  width: 100%;
  height: auto;
   box-sizing: border-box;
    text-align: center;
    overflow: hidden;
}

.news .item img{display:block;max-width:100%; max-height:100%;}

@media (min-width: 992px) {
  .news .item .img {
    width: 40%;
    height: 260px;
  }
}

.news .item .img img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;

  display:inline-block;vertical-align:top;
}

.news .item .info {
  width: 100%;
  padding: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (min-width: 992px) {
  .news .item .info {
    width: 60%;
    padding: 15px 0 15px 30px;
  }
}

.news .item .info h3 {
  font-size: 16px;
  color: #222;
  font-weight: normal;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .news .item .info h3 {
    margin-top: 0;
  }
}

.news .item .info div.txt {
  padding-top: 5px;
  line-height: 30px;
  text-indent: 35px;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media (min-width: 992px) {
  .news .item .info div.txt {
    padding-top: 15px;
  }
}

.news .item .info div.more {
  width: 130px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  color: #222;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .news .item .info div.more {
    margin-top: 0;
  }
}

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

.news .item:hover h3 {
  color: #e0030e;
}

.news .item:hover .info .more {
  border: 1px solid #e0030e;
  background: #e0030e;
  color: #fff;
}

.news-detail {
  padding: 100px 0 40px;
}

@media (min-width: 992px) {
  .news-detail {
    padding: 40px 0 80px;
  }
}

.news-detail .con {
  border-bottom: 1px dashed #cccccc;
}

.news-detail .prev_next {
  padding-top: 15px;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 992px) {
  .news-detail .prev_next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.news-detail .prev_next a {
  display: block;
  width: 100%;
  float: left;
  line-height: 24px;
  margin-bottom: 10px;
  color: #222;
  font-size: 12px;
}

@media (min-width: 992px) {
  .news-detail .prev_next a {
    display: inline-block;
    font-size: 14px;
    width: auto;
  }
}

.news-detail .prev_next a span {
  display: inline-block;
  width: 84px;
  height: 28px;
  text-align: center;
  color: #ffffff;
  background: #222;
}

.news-detail .prev_next a:nth-child(1) span {
  margin-right: 10px;
}

.news-detail .prev_next a:nth-child(2) span {
  float: left;
  margin: 0 10px 0 0;
}

@media (min-width: 992px) {
  .news-detail .prev_next a:nth-child(2) span {
    float: right;
    margin-left: 10px;
  }
}
/*# sourceMappingURL=style.css.map */

 .box1{  font:normal 16px/32px "微软雅黑";}
 .box1 .ul1{ margin:90px 100px; display:flex; justify-content:space-between;}
 .box1 .ul1 li{ font:normal 16px/32px "微软雅黑"; text-align:center; color:#777777;}
 .box1 .ul1 li h3{ height:60px; font:bold 60px/60px Arial; color:#0f0600;}
 .box1 .ul1 li h3 div{ display:inline-block;}
 .box1 .ul1 li h3 span{ display:inline-block; vertical-align:bottom; font:normal 16px/32px "微软雅黑"; margin-left:5px;}
 .box2{ padding:0;}
 .box2 .l{ float:left;}
 .box2 .r{ float:right;}
 .box2 .img{ margin-bottom:30px; overflow:hidden;}
 .box2 .img img{ transition:0.3s; display:inline-block; vertical-align:top;}
 .box2 .img:hover img{ transform:scale(1.1);}


 .ny_culture { display:flex; /*padding:60px 75px;*/}
.ny_culture dl { width:17.9%; margin-right:2.62%; background:#151515; cursor:pointer;}
.ny_culture dl:hover { background:#e60012;}
.ny_culture dl:hover dt img { -webkit-filter:grayscale(0%); -moz-filter:grayscale(0%); -o-filter:grayscale(0%); filter:grayscale(0%);}
.ny_culture dl dt img { width:100%; -webkit-filter:grayscale(100%); -moz-filter:grayscale(100%); -o-filter:grayscale(100%); filter:grayscale(100%); transition:all .3s;}
.ny_culture dl dd { width:100%; height:110px; padding:0 20px; box-sizing:border-box; color:#fff; line-height:20px; text-align:center; overflow:hidden; transition:all .3s;}
.ny_culture dl dd span { display:block; text-align:center; width:100%;}
.ny_culture dl dd span:first-child { font-size:18px; font-weight:600; padding-top:15px; padding-bottom:10px;}
.ny_culture dl dd span:last-child { font-size:14px; padding-bottom:15px;}
.ny_culture dl:nth-of-type(5n+5) { margin-right:0%;}


@media (max-width: 992px) {

 .box1{ padding:10px; font:normal 14px/24px "微软雅黑";}
	 .box1 .ul1{ margin:20px 0;}
	 .box1 .ul1 li{ font:normal 12px/24px "微软雅黑";}
	 .box1 .ul1 li h3{ height:40px; font:bold 20px/40px Arial;}
	 .box1 .ul1 li h3 span{ font:normal 12px/30px "微软雅黑";}
	 .box2{ padding:0 10px;}
	 .box2 .img{ margin-bottom:5px;}
	 .box2 .img img{ width:100%;}


.ny_culture dl{ width:19%; margin-right:1.25%;}
	.ny_culture dl:nth-child(5){ margin-right:0;}
	.ny_culture dl dd{ height:auto; padding:5px;}
	.ny_culture dl dd span:first-child{font-size:14px;padding:5px 0;}
	.ny_culture dl dd span:last-child{ font-size:12px;}

	}