@charset "UTF-8";

:root{
    --varClolr: #7A1A1C
}

body,p,h1,h2,h3,h4,h5,h6,ul,li,dl,dt,dd,pre{
    margin:0;
    padding:0;
    border:none;
    list-style:none;
    box-sizing: border-box;
}
body{
    font-family: "microsoft yahei","Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    min-width: 1200px;
}
a{
    color: #333;
    text-decoration:none;
    transition: .3s;
}
a:hover{
    color: var(--varClolr);
    text-decoration:none;
}
input,button{
    outline:0;
    border: none;
}
img{
    vertical-align: middle;
    border: 0;
    max-width: 100%;
    transition: .3s;
}
table{
    border-collapse: collapse;
}
table tr th, table tr td{
    padding: 5px 10px;
    border: 1px solid gray;
}
.lf, .fl{
    float: left;
}
.rt, .fr{
    float: right;
}
.container{
    width: 1400px;
    margin: 0 auto;
    position: relative;
}
.container:before,
.container:after{
    content: '';
    display: table;
    clear: both;
}
.ellipsis{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*头部*/
.header{
    background: var(--varClolr) url(../images/header.jpg) no-repeat center top;
}
.logo{
    float: left;
    height: 160px;
    display: flex;
    align-items: center;
}
.search{
    float: right;
    height: 160px;
    display: flex;
    align-items: center;
}
.search a{
    color: #fff;
    font-size: 18px;
}
.search span{
    color: #fff;
    margin: 0 10px;
}
.search form{
    position: relative;
    min-width: 40px;
    height: 40px;
}
.search input[type='text']{
    width: 280px;
    height: 40px;
    color: #fff;
    padding: 0 48px 0 15px;
    box-sizing: border-box;
    border: 1px solid #fff;
    background-color: transparent;
    border-radius: 20px;
    /*display: none;*/
}
.search input[type='submit']{
    position: absolute;
    top: 5px;
    right: 0;
    width: 40px;
    height: 30px;
    cursor: pointer;
    background: url(../images/search.svg) no-repeat center center;
}
.search input::placeholder {
    color: #fff;
}

/*导航栏*/
.nav{
    background: #600D0E;;
}
.menu{
    display: flex;
}
.menu>li{
    position: relative;
    float: left;
    flex-grow: 1;
}
.menu>li>a{
    display: block;
    line-height: 60px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
.menu .second-menu{
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(164, 21, 41, 0.8);
    display: none;
    z-index: 999;
}
.menu .second-menu a{
    display: block;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-top: 1px solid #ddd;
}
.menu .second-menu a:hover{
    background: var(--varClolr);
}
.toggle{
    display: none;
}

#swiper .swiper-slide{
    text-align: center;
}

/*主体*/
.section{
    position: relative;
    min-height: 500px;
    padding-bottom: 60px;
    background: url(../images/section-bg.svg) no-repeat center top;
}
.title{
    position: relative;
    height: 60px;
    line-height: 60px;
    margin: 30px 0;
    border-bottom: 1px solid #B5A687;
}
.title h2{
    color: var(--varClolr);
    font-size: 24px;
    position: relative;
}
.title h2::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 2px;
    background: var(--varClolr);
}
.title .rt{
    color: #999;
    font-size: 16px;
    position: relative;
    padding-right: 34px;
}
.title .rt:after{
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 24px;
    height: 24px;
    transform: translateY(-50%);
    background: var(--varClolr) url(../images/arrow.svg) no-repeat center center;
}
.title .rt:hover{
    color: var(--varClolr);
    font-weight: bold;
}

