﻿@charset "UTF-8";
/*css reset*/
*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    font-size: 100px;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 14px;
    font-weight: 400;
    min-width: 1280px;
    max-width: 1920px;
    font-family: "Helvetica Neue", Helvetica, "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    color: #333;
    background-color: #fff;
    margin: 0 auto;
}

div, form, ul, ol, li, span, dl, dt, dd, p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    border: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
    font-weight: normal;
    font-family: inherit;
}

ul, ol, li {
    list-style: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border-color: transparent;
}

th, td {
    padding: 0;
}

input, select, textarea, button {
    outline: 0;
    border: 0;
    background: none;
    vertical-align: middle;
}

input[type="radio"], input[type="checkbox"] {
    margin: 0;
    padding: 0;
}

textarea {
    resize: none;
}

img {
    vertical-align: middle; /*width: 100%; */
}

pre {
    white-space: normal;
}

i, em {
    font-style: normal;
}

/*默认链接颜色*/
a {
    color: #505050;
    text-decoration: none;
    outline: 0;
    outline-width: 0;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    cursor: pointer;
}

/*工具类*/
.Wid100 {
    width: 100% !important;
}

.fbox {
    display: flex;
}

.db {
    display: block;
}

.di {
    display: inline-block;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.visible {
    visibility: visible;
}

.hidden {
    visibility: hidden;
}

.fl {
    float: left !important;
}

.fr {
    float: right !important;
}

.por {
    position: relative;
}

.poa {
    position: absolute;
}

.ovh {
    overflow: hidden;
}

.fs-normal {
    font-weight: normal;
}

.fs-bold {
    font-weight: bold;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clear {
    clear: both;
}

:root {
    --main-color: #002D7A;
    --blue-color: #7b88ad;
    --ash-color: #F2F3F7;
    --white-color: #fff;
}

/*自定义滚动轴*/
.scrollBar::-webkit-scrollbar {
    position: relative;
    left: 0;
    width: 6px; /*滚动条整体样式*/
    height: 2px; /*高宽分别对应横竖滚动条的尺寸*/
}

.scrollBar::-webkit-scrollbar-thumb { /*滚动条里面小方块*/
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: var(--main-color);
}

.scrollBar::-webkit-scrollbar-track { /*滚动条里面轨道*/
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #EDEDED;
}

.adorn {
    position: relative;
}

.adorn:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 4px;
    background-color: var(--white-color);
    border-radius: 2px;
}

.adorn_blue.adorn:after {
    background-color: var(--blue-color);
}

.adorn_blueA.adorn:after {
    background-color: var(--main-color);
}

.adorn_bottom.adorn:after {
    bottom: -16px;
}

.adorn_center.adorn:after {
    left: calc(50% - 15px);
}

/*移动端样式*/
html, a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/*===========复用样式===========*/
.h600 {
    height: 600px !important;
}

.w25 {
    width: 25%;
}

.f12 {
    font-size: 12px !important;
}

/*分页*/
.paging {
    position: absolute;
    bottom: 80px;
    right: 110px;
}

.paging li {
    float: left;
    color: var(--white-color);
    height: 24px;
    line-height: 22px;
    cursor: pointer;
}

.paging li:not(:last-child) {
    width: 24px;
    border: 1px solid var(--white-color);
    text-align: center;
    border-radius: 6px;
    margin-right: 12px;
}

.paging li:not(:last-child).active {
    background-color: var(--white-color);
    color: var(--main-color);
}

/*===========按钮控件===========*/
/*.btn{-webkit-appearance: none;display: inline-block;text-align: center;width: 200px; height: 60px; line-height: 60px;font-size: 16px;font-family: inherit;color: #fff;background: #A7262B;}*/
/*.btn-block{display: block;width: 100%;}*/
/*.btn-round{border-radius: 5px;}*/
/*.btn-lg-round{border-radius: 20px;}*/
[v-cloak] {
    display: none
}

/*单行溢出省略*/
.omit {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*多行溢出省略*/
.omit2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: justify;
    overflow: hidden;
}

.omit3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-align: justify;
    overflow: hidden;
}

/*============图标=============*/
[class*="icon"] {
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
}

.icon-01 {
    background: url(../img/ionc-01.png) no-repeat;
    background-size: 100%
}

