/*全局样式*/
@charset "utf-8";

html {
    overflow-x:hidden;
}
body,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select {
    margin: 0;
    padding: 0
}
body {
    font: 14px "微软雅黑", "Arial Narrow", HELVETICA;
    color: #000;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    min-width: 320px;
}
input:required,
textarea:required {
    outline: 0 none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none !important;
}
a {
    text-decoration: none !important;
    cursor: pointer !important;
    color: #000;
}
a:focus {
    outline: none;
}
ul {
    margin: 0;
}
li {
    list-style: none;
}
.container-fluid {
    max-width: 1230px !important;
}
.tr {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s
}
.tr2 {
    transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/*logo*/
header{
    background-color: #fff;
}
header .logo {
    height: 54px;
    line-height: 54px;
    max-width: 40%;
}
header .logo img{
    max-height: 80%;
    max-width: 100%;
    padding-right: 5px;
}
/*一级导航*/
nav {
    width: 60%;
    position: relative;
    padding-left: 27px;
}
nav::after{
    content: "";
    width: 1000%;
    height: 54px;
    background-color: #01407d;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: skewX(-55deg);
    z-index: 50;
}
nav ul li{
    font-size: 16px;
    text-align: center;
    position: relative;
    line-height:54px;
    width: 12.5%;
    float: left;
    z-index: 100;
}
nav ul li a{
    display:block;
    color: #fff ;
    font-size:15px;
    transition:all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position:relative;
}
nav ul li a.active,
nav ul li a:hover{
    background-color: #c00000;
    color: #fff;
}

/*二级导航*/
nav ul li ul {
    position: absolute;
    display: none;
    left: 0;
    top: 100%;
    z-index: 100;
    width: 100%;
}
nav ul li a:hover ul{
    display: block;
}

nav ul li ul a:after{
    display: none;
}
nav ul li ul li{
    float: none;
    width: 100%;
    line-height: 35px;
    padding: 0;
    background-color: #01407d;
}
nav ul li ul li a{
    font-size:14px;
    padding:0 5px;
    color: #fff;
}
nav ul li:hover ul {
    display:block;
}

/*banner轮播*/
.banner{
    position: relative;
    overflow: hidden;
}
.banner .swiper-slide .img{
    height:450px;
}
.banner .but{
    width:50px;
    height:50px;
    background:#eee;
    color:#333;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    left:-50px;
    margin-top:-25px;
    transition:all .3s;
    outline:none;
}
.banner .swiper-button-next{
    left:auto;
    right:-50px;
}
.banner:hover .swiper-button-prev{
    left:10px;
}
.banner:hover .swiper-button-next{
    right:10px;
}
.banner .swiper-pagination{
    position:absolute;
    width:100%;
    bottom:10px;
    left:0;
}
.banner .swiper-pagination-bullet{
    width:10px;
    height:10px;
    margin:0 5px;
    opacity:1;
    border-radius: 10px;
}
.banner .swiper-pagination-bullet-active{
    background-color: #fff;
}
/*专业领域*/
.title{
    text-align: center;
    padding: 40px 0 15px;
}
.title h5{
    font-size: 28px;
    color: #01407d;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.title p{
    font-size: 12px;
    color: #333;
    padding-top: 10px;
    position: relative;
}
.title p::after{
    content: "";
    width: 70px;
    height: 2px;
    background-color: #01407d;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.zyly{
   background-color: #f5f5f5;    
}
.zyly a{
    display: block;
    margin-top: 10px;
}
.zyly .imgbox{
    width: 250px;
    height: 200px;
    overflow: hidden;
    float: left;
}
.zyly .imgbox .img{
    transition: all .3s;
    width: 100%;
    height: 100%;
}
.zyly .textbox{
    padding: 21px;
    background-color: #01407d;
    transition: all .3s;
    width: calc(100% - 250px);
    
}
.zyly .textbox h5{
    font-size: 18px;
    color: #fff;
    display: inline-block;
    padding-bottom: 15px;
    border-bottom: 1px solid #fe8f02;
}
.zyly .textbox .text{
    font-size: 12px;
    color: #fff;
    line-height: 26px;
    height: 122px;
    overflow: hidden;
    padding-top: 15px;
}
.zyly a:hover .img{
    transform: scale(1.1);
}
.zyly a:hover .textbox{
     background-color: #c00000;
}
/*守时动态*/
.ssdt{ 
    padding-bottom: 40px; 
    background-color: #f5f5f5;
}
.ssdt a{
    display: block;
}
.ssdt .imgbox{
    max-width: 100%;
    overflow: hidden;
}
.ssdt .imgbox .img{
    transition: all .3s;
}
.ssdt .textbox{
    text-align: center;
    background-color: #fff;
}
.ssdt .textbox h5{
    font-size: 16px;
    color: #c00000;
    padding: 15px 0;
    transition: all .3s;
}
.ssdt .textbox p{
    color: #000;
    line-height: 35px;
    border-top: 1px solid #ccc;
}
.ssdt a:hover .imgbox .img {
     transform: scale(1.1);
}
.ssdt a:hover .textbox h5{
    color: #01407d;
}
/*法律咨询*/
.flzx{
    background-color: #f5f5f5;
}
.flzxbox{
    background-color: #fff;
    padding: 50px;
}
.flzxbox  h5{
    font-size: 24px;
    color: #999;
}
.flzxbox  p{
    font-size: 12px;
    color: #999;
    padding: 20px 0;
}
.flzxbox .box1 {
    width: 55%;    
}
.flzxbox .box1 input,
.flzxbox .box1 select{
   width: 100%;  
   color: #333;
   height: 32px;  
   padding-left: 10px;
   margin: 5px 0;
   background-color: #f7f9fb;
   border: 1px solid #dcdcdc;
}
.flzxbox .box1 textarea{
    width: 100%;
    height: 80px;
    overflow: hidden;
    padding: 10px;
    background-color: #f7f9fb;
   border: 1px solid #dcdcdc;
}
.flzxbox .box1 button{
    line-height: 40px;
    background-color: #c00000;
    color: #fff;
    text-align: center;
    width: 100%;
    border: none;
    font-size: 16px;
    margin-top: 10px;
    transition: all .3s;
}
.flzxbox .box1 button:hover{
    background-color: #2275e6;
}
.flzxbox .box2{
    width: 45%;
    padding-left: 40px;
}
.flzxbox .box2 h5{
    font-size: 18px;
    color: #333;
    padding-top: 10px;
}
.flzxbox .box2 p{
    font-size: 12px;
    color: #999;
}
.flzxbox .box2  ul li{
    color: #000;
    line-height: 32px;
}
.flzxbox .box2 .dh{
    font-size: 16px;
    color: #000;
    margin-top: 20px;
}
.flzxbox .box2 .dh b{
    font-size: 30px;
    color: #c00000;
    font-weight: bold;
}
/*footer*/
.footer{
    padding: 30px 0 40px;
    background-color: #f5f5f5;
}
.footer .phone{
    text-align: center;
    padding: 15px 0;
    border-bottom: 2px solid #ccc;
}
.footer .phone h5{
    font-size: 20px ;
    color: #666;
    display: inline-block;
}
.footer .phone h5 b{
    font-size: 24px;
    color: #c00000;
    font-weight: bold;
}
.footer .nav1{
    width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 20px 0;
}
.footer .nav1 ul li{
    display: inline-block;
    padding: 0 15px;
}
.footer .nav1 ul li a{
    color: #666;
    font-size: 16px;
    line-height: 30px;
    transition: all .3s;
}
.footer .nav1 ul li:hover a{
    color: #000;
}
.footer .didi p{
    font-size: 12px;
    color: #666;
    text-align: center;
    padding: 10px 0;
}

/*守时介绍内页*/
.ssjs-ny{
    font-size: 16px;
    color: #000;
    line-height: 32px;
    padding-bottom: 50px;
}
.ssjs-ny .textbox{
    padding: 0 50px;    
}
.ssjs-ny ul{
    margin-top: 10px;
}
.ssjs-ny img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
    text-align: center;
}