.section .wrapper{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/*工作动态*/
.job{
    width: 33%;
}
.job ul li:not(:last-of-type){
    margin-bottom: 44px;
    overflow: hidden;
}
.job ul li .date{
    float: left;
    width: 82px;
    height: 56px;
    color: #fff;
    text-align: center;
    background: var(--varClolr);
}
.job ul li .date h3{
    padding-top: 6px;
    font-size: 24px;
    line-height: 24px;
}
.job ul li>p{
    margin-left: 100px;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/*通知公告*/
.notice{
    width: 33%;
}
.notice ul li{
    padding-bottom: 15px;
    border-bottom: 1px dashed #E0E0E0;
}
.notice ul li:not(:last-of-type){
    margin-bottom: 20px;
}
.notice ul li p{
    font-size: 18px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.notice ul li span{
    color: #999;
    font-size: 16px;
    padding-left: 25px;
    background: url(../images/time.svg) no-repeat left center;
}

/*快捷入口*/
.fast{
    width: 28%;
}
.fast ul li a{
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 128px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    /*padding-left: 12%;*/
    /*font-size: 24px;*/
    /*background: url(../images/fast1-bg.svg) no-repeat;*/
    /*background-size: 100% 100%;*/
    /*box-sizing: border-box;*/
    overflow: hidden;
}
.fast ul li:nth-of-type(2) a{
    margin: 33px auto;
}
.fast ul li a:hover img{
    transform: scale(1.1);
}

/*服务指南*/
.service{
    width: 69%;
}
.service .box{
    display: flex;
    height: 260px;
    color: #fff;
    justify-content: space-between;
}
.service .box .guide{
    display: flex;
    justify-content: space-between;
    width: 66%;
}
.service .box .guide>div{
    width: 48.5%;
    padding: 30px 20px 30px 30px;
    box-sizing: border-box;
}
.service .box .guide .time{
    background: url(../images/kfsj.jpg) no-repeat;
    background-size: 100% 100%;
}
.service .box .guide h3{
    font-size: 19px;
    margin-bottom: 10px;
    padding-left: 45px;
    background: url(../images/time.png) no-repeat left center;
    background-size: contain;
}
.service .box .guide .time span{
    font-size: 14px;
    opacity: 0.8;
}
.service .box .guide .time h2{
    font-size: 20px;
}
.service .box .guide .time p{
    opacity: 0.6;
}
.service .box .guide .contact{
    /*color: var(--varClolr);*/
    /*border: 2px solid var(--varClolr);*/
    background: url(../images/lxfs.jpg) no-repeat;
    background-size: 100% 100%;
}
.service .box .guide .contact h3{
    margin-bottom: 20px;
    background-image: url(../images/tel.png);
}
.service .box .guide .contact h4{
    font-size: 30px;
    margin-bottom: 20px;
}
.service .box .guide .contact h5{
    font-size: 20px;
}
.service .box .guide .contact p{
    font-size: 20px;
    font-weight: bold;
}

.service .box .tip{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32%;
    background: #7A1A1C url(../images/cdxz-bg.svg) no-repeat;
    background-size: 100%;
}
.service .box .tip h3{
    color: #fff;
    font-size: 22px;
    margin-top: 20px;
}

/*常用下载*/
.download{
    width: 28%;
}
.download ul li{
    position: relative;
    padding-left: 15px;
    font-size: 18px;
}
.download ul li:not(:last-of-type){
    margin-bottom: 20px;
}
.download ul li:before{
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--varClolr);
    border-radius: 50%;
    transform: translateY(-50%);
}

/*尾部*/
.footer{
    padding: 40px 0;
    background: var(--varClolr);
}
.footer .container{
    display: flex;
    align-items: center;
}
.footer .container div{
    flex-grow: 1;
    color: #fff;
    line-height: 2em;
}
.footer .container div a{
    color: #fff;
}
.footer div a:hover{
    text-decoration: underline;
}

.side{
    float: left;
    width: 278px;
    margin-top: 30px;
}
.side p{
    height: 68px;
    line-height: 68px;
    padding-left: 40px;
    background: var(--varClolr);
}
.side p a{
    color: #fff;
    font-size: 24px;
}
.side p span{
    display: none;
}
.side li{
    position: relative;
}
.side li a{
    position: relative;
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    padding-left: 40px;
}
.side>ul>li>a{
    background: #E7E7E7;
    border-bottom: 1px solid #D4D4D4;
}
.side>ul>li span{
    position: absolute;
    top: 14px;
    right: 20px;
    color: #9D9696;
    font: 20px '宋体';
    font-weight: bolder;
    transition: .3s;
}
.side>ul>li span.on{
    transform: rotate(90deg);
}
.side .sub-menu li a{
    color: #666;
    background: #F6F6F6;
}
.side .sub-menu li a:hover,
.side .sub-menu li.on a{
    color: var(--varClolr);
}
.side .sub-menu{
    display: none;
}
.side ul .active .sub-menu{
    display: block;
}
.side ul .active>a{
    background: #fff;
    border-bottom-color: #fff;
}
.side ul .active>a:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: var(--varClolr);
}

.column{
    margin: 30px 0 40px 310px;
}

.bread{
    height: 67px;
    line-height: 67px;
    border-bottom: 1px solid #D6D6D6;
}
.bread h1{
    font-size: 24px;
    font-weight: normal;
}
.bread .rt{
    position: relative;
    color: #9A9A9A;
    font-size: 16px;
}
.bread .rt a{
    color: #9A9A9A;
}
.bread .rt a:hover{
    color: var(--varClolr);
}

.common-list li{
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
    font-size: 18px;
    border-bottom: 1px dotted #8C8C8C;
}
.common-list li:hover{
    background: #F6F6F6;
}
.common-list li span{
    float: right;
    color: #666;
}
.common-list li p{
    margin-right: 120px;
}
.common-list li a{
    position: relative;
    padding-left: 20px;
    text-decoration: none;
}
.common-list li a:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 0;
    width: 5px;
    height: 5px;
    background: #999;
    border-radius: 50%;
}
.common-list li a:hover:before{
    background: var(--varClolr);
}