.icon-02 {
    background: url(../img/ionc-02.png) no-repeat;
    background-size: 100%
}

.icon-03 {
    background: url(../img/ionc-03.png) no-repeat;
    background-size: 100%
}

.icon-04 {
    background: url(../img/ionc-04.png) no-repeat;
    background-size: 100%
}

.icon-05 {
    background: url(../img/ionc-05.png) no-repeat;
    background-size: 100%
}

.icon-06 {
    background: url(../img/ionc-06.png) no-repeat;
    background-size: 100%
}

.icon-07 {
    background: url(../img/ionc-07.png) no-repeat;
    background-size: 100%
}

.icon-08 {
    background: url(../img/ionc-08.png) no-repeat;
    background-size: 100%
}

.icon-09 {
    background: url(../img/ionc-09.png) no-repeat;
    background-size: 100%
}

.icon-10 {
    background: url(../img/ionc-10.png) no-repeat;
    background-size: 100%
}

.icon-11 {
    background: url(../img/ionc-11.png) no-repeat;
    background-size: 100%
}

.icon-12 {
    background: url(../img/ionc-12.png) no-repeat;
    background-size: 100%
}

.icon-address {
    background: url(../img/address.png) no-repeat;
    background-size: 100%
}

.icon-tel {
    background: url(../img/tel.png) no-repeat;
    background-size: 100%
}

.icon-letter {
    background: url(../img/letter.png) no-repeat;
    background-size: 100%
}

.icon-QRcode {
    background: url(../img/QRcode.png) no-repeat;
    background-size: 100%
}

.MQbg_1 {
    background: url("../img/MQbg_1.jpg") no-repeat center bottom;
    background-size: 100% auto;
}

.MQbg_2 {
    background: url("../img/MQbg_2.jpg") no-repeat center bottom;
    background-size: 100% auto;
}

/*首页*/
.TopMenu {
    position: absolute;
    top: 0;
    left: calc(50% - 640px);
    width: 1280px;
    height: 120px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.TopMenu img {
    display: block;
    width: 240px;
    margin: 0 60px;
}

.TopMenu a {
    color: var(--white-color);
    position: relative;
}

.TopMenu a:before {
    content: '';
    position: absolute;
    bottom: -8px;
    height: 2px;
    background-color: var(--white-color);
    left: 50%;
    width: 0;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.TopMenu .active {
    position: relative;
}

.TopMenu .active:after {
    content: '';
    position: absolute;
    bottom: -8px;
    height: 2px;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
}

.TopMenu a:hover:before {
    left: 0;
    width: 100%;
}

.field {
    position: relative;
    background-color: var(--main-color);
}

.modular {
    margin-left: 33.333%;
    padding-left: 21%;
    height: 520px;
    background-color: var(--white-color);
}

.modular ._block {
    padding-top: 68px;
}

.modular ._block ul {
    margin-right: 12%;
    overflow-y: auto;
}

.modular ._block li {
    float: left;
    width: 22%;
    height: 0;
    padding-top: 22%;
    position: relative;
}

.modular ._block li:nth-child(n+4) {
    margin-top: 26px;
}

.modular ._block li:not(:nth-child(3n+1)) {
    margin-left: 8%;
}

.modular ._block li a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

._block a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--main-color);
}

._block a i {
    display: block;
    width: 46%;
    height: 46%;
    margin-bottom: 6%;
}

._block a:hover {
    color: var(--white-color);
    background-color: var(--main-color);
}

._block a:hover i {
    background-position: 0 100%;
}

