.home .banner {
  width: 100%;
  position: relative;
}
.home .banner video {
  display: block;
  object-fit: cover;
  width: 100%;
  max-height: 85vh;
}
.home .types {
  display: flex;
  justify-content: center;
  background: #F7F7F7;
}
.home .types a {
  display: block;
  color: #666666;
  font-size: 22px;
  position: relative;
  padding: 20px 0;
  margin: 0 40px;
}
.home .types a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  transition: all 600ms;
  height: 2px;
  background: #95251D;
}
.home .types a:hover::after {
  width: 100%;
}
.home .types .active::after {
  width: 100%;
}
.home .main .section1 {
  width: 84vw;
  margin: 5vw auto;
}
.home .main .section1 .t {
  display: flex;
  align-items: center;
}
.home .main .section1 .t p {
  font-size: 2.3vw;
  margin-left: 20px;
}
.home .main .section1 .two {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
.home .main .section1 .two a {
  display: block;
  position: relative;
  width: 48%;
  overflow: hidden;
}
.home .main .section1 .two a .bg {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .main .section1 .two a .nr {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 80%;
}
.home .main .section1 .two a .nr .t1 {
  display: flex;
  justify-content: space-between;
  color: white;
}
.home .main .section1 .two a .nr .t1 .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .main .section1 .two a .nr .t1 .icon img {
  display: block;
  margin-top: 20px;
}
.home .main .section1 .two a .nr .t1 .text {
  width: calc(98% - 50px);
}
.home .main .section1 .two a .nr .t1 .text .p1 {
  font-size: 2.5vw;
}
.home .main .section1 .two a .nr .t1 .text .p2 {
  margin: 15px 0;
  font-size: 1.4vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.home .main .section1 .two a .nr .t1 .text .des {
  font-size: 1.1vw;
  line-height: 1.6;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .main .section1 .two a .nr .more {
  width: 194px;
  background: #90251c;
  text-align: center;
  line-height: 55px;
  color: white;
  font-size: 1.2vw;
  margin-top: 100px;
}
.home .main .section1 .two a:hover .bg {
  transform: scale(1.05);
}
.home .main .section2 {
  padding: 60px 8vw 8vw 8vw;
  background: url("../images/nbg2.png") no-repeat;
  background-size: cover;
}
.home .main .section2 .t {
  display: flex;
  align-items: center;
}
.home .main .section2 .t p {
  font-size: 2.3vw;
  margin-left: 20px;
}
.home .main .section2 .d1 {
  width: 100%;
  background: url("../images/dbg.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-evenly;
  padding: 40px 0;
  margin: 50px 0;
}
.home .main .section2 .d1 .item {
  display: flex;
  align-items: center;
}
.home .main .section2 .d1 .item .text {
  margin-left: 30px;
}
.home .main .section2 .d1 .item .text .p1 {
  font-size: 3vw;
  color: white;
}
.home .main .section2 .d1 .item .text .p2 {
  font-size: 18px;
  color: white;
  font-weight: lighter;
  margin-top: 10px;
}
.home .main .section2 .list {
  width: 100%;
  margin: 40px 0;
}
.home .main .section2 .list a {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home .main .section2 .list a .l {
  width: 27%;
  background: #8B211B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 4%;
}
.home .main .section2 .list a .l .p1 {
  font-size: 32px;
  color: white;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.home .main .section2 .list a .l .line {
  width: 100%;
  height: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.39);
}
.home .main .section2 .list a .l .des {
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  line-height: 1.6;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.home .main .section2 .list a .l .more {
  margin-top: 80px;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
}
.home .main .section2 .list a .pic {
  width: 65%;
  overflow: hidden;
}
.home .main .section2 .list a .pic img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 600ms;
}
.home .main .section2 .list a:hover .pic img {
  transform: scale(1.05);
}
.home .main .section2 .three {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home .main .section2 .three a {
  display: block;
  width: calc(33% - 60px);
  background: white;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.16);
  padding: 30px;
  transition: all 600ms;
}
.home .main .section2 .three a .p1 {
  color: #333333;
  font-size: 22px;
  transition: all 600ms;
}
.home .main .section2 .three a .more {
  text-align: right;
  margin-top: 20px;
  color: #666666;
  font-size: 20px;
  transition: all 600ms;
}
.home .main .section2 .three a:hover {
  background: #95251D;
}
.home .main .section2 .three a:hover .p1, .home .main .section2 .three a:hover .more {
  color: white;
}
.home .main .section2 .three a:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .main .section2 .three a:last-child .p2 {
  font-size: 36px;
  letter-spacing: 5px;
  color: #333333;
  transition: all 600ms;
}
.home .main .section2 .three a:last-child:hover {
  background: #95251D;
}
.home .main .section2 .three a:last-child:hover .p2 {
  color: white;
}
@media screen and (max-width: 1440px) {
  .home .main .section2 .list a .l .more {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .home .types {
    justify-content: space-evenly;
  }
  .home .types a {
    margin: 0;
    font-size: 14px;
  }
  .home .main .section1 {
    width: 90%;
  }
  .home .main .section1 .t img {
    width: 30px;
  }
  .home .main .section1 .t p {
    font-size: 20px;
  }
  .home .main .section1 .two {
    flex-direction: column;
  }
  .home .main .section1 .two a {
    width: 100%;
    margin-bottom: 20px;
  }
  .home .main .section1 .two a .nr .t1 .icon img {
    margin-top: 9px;
  }
  .home .main .section1 .two a .nr .t1 .text .p1 {
    font-size: 20px;
  }
  .home .main .section1 .two a .nr .t1 .text .p2 {
    font-size: 18px;
    margin: 10px 0;
  }
  .home .main .section1 .two a .nr .t1 .text .des {
    font-size: 14px;
  }
  .home .main .section1 .two a .nr .more {
    margin-top: 30px;
  }
  .home .main .section2 {
    padding: 30px 5%;
  }
  .home .main .section2 .t img {
    width: 30px;
  }
  .home .main .section2 .t p {
    font-size: 20px;
  }
  .home .main .section2 .d1 {
    flex-direction: column;
    margin: 25px 0;
  }
  .home .main .section2 .d1 .item {
    width: 100%;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: center;
  }
  .home .main .section2 .d1 .item .text {
    margin-left: 0;
    margin-top: 20px;
  }
  .home .main .section2 .d1 .item .text .p1 {
    font-size: 20px;
  }
  .home .main .section2 .d1 .item .text .p2 {
    font-size: 16px;
  }
  .home .main .section2 .list {
    margin: 20px 0;
  }
  .home .main .section2 .list a {
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
  .home .main .section2 .list a .l {
    width: 90%;
    padding: 20px 5%;
  }
  .home .main .section2 .list a .l .p1 {
    font-size: 18px;
  }
  .home .main .section2 .list a .l .line {
    margin: 15px 0;
  }
  .home .main .section2 .list a .l .des {
    font-size: 16px;
  }
  .home .main .section2 .list a .pic {
    width: 100%;
  }
  .home .main .section2 .three {
    flex-direction: column;
  }
  .home .main .section2 .three a {
    width: 90%;
    padding: 30px 5%;
    margin-bottom: 20px;
  }
  .home .main .section2 .three a .p1 {
    font-size: 18px;
  }
  .home .main .section2 .three a .more {
    font-size: 16px;
  }
  .home .main .section2 .three a:last-child .p2 {
    font-size: 24px;
    letter-spacing: 3px;
  }
}
















/*NEWS*/
.news_main{width:1400px;margin-top:20px; margin-left: auto; margin-right: auto; max-width: 90%;
  display: flex;
}
/* .news-left{width:160px;float:left; padding:10px 20px;}
.news-left ul{padding:10px 0;margin:0;}
.news-left ul li{margin-bottom:2px;}
.news-left a{height:34px; line-height:34px;width:120px;display:block;padding-left:20px;font-size:14px;}
.news-left .active a{background:url(img/news_left_bg.png) no-repeat;color:#FFF;}
.news-left a:hover{background:url(img/news_left_bg.png) no-repeat;color:#FFF;}
.news-left-title{font-size:18px;}
.news-left-title span{font-size:14px;color:#999;padding-left:10px;} */
.news-left{
  width: 300px;
  padding-right: 30px; padding-top: 30px;
}
.news-right{flex: 1; overflow: hidden;}
.news-nav{padding:10px; text-align:right}
.news-image{width:790px;height:170px;}
.news-image-img{width:234px;float:left;height:154px;}
.news-image-text{width:536px;float:left;height:154px;padding-left:20px; overflow:hidden;}
.news-image-text p{padding:5px 0; line-height:2em;}
.news-list ul{margin:0;padding:10px 0;}
.news-list ul li{ line-height:30px;height:30px; padding-left:20px;background-image:url(img/arrow2.gif); background-position:0; background-repeat:no-repeat}
.news-list li a{color:#555;}
.news-list ul li span{float:right;color:#666;}

.news-list_1 ul{margin:0;padding:10px 0;}
.news-list_1 ul li{ line-height:30px;height:30px; padding-left:20px; background-position:0; background-repeat:no-repeat}
.news-list_1 li a{color:#555;}
.news-list_1 ul li span{float:right;color:#666;}
.news-list_1 li .span1{display:inline-block; width:500px; float:left}
.news-list_1 li .span2{display:inline-block; width:160px;float:left}
.news-list_1 li .span3{display:inline-block; width:auto;float:left}

.news-list_1 li .color1{color:#0068b7;}
.news-list_1 li .color2{color:#333;}
.news-list_1 li .color3{color:#999;}
.news-list_1 li a:hover{text-decoration:underline;}

.pagelist{width:100%;padding:10px 0; display: flex; justify-content: center;}
.pagelist a{display:block;float:left;width:20px;height:20px; text-align:center;font-size:16px; margin-right: 5px;}
.page-up{display:block;width:20px;height:20px; background-image:url(../images/page.jpg); background-repeat:no-repeat;}
.page-down{display:block;width:20px;height:20px; background-image:url(../images/page.jpg); background-repeat:no-repeat; background-position:-26px 0}


.news-content{width:770px;float:left;padding:10px 10px 30px 10px;}
.news-content-title{font-size:18px;font-weight:bold;padding:20px; text-align:center;}
.news-content-text{line-height:2em;}
.news-content-text p{text-indent:2em; line-height:2em;font-size:14px;color:#666;}

.title_right{
    width:752px;
    height:41px;
    background-image:url(../images/title_right_bg.png);
    background-repeat:repeat-x;
}
.title_right_logo{
    display:block;
    float:left;
}
.title_right_name{
    display:block;
    float:left;
    font-family:Microsoft YaHei;
    font-size:14px;
    color:#b40001;
    line-height:41px;
}
.title_right_location{
    display:block;
    float:right;
    font-family:Microsoft YaHei;
    font-size:12px;
    color:#aaa;
    width:auto;
    line-height:41px;
    margin-right:20px;
}

.companyList {
    padding: 20px 0 20px 80px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
    line-height: 1.6em;
    font-family: Microsoft YaHei;
    background-image: url(../images/small_icon.jpg);
    background-repeat: no-repeat
}

.companyList a {
    font-size: 16px;
    text-decoration: none;
    color: #444;
}

.companyList a:hover {
    text-decoration: underline;
}

.companyList span {
    color: #999;
}
.m-search{
}
.m-search .btn{
  background-color: #844d53;
  width: 100%;
  border: none;
  color: #fff;
  height: 40px;
}
.search-item{
  display: flex;
  margin-bottom: 10px;
}
.search-item span{
  color:#844d53;
  width: 6em;
}
.search-item .select,
.search-item .ipt{
  flex: 1;
  height: 26px;
  padding: 0 10px;
  margin: 0;
  border: 1px solid #999;
}

@media (max-width: 1000px) {
  .news_main{
    display: block;
  }
  .news-left{
    width: 100%;
    padding: 0;
  }
  .search-item{
    width: 100%;
  }
}