*{
    padding: 0;
    margin: 0;
}
ul, ol, li {
    list-style: none;  
    padding: 0;
    margin: 0;
}
html,body{
    width: 100%;
    height: 100%;
}
.home{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.home .content{
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.home .content .swiper {
    width: 100%;
}
.home .content .swiper .swiper-wrapper .swiper-slide{
    line-height: 0;
}
.home .content .swiper .swiper-pagination {
    bottom: 24px !important;
}
.home .content .swiper .swiper-pagination .swiper-pagination-bullet {
    background-color: #FFFFFF;
    opacity: 1;
}
.home .content .swiper .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #D3323C;
}
.home .content .navMenu{
    width: 100%;
    height: 70px;
    background: #101010;
    box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.1);
}
.home .content .navMenu .menu{
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
}
.home .content .navMenu .menu .item {
    flex: 1;
    display: flex;
    box-sizing: border-box;
    border-right: 1px solid #484848;
}
.home .content .navMenu .menu .item a{
    flex: 1;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
}
.home .content .navMenu .menu .item:last-child{
    border-right: 0;
}
.home .content .navMenu .menu .item:hover{
    border-right: 0;
}
.home .content .navMenu .menu .item a:hover{
    background: #A1161E;
    border-right: 0;
}
.home .content .navMenu .menu .item.menuItemOn{
    border-right: 0;
}
.home .content .navMenu .menu .item.menuItemOn a{
    background: #A1161E;
    border-right: 0;
}
.home .content .login{
    width: 1200px;
    height: 153px;
    margin: 24px auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.1);
}
.home .content .login .item{
    flex: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
}
.home .content .login .item span{
    font-size: 16px;
    color: #333333;
    cursor: pointer;
}
.home .content .login .item img{
    cursor: pointer;
    margin-bottom: 8px;
}
.home .content .headTitle{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.home .content .headTitle .name{
    font-weight: bold;
    font-size: 24px;
    color: #404040;
    margin-right: 10px;
}
.home .content .headTitle p{
    flex: 1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.home .content .headTitle p .line{
    flex: 1;
    height: 1px;
    background-color: #DADCDF;
    margin: 0 12px 0 5px;
}
.home .content .headTitle p .more{
    font-size: 16px;
    color: #999999;
    cursor: pointer;
    text-decoration: none; /* 去除默认的下划线 */
	
}
.home .content .headTitle p .more a{
    color: inherit;       /* 继承父元素的文字颜色，去除默认蓝色 */
    text-decoration: none; /* 去除默认的下划线 */
	
}
.home .content .headTitle p .more:hover{
    color: #A1161E;
}
.home .content .bidInfo{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    margin-bottom: 24px;
}
.home .content .bidInfo .left{
    min-width: 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.home .content .bidInfo .left .item{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 18px;
    padding: 0 20px 0 30px;
    height: 80px;
    border-radius: 5px;
    border: 1px solid #FFD8DA;
}
.home .content .bidInfo .left .item:last-child{
    margin-bottom: 0;
}
.home .content .bidInfo .left .item img{
    margin-right: 27px;
}
.home .content .bidInfo .left .item span{
    font-size: 16px;
    color: #333333;
}
.home .content .bidInfo .right{
    flex: 1;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-left: 20px;
}
.home .content .bidInfo .right .noticeList{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    background: #FFFFFF;
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    flex: 1;
}
.home .content .bidInfo .right .noticeList:last-child{
    margin-bottom: 0;
}
.home .content .bidInfo .right .noticeList .title{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #E3E9F5;
    
}
.home .content .bidInfo .right .noticeList .title p{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 18px;
    color: #333333;
    height: 63px;
    line-height: 63px;
    border-bottom: 3px solid #D3323C;
    margin-left: 24px;
}
.home .content .bidInfo .right .noticeList .title p img{
    margin-right: 10px;
}
.home .content .bidInfo .right .noticeList .list{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 17px 20px 17px 20px;
}
.home .content .bidInfo .right .noticeList .list .item{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-bottom: 15px;
}
.home .content .bidInfo .right .noticeList .list .item:last-child{
    margin-bottom: 0;
}
.home .content .bidInfo .right .noticeList .list .item .name{
    flex: 1;
    color: #333333;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;   
    overflow: hidden;
    text-overflow: ellipsis;
}
.home .content .bidInfo .right .noticeList .list .item .name:hover{
    color: #D3323C;
}
.home .content .bidInfo .right .noticeList .list .item .name img{
    margin-right: 6px;
}
.home .content .bidInfo .right .noticeList .list .item .name a{
    color: inherit;       
    text-decoration: none; 
}
.home .content .bidInfo .right .noticeList .list .item .time{
    color: #999999;
}
.home .content .policyRegulation{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.1);
    padding: 0 18px 0 18px;
    margin-bottom: 24px;
}
.home .content .policyRegulation .tabs{
    width: 100%;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 1px solid #E3E9F5;
    position: relative;
}
.home .content .policyRegulation .tabs .item{
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    padding: 0 14px;
    height: 53px;
    line-height: 53px;
    border-bottom: 2px solid transparent;
}
.home .content .policyRegulation .tabs .item:hover{
    color: #D3323C;
}
.home .content .policyRegulation .tabs .item.active{
    color: #D3323C;
    border-color: #D3323C;
}
.home .content .policyRegulation .tabs .more{
    color: #999999;
    cursor: pointer;
    position: absolute;
    right: 0;
}
.home .content .policyRegulation .tabs .more:hover{
    color: #D3323C;
}
.home .content .policyRegulation .list{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    margin-top: 18px;
}
.home .content .policyRegulation .list .item{
    width: calc(50% - 9px);
    height: 82px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 13px 18px;
    margin-bottom: 18px;
    margin-right: 18px;
    border-radius: 2px;
    border: 1px solid #E3E9F5;
}
.home .content .policyRegulation .list .item:nth-child(2n){
    margin-right: 0;
}
.home .content .policyRegulation .list .item .name{
    flex: 1;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;   
    overflow: hidden;
    text-overflow: ellipsis;
}
.home .content .policyRegulation .list .item .name a {
    color: inherit;       
    text-decoration: none; 
}


.home .content .policyRegulation .list .item .name:hover{
    color: #D3323C;
}
.home .content .policyRegulation .list .item .time{
    color: #999999;
}
.home .content .mainImgList{
    width: 1200px;
    margin: 0 auto;
}
.home .content .mainImgList .imgList {
    display: flex;
    flex-wrap: wrap;
}
.home .content .mainImgList .imgList .img {
    margin-bottom: 20px;
}
.home .content .mainImgList .imgList .img {
    position: relative;
    width: calc(16.65% - 10px);
    height: 380px;
    margin-left: 10px;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    color: #FFFFFF;
}
.home .content .mainImgList .imgList .img::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;         
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.59) 100%);
    pointer-events: none;  
}
.home .content .mainImgList .imgList .img a {
    display: block;
    height: 100%;
    text-decoration: none;
}
.home .content .mainImgList .imgList .imgs a {
    display: block;
    height: 100%;
    text-decoration: none;
}
.home .content .mainImgList .imgList .img a > img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    height: 380px;
    width: 400px;
}
.home .content .mainImgList .imgList .img a .imgTitle {
    bottom: 105px;
    font-size: 26px;
    opacity: 1;
    left: 0;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: #FFFFFF;
}
.home .content .mainImgList .imgList .img a .imgInfo {
    max-height: 72px;
    top: 216px;
    right: 38px;
    font-size: 16px;
    position: absolute;
    opacity: 0;
    z-index: 2;
    left: 50px;
    overflow: hidden;
    color: #FFFFFF;
}
.home .content .mainImgList .imgList .imgs a > img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.home .content .mainImgList .imgList .imgs a .imgTitle {
    bottom: 105px;
    font-size: 26px;
    opacity: 1;
    left: 0;
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 2;
    overflow: hidden;
    color: #FFFFFF;
}
.home .content .mainImgList .imgList .imgs a .imgInfo {
    max-height: 72px;
    top: 216px;
    right: 38px;
    font-size: 16px;
    position: absolute;
    opacity: 0;
    z-index: 2;
    left: 50px;
    overflow: hidden;
    color: #FFFFFF;
}
.home .content .mainImgList .imgList .img:first-child {
    margin-left: 0;
    width: calc(34.17% - 10px);
}
.home .content .mainImgList .imgList .imgActive a .imgTitle {
    left: 50px;
    text-align: left;
    opacity: 1;
}
.home .content .mainImgList .imgList .imgActive a .imgInfo {
    opacity: 1;
}
.home .content .mainImgList .imgList .imgsActive a .imgTitle {
    left: 50px;
    text-align: left;
    opacity: 1;
}
.home .content .mainImgList .imgList .imgsActive a .imgInfo {
    opacity: 1;
}
.home .content .mainImgList .imgList .img .com-case-click {
    position: relative;
    display: block;
    font-size: 0;
    text-decoration: none;
  }
