/* CSS Document*/
/* @font-face {
  font-family: 'HWMC';
  src:url('../fonts/huiwenmincho.woff') format('woff');
  font-weight: normal;
  font-style: normal;
} */
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #AE0B2A;
  text-decoration: none;
}

::selection {
  background-color: #AE0B2A;
  /* 选中的背景色 */
  color: #fff;
  /* 选中的文本颜色 */
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

body {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  color: #666;
  font-size: 12px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  width: 100%;
  max-width: 1400px;
}

#header{
  position: fixed;
  z-index: 999;
  top: 0px;
  width: 100%;
  transition: all 0.5s ease 0s;
}

.topp{
  height: 100px;
  background: #AE0B2A;
  position: relative;
}

.topp .container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.topp .logo img{
  width: 475px;
  height: auto;
}

.topp .search{
  width: 260px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 25px;
  display: flex;
}

.topp .search .text{
  background: none;
  width: calc(100% - 40px);
  border: 0px;
  height: 48px;
  font-size: 16px;
  box-sizing: border-box;
  padding: 0px 20px;
  color: #fff;
}

.topp .search .btn{
  background: none;
  color: #fff;
  font-size: 18px;
  border: 0px;
  cursor: pointer;
  width: 40px;
}

.top {
  height: 50px;
  box-sizing: border-box;
  background: #84061E;
}

.top_g {
  height: 150px;
}

.top .container {
  display: flex;
  justify-content: space-between;
}

.top .logo {
  width: 180px;
}

.top .logo a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top .logo img {
  height: auto;
  width: 100%;
}

.nav {
  z-index: 10;
  display: flex;
  align-items: center;
  height: 50px;
  position: relative;
  width: 100%;
}

.nav .nLi {
  height: 100%;
  position: relative;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav .nLi h3 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  line-height: 38px;
  font-size: 16px;
  position: relative;
  color: #fff;
  text-transform: capitalize;

  border-radius: 6px;
}

.nav .nLi.on h3 a {
  font-weight: bold;
}


.nav .nLi:hover h3 a {
  font-weight: bold;
}

.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner {
  height: auto;
}

.in_banner .swiper-slide a {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide a img{
  width: 100%;
  height: auto;
}

.in_banner .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  left: auto;
  bottom: 20px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.in_banner .swiper-pagination span {
  width: 13px;
  height: 13px;
  background: #fff;
  opacity: 1;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #AE0B2A;
}

.in_banner .swiper-button-next,.in_banner .swiper-button-prev{
  background: rgba(255, 255, 255, 0.3);
  width: 60px;
  height: 60px;
}

.in_banner .swiper-button-next::after,.in_banner .swiper-button-prev::after{
  color: #fff;
  font-size: 20px;
}

.in_box{
  background: #f5f5f5;
  padding: 20px 0px;
}

.in_box .container{
  display: flex;
}

.in_box .container a{
  flex: 1;
  height: 110px;
  margin: 0px 8px;
  box-shadow: 0px 8px 12px 0px rgba(217, 217, 217, 0.5);
  background: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
  padding: 15px;
}

.in_box .container a:hover{
  background: #AE0B2A;
  color: #fff;
}

.in_bt{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
}

.in_bt h2{
  font-size: 32px;
  color: #333;
}

.in_bt span a{
  font-size: 16px;
}

.in_bt1 h2{
  color: #fff;
}

.in_bt1 span a{
  color: #fff;
}


.in_box1{
  padding: 50px 0px;
  background: #f5f5f5;
  overflow: hidden;
}

.in_box1_nr{
  display: flex;
  justify-content: space-between;

}

.in_box1_nr .hd{
  width: 120px;
}

.in_box1_nr .hd ul li{
  display: block;
  font-size: 20px;
  color: #333;
  padding: 10px 0px;
  position: relative;
  cursor: pointer;
}

.in_box1_nr .hd ul li.on{
  color: #AE0B2A;
}

.in_box1_nr .hd ul li.on::after{
  width: 1000px;
  height: 2px;
  background:#AE0B2A;
  content: '';
  position: absolute;
  right: 130px;
  top: 20px;
}

.in_box1_nr .bd{
  width: calc(100% - 180px);
}

.in_box1_nr .bd ul{
  display: flex;
}

.in_box1_nr .bd ul li{
  width: 33.3%;
  box-sizing: border-box;

}

.in_box1_nr .bd ul li a{
  display: block;
  padding: 30px 20px;
}

.in_box1_nr .bd ul li h3{
  font-size: 30px;
  color: #333;
}

.in_box1_nr .bd ul li h4{
  font-size: 16px;
  padding-top: 5px;
}

.in_box1_nr .bd ul li h2{
  font-size: 16px;
  color: #333;
  display: block;
  height: 45px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制显示的行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 15px 0px;
}

.in_box1_nr .bd ul li .img{
  width: 100%;
  height: 0px;
  padding-top: 55%;
  position: relative;
}

.in_box1_nr .bd ul li .img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
}

