.ml0 {
    margin-left: 0px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt60 {
    margin-top: 60px !important;
}

.show {
    display: inline-block !important;
}
@media screen and (max-width: 600px) {
    body{
        width: 1500px;
    }
}
header {
    width: 100%;
    height: 800px;
    margin: 0 auto;
    background: url('../../images/banner.jpg') top center no-repeat;
}

.con {
    width: 1200px;
    margin: 0 auto;
}

.con ul {
    width: 860px;
    margin: 0 auto;
}

.con ul li {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.con ul li b {
    color: #F02214;
    width: 150px;
    height: 30px;
    font-size: 18px;
    float: left;
    line-height: 30px;
    text-align: right;
}

.con ul li b>span {
    color: #F02214;
    width: 150px;
    height: 20px;
    font-size: 15px;
    float: left;
    line-height: 14px;
    text-align: right;
    font-weight: 400;
}

.con ul li b a {
    color: #666;
    width: 150px;
    height: 20px;
    font-size: 15px;
    float: left;
    line-height: 14px;
    text-align: right;
    font-weight: 400;
}

.con ul li b a span {
    color: #F02214;
}

#citySelect {
    width: 130px;
    height: 30px;
    background: #F6F6F6;
    font-size: 16px;
    line-height: 30px;
    border: none;
    border-radius: 10px;
    padding-left: 10px;
    color: #666666;
    outline: none
}

#areaSelect {
    width: 130px;
    height: 30px;
    background: #F6F6F6;
    font-size: 16px;
    line-height: 30px;
    border: none;
    border-radius: 10px;
    padding-left: 10px;
    margin-left: 20px;
    color: #666666;
    outline: none
}

label span {
    color: #EE2315;
    font-size: 16px;
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin-left: 20px;
    width: 60px;

}

input[type="radio"]+span::before {
    content: "\a0";
    /*不换行空格*/
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    border: 1px solid #EE2315;
    border-radius: 50%;
    text-indent: 5px;
    line-height: 1;
}

input[type="radio"]:checked+span::before {
    width: 12px;
    height: 12px;
    background-color: #EE2315;
    background-clip: content-box;
    padding: 2px;
}

input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
}

.con ul li .shuru {
    display: inline-block;
    width: 650px;
    height: 30px;
    line-height: 30px;
}

.con ul li .shuru input {
    width: 100%;
    height: 100%;
    border: none;
    line-height: 30px;
    color: #999;
    font-size: 16px;
    box-sizing: border-box;
    padding-left: 10px;
    outline: none;
    background: #F6F6F6;

}

.con ul li .tjdw {
    width: 450px;
    height: 30px;
    display: inline-block;
    margin-left: 37px;
    display: none;
}

.con ul li .tjdw span {
    display: inline-block;
    width: 200px;
    height: 30px;
    margin-left: 20px;
}

.con ul li .tjdw span input {
    width: 100%;
    height: 100%;
    border: none;
    line-height: 30px;
    color: #999;
    font-size: 16px;
    box-sizing: border-box;
    padding-left: 10px;
    outline: none;
    background: #F6F6F6;
}

.con ul li .down {
    width: 200px;
    height: 30px;
    display: inline-block;
    margin-left: 37px;
    color: #EE2315;
    line-height: 30px;
    font-size: 15px;
}

.con ul li .down a {
    color: #017AE5;
    margin-left: 20px;
}

.con ul li .shuru textarea {
    width: 100%;
    height: 150px;
    border: none;
    line-height: 30px;
    color: #999;
    font-size: 16px;
    box-sizing: border-box;
    padding: 10px;
    outline: none;
    background: #F6F6F6;
}

.con ul li .file {
    width: 100%;
    height: 150px;
}

.con ul li .button {
    height: 34px;
    width: 120px;
    background: #ED2213;
    color: #fff;
    border-radius: 10px;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    margin: 0 auto;
    cursor: pointer;

}

#file-list {
    display: flex;
    flex-wrap: wrap;
}

