* {
  padding: 0;
  margin: 0;
  list-style: none;
}
.overflow-ellipsis{
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
  word-break: break-all;
  -webkit-line-clamp: 3; /* 显示两行 */
  line-clamp: 3; /* 适用于部分浏览器 */
}

/* 顶部导航 */
.home >nav {
  width: 100%;
  height: 40px;
  background-color: #af0a1f;
}
.home >nav .nav-title {
  width: 1200px;
  height: 100%;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  color: #fff;
  font-size: 15px;
}

/* 头部 */
.home >header .header-title {
  width: 1200px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto; 
}
.home >header .header-title a >img {
  width: 150px;
  height: 45px;
}
.home >header .header-title >ul {
  display: flex;

}
.home >header .header-title >ul >li {
  margin: 0 20px;
}
.home >header .header-title >ul >li >a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

#islogin a{
  color: red;
  text-decoration: none; /* 去掉下划线 */
}

/* 轮播图 */
.home >section {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.home >section .swiper {
  width: 1920px;
  height: 240px;
  margin: 0 auto;
}

/* 内容区 */
.home >main {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 10px; 
  /* border-bottom: 1px solid #DCDCDC; */
  margin-bottom: 30px;
}
/* 第一列内容区 */
.home >main .col-one {
  width: 360px;
  height: 100%;
}
.home >main .col-one .col-one-image {
  width: 100%;
  height: 280px;
  margin-bottom: 20px;
  /* border-bottom: 2px solid #ececec; */
}
.home >main .col-one .col-one-image >img {
  width: 100%;
  height: 100%;
}
.home >main .col-one .col-one-tabs {
  width: 100%;
  border-top: 3px solid #B10018;

}
.home >main .col-one .col-one-tabs .tabs {
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: flex;
  position: relative;
}
.home >main .col-one .col-one-tabs .tabs li {
  margin: 0 10px;
  cursor: pointer;
  width: 70px;
}
.home >main .col-one .col-one-tabs .tabs .active {
  color: #B10018;
}
.home >main .col-one .col-one-tabs .tabs li >img {
  width: 30px;
  height: 30px; 
  position: absolute;
  top: 50%;
  padding-left: 15px;
  transform: translateY(-50%);
}
.home >main .col-one .col-one-tabs .list {
  height: 632px;
  overflow-y: auto;
}
.home >main .col-one .col-one-tabs .list li {
  width: 100%;
  height: auto;
  padding: 10px 0;
  border-bottom: 1px solid #CECECE;
}
.home >main .col-one .col-one-tabs .list li a {
  color: #333;
  text-decoration: none
}
.home >main .col-one .col-one-tabs .list li .news-top {
  height: 30px;
  line-height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 10px;
  color: #B10018;
  font-size: 14px;
}
.home >main .col-one .col-one-tabs .list li .news-txt {
  color: #333;
  font-size: 12px;
  line-height: 20px;
  padding-top: 10px;
}
.home >main .col-one .col-one-tabs .list li .news-top .expall {
  width: 44px;
  height: 15px;
  background: rgba(51,51,51,0);
  border: 1px solid #CECECE;
  text-align: center;
  line-height: 15px;
  font-size: 12px;
  color: #333333;
  cursor: pointer;
}




/* 中间内容区 */
.home >main .col-two {
  flex: 1;
  height: 100%;
  margin: 0 10px;
}
.home >main .col-two .col-two-top {
  width: 100%;
  height: 282px;
  border-top: 5px solid #B10018;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.home >main .col-two .col-two-top header {
  height: 44px;
  line-height: 44px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #D0D0D0;
}
.home >main .col-two .col-two-top header >p >span {
  cursor: pointer;
  display: inline-block;
  margin-right: 20px;
  font-weight: 700;
}
.home >main .col-two .col-two-top header >p .active {
  color: #B10018;
}
.home >main .col-two .col-two-top ul {
  display: flex;
  padding: 5px 0;
}
.home >main .col-two .col-two-top ul li {
  width: 85px;
  height: 31px;
  line-height: 31px;
  text-align: center;
  background-color: #EAEAEA;
  font-size: 14px;
  color: #333;
}
.home >main .col-two .col-two-top ul >.active {
  background: #B10018;
  color: #fff;
}
.home >main .col-two .col-two-top table {
  width: 100%;
  border: 1px solid #EAEAEA;
  border-collapse: collapse; /* 移除表格内边框间的间隙 */
  font-size: 14px;
}
.home >main .col-two .col-two-top table .lasttd {
  color: #B10018;
}
.home >main .col-two .col-two-top table tr:nth-child(even) {
  background: #EAEAEA;
}
.home >main .col-two .col-two-top table td {
  text-align: center;
  height: 30px;
}
.home >main .col-two .col-two-top table th {
  height: 40px;
  font-weight: 400;
}

.home >main .col-two .col-two-tabs {
  width: 100%;
  border-top: 3px solid #B10018;
}
.home >main .col-two .col-two-tabs .tabs {
  width: 100%;
  height: 40px;
  line-height: 40px;
  display: flex;
  justify-content: space-between;
}
.home >main .col-two .col-two-tabs .tabs li {
  /* margin: 0 20px;  */
  cursor: pointer;
  font-weight: 18px;
  color: #333;
  font-weight: 700;
}
.home >main .col-two .col-two-tabs .tabs .active {
  color:#B10018;
}
.home >main .col-two .col-two-tabs table {
  width: 100%;
  overflow-y: auto;
  border-collapse: collapse; /* 移除表格内边框间的间隙 */
}

.home >main .col-two .col-two-tabs table thead th {
  background: #EAEAEA;
}
.home >main .col-two .col-two-tabs table td {
  text-align: center;
  height: 35px;
  font-size: 14px;
}
.home >main .col-two .col-two-tabs table th {
  height: 35px;
  font-weight: 400;
  font-size: 14px;
}
.home >main .col-two .col-two-tabs table .lasttd {
  color: #B10018;
}
.home >main .col-two .col-two-tabs table .zhang {
  color: #b3323c;
}
.home >main .col-two .col-two-tabs table .die {
  color: #35a82a;
}


/* 右侧内容区 */
.home >main .col-three {
  width: 360px;
  height: 100%;
}
.home >main .col-three .col-three-top {
  width: 100%;
  height: 280px;
  border: 1px solid #CCCCCC;
  margin-bottom: 20px;
}
.home >main .col-three .col-three-top .tips {
  height: 30px;
  line-height: 30px;
  font-weight: 400;
  font-size: 12px;
  color: #B10018;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}
.home >main .col-three .col-three-top .col-three-top-tabs {
  height: 30px;
  line-height: 30px;
  display: flex;
  background-color: #f7f7f7;
  font-size: 14px;
}
.home >main .col-three .col-three-top .col-three-top-tabs >li {
  width: 70px;
  text-align: center;
}
.home >main .col-three .col-three-top .col-three-top-tabs .active {
  border-top: 3px solid #B10018;
  background-color: #fff;
}
.home >main .col-three .col-three-top .kanban {
  background-color: #f7f7f7;
  margin: 0 10px;
}
.home >main .col-three .col-three-top .kanban >li {
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-around;
  height: 30px;
  line-height: 30px;
}
.home >main .col-three .col-three-top .kanban >li >span {
  display: block;
  width: 25%;
  text-align: center;
}
.home >main .col-three .col-three-top .kanban >li:first-child {
  font-size: 12px;
}

.home >main .col-three .col-three-top #echartsmain {
  width: 100%;
  height: 160px;
}




.home >main .col-three .col-three-bottom {
  width: 100%;
  border-top: 3px solid #B10018;
}
.home >main .col-three .col-three-bottom h4 {
  height: 40px;
  line-height: 40px;
}
.home >main .col-three .col-three-bottom table {
  width: 100%;
  overflow-y: auto;
  border-collapse: collapse; /* 移除表格内边框间的间隙 */
}

.home >main .col-three .col-three-bottom table thead th {
  background: #EAEAEA;
}
.home >main .col-three .col-three-bottom table td {
  text-align: center;
  height: 25px;
  font-size: 14px;
}
.home >main .col-three .col-three-bottom table th {
  height: 25px;
  font-weight: 400;
  font-size: 14px;
}
.home >main .col-three .col-three-bottom table .lasttd {
  color: #B10018;
}
.home >main .col-three .col-three-bottom .oneimg {
  width: 100%;
  height: 200px;
  /* background-color: #B10018; */
  margin-bottom: 10px;
}
.home >main .col-three .col-three-bottom .maps-content {
  width: 360px;
  height: 385px;
  margin-top: 10px;
}



/* 展示合作商 */
.home aside {
  width: 1200px;
  /* height: 180px; */
  margin: 0 auto;
  border-bottom: 1px solid #DCDCDC;
  border-top: 1px solid #DCDCDC;
  padding: 30px 0;
  box-sizing: border-box;
  margin-bottom: 20px ;
}
.home aside ul {
  display: flex;
  flex-wrap: wrap;
}
.home aside ul li {
  width: 128px;
  height: 128px;
  border-right: 1px solid #DCDCDC;
  padding: 0 35px;
  position: relative;
}
.home aside ul li:last-child {
  border-right: none;
}
/* .home aside ul li .hideQrcode{
  display: none!important;
  position: absolute;
  left: 50%;
  top: -70%;
  transform: translateX(-50%);
} */
/* .home aside ul li.hideQrcode{
  display: none!important;
} */
.home aside ul li:hover .hideQrcode{
  display: block!important;
}
.home aside ul li:hover .Qrcode{
  display: none!important;
}



/* 供求 */
.home .gongqiu {
  width: 1200px;
  height: 270px;
  margin: 0 auto 20px;
  display: flex;
  
}
.home .gongqiu .gongqiu-left1 {
  flex: 1;
  margin-right: 18px;
  border-top: 5px solid #B10018;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  display: flex;
  width: 880px;
  height: 270px;
  overflow: hidden;
}
.home .gongqiu .gongqiu-left1 >div {
  width: 50%;
  box-sizing: border-box;
}
.home .gongqiu .gongqiu-left1 >div h2 {
  height: 53px;
  line-height: 53px;
  text-align: center;
  border-bottom: 1px solid #E5E5E5; 
}
.home .gongqiu .gongqiu-left1 .swiperGong,
.home .gongqiu .gongqiu-left1 .swiperQiu {
  overflow: hidden;
  height: 216px;
}
.home .gongqiu .gongqiu-left1 .swiper-slide {
  width: 100%;
}
.home .gongqiu .gongqiu-left1 >div:first-child {
  border-right: 1px solid #E5E5E5;
}
.home .gongqiu .gongqiu-left1 >div ul {
  display: flex;
  flex-wrap: wrap;
  
}
.home .gongqiu .gongqiu-left1 >div ul li {
  width: 50%;
  height: 108px;
  box-sizing: border-box;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 10px;
}
.home .gongqiu .gongqiu-left1 >div ul li:nth-child(even) {
  border-right: none;
}
.home .gongqiu .gongqiu-left1 >div ul li >p {
  font-size: 12px;
  color: #333;
  width: 100%;
  height: 20px;
  line-height: 20px;
  background-color: #FFE6E6;
  margin-bottom: 5px;
  text-align: center;
}
.home .gongqiu .gongqiu-left1 >div ul li >p:first-child {
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}







.home .gongqiu .gongqiu-left {
  flex: 1;
  margin-right: 10px;
  border-top: 3px solid #B10018;
  border-left: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  display: flex;
}
.home .gongqiu .gongqiu-left >div {
  width: 50%;
  box-sizing: border-box;

}
.home .gongqiu .gongqiu-left >div h2 {
  height: 53px;
  line-height: 53px;
  text-align: center;
  border-bottom: 1px solid #E5E5E5; 
}
.home .gongqiu .gongqiu-left >div:first-child {
  border-right: 1px solid #E5E5E5;
}
.home .gongqiu .gongqiu-left >div >ul {
  display: flex;
  flex-wrap: wrap;

}
.home .gongqiu .gongqiu-left >div >ul li {
  width: 50%;
  height: 108px;
  box-sizing: border-box;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
  padding: 20px 10px;
}
.home .gongqiu .gongqiu-left >div >ul li:nth-child(even) {
  border-right: none;
}
.home .gongqiu .gongqiu-left >div >ul li >p {
  font-size: 12px;
  color: #333;
  width: 100%;
  height: 20px;
  line-height: 20px;
  background-color: #FFE6E6;
  margin-bottom: 5px;
  text-align: center;
}
.home .gongqiu .gongqiu-left >div >ul li >p:first-child {
  font-size: 14px;
  color: #333;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}




.home .gongqiu .gongqiu-right {
  width: 360px;
  height: 270px;
  /* border: 1px solid #ccc; */
}
.home .gongqiu .gongqiu-right img {
  width: 100%;
  height: 100%;
}

.home .gongqiu-two {
  width: 1200px;
  height: 200px;
  margin: 0 auto 20px;
  display: flex;
  
}
.home .gongqiu-two .gongqiu-left {
  flex: 1;
  margin-right: 10px;
  /* border: 1px solid #ccc; */
  /* width: 830px; */
}
.home .gongqiu-two .gongqiu-left img {
  width: 100%;
  height: 100%;
}
.home .gongqiu-two .gongqiu-right {
  width: 360px;
  height: 200px;
  /* background: linear-gradient(0deg, #F01C00, #FF7831); */
}





/* 底部 */

.home footer {
  width: 100%;
  height: 145px;
  background-color: #bf402e;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
  color: #fff;
  line-height: 24px;
}
.home footer p:first-child {
  margin-bottom: 10px;
}