@charset "utf-8";a,abbr,acronym,address,applet,b,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,em,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{
    margin:0;
    padding:0;
}
li{
    list-style: none;
}

@font-face{
    font-family:myFont;
    src:url('../font/Alibaba-PuHuiTi-Light.ttf'),url('../font/Alibaba-PuHuiTi-Light.woff');
}
@font-face{
    font-family:myFont1;
    src:url('../font/Alibaba-PuHuiTi-Regular.ttf'),url('../font/Alibaba-PuHuiTi-Regular.woff');
}
@font-face{
    font-family:myFont2;
    src:url('../font/Alibaba-PuHuiTi-B.ttf'),url('../font/Alibaba-PuHuiTi-B.woff');
}
@font-face{
    font-family:myFont3;
    src:url('../font/Alibaba-PuHuiTi-H.ttf'),url('../font/Alibaba-PuHuiTi-H.woff');
}
@font-face{
    font-family:myFont4;
    src:url('../font/Alibaba-PuHuiTi-Medium.ttf'),url('../font/Alibaba-PuHuiTi-Medium.woff');
}
.web-font{font-family:myFont;}
.web-font1{font-family:myFont1;}
.web-font2{font-family:myFont2;}
.web-font3{font-family:myFont3;}
.web-font4{font-family:myFont4;}
body,button,input,select,textarea,a,p,span,b,i,div,h1,h2,h3,h4,h5,h6,dl,dt,dd{
	font-family:myFont1;
}


/*banner*/
.index-banner{
    width: 100%;
}
.index-banner img.swiper_img{
    object-fit: cover;
    height: 100%;
}
.index-banner .swiper-container{
    width: 100%;
    height: 100vh;
}

.index-banner img.swiper_img,.ny-banner img{
    width: 100%;
    display: block;
}
.index-banner .swiper-slide{
    position: relative;
	background-position: center;
	background-size: cover !important;
	justify-content: center;
	align-items: center;
	display: flex;
}
.index-banner .swiper-slide img.swiper_img{
    width: 100%;
    min-width: 1200px;
}
.index-banner .banner-text{
    width: 100%;
    position: absolute;
    left: 0;
    box-sizing: border-box;
    opacity: 0;
    color:#fff;
    display: none;
}
.index-banner .swiper-slide-active .banner-text{
	-webkit-animation: fadeInLeft 1.4s ease-in-out;
	animation: fadeInLeft 1.4s ease-in-out;
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
	animation-fill-mode: forwards;
	-webkit-animation-fill-mode: forwards;
}
.index-banner .banner-text img{
    margin-bottom: 40px;
}
.index-banner .banner-text h5{
    font-size: 28px;
    margin-left: 90px;
}
.index-banner .banner-text p{
    position: relative;
    padding-left: 90px;
    font-size: 90px;
    font-family: myFont2;
}
.index-banner .banner-text p::before{
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 27px;
    background:#ffffff;
}



/* 按钮 */
.index-banner .swiper-pagination .swiper-pagination-bullet{
	width: 10px;
	height: 10px;
	background:#fff;
	border-radius: 50px;
    margin:0 9px !important;
    opacity: 1;
}
.index-banner .swiper-pagination .swiper-pagination-bullet-active{
	position: relative;
	width: 40px;
	background:#c1282d;
}

.index-banner .swiper-slide img.swiper_img{
	width: 100%;
	height: 100%;
	animation:mymove 8s infinite;
	-webkit-animation:mymove 8s infinite; /*Safari and Chrome*/
	animation-direction:alternate;/*轮流反向播放动画。*/
	animation-timing-function: ease-in-out; /*动画的速度曲线*/
	-webkit-animation:mymove 8s infinite;
	-webkit-animation-direction:alternate;/*轮流反向播放动画。*/
	-webkit-animation-timing-function: ease-in-out; /*动画的速度曲线*/
	animation-delay:0.1s;
	-webkit-animation-delay:0.1s; /* Safari 和 Chrome */
}
@keyframes mymove

{

	0%{

	transform: scale(1);  /*开始为原始大小*/

	}

	100%{

		transform: scale(1.1); /*放大1.1倍*/

	}



}



@-webkit-keyframes mymove /*Safari and Chrome*/

{

	0%{

	transform: scale(1);  /*开始为原始大小*/

	}

	100%{

		transform: scale(1.1); /*放大1.1倍*/

	}

}

.grid-2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.grid-3{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}