.in_box1_nr .bd ul li p{
  font-size: 14px;
  display: block;
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 限制显示的行数为3 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 15px 0px;
}

.in_box1_nr .bd ul li span{
  font-size: 18px;
  color: #AE0B2A;
}

.in_box1_nr .bd ul li span i{
  transform: rotate(-45deg);
  margin-left: 10px;
}

.in_box1_nr .bd ul li a:hover{
  background: #AE0B2A;
}

.in_box1_nr .bd ul li a:hover h3,.in_box1_nr .bd ul li a:hover h4,.in_box1_nr .bd ul li a:hover h2,.in_box1_nr .bd ul li a:hover p,.in_box1_nr .bd ul li a:hover span{
  color: #fff;
}

.in_box2{
  padding: 50px 0px;
}

.in_box2 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -10px;
}

.in_box2 ul li{
  width: calc(16% - 20px);
  margin: 0px 10px;
  margin-bottom: 20px;
}

.in_box2 ul li a{
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #AE0B2A;
}

.in_box2 ul li a i img{
  max-width: 76px;
  max-height: 76px;
  width: auto;
  height: auto;
}

.in_box2 ul li a i img:nth-child(2){
  display: none;
}

.in_box2 ul li a p{
  font-size: 24px;
  color: #AE0B2A;
  padding-top: 10px;
}

.in_box2 ul li a:hover{
  background: #AE0B2A;
}

.in_box2 ul li a:hover i img:nth-child(1){
  display: none;
}

.in_box2 ul li a:hover i img:nth-child(2){
  display: block;
}

.in_box2 ul li a:hover p{
  color: #fff;
}

.in_box3{
  background: #AE0B2A;
  padding: 50px 0px;
}

.in_box3 ul{
  display: flex;
  flex-wrap: wrap;
  margin: 0px -12px;
}

.in_box3 ul li{
  width: calc(33.3% - 24px);
  margin: 0px 12px;
}

.in_box3 ul li a{
  background: #fff;
  display: block;
  height: 400px;
}

.in_box3 ul li a h2{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100% - 80px);
  background: #D51136;
}

.in_box3 ul li a h2 img{
  max-width: 95px;
  max-height: 95px;
  width: auto;
  height: auto;
}

.in_box3 ul li a h2 p{
  color: #fff;
  font-size: 18px;
  padding-top: 10px;
}

.in_box3 ul li a h3{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AE0B2A;
  font-size: 24px;
}

.in_box3 ul li a h3 i{
  margin-left: 10px;
}

.in_box3 ul li a:hover h3{
  text-decoration: underline;
}

.in_box4{
  padding: 50px 0px;
}

.in_box4 ul{
  display: flex;
  margin: 0px -10px;
}

.in_box4 ul li{
  width: calc(25% - 20px);
  margin: 0px 10px;
}

.in_box4 ul li a{
  display: block;
}