.slogan {
    height: 240px;
    text-align: center;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slogan_title {
    font-size: 24px;
    padding: 22px 0;
}

.slogan_content {
    font-size: 16px;
    padding: 25px 0;
}

.exhibit {
    position: absolute;
    top: 68px;
    left: 18%;
    width: 30%;
    padding-left: 6%;
    color: var(--white-color);
}

.exhibit_title {
    height: 30%;
    display: flex;
    align-items: center;
    font-size: 24px;
}

.exhibit_content {
    font-size: 16px;
    margin-top: 10%;
}

/*案例*/
.case {
    height: 720px;
}

.case > div {
    float: left;
}

.case_left {
    width: 78%;
}

.case_top {
    float: left;
    width: 22%;
    text-align: center;
    height: 250px;
    padding-top: 30px;
    background-color: var(--ash-color);
}

.case_drag {
    float: left;
    width: 58%;
    height: 250px;
    margin: 0 10%;
    overflow: hidden;
    padding-top: 60px;
    position: relative;
}

.case_block {
    position: absolute;
    left: 0;
    -webkit-user-select: none;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.case_block li {
    float: left;
    width: 180px;
    height: 100px;
}

.case_block .case_kind {
    width: 80px;
    height: 100%;
    display: flex;
    color: var(--blue-color);
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.case_block .case_kind i {
    width: 50px;
    height: 50px;
    background-position: bottom;
}

.case_block .case_kind:hover i {
    background-position: top;
}

.case_block .case_kind:hover {
    font-weight: 600;
    color: var(--main-color);
}

.case_title {
    height: 136px;
    line-height: 136px;
    font-size: 24px;
    color: var(--blue-color);
}

.case_drag .adorn:after {
    top: 186px;
}

.news {
    height: 470px;
    overflow-y: auto;
}

.news a {
    display: block;
    height: 156px;
}

.news .newsDate {
    float: left;
    width: 22%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 11%;
    background-color: var(--ash-color);
    position: relative;
}

.newsDate .bulge {
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.newsDate .bulge p {
    font-size: 18px;
}

.newsDate .bulge i {
    font-size: 14px;
}

.newsDate span {
    position: absolute;
    top: calc(50% - 30px);
    left: 100%;
    width: 60px;
    height: 60px;
    background: url("../img/add.png") no-repeat center;
    background-size: 30px 30px;
    background-color: #0F377D;
    display: none;
}

.news a:hover .newsDate .bulge p {
    font-size: 24px;
}

.news a:hover .newsDate .bulge {
    color: var(--white-color);
    margin-left: -30px;
    padding-left: 30px;
    background-color: var(--main-color)
}

.news a:hover .newsDate span {
    display: block;
}

.newsTitle {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10%;
}

.newsTitle p {
    color: var(--blue-color);
}

.newsTitle p.Title_B {
    font-size: 12px;
}

.newsTitle p.Title_A {
    padding-bottom: 14px;
}

.news a:hover .newsTitle .Title_A {
    font-size: 16px;
    font-weight: bold;
    color: var(--main-color);
}

.news a:hover .newsTitle .Title_B {
    color: var(--main-color);
}

.news .newsTitle {
    float: left;
    width: 78%;
}

.case_right {
    width: 21%;
    height: 100%;
    margin-left: 1%;
}

.case_right .Hot {
    float: left;
    color: var(--white-color);
    width: 100%;
    height: 33.33%;
    padding: 12% 14%;
    background-color: #0F377D;
    position: relative;
}

.case_right .Hot:nth-child(even) {
    background-color: var(--main-color);
}

.case_right .Hot p {
    width: 60%;
}

.case_right .Hot span {
    position: absolute;
    top: 20%;
    right: 14%;
    font-size: 12px;
}

.case_right .Hot img {
    width: 30px;
    height: 30px;
    position: absolute;
    bottom: 20%;
    right: 14%;
}

/*人员*/
.staff {
    background: url("../img/bacd-4.jpg") no-repeat center;
    background-size: cover;
    color: var(--white-color);
}

.staffBox {
    padding-top: 5%;
    min-width: 1280px;
    margin: 0 auto;
}

.newsBox {
    width: 100%;
    height: 345px;
    display: flex;
    align-items: center;
}

.news_A {
    width: 22%;
    font-size: 24px;
    text-align: center;
}

.news_A p {
    height: 80px;
    line-height: 80px;
}

.news_B {
    width: 59%;
}

.news_B a {
    float: left;
    max-width: 46%;
}

.news_B a:nth-child(even) {
    margin-left: 8%;
}

.news_B a p {
    width: 100%;
    height: 45px;
    line-height: 48px;
    margin-bottom: 44px;
    color: var(--white-color);
    display: inline-block;
    position: relative;
}

.news_B a i {
    position: absolute;
    right: 0;
    bottom: 30px;
    color: #999;
}

.moreBtn {
    width: 154px;
    height: 38px;
    background-color: var(--main-color);
    cursor: pointer;
    float: right;
    position: relative;
}

.moreBtn i {
    position: absolute;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    background: url("../img/add.png") no-repeat center;
    background-size: 18px 18px;
    background-color: #0F377D;
    z-index: 1;
}

.moreBtn p {
    width: 116px;
    float: right;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: var(--white-color);
}

/*咨询*/
.form_Top input, .form_Top select, .SubmitBtn {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    border: 2px solid #7B88AD;
}

.A_form p {
    float: left;
    width: 46%;
    margin-bottom: 33px;
}

.A_form p:first-child {
    margin-right: 8%;
}

.B_form {
    margin-bottom: 33px;
}

.D_form {
    float: left;
    width: 46%;
    margin-right: 8%;
}

.D_form > p {
    margin-bottom: 33px;
}

.C_form {
    position: absolute !important;
    top: 0;
    bottom: 0;
    right: 0;
    width: 46%;
    padding: 8px;
    border: 2px solid #7B88AD;
}

.C_form textarea {
    width: 100%;
    height: 100%;
}

.SubmitBtn {
    cursor: pointer;
    text-align: center;
    line-height: 46px;
}

.form {
    float: left;
    width: 50%;
    height: 615px;
    overflow: hidden;
    padding: 0 10% 0 12%;
}

.form_Top {
    padding-top: 42px;
    padding-bottom: 55px;
    padding-left: 16px;
}

.form_Top .active {
    position: relative;
}

.form_Top .active:after {
    content: '*';
    position: absolute;
    top: 8px;
    left: -12px;
    font-size: 16px;
    color: #FF443E;
}

.address {
    float: right;
    width: 50%;
    height: 615px;
    overflow: hidden;
    padding: 140px 12% 60px 10%;
    background: url(../img/bacd-3.jpg) no-repeat center;
    background-size: cover;
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.address p {
    height: 90px;
    line-height: 90px;
    margin-bottom: 40px;
}

/*底部*/
.footBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 20px;
    background-color: var(--ash-color);
}

.foot {
    width: 50%;
    text-align: center;
}

.foot a {
    display: inline-block;
    padding: 0 4%;
    color: #AAA;
    font-size: 16px;
    position: relative;
}

.foot a:not(:last-child):after {
    content: '';
    position: absolute;
    top: 16%;
    right: 0;
    bottom: 16%;
    width: 1px;
    background-color: #D2D3D4;
}

.footBox p {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
    color: #AAA;
}

.staffList {
    float: left;
    width: 41%;
    left: 9.5%;
    position: absolute;
    top: 40px;
    /*overflow: hidden;*/
}

.people {
    float: left;
    width: 34%;
    min-height: 379px;
    position: relative;
    background-color: var(--main-color);
    border-top: 1px solid #0F377D;
    box-shadow: 5px 5px 5px #001C4C;
}

.people .active {
    position: relative;
    z-index: 2;
    width: 100%;
    font-size: 18px;
    border-bottom: 1px solid #fff;
}

.people .active i {
    display: block;
    font-size: 12px;
}

.people p {
    height: 78px;
    padding: 5px 0 5px 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    cursor: pointer;
}

.people p i {
    display: none;
}

.downImg {
    position: absolute;
    bottom: -75px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.Purikura {
    float: left;
    width: 77%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}

.staffRight {
    float: right;
    width: 52.5%;
    height: 520px;
    margin-right: 120px;
    background-color: var(--white-color);
    color: var(--main-color);
    padding: 60px 4.6% 83px 14%;
}

.staffRight h4 {
    font-size: 24px;
    margin-bottom: 24px;
}

.staffRight span {
    display: block;
    margin-bottom: 40px;
}

.staffRight .introduceTxt {
    height: 145px;
    color: var(--blue-color);
    margin: 80px 0 40px;
    overflow-y: auto;
    line-height: 2;
    text-align: justify;
    padding-right: 4px;
}

/*联系我们*/
.contactBox {
    width: 1200px;
    height: 470px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.contactBox li {
    width: 271px;
    padding: 100px 0;
    height: 100%;
    display: flex;
    font-size: 24px;
    margin: 0 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.contactBox li i {
    width: 96px;
    height: 96px;
}

.QRcode_Bg {
    height: 406px;
    background: url("../img/bacd-5.jpg") no-repeat center;
    background-size: cover;
}

.QRcode {
    width: 254px;
    height: 406px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.QRcode i {
    width: 254px;
    height: 257px;
}

.QRcode p {
    font-size: 24px;
    margin-top: 29px;
}

._address {
    width: 100%;
    height: 855px;
    margin-top: 129px;
    margin-bottom: 100px;
}

/*专业团队*/
.numData {
    width: 845px;
    height: 145px;
    position: absolute;
    top: -78px;
    left: calc(50% - 422.5px);
    background-color: rgba(0, 0, 0, .6);
    color: var(--white-color);
    z-index: 1;
}

.numData li {
    float: left;
    width: 25%;
    text-align: center;
    padding: 15px 0;
}

.numData h2 {
    font-size: 39px;
    line-height: 80px;
}

.numData p {
    font-size: 12px;
}

.search {
    position: absolute;
    top: 127px;
    left: calc(50% - 206px);
    width: 412px;
    height: 48px;
}

.search input {
    width: 331px;
    height: 48px;
    padding-left: 22px;
    padding-right: 10px;
    box-shadow: 0 11px 6px 0 rgba(33, 23, 20, 0.46);
    background-color: var(--white-color);
    font-size: 18px;
}

.search input::-webkit-input-placeholder {
    font-size: 18px;
    color: #c9caca;
}

.search i {
    float: right;
    width: 78px;
    height: 48px;
    box-shadow: 0 11px 6px 0 rgba(33, 23, 20, 0.46);
    background: url("../img/search.png") no-repeat center center;
    background-size: auto;
    background-color: var(--main-color);
}

.teamList {
    width: 1200px;
    margin: 0 auto;
    background-color: #0E357B;
    padding: 200px 94px 100px 94px;
}
.teamList .pager{margin-top: 50px; color: #ddd; text-align: center; width:100%}
.teamList .pager a{color: #fff}
.teamListA {
    padding: 200px 98px 88px 98px;
}

.teamOne {
    float: left;
    width: 237px;
    height: 410px;
    position: relative;
    color: var(--white-color);
}

.teamOne:hover {
    color: #959595 !important;
}

.teamOne .adorn:after {
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.teamOne:hover .adorn:after {
    width: 140px;
}

.teamOne:nth-child(n+5) {
    margin-top: 115px;
}

.teamOne:not(:nth-child(4n)) {
    margin-right: 21px;
}

.teamOne .teamImg {
    position: absolute;
    width: 237px;
    height: 300px;
    box-shadow: 0 9px 6px 0 rgba(33, 23, 20, 0.17);
    overflow: hidden;
}

.teamOne .teamImg img {
    width: 100%;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.teamOne:hover .teamImg img {
    transform: scale(1.1);
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.teamUp .teamImg {
    top: 0;
}

.teamDow .teamImg {
    bottom: 0;
}

.teamTxt {
    position: absolute;
    height: 110px;
}

.teamUp .teamTxt {
    bottom: 0;
    padding-top: 27px;
}

.teamDow .teamTxt {
    top: 0;
}

.teamTxt h5 {
    font-size: 20px;
}

/*团队详情*/
.bread a, .bread {
    font-size: 22px;
    color: var(--white-color);
}

.bread a {
    font-weight: bold;
}

.bread i {
    padding: 0 8px;
}

.breadLine:after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: -32px;
    height: 3px;
    background-color: var(--white-color);
    border-radius: 2px;
}

.teamCen {
    margin-top: 100px;
    line-height: 18px;
    color: var(--white-color);
    text-align: justify;
}

.teamCen img {
    float: left;
    width: 338px;
    height: 488px;
    margin-right: 32px;
    margin-bottom: 30px;
}

.teamTop {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 95px;
}

/*业务邻域*/
.Convex {
    margin-top: -98px;
    position: relative;
    z-index: 2;
}

.hei {
    width: 1206px;
    position: absolute;
    top: -1px;
    left: calc(50% - 603px);
    right: 0;
    height: 500px;
    box-shadow: 0 -12px 8px -12px rgba(0, 0, 0, 0.8);
    background-image: linear-gradient(#595959, #fff);
    opacity: .4;
    border-radius: 30px;
}

.ConvexOut {
    width: 1200px;
    margin: 0 auto;
    min-height: 690px;
    padding: 105px 55px 110px;
    background-color: var(--white-color);
    border-radius: 30px;
    position: relative;
    z-index: 2;
}

.business a {
    float: left;
    width: 48%;
    height: 300px;
    border-radius: 20px;
    background-color: var(--main-color);
    color: var(--white-color);
    position: relative;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.business a:not(:nth-child(2n)) {
    margin-right: 4%;
}

.business a:nth-child(n+3) {
    margin-top: 59px;
}

.business a:hover {
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, .6);
}

.businessList {
    position: absolute;
    top: calc(50% - 28px);
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
}

.businessList p {
    width: 77px;
    height: 77px;
    margin: 0 auto;
    border-radius: 50%;
    background-position: bottom;
}

.businessList h6 {
    font-size: 20px;
    margin-top: 18px;
}

.arrow {
    position: absolute;
    bottom: 23px;
    right: calc(50% - 21px);
    width: 38px;
    height: 38px;
    background: url("../img/arrow.png") no-repeat center;
    background-size: cover;
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.business a:hover .arrow {
    right: 32px;
    transform: scale(.6);
    -ms-transform: scale(.6);
    -moz-transform: scale(.6);
    -webkit-transform: scale(.6);
    -o-transform: scale(.6);
}

/*关于我们*/
.TopMenu.aboutUsMenu {
    position: relative;
    left: 0;
    width: auto;
    height: auto;
    padding: 0 130px;
}

.TopMenu.aboutUsMenu a {
    height: 58px;
    line-height: 64px;
}

.TopMenu.aboutUsMenu a:before {
    height: 3px;
    background-color: var(--main-color);
}

.TopMenu.aboutUsMenu .active:after {
    height: 3px;
    background-color: var(--main-color);
}

.aboutUsMenu a {
    color: #000;
    font-size: 18px;
}

.aboutUsMenu a.active {
    font-weight: bold;
    color: var(--main-color);
}

.aboutUsMenu:before {
    content: '';
    position: absolute;
    bottom: -7px;
    height: 1px;
    left: 0;
    width: 100%;
    background-color: #9FA0A0;
}

.aboutUs h6 {
    color: var(--main-color);
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px
}

.about_1 h6 {
    padding-top: 126px;
    padding-bottom: 55px;
}

.about_a {
    height: 335px;
    position: relative;
}

.about_a i {
    float: left;
    width: 476px;
    height: 335px;
    position: relative;
    z-index: 2;
}

.about_a div {
    position: absolute;
    top: calc(50% - 152px);
    right: 0;
    width: 638px;
    height: 304px;
    padding: 30px 42px 30px 105px;
    text-align: justify;
    overflow-y: auto;
    background-color: var(--ash-color);
}

.about_2 h6 {
    padding-top: 156px;
    padding-bottom: 55px;
}

.about_2_txt {
    text-indent: 2em;
    padding-bottom: 61px;
}

.about_2_list li {
    float: left;
    width: 262px;
    height: 315px;
    background-color: #0F377D;
}

.about_2_list li:not(:nth-child(4n)), .about_3_list li:not(:last-child), .about_6_list li:not(:last-child) {
    margin-right: 14px;
}

.about_2_list li:nth-child(n+5) {
    margin-top: 14px;
}

.about_3 h6 {
    padding-top: 141px;
    padding-bottom: 50px;
}

.about_3_txt {
    text-indent: 2em;
    padding-bottom: 78px;
}

.about_3_list li {
    float: left;
    width: 262px;
    height: 240px;
    background-color: var(--main-color);
    border-radius: 10px;
}

.about_4 h6 {
    padding-top: 112px;
    padding-bottom: 51px;
}

.about_4_txt {
    text-indent: 2em;
    padding-bottom: 96px;
}

.about_5:after {
    content: '';
    position: absolute;
    top: 0;
    left: -55px;
    right: -55px;
    height: 100%;
    background-color: #F7F8F8;
    z-index: -1;
}

.about_5 h6 {
    padding-top: 66px;
    padding-bottom: 50px;
}

.about_5_txt {
    text-indent: 2em;
    padding-bottom: 83px;
}

.about_6 h6 {
    padding-top: 60px;
    padding-bottom: 53px;
}

.about_6_list li {
    float: left;
    width: 262px;
    height: 378px;
    overflow: hidden;
    background-color: var(--main-color);
    border-radius: 10px;
    color: var(--white-color);
}

.about_6_list li h5 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 32px 0;
}

.about_6_list li div.scrollBar {
    height: 245px;
    overflow-y: auto;
    padding: 0 19px;
    text-align: justify;
}

.about_7 {
    text-align: center;
    font-size: 17px;
    padding-top: 95px;
    color: var(--main-color);
    font-weight: bold;
}

/*新闻动态*/
.MyNews {
    width: 1200px;
    margin: 0 auto;
    min-height: 690px;
    padding: 36px 4px 105px;
    position: relative;
}

.newsList {
    padding-top: 57px;
}

.newsList a {
    float: left;
    width: 586px;
    height: 420px;
    margin-bottom: 20px;
    color: #595757;
    background-color: #f7f7f7;
}

.newsList a:nth-child(even) {
    margin-left: 20px;
}

.newsList a .newsImg {
    width: 586px;
    height: 320px;
    overflow: hidden;
    /*position: absolute;*/
}

.newsList a .newsImg img {
    display: block;
    /*width: 100%;*/
    height: 100%;
    top: 0;
    left: 0;
    position: relative;
    max-width: 100%;
}

.newsCen {
    padding: 0 22px;
}

.newsCen h1 {
    height: 54px;
    line-height: 54px;
    font-size: 24px;
}

.newsCen .omit3 {
    line-height: 21px;
}

.newsBottom {
    padding-top: 20px;
}

.newsBottom .news_P {
    float: left;
}

.news_P i {
    padding-right: 13px;
}

.news_P i:last-child {
    font-size: 12px;
}

.newsBottom .news_I {
    float: right;
    color: var(--main-color);
    border-top: 1px solid var(--main-color);
}

.newsList a:hover .omit3 {
    color: rgba(0, 45, 122, .8);
}

.newsList a:hover h1 {
    color: var(--main-color);
    font-weight: bold;
}

/*招纳贤士*/
.aboutUsTab {
    padding-top: 54px;
}

.aboutUsTab > ul {
    min-height: 150px;
    position: relative;
    padding: 0 40px;
    display: none;
}

.aboutUsTab > ul.active {
    display: block;
}

.aboutUsList {
    width: 705px;
    margin-bottom: 90px;
    text-align: justify;
}

.aboutUsTxt {
    margin-top: 40px;
    line-height: 30px;
    font-weight: bold;
}

.aboutUsRight {
    position: absolute;
    top: 24px;
    right: 40px;
    width: 227px;
    height: 114px;
}

.aboutUsRight img {
    width: 100%;
    height: 100%;
}

/*公司法律*/
.f_introduce {
    width: 1200px;
    min-height: 1900px;
    margin: 0 auto;
    padding-top: 80px;
    overflow: hidden;
}

.f_bread a, .f_bread {
    font-size: 22px;
    margin-bottom: 80px;
    color: var(--main-color);
}

.f_bread a:first-child {
    font-weight: bold;
}

.f_bread i {
    padding: 0 8px;
}

.f_breadLine:after {
    content: '';
    position: absolute;
    bottom: -26px;
    left: 0;
    right: -47px;
    height: 4px;
    background-color: var(--main-color);
    border-radius: 2px;
}

.f_line:after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    right: -10px;
    height: 2px;
    background-color: #c9cee4;
    border-radius: 2px;
}

/*中间部分*/

.f_introduce_min {
    overflow: hidden;
}

.f_introduce_lf {
    width: 512px;
    float: left;
}

.f_intr_title {
    font-weight: bold;
    font-size: 20px;
    color: #002d7a;
}

.f_jieshao {
    margin-top: 62px;
    margin-bottom: 70px;
}

.f_jieshao .text {
    font-size: 14px;
    line-height: 27px;
    color: #221815;
    text-indent: 20px;
}

.f_service_ul {
    overflow: hidden;
    margin-top: 65px;
}

.f_service_li {
    overflow: hidden;
    width: 512px;
    border-bottom: 2px solid #c9cee4;
    border-radius: 1px;
    padding-right: 65px;
    margin-bottom: 25px;
    padding-bottom: 22px;
}

.f_service_li .f_h2 {
    width: 90%;
    font-size: 14px;
    color: #000000;
    float: left;
}

.f_service_li img {
    width: 13px;
    height: 13px;
    display: block;
    float: right;
    margin-top: 4px;
}


/*右边*/

.f_introduce_lr {
    width: 550px;
    margin-left: 138px;
    float: left;
}

.f_experts_cont {
    width: 100%;
    margin-top: 46px;
}

.f_experts_list {
    overflow: hidden;
    margin-bottom: 15px;
}

.f_experts_list .zj {
    width: 176px;
    height: 211px;
    float: left;
    margin-right: 30px;
}

.f_experts_lr {
    width: 61%;
    overflow: hidden;
    float: left;
    color: #000000;
}

.f_experts_lr .name {
    font-size: 18px;
    margin-bottom: 20px;
}

.f_experts_lr .title {
    font-size: 14px;
    height: 63px;
    display: block;
    overflow: hidden;
}

.f_experts_lr .line {
    width: 33px;
    height: 3px;
    background-color: #000000;
    border-radius: 2px;
    display: block;
}

.understand {
    margin-top: 57px;
    float: left;
}

.under_img {
    width: 39px;
    height: 39px;
    background-color: #002d7a;
    float: left;
}

.understand .jh {
    width: 16px;
    height: 16px;
    display: block;
    margin: 11px auto 0;
}

.understand .more {
    width: 110px;
    line-height: 39px;
    font-size: 12px;
    color: #ffffff;
    display: block;
    text-align: center;
    float: left;
    background-color: #002d7a;
}

/*案例详情*/
.f_introduce .date_of {
    font-size: 20px;
    color: #595757;
}

/*详情*/
.f_case_container {
    width: 100%;
    overflow: hidden;
    margin-top: 31px;
}

.f_case_lf {
    width: 820px;
    float: left;
    margin-right: 45px;
}

.f_case_lf .news_img1 {
    margin-top: 36px;
    width: 829px;
    height: 389px;
}

.f_case_lf .details_text {
    font-size: 14px;
    color: #221815;
    line-height: 27px;
    text-indent: 20px;
    margin-top: 28px;
}

/*翻页*/
.f_page_cont {
    overflow: hidden;
    margin-top: 35px;
    font-size: 18px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f_page_cont .f_next_text {
    flex: none;
    width: 320px;
    line-height: 20px;
    letter-spacing: 2px;
    color: #333;
}

.f_page_cont .f_next_text:hover {
    font-weight: 500;
    color: var(--main-color);
}

.f_page_cont .time {
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    font-size: 14px;
    height: 30px;
    line-height: 28px;
    color: #555;
}

.f_case_lr {
    width: 331px;
    float: left;
}

.f_case_lr_list {
    display: block;
    overflow: hidden;
    margin-bottom: 15px;
}

.f_case_lr .news_img2 {
    width: 100%;
    height: 132px;
}

.f_case_introduce {
    width: 100%;
    background-color: #f7f7f7;
    padding: 10px 14px;
}

.f_case_introduce .f_plan {
    font-size: 14px;
    color: #595757;
    margin-bottom: 10px;
}

.f_case_lr_list:hover .f_plan {
    color: var(--main-color);
    font-weight: bold;
}

.f_plan_introduce {
    font-size: 12px;
    line-height: 21px;
    color: #595757;
    height: 87px;
    overflow: hidden;
}

.f_case_lr_list:hover .f_plan_introduce {
    color: var(--main-color);
}


.f_case_dow {
    overflow: hidden;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.f_case_dow_lf {
    width: 60%;
    color: #595757;
    font-size: 12px;
}

.f_case_dow_lf .unit1 {
    margin-right: 6px;
}

.f_case_dow_lf .unit1 {
    font-size: 10px;
}

.f_case_dow .f_details {
    color: #002d7a;
    border-top: 2px solid #002d7a;
    display: block;
    padding-top: 2px;
    width: 56px;
}
