@charset "UTF-8";
/*css reset*/
*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

html {
    /*font-size: 50px;*/
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    font-size: 3vw;
    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;
    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;
}

/*移动端样式*/
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-A1 {
    background: url(../img/ionc-A1.png) no-repeat;
    background-size: 100%
}

.icon-A2 {
    background: url(../img/ionc-A2.png) no-repeat;
    background-size: 100%
}

.icon-A3 {
    background: url(../img/ionc-A3.png) no-repeat;
    background-size: 100%
}

.icon-A4 {
    background: url(../img/ionc-A4.png) no-repeat;
    background-size: 100%
}

.icon-A5 {
    background: url(../img/ionc-A5.png) no-repeat;
    background-size: 100%
}

.icon-A6 {
    background: url(../img/ionc-A6.png) no-repeat;
    background-size: 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-13 {
    background: url(../img/ionc-13.png) no-repeat;
    background-size: 100%
}

.icon-14 {
    background: url(../img/ionc-14.png) no-repeat;
    background-size: 100%
}

.icon-15 {
    background: url(../img/ionc-15.png) no-repeat;
    background-size: 100%
}

.icon-16 {
    background: url(../img/ionc-16.png) no-repeat;
    background-size: 100%
}

.icon-17 {
    background: url(../img/ionc-17.png) no-repeat;
    background-size: 100%
}

.icon-18 {
    background: url(../img/ionc-18.png) no-repeat;
    background-size: 100%
}

.icon-19 {
    background: url(../img/ionc-19.png) no-repeat;
    background-size: 100%
}

.icon-20 {
    background: url(../img/ionc-20.png) no-repeat;
    background-size: 100%
}

.icon-21 {
    background: url(../img/ionc-21.png) no-repeat;
    background-size: 100%
}

.icon-22 {
    background: url(../img/ionc-22.png) no-repeat;
    background-size: 100%
}

.icon-23 {
    background: url(../img/ionc-23.png) no-repeat;
    background-size: 100%
}

.icon-24 {
    background: url(../img/ionc-24.png) no-repeat;
    background-size: 100%
}

.icon-25 {
    background: url(../img/f_zp1.png) no-repeat;
    background-size: 100%
}

.icon-26 {
    background: url(../img/f_zp2.png) no-repeat;
    background-size: 100%
}

.icon-27 {
    background: url(../img/f_zp3.png) no-repeat;
    background-size: 100%
}

.icon-28 {
    background: url(../img/f_zp4.png) no-repeat;
    background-size: 100%
}

.icon-29 {
    background: url(../img/f_zp5.png) no-repeat;
    background-size: 100%
}

/*首页*/
.swiper-box {
    height: 54.4vw;
}

.menu {
    position: fixed;
    top: 4vw;
    right: 5vw;
    width: 7vw;
    height: 6vw;
    z-index: 9997;
    background: url("../img/menu.png") no-repeat center;
    background-size: cover;
}

.tier {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9998;
    display: none;
}

.menuCen {
    z-index: 9999;
    position: fixed;
    top: 0;
    right: -60%;
    height: 100vh;
    width: 60%;
    background-color: var(--main-color);
    color: var(--white-color);
    transition: all .3s linear;
    -moz-transition: all .3s linear;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
}

.menuBox.active .tier {
    display: block;
}

.menuBox.active .menuCen {
    right: 0;
}

.menuLogo {
    height: 28vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.menuBg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url(../img/bacd-1.jpg) no-repeat center center;
    background-size: cover;
    opacity: .2;
    z-index: -1;
}

.menuLogo img {
    width: 70%;
    margin: 0 auto;
}

.menuList {
    padding: 2vw 0;
}

.menuList a {
    display: block;
    height: 12vw;
    line-height: 12vw;
    text-align: center;
    font-size: 3.4vw;
    color: var(--white-color);
    border-bottom: 1px solid var(--blue-color);
}

.business {
    height: 21.87vw;
    text-align: center;
    line-height: 18vw;
    font-size: 6vw;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 3px;
    margin-top: 0.67vw;
    position: relative;
}

.law {
    height: 31vw;
    text-align: center;
    line-height: 28vw;
    font-size: 6vw;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
}

.adorn:after {
    content: '';
    position: absolute;
    width: 4vw;
    height: 0.52vw;
    bottom: 24%;
    left: calc(50% - 11px);
    border-radius: 2px;
    background-color: var(--white-color);
}

.business-box {
    height: 58vw;
}

.business-ul {
    padding: 7vw 3vw;
}

.business-ul li {
    float: left;
    width: 33.3333%;
}

.business-ul li:nth-child(n+4), .law-ul li:nth-child(n+4) {
    padding-top: 4vw;
}

.business-ul li a, .law-ul li a {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.business-ul li a i, .law-ul li a i {
    display: block;
    width: 13vw;
    height: 13vw;
}

.business-ul li a p, .law-ul li a p {
    padding-top: 2vw;
    color: var(--main-color);
}

.business-box .swiper-pagination-bullet {
    border-color: var(--main-color);
}

.business-box .swiper-pagination-bullet-active:after {
    background-color: var(--main-color);
}

.law-box {
    margin: .4rem .2rem;
    overflow-x: auto;
}

.law-ul {
    white-space: nowrap;
}

.law-ul li {
    display: inline-block;
    width: 33.3333%;
}

.team-list {
    height: 21.47vw;
    background-color: var(--white-color);
    margin: 7vw 0;
}

.team-Img {
    width: 35vw;
    height: 28vw;
    background-color: var(--white-color);
    position: relative;
}

.team-L {
    position: absolute;
    top: -3.5vw;
    left: 0;
}

.team-R {
    position: absolute;
    top: -3.5vw;
    right: 0;
}

.team-L .team-Img {
    border-bottom-right-radius: 14vw;
    border-top-right-radius: 14vw;
    box-shadow: 6px 0 6px rgba(0, 0, 0, .4);
}

.team-R .team-Img {
    border-bottom-left-radius: 14vw;
    border-top-left-radius: 14vw;
    box-shadow: -6px 0 6px rgba(0, 0, 0, .4);
}

.sigh {
    width: 3.73vw;
    height: 1.47vw;
    background-color: #bfbfbf;
    border-radius: 0.27vw;
    position: absolute;
}

.sigh:after {
    content: '';
    position: absolute;
    width: 1.6vw;
    height: 1.6vw;
    background-color: var(--main-color);
    border-radius: 50%;
}

.team-L .sigh {
    top: 2.13vw;
    left: 5.47vw;
}

.team-L .sigh:after {
    left: -3.2vw;
}

.team-R .sigh {
    top: 2.13vw;
    right: 5.47vw;
}

.team-R .sigh:after {
    right: -3.2vw;
}

.team-Img i {
    margin: 1vw;
    width: 26vw;
    height: 26vw;
    border-radius: 50%;
    border: 3vw solid #E4E6E8;
}

.team-txt {
    width: 59vw;
    height: 100%;
    color: var(--main-color);
    display: block;
}

.team-txt h6 {
    padding-top: 4vw;
    margin-bottom: 4.53vw;
    font-size: 3vw;
    line-height: 1;
    position: relative;
}

.team-txt h6.adorn:after {
    left: .5vw;
    bottom: -1.73vw;
    background-color: var(--main-color);
}

.team-txt p {
    font-size: 2.41vw;
}

.team-L + .team-txt {
    margin-left: 38vw;
}

.team-R + .team-txt {
    margin-right: 38vw;
    margin-left: 3vw;
}

/*更多*/
.moreBtn {
    width: 28.13vw;
    height: 7.07vw;
    background-color: var(--main-color);
    cursor: pointer;
    float: right;
    position: relative;
    margin-right: 8.4vw;
}

.moreBtn i {
    position: absolute;
    top: 0;
    left: 0;
    width: 6.93vw;
    height: 7.07vw;
    background: url(../img/add.png) no-repeat center;
    background-size: 2.93vw 2.93vw;;
    background-color: #0F377D;
    z-index: 1;
}

.moreBtn p {
    width: 21.2vw;
    height: 7.07vw;
    float: right;
    font-size: 3.33vw;
    line-height: 7.07vw;
    text-align: center;
    color: var(--white-color);
}

.team-box .moreBtn {
    bottom: 4.67vw;
}

.team-box {
    min-height: 116vw;
    padding-bottom: 7.4vw;
}

.team-box h5 {
    height: 21vw;
    text-align: center;
    padding-top: 5vw;
    font-size: 6vw;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 3px;
    position: relative;
}

.team-box h5.adorn:after {
    bottom: 4vw;
}

.news-lan {
    color: var(--main-color);
}

.news-lan.adorn:after {
    background-color: var(--main-color)
}

.news {
    display: block;
    width: 78.93vw;
    height: 18.53vw;
    margin: 0 auto .2rem;
    border-radius: 0.93vw;
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 3vw 0;
}

.news-t {
    margin-top: 3.2vw;
    margin-right: 10.67vw;
}

.news-l {
    float: left;
    width: 15.87vw;
    height: 100%;
    padding-left: 3.73vw;
    border-right: .28vw dashed #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-l i:first-child {
    display: block;
    line-height: 1.4;
    font-size: 3.33vw;
}

.news-l i:last-child {
    font-size: 2.4vw;
}

.news-r {
    float: right;
    width: 62.8vw;
    padding: 0 5.07vw;
}

.news-r h6 {
    font-size: 3.33vw;
    line-height: 1;
    margin-bottom: 1.2vw;
}

.news-r p {
    line-height: 1.2;
    font-size: 2.4vw;
}

.foot {
    padding: 2% 10%;
    color: var(--white-color);
}

.foot p {
    line-height: 8vw;
    padding-left: 6vw;
}

.foot p:nth-child(1) {
    background: url("../img/mail.png") no-repeat top 2vw left;
    background-size: 4vw;
}

.foot p:nth-child(2) {
    background: url("../img/tel.png") no-repeat top 2vw left;
    background-size: 4vw;
}

.foot p:nth-child(3) {
    background: url("../img/site.png") no-repeat top 2vw left;
    background-size: 4vw;
}

.foot a {
    display: block;
    color: var(--white-color);
}

.foot a i {
    border-bottom: 1px solid #fff;
}

.form_Top {
    padding: 0 9vw 9vw;
}

.form_Top .active {
    position: relative;
}

.form_Top .active:after {
    content: '*';
    position: absolute;
    top: 8px;
    left: -12px;
    font-size: .32rem;
    color: #FF443E;
}

.form_Top input, .form_Top select, .SubmitBtn {
    width: 100%;
    height: 8.67vw;
    padding: 0 2.58vw;
    border: .13vw solid #7B88AD;
}

.A_form p:first-child {
    margin-right: 8%;
}

.A_form p {
    float: left;
    width: 46%;
    margin-bottom: 4.93vw;
}

.B_form {
    margin-bottom: 4.93vw;
}

.C_form {
    position: absolute !important;
    top: 0;
    bottom: 0;
    right: 0;
    width: 46%;
    padding: 2vw;
    border: .13vw solid #7B88AD;
}

.D_form {
    float: left;
    width: 46%;
    margin-right: 8%;
}

.D_form > p {
    margin-bottom: 4.93vw;
}

.SubmitBtn {
    cursor: pointer;
    text-align: center;
    line-height: 8.67vw;
}

.article-box {
    margin-bottom: 9vw;
    position: relative;
}

.article-box:after {
    content: '';
    position: absolute;
    top: 8%;
    bottom: 8%;
    right: 8.93vw;
    width: 0.53vw;
    background-color: #CACFE5;
    z-index: -1;
}

.article-list {
    height: 15vw;
    color: var(--main-color);
    padding-left: 7.2vw;
    padding-right: 3.47vw;
    display: flex;
    align-items: center;
}

.article-cen {
    width: 69.6vw;
    flex: none;
    padding-right: 2.53vw;
}

.article-cen h6 {
    font-size: 3.33vw;
    line-height: 4.8vw;
    margin-bottom: 1.2vw;
}

.article-cen p {
    font-size: 2.4vw;
    line-height: 1.2;
}

.article-day {
    width: 19.73vw;
    flex: none;
    line-height: 1;
    padding-left: 3vw;
}

.article-day.active {
    width: 19.73vw;
    height: 7.2vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--main-color);
    color: var(--white-color);
    position: relative;
}

.article-day.active i {
    position: absolute;
    width: 3.07vw;
    height: 3.07vw;
    right: 1.2vw;
    top: 2vw;
    background: url("../img/add.png") no-repeat center;
    background-size: cover;
}

.article-day p {
    font-size: 3.33vw;
}

.article-day span {
    font-size: 2.4vw;
}

/*经典案例*/
.BOX-I {
    height: 33.33vw;
    background-color: var(--main-color);
}

.top-menu {
    padding: 4.5vw 13vw;
}

.top-menu li {
    float: left;
    width: 29.33%;
    height: 0;
    padding-top: 29.33%;
    position: relative;
}

.top-menu li:nth-child(n+4) {
    margin-top: 6%;
}

.top-menu li:not(:nth-child(3n+1)) {
    margin-left: 6%;
}

.top-menu i {
    width: 9vw;
    height: 9vw;
    margin-bottom: 2vw;
}

.top-menu p {
    font-size: 3.33vw;
    color: #002d7a;
    white-space: nowrap !important;
}

.top-menu li a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: solid 1px #002d7a;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.box-list {
    min-height: 120vw;
}