.in_box4 ul li a .img{
  width: 100%;
  height: 0px;
  padding-top: 70%;
  position: relative;
}

.in_box4 ul li .img img{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  object-fit: cover;
}

.in_box4 ul li a p{
  text-align: center;
  font-size: 18px;
  padding-top: 8px;
  color: #333;
}

.in_box4 ul li a:hover p{
  color: #AE0B2A;
}

.di{
  background: #AC012D;
  padding: 30px 0px;
}

.di .container{
  display: flex;
  justify-content: space-between;
}

.di .left{
  width:900px;
}


.di .left .lxwm{
  display: flex;
}

.di .left .lxwm div:nth-child(1){
  margin-right: 80px;
}

.di .left .lxwm h2{
  color: #fff;
  font-size: 18px;
  padding-bottom: 20px;
}

.di .left .lxwm h3{
  display: flex;
  flex-direction: column;
}

.di .left .lxwm h3 p{
  color: #fff;
  font-size: 16px;
  flex: auto;
  padding: 3px 0px;
}

.di .left .lxwm h3 p i{
  margin-right: 5px;
}

.di .yqlj{
  display: flex;
  font-size: 16px;
  color: #fff;
}

.di .yqlj a{
  color: #fff;
  margin: 0px 3px;

}

.di .right{
  width: 182px;
  height: auto;
}

.di .right img{
  width: 100%;
  height: auto;
}

.di1{
  background: #98052A;
  padding: 10px 0px;
  text-align: center;
  font-size: 12px;
  color: #fff;
}

.di1 a{
  color: #fff;
}

.ny_banner{
  height: 350px;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
  background-size: cover;
}

.ny_banner .container{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
}

.ny_lj{
  box-shadow: 0px 8px 12px 0px rgba(217, 217, 217, 0.5);
  background: rgba(255, 255, 255, 1);
  height: 80px;
}