.file-item {
    width: 650px;
    height: 45px;
    /* 增加高度，以容纳标题和进度条 */
    margin-bottom: 20px;
    position: relative;
    /* 设置相对定位，方便子元素定位 */

}

.file-item img {
    width: 100%;
    height: 100px;
    /* 减少高度，以留出空间给标题和进度条 */
    object-fit: cover;
    display: none;
}

.progress-bar {
    width: 100%;
    height: 5px;
    background-color: lightgray;
    position: absolute;
    /* 设置绝对定位，放在底部 */
    bottom: 0;
    left: 0;
}

#file-list .progress-bar {
    width: 0;
    background-color: #6C9957;
    transition: width 0.3s ease-in-out;
}

/* 添加一个样式，用于显示文件标题 */
.progress-title {
    font-weight: bold;
    text-align: center;
    position: absolute;
    /* 设置绝对定位，放在进度条上方 */
    bottom: 5px;
    left: 0;
    right: 0;
}

.cns {
    display: none;
}

.tjBtn {
    display: none;
}

.cszp {
    display: none;
}



/* list */

.conBox {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.topNews {
    width: 1180px;
    height: 65px;
    margin: 0 auto;
    margin-top: 40px;
}

.topNews img {
    width: 115px;
    float: left;
}

.topNews a {
    display: block;
    font-size: 40px;
    width: 1065px;
    text-align: center;
    font-weight: bold;
    line-height: 60px;
    color: #333;
    float: left;
}

.lblistBox {
    width: 1240px;
    margin: 0 auto;
    margin-top: 75px;
    overflow: hidden;
}

.device {
    width: 640px;
    height: 360px;
    float: left;
    position: relative;
}

.device .arrow-left {
    background: url(../../images/icon/l_arrows.png) no-repeat 10px 16px;
    position: absolute;
    left: 0px;
    bottom: 160px;
    width: 55px;
    height: 55px;
    z-index: 9;
    cursor: pointer;
    background: #ccc;
}

.device .arrow-right {
    background: url(../../images/icon/r_arrows.png) no-repeat 30px 16px;
    position: absolute;
    right: 0px;
    bottom: 160px;
    width: 55px;
    height: 55px;
    z-index: 9;
    cursor: pointer;
    background: #ccc;
}

.device .swiper-container {
    width: 640px;
    height: 360px;
    overflow: hidden;
}

.device .content-slide {
    padding: 20px;
    color: #fff;
}

.title {
    font-size: 25px;
    margin-bottom: 10px;
}

.device .swiper-slide {
    position: relative;
    float: left;
}

.device .swiper-slide img {
    width: 640px;
    height: 360px;
}

.device .swiper-slide span {
    position: absolute;
    bottom: 0;
    left: 0px;
    text-align: left;
    font-size: 20px;
    height: 40px;
    color: #fff;
    width: 100%;
    line-height: 40px;
    z-index: 4;
    text-align: center;
}

.device .swiper-slide .titleBj {
    width: 100%;
    height: 40px;
    opacity: .6;
    filter: alpha(opacity=60);
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
}

.device .pagination {
    position: absolute;
    right: 20px;
    text-align: center;
    bottom: 50px;
    width: 50px;
    z-index: 9;
    color: #fff;
    font-size: 16px;
}

.device .pagination .index {
    font-size: 24px;
    color: #FF3234;
    font-weight: 600;
}

.device .swiper-pagination-switch {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 1px 2px #555 inset;
    margin: 0 3px;
    cursor: pointer;
}

.device .swiper-active-switch {
    background: #DF0001;
}

.newsBox {
    width: 555px;
    height: 360px;
    float: right;
}

.newsBox .more {
    width: 100%;
    height: 30px;
}

.newsBox .more a {
    display: block;
    float: right;
    height: 100%;
    width: 70px;
}

.newsBox ul {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 40px;
}

.newsBox ul li {
    width: 510px;
    height: 30px;
    margin-left: 20px;
    font-size: 20px;
    line-height: 30px;
    margin-top: 13px;
    height: 68px;
}

.newsBox ul li a {
    color: #333;
    padding-top: 10px;
    display: block;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.tzBox {
    width: 1240px;
    height: 300px;
    margin: 0 auto;
    margin-top: 145px;
}

.tzBox p {
    width: 610px;
    height: 100%;
    color: #fff;
    font-size: 22px;
    line-height: 44px;
    text-align: justify;
    float: left;
}

.tzBox ul {
    width: 580px;
    height: 100%;
    float: right;
}

.tzBox ul li {
    width: 100%;
    height: 75px;
    color: #666;
    font-size: 18px;
    line-height: 32px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 15px;
    padding: 5px 30px;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.btnBox {
    width: 1240px;
    height: 70px;
    margin: 0 auto;
    margin-top: 90px;
    margin-bottom: 200px;
}

.btnBox a {
    display: block;
    height: 100%;
    width: 260px;
    float: left;
    margin-left: 65px;
}

.btnBox a:first-child {
    margin-left: 0px;

}
.titleicon{
    width: 100%;
    text-align: center;
}

.listsBox {
    width: 1240px;
    height: 1000px;
    margin: 0 auto;
    margin-top: 75px;
    margin-bottom: 50px;
}


.listsBox .tab-container {
    width: 100%;
}

.listsBox .tab-header {
    height: 40px;

}

.listsBox .tab {
    border-top: 2px solid #F6F4F5;
    font-size: 30px;
    float: left;
    text-align: center;
    background: #F6F4F5;
    cursor: pointer;
}

.listsBox .tab:last-child {
    border-right: none;
}
.photoListsBox .tab {
    width: 20%;
}
.videoListsBox .tab {
    width: 33%;
}
.photoListsBox .active {
    background: #fff;
    border-top: 2px solid #F87700;
}
.videoListsBox .active {
    background: #fff;
    border-top: 2px solid #F87700;
}
.listsBox .conBox{
    width: 100%;
}
.listsBox .tab-content {
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: none;
    
}
.listsBox .conBox .style{
    display: block!important;
}
.listsBox .tab-content ul{
    width: 100%;
    overflow: hidden;
}
.listsBox .tab-content ul li{
    width: 390px;
    height: 360px;
    float: left;
    margin-left: 35px;
    margin-bottom: 30px;
}
.listsBox .tab-content ul li img{
    width: 100%;
    height: 256px;
}
.listsBox .tab-content ul li h5{
    width: 100%;
    height: 55px;
    line-height: 30px;
    font-size: 20px;
    color: #333;
    margin-top: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.listsBox .tab-content ul li a{
    height: 20px;
    line-height: 20px;
    font-size: 14px;
}
.photoListsBox .tab-content ul li a{
    color: #F97600;
}
.videoListsBox .tab-content ul li a{
    color: #F97600;
}
.listsBox .tab-content .more{
    width: 100%;
    height: 30px;
    text-align: right;
}

.con .title{
    width: 100%;
    height: auto;
}
.con .showBox{
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}
.con .showBox p{
    width: 100%;
    font-size: 20px;
    line-height: 40px;
    margin-bottom: 20px;
}
.con .showBox h4{
    width: 100%;
    font-size: 30px;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 20px;
    color: #EC2313;
}
.con .showBox h5{
    width: 100%;
    font-size: 24px;
    line-height: 40px;
    margin-bottom: 20px;
    color: #333333;
}



.footer{
    width: 100%;
    overflow: hidden;
    border-top: 1px solid #ccc;
    margin-top: 40px;
}
.footer .footCon{
    width: 1200px;
    height: 130px;
    margin: 0 auto;
}
.footer .footCon p{
    text-align: center;
    font-size: 12px;
    width: 100%;
    height: 14px;

}
.footer .footCon p a{
    color:#333;
}
.footer .footCon p.qualifications a{
    color:#333;
    padding: 0 10px;
}
.footer .footCon p.about a{
    color:#333;
    padding: 0 5px;
}
.footer .footCon p.about span{
    border-left:1px solid #666;
    height: 12px;
    display: inline-block;

}