.cases-list {
    display: block;
    padding-left: 4.3vw;
    padding-right: 3.8vw;
    padding-bottom: 5vw;
}

.cases-fl {
    float: left;
    width: 16.3vw;
    text-align: right;
    padding-right: 2.69vw;
}

.cases-fl h6 {
    line-height: 1;
    font-size: 6.02vw;
    color: #002d7a;
}

.cases-fl p {
    font-size: 3.33vw;
    color: #002d7a;
}

.cases-fr {
    float: right;
    width: 75.6vw;
}

.cases-img {
    display: block;
    width: 100%;
    height: 30.93vw;
}

.cases-cen {
    padding: 1.3vw;
    background-color: #F7F7F7;
}

.cases-txt {
    float: left;
    width: 58vw;
}

.cases-txt h6 {
    font-size: 4.17vw;
    line-height: 5.83vw;
}

.cases-txt p {
    font-size: 3.33vw;
    color: #595757;
    margin-left: auto;
}

.cases-i {
    position: absolute;
    bottom: 4vw;
    right: 1.3vw;
    border-top: 1px solid var(--main-color);
    color: var(--main-color);
}

/*公用导航*/

.f_nav {
    width: 100%;
    height: 7.69vw;
    line-height: 7.69vw;
    background-color: #eee;
    padding: 0 3.7vw;
    border-bottom: 1px solid #c5c5c5;
    font-size: 3.33vw;
    display: flex;
    align-items: center;
}