.ny_lj .container{
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.ny_lj i{
  color: #84061E;
  margin-right: 10px;
}

.ny_lj a{
  color: #84061E;
  margin-right: 15px;
}

.about_bt{
  padding: 50px 0px;
  height: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_bt1{
  justify-content: flex-start;
}

.about_bt b{
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  left: 0px;
  top: 50%;
  z-index: 0;
}

.about_bt h2{
  background: #fff;
  font-size: 28px;
  padding: 0px 30px;
  color: #333;
  position: relative;
  z-index: 1;
}

.about_bt1 h2{
  padding-left: 0px;
  padding-right: 30px;
}

.about_nr{
  padding: 50px 0px;
  font-size: 16px;
  line-height:1.8;
}

.about_nr p{
  display: block;
  padding-bottom: 15px;
  text-indent: 30px;
}

.about_nr img{
  max-width: 100%;
  width: auto;
  height: auto;
}

.about_nr p img{
    margin-left: -30px;
}

.about_nr table{
  font-size: 14px;
  background: #fff;
  width: 100%;
}

.about_nr table tr td{
  border: 1px solid #ddd;
  padding: 5px;
}


.about_nr1{
  display: flex;
  align-items: flex-start;

}

.about_nr1 img{
  width: 700px;
  margin-right: 20px;
}

.about1{
  position: relative;
  padding-top: 50px;
  background: #f5f5f5;
}

.about1_left{
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding:0px 10%;
}

.about1_left .bt{
  height: 100px;
  font-size: 26px;
  color: #333;
}

.about1_left .bt img{
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.about1_left .nr{
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  padding: 80px 0px;
}

.about1_left .nr p{
  display: block;
  padding-bottom: 15px;
  text-indent: 30px;
}

.about1::after{
  width: 100%;
  height: calc(100% - 160px);
  background: #fff;
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.about1_right{
  width: 40%;
}

.about1_right img{
  width: 100%;
  height: auto;
}

.about2{
  background: #f5f5f5;
  padding: 50px 0px;
}

.about2_box{
  position: relative;
  padding: 0px 60px;
  padding-bottom: 30px;
}

.about2_box .swiper-slide{
  height: 180px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}


.about2_box .swiper-slide img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about2_box .swiper-pagination {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  left: 0px;
  bottom: 0px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.about2_box .swiper-pagination span {
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 1;
}

.about2_box .swiper-pagination span.swiper-pagination-bullet-active {
  background: #84061E;
}

.about2_box .swiper-button-next,.about2_box .swiper-button-prev{
  background: #84061E;
  width: 40px;
  height: 40px;
}

.about2_box .swiper-button-next::after,.about2_box .swiper-button-prev::after{
  color: #fff;
  font-size: 20px;
}

.dzgbpx_box{
  background: #f5f5f5;
  padding-bottom: 50px;
}

.dzgbpx_box ul{
  margin: 0px -15px;
  display: flex;
  flex-wrap: wrap;
}

.dzgbpx_box ul li{
  width: calc(20% - 30px);
  margin: 0px 15px;
  margin-bottom: 30px;
}

.dzgbpx_box ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 80px;
  box-sizing: border-box;
  border: 1px solid rgba(174, 11, 42, 1);
  background: rgba(255, 237, 240, 1);
  color: #84061E;
  font-size: 18px;
  padding: 0px 15px;
}

.dzgbpx_box ul li a:hover,.dzgbpx_box ul li a.on{
  background: rgba(174, 11, 42, 1);
  color: #fff;
}

.dzgbpx_box1{
  background: #f5f5f5;
  padding-bottom: 50px;
}

.dzgbpx_box1 ul li{
  background: #fff;
  margin-bottom: 30px;
}

.dzgbpx_box1 ul li a{
  display: flex;
  align-items: center;
  height: 70px;
}

.dzgbpx_box1 ul li a i{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  background: #AE0B2A;
  width: 70px;
  height: 70px;
}

.dzgbpx_box1 ul li a h3{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: 18px;
  background: #AE0B2A;
  width: 70px;
  height: 70px;
}

.dzgbpx_box1 ul li a h3 p{
  font-size: 14px;
}


.dzgbpx_box1 ul li a h2{
  width: calc(100% - 170px);
  box-sizing: border-box;
  padding: 0px 15px;
  font-size: 18px;
}


.dzgbpx_box1 ul li a span{
  width: 100px;
  color: #AE0B2A;
  font-size: 14px;
}

.fanye{
  text-align: center;
}


.fanye1 {
  text-align: center;
}

.fanye1 .layui-laypage{
    width: 100%;
    display: flex;
}

.fanye1 .layui-laypage a{
    width: 50%;
    height: 48px;
    line-height: 48px;
    font-size: 14px;
    color: #ae0b2a;
}

.news_detail{
  padding: 50px 0px;
  max-width: 1200px;
  margin: 0px auto;
}

.news_detail .bt{
  padding-bottom: 50px;
}

.news_detail .bt h2{
  text-align: center;
  font-size: 30px;
  color: #333;
}

.news_detail .nr{
  line-height: 1.8;
  font-size: 16px;
}

.news_detail .nr h2{
  font-size: 18px;
  padding-bottom: 15px;
}

.news_detail .nr p{
  display: block;
  padding-bottom: 15px;
  text-indent: 30px;
}

.news_detail .nr img{
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: -30px;
}

.news_detail .nr1{
  padding-top: 30px;
  text-align: center;
}

.news_detail .nr1 a{
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  background: rgba(13, 73, 142, 1);
  font-size: 18px;
}

.news_detail .nr1 a i{
  margin-right: 8px;
}

.news_detail .nr2{
  font-size: 15px;
}

.news_detail .nr2 p{
  text-indent: 0px;
}

.news_detail .nr2 table{
  width: 100%;
  border: 1px solid #fff !important;
}

.news_detail .nr2 table tr td{
  border: 1px solid #fff !important;
  padding: 8px 10px !important;
  background: rgba(255, 237, 240, 0.5) !important;
  color: #333;
}

.news_detail .nr2 table tr td:nth-child(1){
  background: rgba(174, 11, 42, 1) !important;
  color: #fff;
  text-align: center;
  width: 100px !important;
}

.news_detail .nr2 table tr td:nth-child(2){
  width: calc(50% - 50px);
}

.news_detail .nr2 table tr td:nth-child(3){
  width: calc(50% - 50px);
}

.news_detail .nr2 table tr td p{
  padding-bottom: 0px;
}

.news_detail2{
  padding-bottom: 50px;
}

.news_detail1 .nr{
  box-sizing: border-box;
  line-height: 1.8;
  font-size: 16px;
}


.news_detail1 ul li{
  padding: 5px 0px;
}

.news_detail1 ul li a{
  font-size: 16px;
  position: relative;
  padding-left: 15px;
  display: block;
  line-height: 1.6;
}

.news_detail1 ul li a::after{
  content: '';
  width: 5px;
  height: 5px;
  position: absolute;
  background: #333;
  border-radius: 50%;
  left: 0px;
  top: 10px;
}

.xcjx_box{
  background: #f5f5f5;
}

.xcjx_box ul{
  flex-wrap: wrap;
}

.xcjx_box ul li{
  margin-bottom: 30px;
}

.contact_box ul{
  display: flex;
  width: 100%;
  margin: 0px -15px;
}

.contact_box ul li{
  width: calc(33.3% - 30px);
  margin: 0px 15px;
  box-shadow: 0px 8px 12px 0px rgba(217, 217, 217, 0.5);
  background: rgba(255, 255, 255, 1);
  box-sizing: border-box;
  padding: 15px;
  color: #AE0B2A;
}

.contact_box ul li h2{
  font-size: 20px;
  padding-bottom: 10px;
}

.contact_box ul li h2 i{
  margin-right: 8px;
}

.contact_box ul li p{
  font-size: 16px;
}


.dzgbpx_box2{
  background: #f5f5f5;
  padding-top: 30px;
  padding-bottom: 50px;
}

.dzgbpx_box2 .container{
  display: flex;
  max-width: 1200px;
}

.dzgbpx_box ul{
  margin: 0px -15px;
  display: flex;
  flex-wrap: wrap;
}

.dzgbpx_box2 .container .left{
  width: 250px;
  box-shadow: 0px 0px 5px #eee;
}

.dzgbpx_box2 .container .left .bt{
  background: #AC012D;
  font-size: 24px;
  color: #fff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.dzgbpx_box2 .container .left ul{
  background: #fff;
  box-sizing: border-box;
}

.dzgbpx_box2 .container .left ul li{
  width: 100%;
  border-bottom: 1px solid #eee;
}

.dzgbpx_box2 .container .left ul li a{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  padding: 13px 15px;
}

.dzgbpx_box2 .container .left ul li a:hover,.dzgbpx_box2 .container .left ul li a.on{
  color: #AE0B2A;
  font-weight: bold;
}

.dzgbpx_box2 .container .right{
  flex: 1;
  padding-left: 60px;
}

.dzgbpx_box2 .container .right .bt{
  text-align: center;
  font-size: 25px;
  color: #333;
  padding-bottom: 20px;
}

.contact_nr{
  background: none;
  box-sizing: border-box;
  padding: 0px;
  max-width: 940px;
  margin: 0px auto;
  padding-bottom:40px;
}

.contact_nr table tr td{
  border: 1px solid #c5a364;
  text-align: center;
  color: #333;
}

.contact_nr p{
    padding-bottom: 0px;
}

.xyfg_box ul li:nth-child(1){
  width: calc(50% - 20px);
}

.xyfg_box ul li:nth-child(1) a .img{
  padding-top: 34%;
}

.news_box{
  padding-bottom: 0px;
}

.dzgbpx_box ul{
  justify-content: center;
}
