h1,
h2,
h3,
h4,
h5,
h6,
p,
dd,
ol {
    margin: 0;
}

@font-face {
    font-family: 'objectivity-bold';
    src: url('../fonts/Objectivity-Bold.woff2') format('woff2'), url('../fonts/Objectivity-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'objectivity';
    src: url('../fonts/Objectivity-Regular.woff2') format('woff2'), url('../fonts/Objectivity-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.clearfix {
    zoom: 1;
}

.clear {
    clear: both;
}

.container {
    padding: 0;
    width: 1600px;
    margin: 0 auto;
    overflow: hidden
}

.inContent {
    width: 1600px;
    margin: 0 auto;
    position: relative;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 14px;
    font-family: "objectivity";
}

div:focus {
    outline: none;
}

ul,
ol,
body,
html,
p,
dl,
dt,
dd {
    margin: 0;
}

html {
    background: #fff;
    margin: 0 auto;
    font-size: 14px;
    font-family: "微软雅黑";
}

a {
    text-decoration: none;
    color: #333;
    -webkit-transition: color .3s;
    -moz-transition: color .3s;
    transition: color .3s;
}

a:hover {
    color: #02609e;
}

ul,
li {
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

img {
    border: 0;
    padding: 0px;
    margin: 0px;
}

input,
textarea,
button {
    border: none;
    outline: none;
    /*去除蓝色边框*/
    margin: 0;
    padding: 0;
}

ol {
    padding: 0
}

.left {
    float: left;
}

.right {
    float: right;
}

.fix::before,
.fix::after {
    display: table;
    clear: both;
    content: '';
}


/* 常量设置 */

.wrap {
    width: 1600px;
    margin: 0 auto;
}

a {
    color: inherit;
}

 ::-moz-selection {
    color: #fff;
    background: #02609e;
}

 ::selection {
    color: #fff;
    background: #02609e;
}

 ::-webkit-input-placeholder {
    color: #aaa;
}

::selection {
    background-color: #02609e;
    color: #fff;
}

.placeholder {
    color: #aaa;
}


/*css组件设置*/

.form-control,
.input-group-addon,
.btn {
    border-radius: 2px;
}

.form-control:focus {
    border-color: #02609e;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px rgba(102, 175, 233, 0.6);
}

.imgZoom img,
.imgY180 img {
    -moz-transition: all .8s ease 0s;
    -ms-transition: all .8s ease 0s;
    -o-transition: all .8s ease 0s;
    -webkit-transition: all .8s ease 0s;
    transition: all .8s ease 0s;
}

.imgZoom {
    overflow: hidden;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.imgZoom:hover img {
    -moz-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.imgY180:hover img {
    cursor: pointer;
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg)
}


/*
    设置在弹性容器上的属性
*/

.flex {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.align_items_center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.align_items_start {
    -webkit-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.justify_content_around {
    -webkit-box-pack: center;
    -webkit-justify-content: space-around;
    -ms-flex-pack: center;
    justify-content: space-around;
}

.justify_content_center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify_content_start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
}

.justify_content_space_between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.justify_content_end {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: end;
}

.boxSizing {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.rotate img {
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}

.rotate:hover img {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    transform: scaleX(-1);
}

.head {
    /*使导航栏固定在顶部*/
    position: fixed;
    top: 0;
    left: 0px;
    z-index: 99999;
    width: 100%;
    padding: 0 140px;
    height: 90px;
}

.navigation li {
    float: left;
    color: #333333;
    font-size: 18px;
    margin: 0 20px;
    position: relative;
}

.navigation .on {
    font-weight: bold;
    color: #2055a3;
}

.navigation li a {
    display: block;
    line-height: 90px;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.navigation>ul>li a:hover {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

.navigation .dropdown-menu {
    display: none;
    position: fixed;
    z-index: 99;
    background: #f8f8fb;
    width: 100%;
    left: 0;
}

.navigation li:hover .dropdown-menu {
    display: block;
}

.navigation li:hover .dropdown-menu a {
    color: #333;
}

.navigation .on {
    font-weight: bold;
}

.language .on {
    padding: 5px 10px;
    border-radius: 20px;
}

.language li span {
    font-size: 18px;
    color: #999999;
    margin: 0 10px;
}

.language .list {
    position: absolute;
    width: 150px;
    background: #fff;
    color: #333;
    top: 66px;
    display: none;
}

.language .list li {
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}

.headTop-right .search {
    background: #efefef;
    height: 32px;
    padding: 0 20px;
    border-radius: 30px;
}

.headTop-right .search input {
    background: #efefef;
    font-size: 16px;
    color: #666666;
}

.hidden {
    display: none;
}

.banner {
    margin-top: 78px;
}

.banner .link {
    position: relative;
}

.banner .flex {
    position: absolute;
    z-index: 999;
    bottom: 200px;
}

.banner .flex a {
    display: block;
    margin-right: 40px;
}

.index-bt {
    text-align: center;
}

.index01 {
    padding: 60px 0;
}

.index-bt h1 {
    font-size: 36px;
    font-family: 'objectivity-bold';
    margin-bottom: 20px;
}

.index-bt p {
    width: 60%;
    margin: 0 auto;
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
}

.index01 .img {
    padding-bottom: 72%;
    height: 0;
    position: relative;
    width: 100%;
    display: block;
}

.index01 .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.index01 .swiper-slide {
    border-radius: 10px;
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
}

.index01 .swiper-container {
    padding: 20px;
}

.index01 .txt {
    padding: 30px;
}

.index01 .txt a {
    display: block;
}

.index01 .txt .title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
    font-family: 'objectivity-bold';
    margin-bottom: 10px;
}

.index01 .txt .detail {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 16px;
    margin-bottom: 30px;
}

.index01 .txt .parameter p {
    width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #f23838;
    font-size: 16px;
    font-family: 'objectivity-bold';
}

.index01 .txt .parameter .more {
    color: #1d3557;
}

.index02 img {
    width: 100%;
}

.index02 {
    position: relative;
}

.index02 a {
    display: block;
    position: absolute;
    bottom: 35%;
    z-index: 9;
    left: 10%;
    width: 250px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #ffa800;
    color: #ffffff;
    border-radius: 30px;
}

.index03-bt {
    position: relative;
    margin-bottom: 70px;
}

.index03-bt h1 {
    text-align: center;
    font-size: 38px;
    font-family: 'objectivity-bold';
}

.index03-bt .more {
    float: right;
    width: 150px;
    height: 50px;
    line-height: 50px;
    background: #113aa2;
    color: #ffffff;
    text-align: center;
    border-radius: 30px;
    font-size: 18px;
    position: absolute;
    right: 0;
    top: 0
}

.index03 {
    padding: 100px 0;
    background: url(../images/386.png) right #f1f5f8 no-repeat;
}

.index03 .item {
    width: 31%;
}

.index03 .item .img {
    padding-bottom: 72%;
    height: 0;
    position: relative;
    width: 100%;
    display: block;
}

.index03 .item .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.index03 .item .txt {
    background: #ffffff;
    padding: 30px 40px;
    position: relative;
    min-height: 120px;
    font-size: 16px;
}

.index03 .item .txt::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 20px solid #ffffff;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
}

.index03 .item .txt .zuo {
    position: absolute;
    left: 10px;
    top: 10px;
}

.index03 .item .txt .you {
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.index03 .item .user {
    margin-top: 20px;
}

.index03 .item .user img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.index03 .item .user .t1 {
    font-size: 18px;
}

.index03 .item .user .t2 {
    font-size: 16px;
    color: #999999;
}

.index04 {
    background: #f3f4f6;
    padding: 80px 0;
}

.index04 .main {
    flex-wrap: wrap;
}

.index04 .item {
    width: 31%;
    background: #ffffff;
    margin: 0 1.1%;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.075);
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 40px;
}

.index04 .item h1 {
    font-size: 18px;
    font-family: 'objectivity-bold';
    margin: 15px 0;
}

.index04 .item p {
    font-size: 16px;
    color: #666666;
}

.index05 .left {
    padding: 100px 0 0 0;
    background: url(../images/bg_14.jpg) no-repeat bottom;
    width: 50%;
}

.index05 .left .t1 {
    font-size: 24px;
    font-family: 'objectivity-bold';
}

.index05 .left .t2 {
    font-size: 34px;
    font-family: 'objectivity-bold';
    color: #00479d;
    margin: 40px 0;
}

.index05 .left .more {
    font-family: 'objectivity-bold';
}

.index05 .left .more img {
    margin-right: 20px;
}

.index05 .left .box {
    padding: 100px 0 80px 0;
}

.index05 .left .box .num {
    font-size: 60px;
    font-family: 'objectivity-bold';
    margin-bottom: 10px;
}

.index05 .left .box p {
    font-size: 18px;
}

.index05 .right {
    width: 48%;
    padding: 100px 0 30px 0;
}

.index05 .right p {
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 80px;
}

.index05 {
    padding: 80px 0;
}

.index06-bt {
    margin-bottom: 80px;
}

.index06-bt p {
    font-size: 40px;
    font-family: 'objectivity-bold';
}

.index06-bt .more {
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #00479d;
    color: #ffffff;
    font-size: 18px;
    border-radius: 30px;
}

.index06 .left {
    width: 34%;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.075);
}

.index06 .left .img {
    padding-bottom: 60%;
    height: 0;
    position: relative;
    width: 100%;
    display: block;
}

.index06 .left .img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

.index06 .txt {
    background: #ffffff;
    padding: 20px;
}

.index06 .txt .group {
    margin-bottom: 10px;
}

.index06 .q {
    width: 40px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    border: 1px #00479d solid;
    border-radius: 50%;
    font-size: 20px;
    font-family: 'objectivity-bold';
    color: #00479d;
    margin-right: 20px;
}

.index06 .A {
    width: 8%;
    text-align: center;
    line-height: 40px;
    height: 40px;
    border: 1px #ffaa0d solid;
    border-radius: 50%;
    font-size: 20px;
    font-family: 'objectivity-bold';
    color: #ffaa0d;
    margin-right: 20px;
}

.index06 .group .title {
    font-family: 'objectivity-bold';
    font-size: 18px;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.index06 .group .detail {
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    width: 85%;
}

.index06 .right {
    width: 63%;
    flex-wrap: wrap;
}

.index06 .right .item {
    width: 48%;
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.075);
    margin-bottom: 30px;
    padding: 20px;
}

.index06 .right .q,
.index06 .right .A {
    height: 37px;
    line-height: 37px;
}

.index06 .right .detail {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    width: 80%;
}

.index06 {
    padding-bottom: 40px;
    overflow: hidden;
}

.index07 {
    overflow: hidden;
    background: url(../images/indexbg_22.jpg) no-repeat center;
    padding: 30px 0;
}

.index07 .left {
    width: 45%;
}

.index07 .left h1 {
    color: #ffffff;
    font-family: 'objectivity-bold';
    font-size: 48px;
    line-height: 72px;
}

.index07 .left p {
    color: #ffffff;
    font-size: 24px;
    margin: 30px 0;
}

.index07 .left .item {
    font-family: 'objectivity-bold';
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.index07 .left .item img {
    margin-right: 20px;
}

.index07 .right {
    width: 40%;
}

.index07 .right .title {
    width: 100%;
    height: 90px;
    line-height: 90px;
    color: #ffffff;
    font-size: 30px;
    background: #00479d;
    text-align: center;
}

.index07 .right .box {
    background: #ffffff;
    padding: 20px 40px;
}

.index07 .right .box input {
    width: 100%;
    border-bottom: 1px #efefef solid;
    line-height: 50px;
    font-size: 16px;
}

.index07 .right .box textarea {
    border-bottom: 1px #efefef solid;
    height: 130px;
    width: 100%;
    font-family: 'objectivity';
    padding: 20px 0;
    margin-bottom: 30px;
}

.index07 .right .box a {
    color: #00479d;
    font-family: 'objectivity-bold';
    font-size: 18px;
}

.foot {
    background: #292d36;
    padding: 50px 0;
}

.foot .group1 img {
    display: block;
}

.foot .group1 .icon {
    margin: 15px 0;
}

.foot .group1 span {
    font-size: 36px;
    font-family: 'objectivity-bold';
    color: #ffffff;
}

.foot .item a {
    display: block;
}

.foot .item .title {
    color: #ffffff;
    font-size: 18px;
    font-family: 'objectivity-bold';
    margin-bottom: 10px;
}

.foot .item .link {
    color: #d9d9d9;
    font-size: 18px;
    line-height: 36px;
}

.foot .ewm {
    width: 150px;
    height: 150px;
}

.foot .box2 {
    padding-top: 40px;
}

.foot .box2 .item {
    color: #ffffff;
    font-size: 18px;
    margin-right: 30px;
}

.foot .box2 .item img {
    margin-right: 20px;
}

.copyright {
    background: #292d36;
    line-height: 77px;
    font-size: 16px;
    color: #999999;
    text-align: center;
    border-top: 1px #5e6067 solid;
}