.f_nav_h3 {
    color: #002d7a;
    font-weight: bold;
}

.f_nav .f_fh {
    width: 4.44vw;
    height: 100%;
    background: url("../img/f_nav.png") no-repeat center center;
    background-size: contain;
    margin: 0 2vw;
}

.f_nav .f_text {
    color: #002d7a;
}

/*主要内容部分*/

.f_Case_container {
    margin: 6vw 3.8vw;
    font-weight: 600;
    font-size: 3.33vw;
    line-height: 4.8vw;
    color: #002d7a;
    text-align: justify;
}

.f_cont_img {
    width: 100%;
    height: auto;
}

.f_Case_date {
    font-size: 2.4vw;
    color: #595757;
    margin-top: 3vw;
    margin-bottom: 2vw;
}

.f_Case_title {
    font-size: 3.8vw;
    font-weight: bold;
    line-height: 4.2vw;
    color: #002d7a;
}

.f_details {
    font-size: 3.33vw;
    color: #221815;
    margin-top: 2.6vw;
    line-height: 1.7;
    text-align: justify;
}

/*翻页*/

.f_z_page {
    display: flex;
    justify-content: center;
    padding-bottom: 6vw;
}

.f_z_page span, .f_z_page select {
    width: 15.37vw;
    border-radius: 0.46vw;
    border: 1px solid #1457c8;
    font-size: 4vw;
    color: #002d7a;
    text-align: center;
    box-sizing: inherit;
}

