@charset "UTF-8";
/* 各个页面相同的样式表 */
:root {
    --btn-color: #0066cb ; /* 主按钮颜色（绿色） */
    --btn-hov-clo: #7CD3FF;
    --text-color: #333;        /* 文字颜色（白色） */
    --text-hov-col: #3887f5; /* 鼠标浮动文字 */
    --text-desc-col: #666666;
    --text-desc1-col: #999999;
}
/* 鼠标浮动白色遮罩 */
.hvzhe{
    position: relative;
}
.hvzhe:hover{
    background-color: var(--btn-hov-clo) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hvzhe1:hover{
    background-color: var(--btn-hov-clo) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.hov1:hover{
    color: var(--text-hov-col) !important;
}
.hov2{
    transition: all .3s linear;
}
.hov2:hover{
    transform: scale(1.1);
}

.hov3{
    transition: all .3s linear;
}
.hov3:hover{
    transform: scale(1.05);
}
.block1{
    display: block;
    width: 100%;
}
/* 版心 */
.wrapper {
    width: 1200px;
    margin: 0 auto;
}
/* flex布局 */
.flex1{
    display: flex;
}
.flex2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.felx3{
    display: flex;
    flex-wrap: wrap;
}
.flex4{
    display: flex;
    align-items: center;
}
.flex5{
    display: flex;
    justify-content: space-between;
}
.flex6{
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex7{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flex8{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.flex9{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.flex10{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.flex11{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.flex12{
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.ti1{
    font-weight: bold;
    font-size: 30px;
    color: var(--text-color);
}
.ti2{
    font-weight: 400;
    font-size: 14px;
    color: var(--text-desc-col);
    margin-left: 15px;

}
.t18{
    font-size: 18px;
    color: #333333;
}
.t24{
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}
.lh48{
    line-height: 48px;
}
.mt0{
    margin-top: 0 !important;
}
.mb10{
    margin-bottom: 10px;
}
.mb15{
    margin-bottom: 15px;
}
.mb20{
    margin-bottom: 20px;
}
.mt20{
    margin-top: 20px !important;
}
.mb30{
    margin-bottom: 30px;
}
.mb40{
    margin-bottom: 40px;
}

.see-more{
    font-weight: 400;
    font-size: 14px;
    color: var(--text-color);
}
.see-more:hover{
    color:var(--text-hov-col);
}
.see-more .see-more-right{
    font-size: 12px;
    margin-left: 4px;
    font-weight: 700;
}

.oneline{
    white-space: nowrap;        /* 不允许文本换行 */
    overflow: hidden;           /* 隐藏超出容器的部分 */
    text-overflow: ellipsis;    /* 超出部分显示省略号 */
}

.twoline{
    white-space: normal; /* 允许换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: -webkit-box; /* 使用 flexbox 布局 */
    -webkit-box-orient: vertical; /* 设置为垂直排列 */
    -webkit-line-clamp: 2; /* 限制为两行 */
}
.threeline{
    white-space: normal; /* 允许换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: -webkit-box; /* 使用 flexbox 布局 */
    -webkit-box-orient: vertical; /* 设置为垂直排列 */
    -webkit-line-clamp: 3; /* 限制为两行 */
}
.fourline{
    white-space: normal; /* 允许换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: -webkit-box; /* 使用 flexbox 布局 */
    -webkit-box-orient: vertical; /* 设置为垂直排列 */
    -webkit-line-clamp: 4; /* 限制为两行 */
}
.fiveline{
    white-space: normal; /* 允许换行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: -webkit-box; /* 使用 flexbox 布局 */
    -webkit-box-orient: vertical; /* 设置为垂直排列 */
    -webkit-line-clamp: 5; /* 限制为两行 */
}
hvzhe2{
    position: relative;
}
.hvzhe2::before{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* 半透明白色 */
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
}
.hvzhe2:hover::before {
    opacity: 1; /* 鼠标悬浮时显示伪元素 */
}


/* 轨道 */
.track::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.track::-webkit-scrollbar-track {
    background-color: #dddddd;
    border-radius: 6px;
}
.track::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 8px;
}
.track::-webkit-scrollbar-thumb:hover {
    background-color: #ddd;
}


/* 公共样式 */
.gonggong11{
    width: 100%;
    padding: 30px 20px 1px 30px;
    background-color: #ffffff;
    border-radius: 3px;
}
.gonggong11-tle{
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}
.gonggong11-tle1{
    font-size: 14px;
    color: #A8A8A8;
    font-weight: 400;
    margin-left: 11px;
}
.gonggong11-links li{
    margin: 25px 0;
    width: 100%;
    display: flex;
}
.gonggong11-links-til{
    font-size: 16px;
    color: #5C5C5C;
    width: 270px;
    display: inline-block;
}
.gonggong11-num{
    width: 24px;
    height: 24px;
    line-height: 24px;
    text-align: center;
    color: #333333;
    background: #F5F6F8;
    display: inline-block;
    margin-right: 20px;
}
.gonggong11-num1{
    color: #ffffff;
    background: #F44333;
}
.gonggong11-num2{
    color: #ffffff;
    background: #EE6611;
}
.gonggong11-num3{
    color: #ffffff;
    background: #F99D00;
}
.gonggong12{
    font-size: 16px;
    color: #333333;
    padding: 10px;
    border-radius: 3px;
    background: linear-gradient(to bottom, #4e39ff, #7080fd);
    line-height: 1;
}
.gonggong12-box{
    width: 100%;
    height: 100%;
    padding: 30px 20px;
    border-radius: 3px;
    background-color: #f3f3f3;
}
.gonggong12-tle{
    font-weight: bold;
    font-size: 24px;
    color: #333333;
}
.gonggong12-desc{
    font-size: 14px;
    color: #7a7a7a;
    margin: 30px 0 50px;
}
.gonggong12-line{
    width: 50px;
    height: 2px;
    background-color: #3552e4;
    border-radius: 1px;
    margin-bottom: 20px;
}
.gonggong12-num{
    font-size: 18px;
    color: #3552E4;
    font-weight: 600;
    margin-right: 5px;
}
.gonggong12-btn{
    width: 110px;
    padding: 10px 0;
    text-align: center;
    color: #ffffff;
    background-color: #3552e4;
    border-radius: 20px;
    display: block;
    margin-top: 20px;
    position: relative;
}
/* <!-- 快捷导航 --> */
.shortcut{
    width: 100%;
    background-color: #f8f8f8;
    height: 36px;
    border-bottom: 1px solid #f8f8f8;
}
.shortcut .wrapper{
    height: 36px;
}

.shortcut .shortcut-item{
    height: 36px;
    line-height: 36px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    padding:0 15px;
    position: relative;
}
.shortcut .shortcut-item a{
    color: #000;
}
.shortcut-mobile{
    color: #000;
}
.shortcut-mobile-scree{
    width: 180px;
    box-sizing: border-box;
    left: 50px;
    transform: translateX(-50%);
    padding: 20px 0;
    transition: all .2s;
    position: absolute;
    top: 50px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 6%);
    text-align: center;
    line-height: 1;
}
.shortcut-mobile-box:hover .shortcut-mobile-scree{
    opacity: 1;
    visibility: visible;
    top: 36px;
}
.shortcut-mobile-scree img {
    width: 140px;
    height: 140px;
}
.shortcut .shortcut-item a:hover{
    color: #3552E4;
}
.shortcut .shortcut-item:hover .dangqiancity{
    color: #3552E4;
}
.shortcut .shortcut-item:hover .shortcut-mobile{
    color: #3552E4;
}
.shortcut .shortcut-item:hover .shortcut-map{
    color: #3552E4;
}
.shortcut-item-guide:hover .icon-unfold{
    transform: rotate(180deg);  /* 旋转180度 */
    color: #3552E4;
}
.shortcut-item-area:hover>a:first-child{
    color: #3552E4;
}
.shortcut .shortcut-item .icon-shouji{
    font-size: 15px;
    margin-right: 5px;
}
.shortcut .shortcut-item .icon-unfold{
    font-size: 12px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}
.shortcut .shortcut-item .icon-rencai{
    font-size: 12px;
    margin-right: 5px;}
.shortcut ul:first-child li:first-child{
    padding-left: 0;
}
.shortcut ul:last-child li:last-child{
    padding-right: 0;
}
.shortcut .icon-ditu{
    margin-right: 6px;
    font-size: 14px;
}
.shortcut-item-knowledge{
    cursor: pointer;
}
.shortcut-item-knowledge:hover .nav-child{
    display: flex;
}
.nav-child{
    background: #fff;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .2);
    display: flex;
    flex-direction: column;
    left: 10%;
    position: absolute;
    top: 100%;
    width: 104px;
    z-index: 999;
    line-height: 36px;
    display: none;
}
.nav-child .child-item {
    color: #333;
    font-size: 14px;
    padding: 5px 0;
    text-align: center;
}
.nav-child .child-item:hover{
    color: #3887f5;
}
    /* 快捷导航，鼠标浮动所在城市展示 */
.shortcut .shortcut-area-screen{
    left: 0;
    transition: all .2s;
    transform: translateY(20px);
    position: absolute;
    top: 36px;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}
.shortcut-area-screen-item{
    width: 780px;
    padding: 40px 30px 16px;
    margin-top: 15px;
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 6%);
    border-radius: 4px;
    box-sizing: border-box;
}
.shortcut .shortcut-now-place{
    font-size: 18px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
}
.shortcut-hot-city{
    margin-bottom: 25px;
}
.shortcut-area-screen .item-title{
    font-size: 18px;
    font-weight: 400;
    color: #999;
    margin-bottom: 20px;
    line-height: normal;
}
.shortcut-area-screen .shortcut-hot-city .shortcut-city-link {
    margin: 0 16px 24px 0;
    font-size: 18px;
    font-weight: 400;
    color: #666 ;
    line-height: normal;
}
.shortcut-select-city .shortcut-city-letters{
    margin-bottom: 30px;
    line-height: normal;

}
.shortcut-select-city .shortcut-letter-item{
    margin-right: 13px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.shortcut-select-city-content{
    display: flex;
    flex-wrap: wrap;
}
.shortcut-area-screen .shortcut-select-city-content .shortcut-city-link{
    margin: 0 16px 24px 0;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: normal;
}
.shortcut-highlight{
    color: #3552E4 !important;
}

/* 网页快捷导航 */
.shortcut-guide-screen{
    width: 1180px;
    right: 0;
    box-sizing: border-box;
    padding: 40px 0;
    display: flex;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 36px;
    z-index: 10;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 6%);
    transition: all .2s;
    transform: translateY(20px);
    z-index: 99;
}
.shortcut-guide-title{
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}
.shortcut-guide-screen .shortcut-guide-content .shortcut-guide-link{
    margin: 0 24px 16px 0;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1;
}

.shortcut-hot-city-right{
    width: 388px;
    padding-left: 30px;
}


.shortcut-guide-screen .shortcut-hot-city-right .shortcut-guide-title{
    margin-bottom: 36px;
}
.shortcut-law-ask {
    width: 185px;
    padding-left: 38px;
    border-left: 1px solid #eee;

}
.shortcut-find-lawyer {
    width: 185px;
    padding-left: 38px;
    border-left: 1px solid #eee;
}
.shortcut-law-know {
    width: 185px;
    padding-left: 38px;
    border-left: 1px solid #eee;
}
.shortcut-talk-law {
    width: 440px;
    padding-left: 30px;
    border-left: 1px solid #eee;
}
.shortcut-serve {
    width: 185px;
    padding-left: 38px;
    border-left: 1px solid #eee;
}


/* 头部区域 */
.ji-header{
    height: 100px;
    background: #ffffff;
    position: relative;
}

.ji-header .ji-header-logo{
    height: 100px;
    margin-right: 38px;
}
.ji-header .ji-header-logo img{
    width: 220px;
    height: 50px;
}
.ji-header .ji-header-menu li {
    position: relative;
}
.ji-header .ji-header-menu li .ji-header-alink{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    padding: 0 30px;
    height: 100px;
    line-height: 100px;
    display: block;
    position: relative;
    margin: 0 5px;
}
.ji-header-act{
    /*border-bottom: 6px solid #0066cb;*/
    /*color: #0066cb !important;*/
}
.ji-header .ji-header-menu li .ji-header-alink .ji-header-unfold{
    font-size: 12px;
    font-weight: 700;
    margin-left: 5px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.ji-header .ji-header-menu li .ji-header-alink:hover{
    color: var(--text-hov-col);
}
.ji-header .ji-header-menu li .ji-header-alink:hover .ji-header-unfold{
    transform: rotate(180deg);  /* 旋转180度 */
}

.ji-header .ji-header-menu li .ji-header-img{
    width: 44px;
    height: 26px;
    position: absolute;
    top: 20px;
    right: 0px;
}
.ji-header .ji-header-jingji {
    width: 100%;
    padding: 36px 0;
    background-color: #ffffff;
    border-top: 1px solid #eeeeee;
    min-width: 1180px;
    position: absolute;
    top: 105px;  /* 初始时，元素在视图上方 */
    height: 88px;
    left: 0;
    z-index: 10;
    display: none;
    transition: all 0.2s; /* 平滑过渡 */
}
.ji-header-two-li{
    padding: 0 30px;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    border-right: 1px solid #eeee;
}

.ji-header-two-a{
    color: #666;
}
.ji-header-two-a:hover{
    color: var(--text-hov-col);
}
.ji-header .ji-header-menu li .ji-header-alink:hover .ji-header-jingji{
    display: block;
}


.ji-hdr-search-box .ji-hdr-sousou{
    font-weight: 700;
    font-size: 14px;
}
.ji-hdr-search-zx{
    width: 111px;
    height: 37px;
    overflow: hidden;
    display: block;
}
.ji-hdr-search-zx img{
    width: 111px;
    height: 37px;
    overflow: hidden;
}


/* 底部区域 */
.footer-info{
    margin-top: 0;
    border-top: 47px solid transparent;
}
.footer-layout{
    padding-bottom: 90px;
    padding-top: 50px;
    background: #2e2e2e;
    color: #858585;
}
.footer-le{
    width: 530px;
}
.footer-tle{
    padding-left: 5px;
    color: #eee;
    font-size: 24px;
    margin-bottom: 10px;
}
.footer-txt{
    padding-left: 5px;
    font-size: 14px;
    color: #858585;
    line-height: 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.footer-txt a {
    color: #858585;
}
.footer-txt a:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-img{
    padding: 0;
    width: 100px;
    height: 100px;
    background: #fff;
    margin-right: 20px;
}
.footer-img img{
    width: 90px;
    height: 90px;
}
.footer-infor{
    display: block;
    overflow: hidden;
    line-height: 24px;
    font-size: 12px;
    color: #858585;
}
.footer-infor-tle{
    font-size: 16px;
    color: #ccc;
    padding-top: 5px;
    padding-bottom: 20px;
}
.footer-rg{
    width: 520px;
    padding-right: 50px;
}
.footer-container{
    background-color: #f6f6f6;
}
.firend-link{
    padding: 20px 0;
}
.recommend-block {
    position: relative;
    color: #666;
    line-height: 30px;
}
.footer-orb-title{
    width: 70px;
    height: 30px;
    margin-right: 20px;
    line-height: 30px;
    text-overflow: inherit;
    white-space: nowrap;
    overflow: hidden;
}
.footer-orb-list{
    font-size: 12px;
    flex: 1;
    overflow: hidden;
}
.footer-orb-item{
    width: 96px;
    margin-right: 10px;
    overflow: hidden;
    text-overflow: inherit;
    white-space: nowrap;
}
.footer-orb-item a {
    color: #858585;
}
.footer-orb-item a:hover{
    color: #666;
    text-decoration: underline;
}
.footer-copyright{
    background: #fff;
    padding: 40px 0;
}
.footer-copy-le{
    line-height: 24px;
    font-size: 12px;
    color: #858585;
}
.footer-copy-le a{
    color: #858585;
}
.footer-copy-le a:hover{
    text-decoration: underline;
}
.footer-copy_rg{
    padding-top: 20px;
}
.gov-icon.icon01 {
    background-position: 0 0;
}
.gov-icon {
    width: 32px;
    background: url('https://lvlkb.oss-cn-beijing.aliyuncs.com/economy/20241231/ae22eac3f37df4d9a9b7c76081d921ea.png') no-repeat;
    height: 32px;
    display: inline-block;
}
.icon03{
    background-position: -64px 0;
}
.gov-icon.icon05 {
    background-position: -128px 0;
    width: 92px;
}
/* 顶部公共找律师导航栏 */
.find-lawyer-header{
    height: 100px;
    background: #ffffff;
    position: relative;
}
.find-lawyer-header .find-law-logo{
    height: 100px;
}
.find-lawyer-header .find-law-logo img{
    width: 220px;
    height: 50px;
}
.find-lawyer-header .fin-law-links{
    margin-left: 50px;
}
.find-lawyer-header .fin-law-link{
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    padding: 0 20px;
    position: relative;
}
.find-lawyer-header .fin-law-link:hover{
    font-weight: 700;
    color: #6e82e9;
}
.find-lawyer-header .fin-law-header-ser{
    font-size: 14px;
    color: #000000;
}
.find-lawyer-header  .fin-law-header-sousou{
    font-size: 14px;
    font-weight: 700;
}
/* 侧边栏 */
.side-menu-lis{
    position: relative;
}
.side-menu-box{
    position: absolute;
    top: 0;
    left: 1330px;
    height: 100%;
    box-sizing: border-box;
    padding: 20px 0;
    z-index: 10;
}
.side-menu{
    position: fixed;
    top: calc(50vh - 250px);
}
.side-menu-itembox{
    position: relative;
}
.side-menu-list{
    width: 101px;
    height: 482px;
    background: #FFFFFF;
    border-radius: 10px;
    border: 1px solid var(--btn-hov-clo);
    cursor: default;
}
.side-menu-itembox:first-child .side-menu-btn{
    border-radius: 10px 10px 0 0;
}
.side-menu-itembox:last-child .side-menu-btn{
    border-radius: 0 0 10px 10px;
}
.side-menu-btn{
    font-size: 14px;
    color: #333333;
    height: 80px;
    display: block;
    text-align: center;
    padding: 15px 0 0;
}
.side-menu-back{
    cursor: pointer;
}
.side-menu-btn .iconfont{
    font-size: 23px;
    color: var(--btn-color) ;
}
.side-menu-btn div{
    margin-top: 7px;
}
.side-menu-btn-line{
    width: 25px;
    height: 2px;
    background: #CED6FF;
    display: inline-block;
}
.side-menu-screen{
    width: 101px;
    padding: 10px 0;
    background: #FFFFFF;
    box-shadow: 0px 2px 10px 0px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    right: 111px;
    transition: all .2s;
    visibility: hidden;
    opacity: 0;
}
.serve-item{
    display: block;
    font-size: 14px;
    color: #474747;
    padding: 10px 0;
    text-align: center;
}
.side-menu-itembox:hover .side-menu-btn{
    background-color: var(--btn-color);
    color: #ffffff !important;
}
.side-menu-itembox:hover .iconfont{
    color: #ffffff;
}
.side-menu-itembox:hover .side-menu-btn-line{
    background-color: #ffffff;
}
.side-menu-itembox:hover .side-menu-screen{
    opacity: 1;
    visibility: visible;
    right: 101px;

}
.qrcode{
    width: 180px;
    padding: 15px 0 10px;
    padding: 10px 0;
}
.qrcode img{
    width: 140px;
    display: block;
    margin: 0 auto;
}
