/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    text-decoration: none;
}

/*flex布局  BEGIN*/
/* 定义 */
.flex {
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
}

/* 主轴居中 */
.jus-center {
    -webkit-box-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

/* 主轴两端对齐 */
.jus-bt {
    -webkit-box-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

/* 主轴end对齐 */
.jus-end {
    -webkit-box-pack: end;
    -moz-justify-content: flex-end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

/* 主轴start对齐 */
.jus-start {
    -webkit-box-pack: start;
    -moz-justify-content: start;
    -webkit-justify-content: start;
    justify-content: start;
}

/* 侧轴居中 */
.align-center {
    -webkit-box-align: center;
    -moz-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}

/* 侧轴start对齐 */
.align-start {
    -webkit-box-align: start;
    -moz-align-items: start;
    -webkit-align-items: start;
    align-items: start;
}

/* 侧轴底部对齐 */
.align-end {
    -webkit-box-align: end;
    -moz-align-items: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

/* 侧轴文本基线对齐 */
.align-baseline {
    -webkit-box-align: baseline;
    -moz-align-items: baseline;
    -webkit-align-items: baseline;
    align-items: baseline;
}

/* 侧轴上下对齐并铺满 */
.align-stretch {
    -webkit-box-align: stretch;
    -moz-align-items: stretch;
    -webkit-align-items: stretch;
    align-items: stretch;
}

/* 主轴从上到下 */
.flex-column {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

/* 主轴从下到上 */
.flex-column-reverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -moz-flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

/* 主轴从左到右 */
.flex-row {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
}

/* 主轴从右到左 */
.flex-row-reverse {
    -webkit-box-pack: end;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -moz-flex-direction: row-reverse;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


.flex-1 {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*flex布局  BEGIN*/

/*溢出隐藏 BEGIN*/
.over-hd1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.over-hd2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.over-hd3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*溢出隐藏 BEGIN*/

/*版心  BEGIN*/
.page-main {
    width: 1440px;
    height: auto;
    margin: 0 auto;
}

/*版心  END*/


/* 公共banner*/
.banner {
    width: 100%;
    position: relative;
}

.banner.ban-home {
    height: 924px;
}

.banner.ban-team {
    height: 724px;
    background: url("../images/ban-team.jpg") no-repeat center / cover;
}

.banner.ban-honor {
    height: 724px;
    background: url("../images/ban-honor.jpg") no-repeat center / cover;
}

.banner.ban-about {
    height: 724px;
    background: url("../images/ban-about.jpg") no-repeat center / cover;
}

.banner.ban-contact {
    height: 724px;
    background: url("../images/ban-contact.jpg") no-repeat center / cover;
}

.banner.ban-recruit {
    height: 724px;
    background: url("../images/ban-recruit.jpg") no-repeat center / cover;

}

.banner.ban-news {
    height: 724px;
    background: url("../images/ban-news.jpg") no-repeat center / cover;

}

.banner.ban-case-detail {
    height: 613px;
    background: url("../images/ban-case-detail.jpg") no-repeat center / cover;
}

.banner.ban-business-detail {
    height: 613px;
    background: url("../images/ban-bus-detail.jpg") no-repeat center / cover;
}

.banner.ban-lawyer-detail {
    height: 613px;
    background: url("../images/ban-lvshi.jpg") no-repeat center / cover;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
}

.banner .swiper-container .swiper-slide {
    display: block;
    width: 100%;
    height: 100%;
}

.banner .swiper-container .swiper-slide img {
    width: 100%;
    height: 100%;
}

.banner .swiper-pagination-bullet {
    width: 24px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
    margin-right: 20px;
    opacity: 0.5;
}

.banner .swiper-pagination-bullet-active {
    background: #FFFFFF;
    opacity: 1;
}

.case-wrapper .swiper-pagination-bullet {
    width: 24px;
    height: 6px;
    background: #FFFFFF;
    border-radius: 3px;
    margin-right: 20px;
    opacity: 0.5;
}

.case-wrapper .swiper-pagination-bullet-active {
    background: #FFFFFF;
    opacity: 1;
}

.banner .header {
    width: 100%;
    height: 110px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    padding: 0 70px;
    box-sizing: border-box;
}

.banner .header .logo {
}

.banner .header .logo img {
    height: 70px;
}

.banner .header .nav {

}

.banner .header .nav li {
    margin-right: 60px;
}

.banner .header .nav li a {
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}

.banner .header .nav li a:hover {
    border-color: #FFFFFF;
}

.banner .header .nav li.active a {
    border-color: #FFFFFF;
}

.banner .header .control li a {
    display: block;
    width: 34px;
    height: 34px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .header .control li:first-child a {
    background-image: url("../images/search.png");
    margin-right: 44px;
}

.banner .header .control li:last-child a {
    background-image: url("../images/tel.png");
}

.banner .banner-wrapper {
    width: 100%;
    height: 100%;
    padding-top: 110px;
    box-sizing: border-box;
}

.banner .banner-wrapper .ban-title {
}

.banner .banner-wrapper .ban-title .en-title {
    font-size: 80px;
    font-family: Impact;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 80px;
    margin-bottom: 10px;
}

.banner .banner-wrapper .ban-title .ch-title {
}

.banner .banner-wrapper .ban-title .ch-title .icon {
    width: 56px;
    height: 12px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner .banner-wrapper .ban-title .ch-title .icon:first-child {
    background-image: url("../images/ban-tit-l.png");
}

.banner .banner-wrapper .ban-title .ch-title .icon:last-child {
    background-image: url("../images/ban-tit-r.png");
}

.banner .banner-wrapper .ban-title .ch-title .text {
    font-size: 40px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 20px;
}

.banner .banner-wrapper .left {
    width: 340px;
    height: 450px;
    margin-right: 58px;
}

.banner .banner-wrapper .left img {
    width: 100%;
    height: 100%;
}

.banner .banner-wrapper .right {
}

.banner .banner-wrapper .right h1 {
    font-size: 20px;
    font-family: Source Han Sans CN;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.banner .banner-wrapper .right h1 span {
    font-size: 48px;
    font-weight: bold;

}

.banner .banner-wrapper .right h6 {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 26px;
    margin-bottom: 60px;
}

.banner .banner-wrapper .right .talk-wrapper {
}

.banner .banner-wrapper .right .talk-wrapper .code-pic {
    width: 80px;
    height: 80px;
    margin-right: 30px;
}

.banner .banner-wrapper .right .talk-wrapper .tel-wrapper {
}

.banner .banner-wrapper .right .talk-wrapper .tel-wrapper .icon {
    width: 28px;
    height: 28px;
    background: url("../images/lvshi-dianhua.png") no-repeat center / cover;
}

.banner .banner-wrapper .right .talk-wrapper .tel-wrapper .text {
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 26px;
}

.banner .banner-wrapper .right .talk-wrapper .tel-wrapper .btn {
    height: 58px;
    line-height: 58px;
    background: #FFFFFF;
    border-radius: 29px;
    font-size: 29px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #34478F;
    padding: 0 36px;
    margin-top: 14px;

}

/*公共footer*/
.footer {
    width: 100%;
    height: 347px;
    background: url("../images/footer-bj.png") no-repeat center / cover;
}

.footer .left {
    width: 560px;
    padding-top: 60px;
    box-sizing: border-box;
}

.footer .left h3 {
    font-size: 28px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer .left h6 {
    font-size: 15px;
    font-family: Microsoft YaHei;
    font-weight: 300;
    color: #B8B8B8;
    margin-bottom: 24px;
}

.footer .left h4 {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #B8B8B8;
    line-height: 30px;

}

.footer .left h1 {
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #E1E1E1;
}

.footer .middle {
    width: 650px;
    padding-top: 106px;
}

.footer .middle h3 {
    font-size: 26px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 22px;
}

.footer .middle h3 span {
    font-size: 20px;
    font-family: PingFang SC;
    font-weight: bold;
    color: #FFFFFF;
    margin-left: 12px;
}

.footer .middle ul {
    width: 440px;
}

.footer .middle ul li {
    width: 25%;
}

.footer .middle ul li a {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 44px;
    transition: all 0.3s;
}

.footer .middle ul li a:hover {
    opacity: 0.5;
}

.footer .right {
    padding-top: 80px;
}

.footer .right img {
    width: 195px;
    height: 195px;
    margin-bottom: 26px;
}

.footer .right p {
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #B8B8B8;
    padding-left: 30px;
}

/*公共标题*/
.common-title {
    margin-bottom: 62px;
}

.common-title .en-title {
    font-size: 70px;
    line-height: 60px;
    line-height: 60px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #DEE1ED;
}

.common-title .ch-title {
    font-size: 48px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #34478F;
    margin-top: -15px;
    margin-bottom: 16px;
}

.common-title .line {
    width: 50px;
    height: 2px;
    background: #34478F;
    margin-bottom: 20px;
}

.common-title .intro {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
}

/*首页业务领域*/
.business {
    background: #f5f5f5;
    padding: 80px 0 64px;
}

.business .list {
    position: relative;
    background: #FFFFFF;
    border-bottom: 4px solid #E5AB4C;

}

.business .list:after {
    content: "";
    width: 576px;
    height: 4px;
    background: #34478F;
    position: absolute;
    bottom: -4px;
    right: 0;
}

.business .list li {
    width: 20%;
    padding: 60px 0 40px 60px;
    box-sizing: border-box;
}

.business .list li a {
    display: block;
    width: 100%;
}

.business .list li a img {
    width: 60px;
    height: 60px;
}

.business .list li a h3 {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #000000;
    line-height: 50px;
    transition: all .5s;
}

.business .list li a h3:hover {
    color: #E5AB4C;
}

.business .list li a p {
    max-width: 182px;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 24px;
    margin-bottom: 24px;
}

.business .list li a span {
    display: block;
    width: 30px;
    height: 30px;
    background: url("../images/business-more.png") no-repeat center / cover;
    box-shadow: 0px 0px 21px 0px rgba(153, 153, 153, 0.29);
    border-radius: 50%;
}

/*首页律师团队*/
.team {
    position: relative;
    padding: 70px 0 64px;
}

.team .list {
}

.team:after {
    content: "";
    width: 100%;
    height: 504px;
    background: url("../images/team-bj.jpg") no-repeat center / cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.team .list li {
    width: 340px;
    background: #FFFFFF;
    margin-right: 26px;
    border-radius: 0px 0px 8px 8px;
    overflow: hidden;
    padding-bottom: 15px;
}

.team .list li:last-child {
    margin-right: 0;
}

.team .list li a {
}

.team .list li a .img-box {
    width: 340px;
    height: 450px;
    margin-bottom: 20px;
    overflow: hidden;
}

.team .list li a .img-box img {
    width: 100%;
    height: 100%;
    transition: all 0.8s;
}

.team .list li a .img-box img:hover {
    transform: scale(1.2);
}

.team .list li a h3 {
    font-size: 18px;
    font-family: Source Han Sans CN;
    color: #666666;
    padding: 0 20px;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.team .list li a h3 span {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
    margin-right: 10px;
}

.team .list li a p {
    font-size: 15px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.team .home-more-btn {
    display: block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    background: #FFFFFF;
    border-radius: 30px;
    margin: 62px auto 0;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #373737;
    text-align: center;
}

.team .home-more-btn:hover {
    opacity: 0.8;
}

/*首页承办案件*/
.case {
    height: 940px;
    background: url("../images/case-bj.png") no-repeat center/ cover;
    padding: 60px 0 58px;
    box-sizing: border-box;
}

.case .case-wrapper .left {
    width: 600px;
    height: 490px;
    background: #E5AB4C;
    margin-right: 46px;

}

.case .case-wrapper .left .img-box {
    width: 100%;
    height: 290px;
    margin-bottom: 20px;
}

.case .case-wrapper .left .img-box img {
    width: 100%;
    height: 100%;
}

.case .case-wrapper .left .cont .date-wrapper {
    width: 130px;
}

.case .case-wrapper .left .cont .date-wrapper h3 {
    font-size: 36px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.case .case-wrapper .left .cont .date-wrapper h5 {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}

.case .case-wrapper .left .cont .info {
}

.case .case-wrapper .left .cont .info .title {
    font-size: 19px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 58px;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 22px;
}

.case .case-wrapper .left .cont .info .intro {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;

}

.case .case-wrapper .right {
    padding-top: 10px;
}

.case .case-wrapper .right .hot {
    margin-bottom: 20px;
}

.case .case-wrapper .right .hot .info {
    max-width: 630px;
}

.case .case-wrapper .right .hot .info .title {
    display: block;
    font-size: 19px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
    line-height: 58px;
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 10px;
}

.case .case-wrapper .right .hot .info .title:hover {
    color: #34478F;
}

.case .case-wrapper .right .hot .info .intro {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 30px;
}

.case .case-wrapper .right .hot .date-wrapper {
}

.case .case-wrapper .right .hot .date-wrapper h3 {
    font-size: 36px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #888888;
    margin-bottom: 10px;
}

.case .case-wrapper .right .hot .date-wrapper h5 {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #888888;
    margin-bottom: 30px;
}

.case .case-wrapper .right .hot .date-wrapper span {
    width: 10px;
    height: 14px;
    background: url("../images/case-more.png") no-repeat center / cover;
}

.case .case-wrapper .right .list li a {
    height: 65px;
    border-bottom: 1px solid #E5E5E5;
}

.case .case-wrapper .right .list li a:hover .title {
    color: #34478F;
}

.case .case-wrapper .right .list li a:hover .time {
    color: #34478F;
}

.case .case-wrapper .right .list li a .title {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #000000;
}

.case .case-wrapper .right .list li a .time {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #888888;
}

.case .home-more-btn {
    display: block;
    width: 200px;
    height: 60px;
    line-height: 60px;
    background: #34478F;
    border-radius: 30px;
    margin: 62px auto 0;
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}

.case .home-more-btn:hover {
    opacity: 0.8;
}

/*首页新闻动态*/
.news {
    width: 100%;
    height: 896px;
    background: url("../images/news-bj.png") no-repeat center / cover;
    padding-top: 70px;
}

.news .list {
    height: 510px;
    background: #FFFFFF;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 1px 21px 0px rgba(153, 153, 153, 0.16);
}

.news .list li {
    width: 478px;
    height: 100%;
    border-right: 1px solid #F5F5F5;
    box-sizing: border-box;
    padding: 70px 40px 0;
}

.news .list li:last-child {
    border-right: none;
}

.news .list li .img-box {
    height: 210px;
    margin-bottom: 35px;
    overflow: hidden;
}

.news .list li .img-box img {
    width: 100%;
    height: 100%;
    transition: all 0.8s;
}

.news .list li .img-box img:hover {
    transform: scale(1.5);
}

.news .list li h3 {
    font-size: 20px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
}

.news .list li p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 27px;
    margin-bottom: 24px;
}

.news .list li a {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 24px;
    border-bottom: 1px solid #999999;
}

.news .list li a:hover {
    color: #34478F;
}

/*律师团队页面*/
.team-page {
    background: #F5F5F5;
    padding: 90px 0;
}

.team-page .list {
}

.team-page .list li {
    width: 700px;
    height: 334px;
    background: #FFFFFF;
    margin-bottom: 36px;
}

.team-page .list li .left {
    width: 252px;
    height: 334px;
    overflow: hidden;
}

.team-page .list li .left img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}

.team-page .list li .left img:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}

.team-page .list .right {
    padding: 30px;
}

.team-page .list li h3 {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #34478F;
    margin-bottom: 16px;
}

.team-page .list li h3 span {
    font-size: 16px;
    color: #666666;
}

.team-page .list li h4 {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    line-height: 26px;
    margin-bottom: 30px;
}

.team-page .list li p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #A5A5A5;
    line-height: 26px;
    margin-bottom: 30px;
}

.team-page .list li h6 {
    width: 40px;
    height: 40px;
    background: url("../images/business-more.png") no-repeat center/cover;
    box-shadow: 0px 0px 21px 0px rgba(153, 153, 153, 0.29);
    border-radius: 50%;
}

/*荣誉页面*/
.honor-page {
    padding: 90px 0;
}

.honor-page .detail {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    margin-bottom: 38px;
}

.honor-page .list {
}

.honor-page .list li {
    width: 340px;
    height: 240px;
    overflow: hidden;
    margin-right: 26px;
    margin-bottom: 30px;
    transition: all .3s;
}

.honor-page .list li:nth-child(4n) {
    margin-right: 0;
}

.honor-page .list li img {
    width: 100%;
    height: 100%;

}

.honor-page .list li:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

/*联系我们页面*/
.contact-page {
    padding: 90px 0;
}

.contact-page .list {
    margin-bottom: 52px;
}

.contact-page .list li {
    width: 340px;
    height: 207px;
    background: #F5F5F5;
    border-radius: 10px;
    margin-right: 27px;
    padding-top: 40px;
    box-sizing: border-box;
    transition: all .5s;
}

.contact-page .list li:hover {
    transform: translateY(-10px);
}

.contact-page .list li:last-child {
    margin-right: 0;
}

.contact-page .list li .icon {
    width: 40px;
    height: 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-page .list li:nth-child(1) .icon {
    background-image: url("../images/weizhi.png");
}

.contact-page .list li:nth-child(2) .icon {
    background-image: url("../images/dianhua.png");
}

.contact-page .list li:nth-child(3) .icon {
    background-image: url("../images/lianxiren.png");
}

.contact-page .list li:nth-child(4) .icon {
    background-image: url("../images/youxiang.png");
}

.contact-page .list li h3 {
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #333333;
    line-height: 40px;
}

.contact-page .list li p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 40px;
}

.contact-page .map-wrapper {
    width: 100%;
    height: 507px;
    overflow: hidden;
}

.contact-page .map-wrapper img {
    width: 100%;
    height: 100%;
}

/*案件详情页面*/
.case-detail-page {
    padding: 30px 0;
}

.case-detail-page .detail-head {
    padding: 10px 0;
    border-bottom: 1px solid #EEEEEE;
    margin-bottom: 30px;
    margin-bottom: 30px;
}

.case-detail-page .detail-head h3 {
    font-size: 30px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    line-height: 36px;
    margin-bottom: 12px;
}

.case-detail-page .detail-head h4 {
}

.case-detail-page .detail-head h4 span {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 36px;
}

.case-detail-page .list {
    margin-bottom: 100px;
}

.case-detail-page .list li {
}

.case-detail-page .list li h3 {
    margin-bottom: 20px;
}

.case-detail-page .list li h3 .icon {
    width: 24px;
    height: 24px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-right: 10px;
}

.case-detail-page .list li:nth-child(1) h3 .icon {
    background-image: url("../images/case-detail1.png");
}

.case-detail-page .list li:nth-child(2) h3 .icon {
    background-image: url("../images/case-detail2.png");
}

.case-detail-page .list li:nth-child(3) h3 .icon {
    background-image: url("../images/case-detail3.png");
}

.case-detail-page .list li h3 .text {
    font-size: 22px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #34478F;
}

.case-detail-page .list li p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    text-indent: 2em;
    margin-bottom: 46px;
}

.case-detail-page .about-lawyer {
}

.case-detail-page .about-lawyer .title {
    margin-bottom: 30px;
}

.case-detail-page .about-lawyer .title .icon {
    width: 82px;
    height: 13px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

.case-detail-page .about-lawyer .title .icon.l {
    background-image: url("../images/lawyer-l.png");
}

.case-detail-page .about-lawyer .title .icon.r {
    background-image: url("../images/lawyer-r.png");
}

.case-detail-page .about-lawyer .title .text {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #E5AB4C;
    margin: 0 26px;
}

.case-detail-page .about-lawyer .lawyer-img {
    width: 252px;
    margin-bottom: 20px;
}

.case-detail-page .about-lawyer .lawyer-img img {
    width: 100%;
    height: auto;
}

.case-detail-page .about-lawyer .lawyer-info {
}

.case-detail-page .about-lawyer .lawyer-info .name {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #E5AB4C;
}

.case-detail-page .about-lawyer .lawyer-info .tag {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #999999;
}

/*新闻动态页面*/
.news-page {
    padding: 90px 0;
}

.news-page .list {
}

.news-page .list li {
    padding: 30px 0;
    border-bottom: 1px solid #E5E5E5;
}

.news-page .list li .left {
    width: 330px;
    height: 166px;
    margin-right: 30px;
}

.news-page .list li .left img {
    width: 100%;
    height: 100%;
}

.news-page .list li .right {
    padding-top: 10px;
}

.news-page .list li .right .title {
    display: block;
    font-size: 24px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #333333;
    margin-bottom: 30px;
}

.news-page .list li .right .title:hover {
    color: #34478F;
}

.news-page .list li .right .intro {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
    margin-bottom: 30px;
}

.news-page .list li .right .time {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #BBBBBB;
}

/*关于东舜页面*/
.about-page {
}

.about-page .basic {
    padding: 80px 0;
    background: #F5F5F5;
}

.about-page .basic .cont {
}

.about-page .basic .cont .left {
    width: 574px;
    margin-right: 55px;
}

.about-page .basic .cont .left img {
    width: 100%;
    height: auto;
}

.about-page .basic .cont .right {
}

.about-page .basic .cont .right .en-title {
    font-size: 50px;
    font-family: Impact;
    font-weight: 400;
    color: #E5AB4C;
    line-height: 50px;
    margin-bottom: 15px;
}

.about-page .basic .cont .right .ch-title {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    margin-bottom: 37px;
}

.about-page .basic .cont .right .list {
}

.about-page .basic .cont .right .list li {
}

.about-page .basic .cont .right .list li h3 {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #E5AB4C;
    margin-bottom: 20px;
}

.about-page .basic .cont .right .list li p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
    margin-bottom: 36px;
}

.about-page .culture {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-page .culture .cont {
}

.about-page .culture .cont .left .en-title {
    font-size: 50px;
    font-family: Impact;
    font-weight: 400;
    color: #E5AB4C;
    line-height: 50px;
    margin-bottom: 20px;
}

.about-page .culture .cont .left .ch-title {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #333333;
    margin-bottom: 24px;
}

.about-page .culture .cont .left .line {
    width: 50px;
    height: 2px;
    background: #E5AB4C;
    margin-bottom: 30px;
}

.about-page .culture .cont .left .intro {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
}

.about-page .culture .cont .right {
    width: 720px;
    margin-left: 74px;
}

.about-page .culture .cont .right img {
    width: 100%;
    height: auto;
}


.about-page .env {
    padding: 80px 0;
    background: #FFFFFF;
}

.about-page .env .cont {
    width: 100%;
    height: 440px;
    border: 1px solid #F5F5F5;
    box-shadow: 0px 1px 21px 0px rgba(153, 153, 153, 0.16);
    box-sizing: border-box;
}

.about-page .env .cont .swiper-wrapper {
    padding: 70px 30px;
    box-sizing: border-box;
}

.about-page .env .cont .swiper-slide {

}

.about-page .env .cont .swiper-slide img {
    width: 430px;
    height: 300px;
}

.about-page .env .swiper-pagination {
    position: static !important;
    margin-top: 30px;
}

.about-page .env .swiper-pagination-bullet {
    width: 30px;
    height: 6px;
    background: #DEE1ED;
    border-radius: 3px;
    margin-right: 20px;
    opacity: 1;
}

.about-page .env .swiper-pagination-bullet-active {
    background: #34478F;
}

/*业务领域详情*/
.business-detail-page {
}

.business-detail-page .property {
    background: #FFFFFF;
    padding: 40px 0;
}

.business-detail-page .property .ch-title {
    font-size: 40px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #34478F;
    line-height: 36px;
}

.business-detail-page .property .en-title {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #34478F;
    line-height: 36px;
    margin-bottom: 25px;
}

.business-detail-page .property p {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
    text-indent: 2em;
    margin-bottom: 34px;
}

.business-detail-page .about-case {
    background: #f5f5f5;
    padding: 65px 0;
}

.business-detail-page .about-case .title {
    margin-bottom: 50px;
}

.business-detail-page .about-case .title .icon {
    width: 8px;
    height: 28px;
    background: #34478F;
    margin-right: 10px;
}

.business-detail-page .about-case .title .ch-title {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #34478F;
}

.business-detail-page .about-case .title .en-title {
    font-size: 20px;
    font-family: Source Han Sans CN;
    color: #BBBBBB;
}

.business-detail-page .about-case .list {
}

.business-detail-page .about-case .list li {
    margin-bottom: 30px;
}

.business-detail-page .about-case .list li a:hover .num {
    background: #34478F;
}

.business-detail-page .about-case .list li a:hover .arc-title {
    color: #34478F;
}

.business-detail-page .about-case .list li a:hover .time {
    color: #34478F;
}

.business-detail-page .about-case .list li a .num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #D2D2D2;
    border-radius: 5px;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-right: 20px;
}

.business-detail-page .about-case .list li a .arc-title {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
}

.business-detail-page .about-case .list li a .time {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
}

/*招贤纳士页面*/
.recruit-page {
    padding: 90px 0;
}


.recruit-page .list {
    -moz-column-count: 3;
    /* Firefox */
    -webkit-column-count: 3;
    /* Safari 和 Chrome */
    column-count: 3;
    /*-moz-column-gap: 2em;*/
    /*-webkit-column-gap: 2em;*/
    /*column-gap: 2em;*/
}


.recruit-page .list li {
    width: 420px;
    background: #FFFFFF;
    box-shadow: 0px 1px 21px 0px rgba(153, 153, 153, 0.16);
    border-radius: 10px;
    padding: 0 25px 46px;
    box-sizing: border-box;
    margin-right: 70px;
    margin-bottom: 63px;
    -moz-page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    break-inside: avoid;
}

.recruit-page .list li:nth-child(3n) {
    margin-right: 0;
}

.recruit-page .list li .title {
    padding: 30px 0;
    border-bottom: 1px solid #EEEEEE;
}

.recruit-page .list li .title .icon {
    width: 14px;
    height: 14px;
    background: url("../images/gangwei-icon.png") no-repeat center / cover;
}

.recruit-page .list li .title .text {
    margin: 0 15px;
}

.recruit-page .list li .cont {
}

.recruit-page .list li .cont .item {
}

.recruit-page .list li .cont .item h3 {
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #E5AB4C;
    padding: 20px 0;
}

.recruit-page .list li .cont .item p {
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
}


/*律师详情页面*/
.lawyer-detail-page {
}

.lawyer-detail-page {
}

.lawyer-detail-page .title {
    padding: 40px 0;
}

.lawyer-detail-page .title .icon {
    width: 8px;
    height: 28px;
    background: #34478F;
    margin-right: 10px;
}

.lawyer-detail-page .title .ch-title {
    font-size: 26px;
    font-family: Source Han Sans CN;
    font-weight: bold;
    color: #34478F;
}

.lawyer-detail-page .title .en-title {
    font-size: 20px;
    font-family: Source Han Sans CN;
    color: #BBBBBB;
}

.lawyer-detail-page .lawyer-intro {
}

.lawyer-detail-page .lawyer-intro p {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #666666;
    line-height: 30px;
}

.lawyer-detail-page .list {
}

.lawyer-detail-page .list li {
    margin-bottom: 30px;
}

.lawyer-detail-page .list li a:hover .num {
    background: #34478F;
}

.lawyer-detail-page .list li a:hover .arc-title {
    color: #34478F;
}

.lawyer-detail-page .list li a:hover .time {
    color: #34478F;
}

.lawyer-detail-page .list li a .num {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: #D2D2D2;
    border-radius: 5px;
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin-right: 20px;
}

.lawyer-detail-page .list li a .arc-title {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
}

.lawyer-detail-page .list li a .time {
    font-size: 16px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #999999;
    line-height: 26px;
}

/*公共页码 BEGIN */
.base-page {
    text-align: center;
    margin-top: 30px;
}

.base-page ul li,
.base-page ul a {
    display: inline-block;
}

.base-page ul a {
    padding: 10px;
    color: #999999;
}

.base-page ul li.active a {
    color: #34478F;
}

/*公共页码 END */