/* 单页 */
.ny-banner{
    width: 100%;
    height: 550px;
}
.ny-banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ny-banner .banner-text{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    color:#fff;
    display: none;
}
.ny-banner .banner-text .w75{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 20px;
}
.ny-banner .banner-text .w75 h1{
    font-size: 42px;
    margin-bottom: 5px;
}

/* 面包屑导航 */
.crumb-content{
    margin-top: -40px;
    position: relative;
    z-index: 5;
}
.crumb-box{
    background:#fff;
    display: flex;
    height: 80px;
}
.crumb-box li{
    width: 25%;
    height: 100%;
    text-align: center;
    line-height: 80px;
    position: relative;
}
.crumb-box li a{
    display: block;
    font-size: 20px;
    color:#333;
    transition: .4s;
}
.crumb-box li:hover,
.crumb-box li.active{
    background:#f2e6e6;
}
.crumb-box li:hover a,
.crumb-box li.active a{
    color:#b3050b;
}
.crumb-box li::before{
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background:#b3050b;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: .4s;
}
.crumb-box li:hover::before,
.crumb-box li.active::before{
    width: 100%;
}

/* 内页标题 */
.column-title{
    margin-bottom: 40px;
}
.column-title .text{
    font-size: 32px;
    padding-left: 24px;
}
.column-title .text h2{
    font-size: 37px;
    font-family: 'Noto Serif CJK SC', 'Noto Serif CJK', 'Source Han Serif SC', 'Source Han Serif', source-han-serif-sc, serif;
    font-weight: bold;
}
.column-title .text i{
    font-size: 24px;
    margin-left: 10px;
    margin-right: 10px;
    font-style: italic;
}
.column-title .text span{
    font-size: 20px;
    color: #686868;
}
.column-title img{
    position: absolute;
    top: -8px;
    left: 0;
    opacity: .3;
    /* animation: animate-mark 2s infinite ease; */
}
/* @keyframes animate-mark {
    0% {
        opacity: 0;
        transform: translate(0, 0);
    }

    100% {
        opacity: 1;
        transform: translate(0.1rem, 0);
    }
} */


/* 主体内容 */
.content-nr{
    font-size: 17px;
    line-height: 35px;
    color:#333;
}
.content-nr img{
    width: 100%;
    margin: 15px auto;
}

/* 律师列表 */
.team-box{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 35px 35px;
}
.team-box dl{
    background: #eeeeee;
    transition: .4s;
}
.team-box dl a{
    display: flex;
    justify-content: space-between;
}
.team-box dl dt{
    width: 52%;
    padding: 35px 25px 35px 25px;
    color:#333;
}
.team-box dl dt h4{
    font-size: 22px;
    transition: .4s;
}
.team-box dl dt h5{
    font-size: 16px;
    border-bottom: 1px solid #d5d5d5;
    padding-bottom: 30px;
    margin-bottom: 30px;
    margin-top: 4px;
}
.team-box dl dt p{
    font-size: 18px;
    color:#666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
.team-box dl dd{
    width: 45%;
    height: 310px;
    overflow: hidden;
}
.team-box dl dd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}
.team-box dl:hover{
    background: #dcdcdc;
}
.team-box dl:hover dt h4{
    color:#860308;
}

/* 经典案例 */
.case-box{
    grid-gap: 30px 30px;
}
.case-box dl{
    background: #fff;
    border: 1px solid #e5e5e5;
    color:#333;
    transition: .4s;
}
.case-box dl a{
    padding: 35px;
    display: block;
}
.case-box dl dt{
    font-size: 21px;
    color:#333;
    line-height: 30px;
}
.case-box dl dd{
    font-size: 16px;
    color:#999999;
    line-height: 25px;
}
.case-box dl h5{
    margin: 20px 0;
    font-size: 18px;
}
.case-box dl h5 .iconfont{
    color:#bf2329;
    font-weight: bold;
    margin-right: 10px;
}
.case-box dl p{
    margin-top: 25px;
    color:#666;
    font-size: 20px;
}
.case-box dl p .iconfont{
    width: 29px;
    height: 29px;
    border: 1px solid #bf2329;
    text-align: center;
    line-height: 29px;
    color:#bf2329;
    font-size: 20px;
    display: inline-block;
    margin-right: 10px;
}
.case-box dl:hover{
    border: 1px solid #bf2329;
}