.detail{
    margin-top: 20px;
}
.caption{
    text-align: center;
}
.caption h3{
    line-height: 30px;
    font-size: 22px;
    font-weight: 500;
    margin: 30px 0 5px;
}
.caption h4{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.caption p span{
    color: #999;
    margin: 0 8px;
}
.content{
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F0F0F0;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
    text-indent: 2em;
}
.content p img{
    margin-left: -2em;
}

.profile{
    margin-top: 20px;
    min-height: 300px;
    line-height: 1.75em;
    font-size: 16px;
    text-indent: 2em;
}
.profile p img{
    margin-left: -2em;
}

/*返回顶部*/
.toTop{
    position: fixed;
    right: 15px;
    bottom: -100px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 24px;
    font-weight: bolder;
    font-family: '黑体';
    background: rgba(0,0,0,.6);
    border-radius: 5px;
    transform: rotate(90deg);
    cursor: pointer;
    transition: .3s;
    z-index: 99;
}

@media screen and (max-width: 1400px){

    .container{
        width: 1200px;
    }
    .menu>li{
        width: 150px;
    }

}
		.dllist2{
			display: flex;
			margin-bottom: 20px;
		}
		.job .dllist2:last-child{
			margin-bottom:0px;
		}
		.ptbox {
			position: relative;
		}
		.ptbox .inner {
			overflow: hidden;
			padding-bottom: 61%;
			position: relative;
		}
		.ptbox .pic {
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
		}
		.ptbox .img {
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-position: center center;
			background-repeat: no-repeat;
			background-size: cover;
			transition: all 0.3s ease-out 0s;
		}
		
		.ptbox .pic:hover .img {
			transform: scale(1.1);
		}
		
		.ptbox .img a {
			display: block;
			height: 100%;
		}
		.ellipsis-3 {
		    overflow: hidden;
		    display: block;
		    display: -webkit-box;
		    -webkit-line-clamp: 2;
		    max-height: 3em;
		    -webkit-box-orient: vertical;
		}
		.dllist2 dt{
			width: 35%;
			line-height: 1;
			margin-right: 20px;
		}
		.dllist2 dd{
			flex: 1;
			overflow: hidden;
		}
		.dllist2 dd a{
			display: flex;
			height: 100%;
			flex-direction: column;
			justify-content: space-between;
			
		}
		.dllist2 dd p{
			color: #333;
			font-size: 18px;
			margin-bottom: 8px;
		}
		.dllist2 dd span{
			color: #888;
			display: block;
		}