.f_z_page select {
    width: auto;
    padding: 0 2px;
}

.f_on {
    margin-right: 2.5vw;
}

/*服务领域*/

.f_title2 {
    display: inline-block;
    font-size: 3.33vw;
    color: #002d7a;
    position: relative;
    margin-bottom: 2.5vw;
}

.f_title2:before {
    content: '';
    position: absolute;
    right: -2vw;
    top: .2vw;
    bottom: 1.1vw;
    width: 0.19vw;
    background-color: #002d7a;
}


/*列表部分*/

.f_service_cont {
    overflow: hidden;
}

.f_service_list {
    font-size: 3.33vw;
    color: #333;
    border-bottom: 1px solid #c9cee4;
    padding-bottom: 2.6vw;
    margin-top: 2.5vw;
}


/*人物介绍*/

.f_partner_cont {
    margin: 0 3.8vw;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.f_partner_lf {
    width: 34%;
    padding-top: 12vw;
}

.f_figure_tit {
    margin-top: 4vw;
}

.f_partner_cont .f_photo {
    width: 25.74vw;
    height: 25.74vw;
    border-radius: 50%;
    border: 3px solid #fff;
    overflow: hidden;
    z-index: 500;
}

.f_partner_cont .f_photo img {
    width: 100%;
    display: block;
}

.f_partner_lr {
    width: 32%;
    padding-top: 12vw;
}

.f_partner_lf .f_name {
    font-size: 4.63vw;
    color: #002d7a;
    display: block;
    font-weight: bold;
    position: relative;
}

.f_partner_lf .f_name:before {
    position: absolute;
    left: 2px;
    bottom: -1px;
    content: '';
    width: 4vw;
    height: 0.52vw;
    background: #002d7a;
    border-radius: 2px;
}

.f_position {
    font-size: 2.41vw;
    color: #002d7a;
    margin-top: 1.48vw;
    line-height: 4vw;
}

.f_partner_lr span {
    font-size: 3.33vw;
    color: #002d7a;
    display: block;
    line-height: 4vw;
}

/*招聘页面*/

.f_photo_cont {
    overflow: hidden;
}

.f_photo_top {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5.83vw;
}

.f_zp_bor {
    width: 21.76vw;
    height: 20.65vw;
    border: solid 0.09vw #002d7a;
    margin: 0 2.9vw;
    padding-top: 4.44vw;
}

.f_zp_bor .zp {
    width: 13.24vw;
    height: 6.02vw;
    display: block;
    margin: 0 auto;
}

.f_zp_bor .zp_title {
    font-size: 3.33vw;
    color: #002d7a;
    text-align: center;
    margin-top: 3vw;
    display: block;
}

.f_per_requi {
    width: 15.46vw;
    height: 5.37vw;
    background-color: #002d7a;
    font-size: 3.33vw;
    color: #ffffff;
    text-align: center;
    line-height: 5.37vw;
    margin-top: 4.35vw;
    margin-left: 4vw;
}

.f_requirements_cont {
    overflow: hidden;
    margin-top: 4vw;
    text-align: justify;
    color: #333;
}

/*申请方法*/

.f_method_bj {
    background: url(../img/f_zp6.png) no-repeat center center;
    background-size: cover;
    padding: 3.5vw 0;
    margin-bottom: 5vw;
}

.f_method_blue {
    width: 92.59vw;
    margin: 0 auto;
    background: rgba(0, 45, 122, 0.8);
    font-size: 3.33vw;
    color: #fff;
    padding: 2.9vw 3.24vw;
}

.f_method_lf {
    width: 50%;
    float: left;
    word-wrap: break-word;
}

.f_method_lr {
    width: 50%;
    float: right;
    padding-left: 3.24vw;
}

.f_method_lf_tit {
    font-size: 4vw;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-bottom: 1.5vw;
    letter-spacing: 2px
}

.f_method_lf_txt {
    max-height: 28vw;
    text-align: justify;
    overflow-y: auto;
}

.f_method_lf .f_method_lf_txt {
    padding-right: 3.24vw;
}

.f_method_blue:before {
    position: absolute;
    left: 50%;
    top: 9px;
    bottom: 9px;
    content: '';
    width: 1px;
    border-left: dashed 1px #fff;
}

/*联系我们*/

.f_Contact_us {
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

.f_Contact_us .f_list {
    width: 33.3%;
    text-align: center;
}

.f_Contact_us .f_list img {
    width: 8.61vw;
    height: 8.61vw;
    display: block;
    margin: 0 auto;
}

.f_list .f_dizhi {
    font-size: 3.33vw;
    color: #333;
    display: block;
    margin-top: 3vw;
    word-wrap: break-word
}

.f_list a {
    display: block;
    color: #333;
}

.f_list a .f_dizhi i {
    border-bottom: 1px solid #333;
}

.f_Cont_bj {
    background: url(../img/f_lian4.jpg) no-repeat center center;
    background-size: 100%;
    height: 37.59vw;
    padding-top: 4vw;
}

.f_Cont_bj .ewm_img {
    display: block;
    margin: 0 auto;
    width: 23.52vw;
    height: 23.8vw;
}

.f_Cont_bj .ewm_text {
    font-size: 3.33vw;
    color: #000;
    display: block;
    margin-top: 2.7vw;
    text-align: center;
}

.f_ditu {
    overflow: hidden;
    margin-top: 5.74vw;
    margin-bottom: 6.85vw;
}

.f_ditu .ditu_img {
    width: 100%;
    height: auto;
}

.b-list {
    padding: 5vw 3.7vw;
}

.b-list a {
    display: block;
    width: 92.59vw;
    height: 35.46vw;
    border-radius: 1.85vw;
    margin-bottom: 3.7vw;
    overflow: hidden;
    position: relative;
}

.a-list {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 52vw;
    height: 8.98vw;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.a-list i {
    flex: none;
    width: 9vw;
    height: 9vw;
    margin-right: 2.28vw;
}

.a-list p {
    flex: 1;
    font-size: 5.56vw;
    color: #fff;
}

.arrow {
    position: absolute;
    bottom: 3.52vw;
    right: 7.87vw;
    width: 5.46vw;
    height: 5.46vw;
    background: url("../img/arrow.png") no-repeat center;
    background-size: contain;
}

.hei {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .4);
}

.aboutUs {
    padding: 0 4vw;
    text-align: justify;
}

.aboutUs h6 {
    color: var(--main-color);
    font-size: 4.63vw;
    font-weight: bold;
    text-align: center;
    padding: 6.85vw 0;
}

.about_a i {
    float: left;
    width: 38.06vw;
    height: 26.85vw;
    margin-right: 3vw;
    margin-bottom: 3vw;
}

.about_2_list li {
    float: left;
    width: 29.26vw;
    height: 35.37vw;
    background-color: #5E8FE3;
    margin-top: 2.31vw;
}

.about_2_list li:not(:last-child), .about_3_list li:not(:last-child) {
    margin-right: 2.1vw;
}

.about_3_list li {
    float: left;
    width: 29.26vw;
    height: 26.76vw;
    background-color: #002D7A;
    margin-top: 5.93vw;
    border-radius: 0.93vw;
}

.about_5 {
    margin: 7vw -4vw 0;
    padding: 0 4vw 4.7vw;
    background-color: #F7F8F8;
}

.aboutUs .about_5 h6 {
    padding-top: 4.17vw;
    padding-bottom: 2.5vw;
}

.about_6_list li {
    float: left;
    width: 44.81vw;
    height: 64.26vw;
    margin-bottom: 2.5vw;
    text-align: justify;
    color: #fff;
}

.about_6_list li:nth-child(even) {
    margin-left: 2.38vw;
}

.about_6_list li h5 {
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    padding: 4vw 2.87vw;
}

.about_6_list li .scrollBar {
    font-size: 2.78vw;
    max-height: 47vw;
    padding: 0 2.87vw;
    overflow-y: auto;
}

.about_7 {
    font-size: 2.78vw;
    color: #002d7a;
    font-weight: bold;
    text-align: center;
    padding: 1.5vw 0 4vw 0;
}

/*专业团队*/

.f_team_digital {
    background: url(../img/f_team.jpg) no-repeat center center;
    background-size: cover;
    padding-top: 5vw;
    padding-bottom: 4vw;
    margin-top: 1.57vw;
}

.f_digital_cont {
    display: flex;
    align-content: center;
    justify-content: space-around;
}

.f_digital_list {
    overflow: hidden;
    text-align: center;
    font-size: 2.41vw;
    color: #ffffff;
}

.f_digital_list .shuzi {
    font-size: 4.64vw;
    font-weight: bold;
}


/*搜索框*/

.f_team_input {
    width: 42vw;
    margin: -2vw auto 0;
    overflow: hidden;
    background-color: #002d7a;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .4);
}

.f_team_input .input {
    width: 35vw;
    height: 5vw;
    padding-left: 2vw;
    padding-right: 1vw;
    background-color: #fff;
    font-size: 2.12vw;
    color: #000;
    float: left;
    padding-top: 0.6vw;
    box-sizing: border-box;
}

.f_team_input .button {
    width: 7vw;
    height: 5vw;
    background-color: #002d7a;
    float: left;
}

.button .search_img {
    width: 2.78vw;
    height: 2.78vw;
}

.f_team_container {
    padding: 2.5vw;
}

.f_team_list {
    width: 29.26vw;
    height: 51.57vw;
    background-color: #ffffff;
    border: solid 1px #002d7a;
    float: left;
    margin: 1.15vw;
    margin-bottom: 2.78vw;
}

.f_team_list .f_team_rw {
    width: 26.94vw;
    height: 37.13vw;
    padding-top: 1.2vw;
    display: block;
    margin: 0 auto;
}

.f_team_txt {
    padding: 0 1.2vw;
    margin-top: 1.6vw;
}

.f_team_name {
    font-size: 3.33vw;
    color: #002d7a;
    position: relative;
}

.f_team_name:after {
    content: '';
    position: absolute;
    left: 2px;
    top: 19px;
    width: 3.06vw;
    height: 0.4vw;
    background: #002d7a;
    border-radius: 2px;
}

.f_team_position {
    font-size: 2.78vw;
    color: #002d7a;
    margin-top: 1.2vw;
}
.pager{width: 100%; line-height: 8vw; text-align: center; display: table; color: #999}
.pager a{color: #000}
.pager span{padding: 0 15px}