/* 业务领域 */
.business-box,
.honor-box{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    grid-gap: 20px 20px;
}
.business-box dl{
    background: #efefef;
    text-align: center;
    transition: .4s;
}
.business-box dl a{
    display: block;
    padding: 40px 20px;
}
.business-box dl dt{
    height: 80px;
    line-height: 80px;
}
.business-box dl dt .iconfont{
    font-size: 53px;
    color:#b3050b;
}
.business-box dl dd{
    font-size: 19px;
    color:#333;
    font-family: myFont4;
}
.business-box dl:hover{
    background: #b3050b;
}
.business-box dl:hover .iconfont,
.business-box dl:hover dd{
    color:#fff;
}

/* 党建荣誉 */
.honor-box dl dt{
    padding: 26px;
    background-color: #e8e8e8;
    position: relative;
}
.honor-box dl dt .img{
    position: relative;
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 75%;
    overflow: hidden;
}
.honor-box dl dt img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: .4s;
}
.honor-box dl dd{
    padding: 0 10px;
    line-height: 50px;
    background:#ababab;
    color:#fff;
    text-align: center;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    transition: .4s;
}
.honor-box dl:hover dd{
    background: #b3050b;
}

/* 律所概况 */
.about-box .img{
    width: 48%;
}
.about-box .img .swiper-slide{
    height: 400px;
}
.about-box .img .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-box .text{
    width: 48%;
}
.about-box .text h2{
    font-size: 26px;
    color: #923136;
    font-family: myFont4;
    margin-bottom: 20px;
}
.about-box .text .des{
    font-size: 16px;
    line-height: 34px;
    color: #686868;
}
.about-box .bg{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
.about-box .bg img{
    width: 100%;
    height: auto;
}
.about-box .swiper-pagination-bullet{
    background:#fff;
}
.digital-box{
    margin-top: 60px;
}
.digital-box li{
    border-right: solid 1px rgba(102,102,102,.3);
    padding: 0 60px;
    width: 25%;
}
.digital-box li p span{
    display: block;
    font-size: 16px;
    color: #686868;
    margin-bottom: 10px;
}
.digital-box li p strong{
    font-size: 35px;
    color: #923136;
    font-family: myFont4;
}
.digital-box li p b{
    font-size: 18px;
    color: #923136;
    margin-left: 5px;
}
.digital-box li .iconfont{
    font-size: 30px;
    color:#686868;
}
.digital-box li:nth-child(2) .iconfont{
    font-size: 25px;
}

/* 联系我们 */
.contact-box .contact-list{
    position: relative;
}
.contact-box .contact-list::before{
    content: '';
    display: block;
    width: 47px;
    height: 3px;
    background: #233246;
    position: absolute;
    top: 0;
    left: 0;
}
.contact-box .contact-list dt{
    padding-top: 50px;
    border-top: 1px solid #e2e2e2;
    width: 60%;
}
.contact-box .contact-list dt h4{
    font-size: 26px;
    color:#333333;
}
.contact-box .contact-list dt p{
    color: #636363;
    font-size:17px;
}
.contact-box .contact-list dd{
    width: 35%;
    height: 290px;
    overflow: hidden;
}
.contact-box .contact-list .text{
    width: 60%;
    margin-left: 50px;
    font-size: 20px;
    margin-top: 10px;
}
.contact-box .contact-list .text p{
    margin-bottom: 10px;
}.contact-box .contact-list .text p img{	display: inline-block;    width: 150px;    height: auto;    vertical-align: text-top;    padding: 7px;    background: #fff;}
.contact-box .contact-list .text .iconfont{    margin-right: 10px;    font-size: 21px;    vertical-align: middle;
}
.contact-box .contact-list dd img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.message-box{
    background:#fff;
}
.message-box .form-box li{
    margin-bottom: 25px;
}
.message-box .form-box li input{
    width: 49%;
    background:#f8f9fb;
    height: 65px;
    color:#333;
    padding: 0 26px;
    border: 1px solid #dcdcdc;
    font-size: 18px;
}
.message-box .form-box li textarea{
    width: 100%;
    height: 130px;
    background:#f8f9fb;
    border: 1px solid #dcdcdc;
    font-size: 18px;
    padding: 26px;
}
.message-box .form-box .form-botton input{
    width: 234px;
    height: 50px;
    background-image: linear-gradient(to right, #923136, #f5d2d4);
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-family: "微软雅黑";
    letter-spacing: 5px;
    line-height: 50px;
    cursor: pointer;
}

/* 招贤纳士 */
.job-list{
    background:#fff;
    padding: 40px;
}
.job-list dl{
    cursor: pointer;
}
.job-list dl,
.job-list dl dt{
    border-bottom: 1px solid #e5e5e5;
}
.job-list dl dt{
    padding: 20px;
}
.job-list dl dt h4{
    font-size: 20px;
}
.job-list dl dt .iconfont{
    display: inline-block;
    transform: rotate(90deg);
    /* font-weight: bold; */
    font-size: 20px;
}
.job-list dl dd{
    font-size: 16px;
    line-height: 35px;
    padding: 20px;
    display: none;
}
.job-list dl:hover dt,
.job-list dl:hover dt .iconfont,
.job-list dl dt.active,
.job-list dl dt.active .iconfont{
    color:#b3050b;
}
.job-list dl:hover dt,
.job-list dl dt.active{
    background: #f8f9fb;
}

/* 详情页 */
.team-detail .xq-tit{
    border-bottom: 1px solid #eee;
    margin: 30px 0 40px 0;
    padding-bottom: 20px;
}
.team-detail .xq-tit h2{
    font-size: 23px;
    font-weight: myFont4;
    margin-bottom: 5px;
}
.team-detail .xq-tit p{
    font-size: 14px;
    color:#666;
}
.team-detail .xq-tit p span{
    display: inline-block;
    margin-right: 10px;
}
.team-detail .news-xq-box{
    font-size: 16px;
    line-height: 35px;
    color:#333;
}
.team-detail .news-xq-box img{
    max-width: 100%;
    margin: 15px auto;
}

/* 新闻列表 */
.news-list dl a{
    border-bottom: 1px solid #e4e4e4;
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
}
.news-list dl dt{
    width: 9%;
    font-size: 24px;
    border-right: 1px solid #e4e4e4;
    color: #333;
    justify-content: center;
    display: flex;
    flex-direction: column;
}
.news-list dl dt p{
    font-size: 16px;
    color:#b1b1b1;
}
.news-list dl dd{
    width: 87%;
}
.news-list dl dd h5{
    color:#333;
    font-size: 23px;
    margin:0 0 12px 0;
}
.news-list dl dd p{
    font-size: 16px;
    color:#b3b3b3;
    line-height: 25px;
}
.news-list dl:hover{
    border-bottom: 1px solid #c1282d;
}
.news-list dl:hover dd h5{
    color:#c1282d;
}


/*分页*/
.page-box {
    margin-bottom: 30px;
    margin-top: 40px;
}
.page-box div{
    display: flex;
    display: -webkit-flex;
    justify-content: center;
}
.page-box a{
    display: block;
    padding: 5px 12px;
    font-size: 14px;
    color: #666;
    box-sizing: border-box;
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 3px;
}
.page-box a:hover{
    background: #b3050b;
    color:#fff;
}
.page-box strong{
    display: block;
    padding: 5px 12px;
    font-size: 14px;
    color: #666;
    background-color: #b3050b;
    color: #fff;
    margin: 0 5px;
    border-radius: 3px;
}


/* 律师详情 */
.lawyer-detail{
    padding:40px;
    box-shadow: 1px 1px 18px #f3f3f3;
    min-height: 500px;
    background: #fff;
}
.lawyer-detail .team-left{
    width: 30%;
    height: 500px;
}
.lawyer-detail .team-left .img{
    width: 100%;
    height: 100%;
}
.lawyer-detail .team-left .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-detail .text{
    width: 66%;
}
.lawyer-detail .text .title{
    padding-bottom: 10px;
    color: #333;
    border-bottom: 1px solid #eee;
}
.lawyer-detail .text .title h5{
    font-size: 24px;
}
.lawyer-detail .text .title i{
    color:#8d8d8d;
    display: inline-block;
    margin: 0 10px;
    font-size: 16px;
}
.lawyer-detail .text .title span{
    display: inline-block;
    font-size: 16px;
    color:#666;
}
.lawyer-detail .text .des{
    font-size: 16px;
    line-height: 32px;
    margin-top: 15px;
    min-height: 200px;
    border-bottom: 1px solid #eee;
    text-align: justify;
}
.lawyer-detail .text .phone a{
    display: block;
    padding: 5px 15px;
    background: #b3050b;
    color: #fff;
    font-size: 21px;
    margin-right: 15px;
}
.lawyer-detail .text .phone a .iconfont{
    font-size: 28px;
    margin-right: 8px;
    vertical-align: middle;
}