.home .content .mainImgList .imgList .img .com-case-click .com-case-text {
    bottom: 0;
    height: 100%;
    position: absolute;
    color: #fff;
    left: 15px;
    width: calc(100% - 10px);
    z-index: 3;
    transition: all 0.5s ease;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-text .com-case-name {
    position: absolute;
    transition: all 0.7s ease;
    max-height: 93px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 16px;
    line-height: 31px;
    transform: translateY(-31px);
    bottom: 0px;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-text .com-case-intro {
    line-height: 26px;
    font-size: 16px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    transition: all 0.7s ease;
    max-height: 182px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-text .com-case-details {
    line-height: 26px;
    font-size: 16px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    transition: all 0.7s ease;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-img {
    width: 100%;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-text .com-case-intro:hover {
    opacity: 1;
    height: auto;
    bottom: 52px;
}
.home .content .mainImgList .imgList .img .com-case-click .com-case-mask {
    position: absolute;
    z-index: 2;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.8s ease;
}
.home .content .mainImgList .imgList .img:hover .com-case-click .com-case-text .com-case-name {
    transform: translateY(0px);
    bottom: 300px;
}
.home .content .mainImgList .imgList .img:hover .com-case-click .com-case-text .com-case-intro {
    bottom: 121px;
    opacity: 1;
}
.home .content .mainImgList .imgList .img:hover .com-case-click .com-case-text .com-case-details {
    bottom: 30px;
    opacity: 1;
}
.home .content .mainImgList .imgList .img:hover .com-case-click .com-case-mask {
    background-color: #D3323C;
    opacity: .8;
}  
.home .content .comprehensiveInfo{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    box-sizing: border-box;
    margin-bottom: 30px;
}
.home .content .comprehensiveInfo .block{
    flex: 1;
    box-shadow: 0px 0px 8px 1px rgba(0,0,0,0.1);
    padding: 18px 18px 0 18px;
}
.home .content .comprehensiveInfo .block .headTitle{
    width: 100%;
    margin-bottom: 0;
}
.home .content .comprehensiveInfo .block .headTitle .name{
    font-size: 18px;
    margin-left: 8px;
    margin-right: 0;
}
.home .content .comprehensiveInfo .block .headTitle p .more{
    font-size: 14px;
}
.home .content .comprehensiveInfo .block .headTitle p .line{
    margin: 0 12px;
}
.home .content .comprehensiveInfo .notice .ul{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.home .content .comprehensiveInfo .notice .ul .li{
    display: flex;
    box-sizing: border-box;
}
.home .content .comprehensiveInfo .notice .ul .li .roLine{
    display: flex;
    align-items: center;
    flex-direction: column;
    box-sizing: border-box;
    margin-right: 18px;
    top: 25px;
    position: relative;
}
.home .content .comprehensiveInfo .notice .ul .li:last-child .roLine .line{
    // display: none;
}
.home .content .comprehensiveInfo .notice .ul .li:last-child .title{
    // border-bottom: 0;
}
.home .content .comprehensiveInfo .notice .ul .li .roLine .ro{
    width: 8px;
    height: 8px;
    border: 1px solid #BFBFBF;
    border-radius: 50%;
}
.home .content .comprehensiveInfo .notice .ul .li .roLine .line{
    width: 1px;
    height: 100%;
    border-left: 1px dashed #CCCCCC;
}
.home .content .comprehensiveInfo .notice .ul .li .title{
    font-size: 16px;
    color: #333333;
    padding: 17px 0;
    border-bottom: 1px dashed #E3E9F5;
    cursor: pointer;
	width: 100%;
}
.home .content .comprehensiveInfo .notice .ul .li a{
    color: inherit;       
    text-decoration: none; 
}
.home .content .comprehensiveInfo .notice .ul .li .title:hover{
    color: #D3323C;
}
.home .content .comprehensiveInfo .operation{
    margin: 0 20px;
}
.home .content .comprehensiveInfo .operation .ul{
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin-top: 20px;
	padding-bottom: 7px;
}
.home .content .comprehensiveInfo .operation .ul .li{
    display: flex;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #E3E9F5;
}
.home .content .comprehensiveInfo .operation .ul .li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}
.home .content .comprehensiveInfo .operation .ul .li .video{
    min-width: 150px;
    height: 90px;
    background-image: url('../images_WZ/home//videoBac.png');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-right: 18px;
    cursor: pointer;
}
.home .content .comprehensiveInfo .operation .ul .li .video img{
	width:150px;
	height:90px;
	cursor: pointer; 
}

.home .content .comprehensiveInfo .operation .ul .li .text{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}
.home .content .comprehensiveInfo .operation .ul .li .text .name{
    font-size: 16px;
    color: #333333;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;   
    overflow: hidden;
    text-overflow: ellipsis;
}
.home .content .comprehensiveInfo .operation .ul .li .text .time{
    font-size: 14px;
    color: #999999;
}
.home .content .comprehensiveInfo .operation .ul .li .text .details{
    font-size: 14px;
    color: #999999;
    cursor: pointer;
}
.home .content .comprehensiveInfo .operation .ul .li .text .details:hover{
    color: #D3323C;
}
.home .content .comprehensiveInfo .download .dolTabs{
    display: flex;
    align-items: center;
    box-sizing: border-box;
    margin-top: 23px;
}
.home .content .comprehensiveInfo .download .dolTabs .item{
    font-size: 14px;
    color: #333333;
    padding: 5px 10px;
    border: 1px solid #E3E9F5;
    border-radius: 3px;
    margin-right: 10px;
    cursor: pointer;
}
.home .content .comprehensiveInfo .download .dolTabs .item:last-child{
    margin-right: 0;
}
.home .content .comprehensiveInfo .download .dolTabs .item:hover{
    background-color: #D3323C;
    border-color: #D3323C;
    color: #FFFFFF;
}
.home .content .comprehensiveInfo .download .dolTabs .item.active{
    background-color: #D3323C;
    border-color: #D3323C;
    color: #FFFFFF;
}
.home .content .comprehensiveInfo .download .ul .li .title{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;   
    overflow: hidden;
    text-overflow: ellipsis;
}
/* 操作视频弹窗 */
.summary-video-modal {
  padding: 0 !important;
  overflow: hidden;
}

.summary-video-player {
  width: 100%;
  background: #000;
}

.summary-video-player__video {
  display: block;
  width: 100%;
  max-height: 460px;
  outline: none;
}