/*守时动态内页*/
.ssdt-ny{
    padding-bottom: 50px;
}
.ssdt-ny ul{
    margin: 0 40px;
}
.ssdt-ny ul li{
    color: #000;
    line-height: 35px;
    border-bottom: 1px dashed #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative;
    padding-right: 80px;
    transition: all .3s;

}
.ssdt-ny ul li span{
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   right: 0;
}
.ssdt-ny ul li:hover{
    color:#2275e6;
}

/*专业邻域内页*/
.zyly-ny{
    padding-bottom: 50px;
}
.zyly-ny .box1{
    background-color: #fff;
}
.zyly-ny .box1 h5{
    font-size: 16px;
    color: #fff;
    line-height: 35px;
    padding-left: 10px;
    background-color: #01407d;
}
.zyly-ny .box1 ul{
    border: 1px solid #999;
}
.zyly-ny .box1 ul li{
    line-height: 35px;
    padding-left: 18px;
    color: #333;
    border-bottom: 1px dashed #333;
    transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.zyly-ny .box1 ul li:nth-last-child(1){
    border: none;
}
.zyly-ny .box1 ul li:hover{
    background-color: #e2e2e2;
    color: #000;
}
.zyly-ny .box3 ul li{ 
    padding: 10px;
    overflow: hidden;
    background-color: #fff;
    margin: 10px 0;
}
.zyly-ny .box3 ul li a{
    display: inline-block;
    font-size: 16px;
    color: #000;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

/*律师团队*/
.lstd-ny{
    padding-bottom: 50px;
    background-color: #f5f5f5;
}
.lstd-ny img{
    max-width: 100%;
    display: block;
    margin:0  auto;
}
.lstd-ny .zyly .textbox{
    height: 200px;
}
.lstd-ny .zyly .textbox .text{
    overflow-y: auto;
    padding: 0 ;
    margin: 15px 0 10px;
}
/*招贤纳士*/
.zxns-ny{
    padding-bottom: 50px;    
}
.zxns-ny ul li{
    font-size: 16px;
    color: #000;
    line-height: 32px;
}














































/*微信弹窗*/
.weixin_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    border: 1px solid #ccc;
    padding: 30px 30px 0 30px;
    text-align: center;
    background: #fff;
    transform: scale(0);
    margin: -116px 0 0 -106px;
    z-index: 5000;
}
.weixin_popup.active {
    transform: scale(1);
    transition: transform .3s;
}
.weixin_popup i {
    color: #999;
    position: absolute;
    top: 5px;
    right: 5px;
    transform: rotate(45deg);
    font-size: 20px;
    cursor: pointer;
}
.weixin_popup i:hover {
    color: red;
}
.weixin_popup img {
    width: 150px;
    height: 150px;
}
.weixin_popup p {
    line-height: 30px;
}


/* 右侧悬浮 */
.suspend_nav{
    background: #0967ad;
    width: 52px;
    position: fixed;
    bottom:50px;
    right: 10px;
    text-align: center;
    z-index: 5000;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.suspend_nav .list {
    height: 50px;
    color: #fff;
    padding-top: 6px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.suspend_nav .list:last-child{
    border: none;
}
.suspend_nav .list:before{
    content:"";
    width: 100%;
    height: 100%;
    top: -50px;
    right: 0;
    background: #0967ad;
    position: absolute;
    transform: rotate(0);
    transition: all .3s;
}
.suspend_nav .list i {
    display: block;
    transition: all .3s;
    position: relative;
    z-index: 2;
}
.suspend_nav .list p {
    position: relative;
    z-index: 2;
}
.suspend_nav .top {
    padding: 0;
    line-height: 50px;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
.suspend_nav .top:after {
    content: "";
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    bottom: 0;
    left: 0;
}
.suspend_nav .top.active {
    height: 50px;
    opacity: 1;
}
.suspend_nav .top i {
    font-size: 25px;
}
.suspend_nav .on-off {
    padding: 0;
    line-height: 50px;
}
.suspend_nav .on-off.active i {
    transform: rotate(135deg);
}
.suspend_nav .list:hover {
    color: #fff;
}
.suspend_nav .list:hover:before {
    top: 0;
    transform: rotate(90deg);
}
.suspend_nav ul li {
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.suspend_nav ul li .list {
    border: none;
}
.suspend_nav ul li .weixin {
    position: absolute;
    right: 65px;
    bottom: 0;
    border: 1px solid #0967ad;
    transform: scale(0);
    transform-origin: 100% 100%;
    transition: all .3s;
    padding-bottom: 10px;
    background: #fff;
    padding: 5px;
}
.suspend_nav ul li .weixin:before {
    content: "";
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 10px solid #0967ad;
    position: absolute;
    bottom: 0;
    left: 100%;
    transition: all .5s;
}
.suspend_nav ul li .weixin img {
    width: 150px;
    height: 150px;
}
.suspend_nav ul li:hover .weixin {
    transform: scale(1);
}
.suspend_nav ul li:hover .weixin:before {
    bottom: 18px;
}
.suspend_nav ul li .popup {
    position: absolute;
    min-width: 200px;
    min-height: 200%;
    top: 0;
    right: 100%;
    border: 1px solid #0967ad;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0967ad;
    color: #fff;
    visibility: hidden;
    transition: all .3s;
    opacity: 0;
    padding: 0 15px;
}
.suspend_nav ul li .popup:before {
    content: "";
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 0 solid #2275e6;
    position: absolute;
    top: 0;
    left: 100%;
    transition: top .5s;
}
.suspend_nav ul li .popup p {
    font-size: 16px;
}
.suspend_nav ul li .popup h5 {
    font-size: 20px;
    margin-top: 5px;
}
.suspend_nav ul li .popup a {
    font-size: 20px;
    color: #fff;
    display: inline-block;
    margin-top: 5px;
}
.suspend_nav ul li:hover .popup {
    visibility: visible;
    right: 65px;
    opacity: 1;
}
.suspend_nav ul li:hover .popup:before {
    top: 18px;
    border-left-width: 10px;
}


/*移动端底部热点*/
.bottom_link {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background: #0967ad;
    text-align: center;
    z-index: 5000;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom_link ul li {
    width: 33.33%;
    height: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.bottom_link ul li:last-child {
    border: none;
}

.bottom_link ul li a {
    display: block;
    color: #fff;
    font-size: 16px;
    padding-top: 5px;
    position: relative;
}

.bottom_link ul li a i {
    display: block;
    height: 20px;
}

.bottom_link ul li:last-child a i {
    font-size: 20px;
    position: relative;
    top: -1px;
}


/*媒体查询开始*/
@media(max-width:1199px){
    header .logo{
        max-width: 35%;
    }
    .footer .nav1 ul li{
        padding: 0 9px;
    }
    
}
@media (max-width:991px){
    header .logo {
        max-width: 40%;
        height: 90px;
        line-height: 90px;
    }
    header .logo img{
        border: none;
    }
    .logo-box .right{
        display: none;
    }
    header .logo2 h5{
        display: none;
    }
    header .sjdnav {
        display: none;
        width: 150px;
        height: auto;
        position: absolute;
        right: 0;
        top: 90px;
        z-index: 2000;
    }
    header .sjdnav ul {
        padding: 0;
        margin: 0;
    }
    header .sjdnav li {
        display: block;
        padding: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        background: #0967ad;
    }
    header .sjdnav li:last-child {
        border: none;
    }
    header .sjdnav li a {
        display: block;
        color: #fff;
        line-height: 40px;
        font-size: 16px;
    }
    header .ydd_btn {
        width: 40px;
        cursor: pointer;
        position: absolute;
        z-index: 2000;
        top: 35px;
        right: 15px;
    }
    header .ydd_btn span {
        display: block;
        width: 100%;
        height: 8px;
        background: #0967ad;
    }
    header .ydd_btn span.span02 {
        margin: 5px 0;
    }
    header .ydd_btn.click span {
        background: #0967ad;
    }
    header .ydd_btn.click span.span01 {
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        position: relative;
        top: 8px;
        margin-top: 0px;
    }
    header .ydd_btn.click span.span02 {
        margin: 0.5px 0;
    }
    header .ydd_btn.click span.span03 {
        transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        position: relative;
        top: -8px;
        margin-top: 0px;
    }
    header .ydd_btn.click span.span02 {
        width: 0;
        filter: alpha(opacity=0);
        -moz-opacity: 0;
        -khtml-opacity: 0;
        opacity: 0;
    }
    .title {
        padding: 20px 0 5px;
    }
    .title h5 {
        font-size: 24px;
        padding-bottom: 5px;
    }
    .flzxbox .box1{
        width: 100%;
    }
    .flzxbox .box2{
        width: 100%;
        padding:15px;
    }
    .footer .nav1{
        width: 90%;
    }
    .footer .nav1 ul li {
        padding: 0 5px;
    }
  
}

@media (max-width:767px) {
    body {
        padding-bottom: 50px;
    }
    header .logo {
        max-width: 55%;
        height: 80px;
        line-height: 80px;
    }
    header .sjdnav {
        top: 80px;
    }
    header .ydd_btn {
        width: 35px;
        top: 30px;
    }
    header .ydd_btn span {
        height: 4px;
    }
    header .ydd_btn span.span02 {
        margin: 3px 0;
    }
    header .ydd_btn.click span.span02 {
        margin: 4px 0;
    }
    .title h5{
        font-size: 20px;
    }
    .title p{
        padding-top: 7px;
    }
    .zyly .imgbox{
        width: 210px;
    }
    .zyly .textbox{
        width: calc(100% - 210px);
    }
    .ssdt .textbox h5{
        padding: 5px 0;
    }
    .flzxbox{
        padding: 30px;
    }
    .ssjs-ny .textbox {
        padding: 0 20px;
    }
    .ssdt-ny ul {
        margin: 0 5px;
    }
}

@media (max-width:479px) {
    header .ydd_btn {
        width: 25px;
        top: 21px;
    }
    header .sjdnav {
        top: 55px;
    }
    header .logo {
        height: 55px;
        line-height: 55px;
        max-width: 65%;
    }
    .banner .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0px 3px
    }
    .title {
        padding: 5px 0 0;
    }
    .title h5 {
        font-size: 16px;
    }
    .title p{
        font-size: 10px;
    }
    .zyly .imgbox{
        width:100%;
        height: 100%;
    }
    .zyly .textbox{
        width:100%;
    }
    .zyly .textbox .text{
        padding-top: 5px;
    }
    .flzxbox {
        padding: 10px;
    }
    .flzxbox .box2 p{
        padding:  10px 0;    
    }
    .flzxbox .box2 ul li{
        line-height: 25px;
    }
    .flzxbox .box2 .dh{
        margin-top: 10px;
    }
    .footer {
        padding: 15px 0 ;
    }
    .footer .didi p{
        padding: 5px 0;
    }
    .zyly .textbox .text{
        height: 114px;
    }
    .ssjs-ny .textbox {
        padding: 0 5px;
    }
    .ssjs-ny{
        line-height: 27px;
    }
    .footer .phone h5 {
        font-size: 16px;
    }
    .flzxbox .box2 .dh{
        font-size: 14px;
    }
    .flzxbox .box2 .dh b{
        font-size: 20px;
    }
    .zxns-ny ul li {
        font-size: 14px;
        line-height: 24px;
    }
    .footer .phone h5 b {
        font-size: 24px;
    }
}